Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
make /hosted.webapp and /packaged.webapp
Browse files Browse the repository at this point in the history
  • Loading branch information
cvan committed Apr 9, 2013
1 parent 0759a80 commit 38b54dd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions mkt/site/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,15 @@ def template_plus_xframe(request, template, **kwargs):
url('^terms-of-use(.(?P<format>\w+))?$', template_plus_xframe,
{'template': 'site/terms-of-use.html'}, name='site.terms'),
url('^robots.txt$', views.robots, name='robots.txt'),

# These are the new manifest URLs going forward.
url('^hosted.webapp$', views.manifest, name='hosted.webapp'),
url('^packaged.webapp$', views.minifest, name='packaged.webapp'),

# TODO: Deprecate this in favour of the ones above.
url('^manifest.webapp$', views.manifest, name='manifest.webapp'),
url('^minifest.webapp$', views.minifest, name='minifest.webapp'),

url('^timing/record$', views.record, name='mkt.timing.record'),
url('^feedback$', feedback, name='site.feedback'),
)

0 comments on commit 38b54dd

Please sign in to comment.