Skip to content
Snippets Groups Projects
urls.py 1.78 KiB
#
# Copyright (c) 2014 NIBIO <http://www.nibio.no/>. 
# 
# This file is part of VIPSWeb.
# VIPSWeb is free software: you can redistribute it and/or modify
# it under the terms of the NIBIO Open Source License as published by 
# NIBIO, either version 1 of the License, or (at your option) any
# later version.
# 
# VIPSWeb is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# NIBIO Open Source License for more details.
#
# You should have received a copy of the NIBIO Open Source License
# along with VIPSWeb.  If not, see <http://www.nibio.no/licenses/>.
# 
from django.conf.urls import url
from django.views.decorators.cache import cache_page

from forecasts import views

urlpatterns = [
    # ex: /forecasts/                   
    url(r'^$', views.index, name='index'),
    # ex: /forecasts/5/
    #url(r'^(?P<forecast_id>\d+)/detail_highcharts_json/$', cache_page(60 * 15)(views.detail_highcharts_json), name='detail_highcharts_json'),
    url(r'^(?P<forecast_id>-?\d+)/detail_highcharts_json/$', views.detail_highcharts_json, name='detail_highcharts_json'),
    #url(r'^(?P<forecast_id>\d+)/$', cache_page(60 * 15)(views.detail), name='detail'),
    url(r'^(?P<forecast_id>-?\d+)/$', (views.detail), name='detail'),
    url(r'^(?P<forecast_id>-?\d+)/(?P<latest_days>\d+)/$', (views.detail_latest_days), name='detail_latest_days'),
    url(r'^models/test/$', views.models_detail_test, name='models_detail_test'),
    url(r'^models/(?P<model_id>\w+)/$', views.models_detail, name='models_detail'),
    url(r'^models/js/modelLocalNames.js', cache_page(60 * 30)(views.model_local_names_js), name='model_local_names_js'),
    url(r'^models/$', views.models_index, name='models_index'),
    
]