Last change
on this file since 9393 was 9390, checked in by rick, 14 years ago |
Stop duplication the website directive, needed to be wlheatmap instead.
While we are here, get rid of the 'HomeView', as I think we do not need it.
|
File size:
644 bytes
|
Rev | Line | |
---|
[9139] | 1 | from django.conf.urls.defaults import *
|
---|
| 2 | from django.views.generic.simple import direct_to_template
|
---|
[9390] | 3 | #from django.views.generic.base import TemplateView
|
---|
[9139] | 4 | from django.conf import settings
|
---|
| 5 |
|
---|
[9390] | 6 | #class HomeView(TemplateView):
|
---|
| 7 | # template_name = 'home.html'
|
---|
| 8 | #
|
---|
| 9 | #urlpatterns = patterns('',
|
---|
| 10 | # ('^$', HomeView.as_view())
|
---|
| 11 | #)
|
---|
[9139] | 12 |
|
---|
[9390] | 13 | urlpatterns = patterns('wlheatmap',
|
---|
| 14 | url(r'^$', direct_to_template, {'template' : 'home.html'}),
|
---|
[9387] | 15 | url(r'^tile/(?P<zoom>\d+)/(?P<x>\d+),(?P<y>\d+).png$', 'tile.serve_tile'),
|
---|
| 16 | url(r'^nodelist/(?P<zoom>\d+),(?P<lat>[0-9.]+),(?P<lon>[0-9.]+)$', 'nodelist.serve_nodelist'),
|
---|
| 17 | url(r'^filters/$', 'filters.serve_filters'),
|
---|
| 18 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.