~speakman/ppvalbok/trunk

1
2
3
4
5
6
7
8
9
10
11
from django.conf.urls.defaults import *
import views

urlpatterns = patterns('',
    url(r'^markers/by_municipality/([0-9a-z_-]+)/$', views.markers_by_municipality, name="markers-by-municipality"),
    url(r'^markers/by_station_id/(\d+)/$', views.markers_by_station_id, name="markers-by-station-id"),
    url(r'^markers/by_early_station_id/(\d+)/$', views.markers_by_early_station_id, name="markers-by-earlystation-id"),
    url(r'^markers/by_boundaries/$', views.markers_by_boundaries, name="markers-by-boundaries"),
    url(r'^markers/by_bounds/$', views.markers_by_bounds, name="markers-by-bounds"),
    url(r'^municipalities/by_county/([0-9a-z_-]+)/$', views.municipalities_by_county, name="municipalities-by-county"),
)