summaryrefslogtreecommitdiffstats
path: root/reports
diff options
context:
space:
mode:
authorJoey Hagedorn <hagedorn@mcs.anl.gov>2006-08-02 19:27:25 +0000
committerJoey Hagedorn <hagedorn@mcs.anl.gov>2006-08-02 19:27:25 +0000
commit10b489ff62f00356a49dea6978c48354c0cf2ffc (patch)
tree38690a88b2c42f3043e47f260033b609a860db89 /reports
parent4be84e09c3740616b8d11bdfab266ada37cbe215 (diff)
downloadbcfg2-10b489ff62f00356a49dea6978c48354c0cf2ffc.tar.gz
bcfg2-10b489ff62f00356a49dea6978c48354c0cf2ffc.tar.bz2
bcfg2-10b489ff62f00356a49dea6978c48354c0cf2ffc.zip
New Reports: Changes default for mod_python/apache production environment serving static media
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2027 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'reports')
-rw-r--r--reports/brpt/urls.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/reports/brpt/urls.py b/reports/brpt/urls.py
index 982505273..35b81a468 100644
--- a/reports/brpt/urls.py
+++ b/reports/brpt/urls.py
@@ -17,7 +17,6 @@ urlpatterns = patterns('',
(r'^displays/timing/$','brpt.reports.views.display_timing'),
(r'^displays/$','brpt.reports.views.display_index'),
-
(r'^elements/modified/(?P<eyedee>\d+)/(?P<timestamp>(19|20)\d\d-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])@([01][0-9]|2[0-3]):([0-5][0-9]|60):([0-5][0-9]|60))/$','brpt.reports.views.config_item_modified'),
(r'^elements/modified/(?P<eyedee>\d+)/$','brpt.reports.views.config_item_modified'),
(r'^elements/bad/(?P<eyedee>\d+)/(?P<timestamp>(19|20)\d\d-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])@([01][0-9]|2[0-3]):([0-5][0-9]|60):([0-5][0-9]|60))/$','brpt.reports.views.config_item_bad'),
@@ -26,13 +25,4 @@ urlpatterns = patterns('',
# Uncomment this for admin:
#(r'^admin/', include('django.contrib.admin.urls')),
-
-
-
- #Remove this when not doing DEVELOPMENT
- #and i quote:
- #Using this method is inefficient and insecure. Do not use this in a production setting. Use this only for development.
- (r'^site_media/(.*)$', 'django.views.static.serve', {'document_root': '/Users/joey/anl-mcs/dev/bcfg2/reports/site_media/'}),
-
-
)