From 14724835e271422f196d97b9a5a65346fbb02e94 Mon Sep 17 00:00:00 2001 From: Joey Hagedorn Date: Thu, 15 Jun 2006 15:43:07 +0000 Subject: Initial commit of Django based reporting subsystem. Only works with fake data so far... git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1883 ce84e21b-d406-0410-9b95-82705330c041 --- reports/brpt/urls.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 reports/brpt/urls.py (limited to 'reports/brpt/urls.py') diff --git a/reports/brpt/urls.py b/reports/brpt/urls.py new file mode 100644 index 000000000..3f284cc6c --- /dev/null +++ b/reports/brpt/urls.py @@ -0,0 +1,30 @@ +from django.conf.urls.defaults import * + +urlpatterns = patterns('', + # Example: + # (r'^brpt/', include('brpt.apps.foo.urls.foo')), + (r'^/*$','brpt.reports.views.index'), + (r'^clients/(?P\S+)/(?P\d+)/$', 'brpt.reports.views.client_detail'), + (r'^clients/(?P\S+)/$', 'brpt.reports.views.client_detail'), + (r'^clients/(?P\S+)$', 'brpt.reports.views.client_detail'), + #hack because hostnames have periods and we still want to append slash + (r'^clients/$','brpt.reports.views.client_index'), + + (r'^displays/sys-view/$','brpt.reports.views.display_sys_view'), + (r'^displays/summary/$','brpt.reports.views.display_summary'), + (r'^displays/timing/$','brpt.reports.views.display_timing'), + (r'^displays/$','brpt.reports.views.display_index'), + + # 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/'}), + + +) -- cgit v1.2.3-1-g7c22