Set up legacy mappings of release-* pages and other blog posts

This commit is contained in:
str4d
2013-08-29 05:18:36 +00:00
parent 94815e5d43
commit 3d94ee24ea
2 changed files with 74 additions and 1 deletions

View File

@ -71,6 +71,10 @@ url('/meeting<int:id>', 'legacy.legacy_meeting')
url('/meeting<int:id>.html', 'legacy.legacy_meeting')
url('/status-<int:year>-<int:month>-<int:day>', 'legacy.legacy_status')
url('/status-<int:year>-<int:month>-<int:day>.html', 'legacy.legacy_status')
url('/release-<string:version>_<lang:lang>', 'legacy.legacy_release')
url('/release-<string:version>_<lang:lang>.html', 'legacy.legacy_release')
url('/release-<string:version>/', 'legacy.legacy_release')
url('/release-<string:version>.html', 'legacy.legacy_release')
url('/<string:f>_<lang:lang>', 'legacy.legacy_show')
url('/<string:f>_<lang:lang>.html', 'legacy.legacy_show')
url('/<string:f>/', 'legacy.legacy_show')