mirror of
https://github.com/correl/codereview.git
synced 2024-11-24 03:00:07 +00:00
7 lines
307 B
Python
7 lines
307 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^(?P<repository>.*?)/log/$', 'codereview.browser.views.log'),
|
|
(r'^(?P<repository>.*?)/log/(?P<path>.*?/?)$', 'codereview.browser.views.log'),
|
|
(r'^(?P<repository>.*?)/view/(?P<ref>.*?)/$', 'codereview.browser.views.view'),
|
|
)
|