From d50d344dfe0d994ff0ca2a58226aabccbb0eaeb6 Mon Sep 17 00:00:00 2001
From: Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com>
Date: Sun, 3 Jul 2011 11:23:14 +0200
Subject: [PATCH] site_media is served by Apache.

---
 program/urls.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/program/urls.py b/program/urls.py
index 60d81a7f..7176382a 100644
--- a/program/urls.py
+++ b/program/urls.py
@@ -5,9 +5,6 @@ from django.views.generic.list_detail import object_detail, object_list
 from models import Host, Show, TimeSlot
 from views import current_show, day_schedule, recommendations, show_list, week_schedule
 
-import os
-PROGRAM_STATIC_DIR = os.path.join(os.path.dirname(__file__), '../site_media')
-
 hosts_dict = {
     'queryset': Host.objects.all(),
     'template_object_name': 'host'
@@ -35,5 +32,4 @@ urlpatterns = patterns('',
     url(r'^shows/(?P<slug>[\w-]+)/?$', object_detail, shows_dict, name='show-detail'),
     url(r'^(?P<object_id>\d+)/?$', object_detail, timeslots_dict, name='timeslot-detail'),
     url(r'^week/?$', week_schedule),
-    url(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': PROGRAM_STATIC_DIR}),
 )
-- 
GitLab