File: urls.py

package info (click to toggle)
gst-qa-system 0.0%2Bgit20110920.4750a8e8-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 980 kB
  • sloc: python: 8,498; xml: 855; makefile: 42
file content (15 lines) | stat: -rw-r--r-- 744 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.conf.urls.defaults import *

urlpatterns = patterns('web.insanityweb.views',
                       (r'^$', 'index'),
                       (r'^current/progress.json$', 'current_progress'),
                       (r'^current/stop/$', 'stop_current'),
                       (r'^current/$', 'current'),
                       (r'^testrun/(?P<testrun_id>\d+)/$', 'testrun_summary'),
                       (r'^test/(?P<test_id>\d+)/$', 'test_summary'),
                       (r'^matrix/(?P<testrun_id>\d+)/$', 'matrix_view'),
                       (r'^available_tests/$', 'available_tests')
#     (r'^(?P<poll_id>\d+)/$', 'detail'),
#     (r'^(?P<poll_id>\d+)/results/$', 'results'),
#     (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)