source: src/django_gheat/urls.py@ 11406

Last change on this file since 11406 was 11406, checked in by rick, 12 years ago

Re-install of heatmap on other server with Django 1.4

File size: 1.4 KB
RevLine 
[9139]1from django.conf.urls.defaults import *
2from django.contrib.staticfiles.urls import staticfiles_urlpatterns
[9397]3from django.views.decorators.cache import cache_page
4from django.views.generic.simple import redirect_to, direct_to_template
[9139]5
6# Uncomment the next two lines to enable the admin:
7from django.contrib import admin
[9388]8from django.conf import settings
[9139]9admin.autodiscover()
10
[9386]11
[9139]12urlpatterns = patterns('',
13 # Example:
[9397]14 (r'^robots.txt$', cache_page(60 * 15)(direct_to_template), {'template' : 'robots.txt', 'mimetype' : 'text/plain'}),
[9376]15 (r'^$', redirect_to, { 'url' : 'wlheatmap/', 'permanent' : False }),
16 (r'^wlheatmap/', include('wlheatmap.urls')),
[9139]17 (r'^gheat/', include('gheat.urls')),
18 (r'^admin/', include(admin.site.urls)),
[9749]19 (r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}),
20 (r'^accounts/logout/$', 'django.contrib.auth.views.logout', { 'template_name': 'logout.html'}),
[9139]21)
[9358]22
[11406]23if settings.DEBUG:
24 urlpatterns += patterns('wlheatmap.osm_proxy',
25 url(
26 # Example : today/fire/12/3,2.png
27 regex = r'^osm-tile-proxy/(?P<zoom>\d+)/(?P<x>\d+)[,/](?P<y>\d+).png$',
28 view = 'osm_proxy',
29 name = 'osm_proxy',
30 ),
31 )
[9358]32
[9386]33 urlpatterns += staticfiles_urlpatterns()
[9633]34 urlpatterns += patterns('',
35 url(r'^media/(?P<path>.*)$', 'django.views.static.serve', {
36 'document_root': settings.MEDIA_ROOT,
37 }))
Note: See TracBrowser for help on using the repository browser.