fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Added DCMeta - EAV based application to represent document meta-data. Started to...
[redakcja.git]
/
apps
/
dvcs
/
urls.py
diff --git a/apps/dvcs/urls.py
b/apps/dvcs/urls.py
new file mode 100644
(file)
index 0000000..
d1e1e29
--- /dev/null
+++ b/
apps/dvcs/urls.py
@@ -0,0
+1,6
@@
+# -*- coding: utf-8
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('dvcs.views',
+ url(r'^data/(?P<document_id>[^/]+)/(?P<version>.*)$', 'document_data', name='storage_document_data'),
+)