Skip to content
Snippets Groups Projects
Unverified Commit 8774f440 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Remove deprecated views & clean-up code

parent c3fcaa9d
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*- import os
from django.conf import settings from django.conf import settings
from django.conf.urls import url from django.conf.urls import url
from django.views.decorators.cache import cache_page
from django.views.static import serve from django.views.static import serve
from .import views
import os
PROGRAM_SITE_MEDIA = os.path.join(os.path.dirname(__file__), '../site_media') PROGRAM_SITE_MEDIA = os.path.join(os.path.dirname(__file__), '../site_media')
urlpatterns = [
url(r'^calendar/?$', views.CalendarView.as_view()),
url(r'^today/?$', views.DayScheduleView.as_view()),
url(r'^week/?$', views.WeekScheduleView.as_view()),
url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/?$', views.DayScheduleView.as_view()),
url(r'^(?P<year>\d{4})/(?P<week>\d{1,2})/?$', views.WeekScheduleView.as_view()),
url(r'^current_box/?$', cache_page(60)(views.CurrentShowBoxView.as_view())),
url(r'^hosts/?$', views.HostListView.as_view()),
url(r'^hosts/(?P<pk>\d+)/?$', views.HostDetailView.as_view(), name='host-detail'),
url(r'^tips/?$', views.RecommendationsListView.as_view()),
url(r'^tips_box/?$', views.RecommendationsBoxView.as_view()),
url(r'^shows/?$', views.ShowListView.as_view()),
url(r'^shows/(?P<slug>[\w-]+)/?$', views.ShowDetailView.as_view(), name='show-detail'),
url(r'^(?P<pk>\d+)/?$', views.TimeSlotDetailView.as_view(), name='timeslot-detail'),
url(r'^styles.css$', views.StylesView.as_view())
]
if settings.DEBUG: if settings.DEBUG:
urlpatterns.append(url(r'^static/(?P<path>.*)$', serve, {'document_root': PROGRAM_SITE_MEDIA})) urlpatterns = [url(r'^static/(?P<path>.*)$', serve, {'document_root': PROGRAM_SITE_MEDIA})]
\ No newline at end of file else:
urlpatterns = []
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment