first batch of code
This commit is contained in:
18
unittest-logs/unittestweb/urls.py~
Executable file
18
unittest-logs/unittestweb/urls.py~
Executable file
@@ -0,0 +1,18 @@
|
||||
from django.conf.urls.defaults import *
|
||||
|
||||
# Uncomment the next two lines to enable the admin:
|
||||
# from django.contrib import admin
|
||||
# admin.autodiscover()
|
||||
|
||||
urlpatterns = patterns('unittestweb.viewer.views',
|
||||
(r'^$', 'index'),
|
||||
(r'^/$', 'index'),
|
||||
(r'^trees$', 'trees'),
|
||||
(r'^trees/(?P<tree>.+)$', 'tree'),
|
||||
(r'^changesets$', 'changesets'),
|
||||
(r'^changesets/(?P<changeset>[a-f0-9]+)$', 'changeset'),
|
||||
(r'^tests$', 'tests'),
|
||||
(r'^test$', 'test'),
|
||||
(r'^timeline$', 'timeline'),
|
||||
(r'^topfails$', 'topfails'),
|
||||
)
|
||||
Reference in New Issue
Block a user