diff options
Diffstat (limited to 'chimere/urls.py')
| -rw-r--r-- | chimere/urls.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/chimere/urls.py b/chimere/urls.py index 164ef68..b0c01d7 100644 --- a/chimere/urls.py +++ b/chimere/urls.py @@ -1,6 +1,6 @@  #!/usr/bin/env python  # -*- coding: utf-8 -*- -# Copyright (C) 2008-2012  Étienne Loks  <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2008-2013  Étienne Loks  <etienne.loks_AT_peacefrogsDOTnet>  # This program is free software: you can redistribute it and/or modify  # it under the terms of the GNU General Public License as @@ -103,6 +103,8 @@ urlpatterns += patterns('chimere.views',                          'processRouteFile', name='process_route_file'),      url(r'^(?P<area_name>[a-zA-Z0-9_-]+/)?dyn/(?P<page_id>\w+)/$',                          'extraPage', name='extra_page'), +    url(r'^(?P<area_name>[a-zA-Z0-9_-]+/)?json/(?P<app_name>[a-zA-Z0-9_-]+)/(?P<filename>[a-zA-Z0-9_-]+).json$', 'get_json', +        name='get-json'),      # At the end, because it catches large      url(r'^(?P<area_name>[a-zA-Z0-9_-]+)?', 'index', name="index"),  ) | 
