Fix bug 1236910: Add redirects for SUMO

This commit is contained in:
Paul McLanahan 2016-01-05 09:45:16 -05:00
Родитель 73ff68fcdc
Коммит a681f501f9
4 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -275,4 +275,7 @@ redirectpatterns = (
redirect(r'^projects/seamonkey/releases/updates/(?P<x>.*)$',
'http://www.seamonkey-project.org/releases/updates/{x}'),
redirect(r'^projects/seamonkey/start/$', 'http://www.seamonkey-project.org/start/'),
# Bug 638948 redirect beta privacy policy link
redirect(r'^firefox/beta/feedbackprivacypolicy/?$', '/privacy/firefox/'),
)

Просмотреть файл

@ -572,6 +572,9 @@ redirectpatterns = (
# bug 1003737
redirect(r'^impressum/?$', '/about/legal/impressum/'),
# bug 1236910
redirect(r'^support(/.*)?$', 'https://support.mozilla.org/'),
# bug 832348 **/index.html -> **/
# leave this at the bottom
redirect(r'^(.*)/index\.html$', '/{}/', locale_prefix=False),

Просмотреть файл

@ -753,3 +753,7 @@ RewriteRule ^(/(?:\w{2,3}(?:-\w{2})?/)?projects/xforms/2005/type)$ /b$1 [PT]
RewriteRule ^(/xbl)$ /b$1 [PT]
RewriteRule ^(/(?:\w{2,3}(?:-\w{2})?/)?projects/seamonkey(/.*)?)$ /b$1 [PT]
RewriteRule ^(/(?:\w{2,3}(?:-\w{2})?/)?support(?:/.*)?)$ /b$1 [PT]
RewriteRule ^(/(?:\w{2,3}(?:-\w{2})?/)?firefox/beta/feedbackprivacypolicy/?)$ /b$1 [PT]

Просмотреть файл

@ -116,4 +116,9 @@ URLS = flatten((
'http://www.seamonkey-project.org/releases/updates/so-good'),
url_test('/projects/seamonkey/start/', 'http://www.seamonkey-project.org/start/'),
# bug 1236910
url_test('/support/firefox/options', 'https://support.mozilla.org/'),
# Bug 638948 redirect beta privacy policy link
url_test('/firefox/beta/feedbackprivacypolicy/', '/privacy/firefox/'),
))