name="telemeta-enumeration-record-update"),
# Geographic browsing
- url(r'geo/$', web_view.list_continents, name="telemeta-geo-continents"),
- url(r'geo/(?P<continent>[A-Za-z]+)/$', web_view.list_countries,
+ url(r'^geo/$', web_view.list_continents, name="telemeta-geo-continents"),
+ url(r'^geo/(?P<continent>[A-Za-z]+)/$', web_view.list_countries,
name="telemeta-geo-countries"),
- url('geo/(?P<continent>[A-Za-z]+)/(?P<country>[-A-Za-z0-9%;.,"& \']+)/$',
+ url('^geo/(?P<continent>[A-Za-z]+)/(?P<country>[-A-Za-z0-9%;.,"& \']+)/$',
web_view.list_country_collections,
name="telemeta-geo-country-collections"),
- url(r'dynjs/continents.js$', web_view.get_continents_js, name="telemeta-continents-js"),
+ url(r'^dynjs/continents.js$', web_view.get_continents_js, name="telemeta-continents-js"),
# CSS+Images (FIXME: for developement only)
- url(r'css/(?P<path>.*)$', 'django.views.static.serve',
+ url(r'^css/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': htdocs+'/css'},
name="telemeta-css"),
- url(r'images/(?P<path>.*)$', 'django.views.static.serve',
+ url(r'^images/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': htdocs+'/images'},
name="telemeta-images"),
- url(r'js/(?P<path>.*)$', 'django.views.static.serve',
+ url(r'^js/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': htdocs+'/js'},
name="telemeta-js"),
- url(r'swf/(?P<path>.*)$', 'django.views.static.serve',
+ url(r'^swf/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': htdocs+'/swf'},
name="telemeta-swf"),
)