first batch of code

This commit is contained in:
2010-04-06 22:11:58 -07:00
parent 2336218982
commit 095ed3c3b9
31 changed files with 1106 additions and 0 deletions

View 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'),
)