# -*- coding: utf-8 -*- from django.conf.urls.defaults import * urlpatterns = patterns('gheat.views', url( # Example : today/fire/12/3,2.png regex = r'^(?P\w+)/(?P\d+)/(?P\d+),(?P\d+).png$', view = 'serve_tile', name = 'serve_tile', ), )