diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-07-11 03:03:01 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-07-11 03:03:01 +0200 |
commit | 72f770aa1ef7d9e1945903cf5f8c6c58f57f2232 (patch) | |
tree | dfe2afaaf33446b2e6493cbd5aa097e2a1e13153 /ishtar/ishtar_base/urls.py | |
parent | 715f37eb9f620e96e7639d324454fcd586a2e59d (diff) | |
download | Ishtar-72f770aa1ef7d9e1945903cf5f8c6c58f57f2232.tar.bz2 Ishtar-72f770aa1ef7d9e1945903cf5f8c6c58f57f2232.zip |
First version of the full export (closes #249)
Diffstat (limited to 'ishtar/ishtar_base/urls.py')
-rw-r--r-- | ishtar/ishtar_base/urls.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ishtar/ishtar_base/urls.py b/ishtar/ishtar_base/urls.py index 3c5351c57..d41027369 100644 --- a/ishtar/ishtar_base/urls.py +++ b/ishtar/ishtar_base/urls.py @@ -160,6 +160,8 @@ urlpatterns += patterns('ishtar.ishtar_base.views', name='autocomplete-file'), url(BASE_URL + r'get-file/(?P<type>.+)?$', 'get_file', name='get-file'), + url(BASE_URL + r'get-file-full/(?P<type>.+)?$', 'get_file', + name='get-file-full', kwargs={'full':True}), url(BASE_URL + r'get-administrativeactfile/(?P<type>.+)?$', 'get_administrativeactfile', name='get-administrativeactfile'), url(BASE_URL + r'show-file/(?P<pk>.+)?/(?P<type>.+)?$', 'show_file', @@ -173,6 +175,8 @@ urlpatterns += patterns('ishtar.ishtar_base.views', name='autocomplete-operation'), url(BASE_URL + r'get-operation/(?P<type>.+)?$', 'get_operation', name='get-operation'), + url(BASE_URL + r'get-operation-full/(?P<type>.+)?$', 'get_operation', + name='get-operation-full', kwargs={'full':True}), url(BASE_URL + r'revert-operation/(?P<pk>.+)/(?P<date>.+)$', 'revert_operation', name='revert-operation'), url(BASE_URL + r'show-operation/(?P<pk>.+)?/(?P<type>.+)?$', @@ -186,6 +190,9 @@ urlpatterns += patterns('ishtar.ishtar_base.views', 'show_contextrecord', name='show-contextrecord'), url(BASE_URL + r'get-contextrecord/(?P<type>.+)?$', 'get_contextrecord', name='get-contextrecord'), + url(BASE_URL + r'get-contextrecord-full/(?P<type>.+)?$', + 'get_contextrecord', name='get-contextrecord-full', + kwargs={'full':True}), url(BASE_URL + r'get-contexrecordsource/(?P<type>.+)?$', 'get_contextrecordsource', name='get-contextrecordsource'), # Finds @@ -193,6 +200,8 @@ urlpatterns += patterns('ishtar.ishtar_base.views', name='update-current-item'), url(BASE_URL + r'get-item/(?P<type>.+)?$', 'get_archaeologicalitem', name='get-item'), + url(BASE_URL + r'get-item-full/(?P<type>.+)?$', 'get_archaeologicalitem', + name='get-item-full', kwargs={'full':True}), url(BASE_URL + r'get-itemsource/(?P<type>.+)?$', 'get_itemsource', name='get-itemsource'), url(BASE_URL + r'get-container/$', 'get_container', |