diff options
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', |