summaryrefslogtreecommitdiffstats
path: root/reports/brpt/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'reports/brpt/urls.py')
-rw-r--r--reports/brpt/urls.py30
1 files changed, 30 insertions, 0 deletions
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<hostname>\S+)/(?P<pk>\d+)/$', 'brpt.reports.views.client_detail'),
+ (r'^clients/(?P<hostname>\S+)/$', 'brpt.reports.views.client_detail'),
+ (r'^clients/(?P<hostname>\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/'}),
+
+
+)