diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-09-09 01:26:34 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-09-09 01:26:34 +0200 |
commit | 0ccc30e337bb046000fb76d2337c2fb9792bc71f (patch) | |
tree | bbf2307438389f91fdae1e618d0816238b0a015a /chimere/urls.py | |
parent | 5833aa61d039bf3d1f4372e0390ffc53b7d63eb9 (diff) | |
download | Chimère-0ccc30e337bb046000fb76d2337c2fb9792bc71f.tar.bz2 Chimère-0ccc30e337bb046000fb76d2337c2fb9792bc71f.zip |
Association of a GPX (or KML) file to a route (refs #302)
- new table in the model
- new form in route edition
- uploaded gpx file simplification
- automatic route creation from the GPX file
Diffstat (limited to 'chimere/urls.py')
-rw-r--r-- | chimere/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chimere/urls.py b/chimere/urls.py index 8740f85..4d62bac 100644 --- a/chimere/urls.py +++ b/chimere/urls.py @@ -67,6 +67,8 @@ urlpatterns += patterns('chimere.main.views', (BASE + EXTRA + r'contact/$', 'contactus', default_dct), (BASE + EXTRA + r'edit/$', 'edit', default_dct), (BASE + EXTRA + r'edit_route/$', 'editRoute', default_dct), +(BASE + EXTRA + r'upload_file/$', 'uploadFile', default_dct), +(BASE + EXTRA + r'process_route_file/(?P<file_id>\d+)/$', 'processRouteFile', default_dct), (BASE + EXTRA + r'submited/(?P<action>\w+)/$', 'submited', default_dct), (BASE + EXTRA + r'getDetail/(?P<marker_id>\d+)/$', 'getDetail', default_dct), (BASE + EXTRA + r'getDescriptionDetail/(?P<category_id>\d+)/$', |