Mercurial > hg > documentViewer
annotate zpt/changeDocumentViewer.zpt @ 619:79973dee60bd
revert layer_text_annotator to old version and fix layer_image_annotator for current version.
author | casties |
---|---|
date | Mon, 24 Nov 2014 14:40:00 +0100 |
parents | 3f375a048402 |
children |
rev | line source |
---|---|
24 | 1 <div tal:replace="structure here/manage_page_header">Header</div> |
45 | 2 <!-- ZOPE management tabs --> |
3 <h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing" | |
4 tal:replace="structure here/manage_tabs">Tabs</h2> | |
5 <!-- end of ZOPE management tabs --> | |
19 | 6 <form action="changeDocumentViewer"> |
7 | |
24 | 8 <p class="form-optional">Title</p> |
9 <p class="form-element"><input size="80" tal:attributes="value here/title" name="title"></p> | |
87
a0fbc9a42be8
first version with new full-text infrastructure and slightly changed templates
casties
parents:
67
diff
changeset
|
10 <p class="form-text">The image scaler URL and text server URL have to be configured in the <tt>zogilib</tt> and <tt>fulltextclient</tt> |
a0fbc9a42be8
first version with new full-text infrastructure and slightly changed templates
casties
parents:
67
diff
changeset
|
11 objects in the <tt>template</tt> folder.</p> |
25 | 12 <p class="form-optional">Thumbnail rows</p> |
13 <p class="form-element"><input size="3" tal:attributes="value here/thumbrows | default" name="thumbrows"></p> | |
14 <p class="form-optional">Thumbnail columns</p> | |
15 <p class="form-element"><input size="3" tal:attributes="value here/thumbcols | default" name="thumbcols"></p> | |
33 | 16 <p class="form-optional">Authorized groups</p> |
17 <p class="form-element"><input size="80" tal:attributes="value python:','.join(getattr(here,'authgroups', []))" name="authgroups"></p> | |
18 <p class="form-text">Access groups (separated by ',') that are considered local, i.e. when a ressource restricts access | |
19 to one of these groups, local access to the ressource is granted.</p> | |
526 | 20 <p class="form-optional">Available Layers</p> |
21 <p class="form-element"><input size="80" tal:attributes="value here/getAvailableLayersJson | nothing" name="availableLayers"></p> | |
22 <p class="form-text">List of available layers per view mode. JSON, one key per mode, null, or a list of layers per key. | |
23 Leave empty for autoconfiguration.</p> | |
477 | 24 <p class="form-optional">Digilib base URL</p> |
25 <p class="form-element"><input size="80" tal:attributes="value here/digilibBaseUrl | nothing" name="digilibBaseUrl"></p> | |
26 <p class="form-text">Leave empty for autoconfiguration.</p> | |
19 | 27 |
28 <p><input type="submit" value="change"></p> | |
29 </form> | |
30 | |
24 | 31 <div tal:replace="structure here/manage_page_footer">Footer</div> |