summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Reports/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Reports/urls.py')
-rw-r--r--src/lib/Server/Reports/urls.py26
1 files changed, 9 insertions, 17 deletions
diff --git a/src/lib/Server/Reports/urls.py b/src/lib/Server/Reports/urls.py
index 5d298c974..85bad72fb 100644
--- a/src/lib/Server/Reports/urls.py
+++ b/src/lib/Server/Reports/urls.py
@@ -3,24 +3,16 @@ from django.http import HttpResponsePermanentRedirect
handler500 = 'Bcfg2.Server.Reports.reports.views.server_error'
-from ConfigParser import ConfigParser, NoSectionError, NoOptionError
-c = ConfigParser()
-c.read(['/etc/bcfg2.conf', '/etc/bcfg2-web.conf'])
-
-# web_prefix should have a trailing slash, but no leading slash
-# e.g. web_prefix = bcfg2/
-# web_prefix_root is a workaround for the index
-if c.has_option('statistics', 'web_prefix'):
- web_prefix = c.get('statistics', 'web_prefix').lstrip('/')
-else:
- web_prefix = ''
+#from ConfigParser import ConfigParser, NoSectionError, NoOptionError
+#c = ConfigParser()
+#c.read(['/etc/bcfg2.conf', '/etc/bcfg2-web.conf'])
urlpatterns = patterns('',
- (r'^%s' % web_prefix, include('Bcfg2.Server.Reports.reports.urls'))
+ (r'^', include('Bcfg2.Server.Reports.reports.urls'))
)
-urlpatterns += patterns("django.views",
- url(r"media/(?P<path>.*)$", "static.serve", {
- "document_root": '/Users/tlaszlo/svn/bcfg2/reports/site_media/',
- })
-)
+#urlpatterns += patterns("django.views",
+# url(r"media/(?P<path>.*)$", "static.serve", {
+# "document_root": '/Users/tlaszlo/svn/bcfg2/reports/site_media/',
+# })
+#)