summaryrefslogtreecommitdiff
path: root/ishtar/ishtar_base/urls.py
diff options
context:
space:
mode:
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
commit048ebf3266594c7360840272a7189dd4d34a1e6d (patch)
treedfe2afaaf33446b2e6493cbd5aa097e2a1e13153 /ishtar/ishtar_base/urls.py
parent07e343d4d40667b52977c30a17c17968cb5472ac (diff)
downloadIshtar-048ebf3266594c7360840272a7189dd4d34a1e6d.tar.bz2
Ishtar-048ebf3266594c7360840272a7189dd4d34a1e6d.zip
First version of the full export (closes #249)
Diffstat (limited to 'ishtar/ishtar_base/urls.py')
-rw-r--r--ishtar/ishtar_base/urls.py9
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',