diff options
author | Tim Laszlo <tim.laszlo@gmail.com> | 2010-10-18 11:11:18 -0500 |
---|---|---|
committer | Tim Laszlo <tim.laszlo@gmail.com> | 2010-10-18 11:35:09 -0500 |
commit | eda7e602795e6f3302529105a7c8be217acd907f (patch) | |
tree | 003c3bde44e2e7ab6a75537bbfa72386b883d038 /src/lib/Server/Reports/urls.py | |
parent | b056804f3d3e3a2d92dac42062527873255d14c7 (diff) | |
download | bcfg2-eda7e602795e6f3302529105a7c8be217acd907f.tar.gz bcfg2-eda7e602795e6f3302529105a7c8be217acd907f.tar.bz2 bcfg2-eda7e602795e6f3302529105a7c8be217acd907f.zip |
web_reports: remove web_prefix, add wsgi handler
Diffstat (limited to 'src/lib/Server/Reports/urls.py')
-rw-r--r-- | src/lib/Server/Reports/urls.py | 26 |
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/', +# }) +#) |