from django.conf.urls import url from c3nav.mapdata.views import history, tile, tile_access urlpatterns = [ url(r'^(?P\d+)/(?P\d+)/(?P-?\d+)/(?P-?\d+).(?Ppng|svg)$', tile, name='mapdata.tile'), url(r'^history/(?P\d+)/(?Pbase|render).(?Ppng|data)$', history, name='mapdata.history'), url(r'^tile_access$', tile_access, name='mapdata.tile_access'), ]