1 | <div tal:replace="structure here/manage_page_header">Header</div> |
---|
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 --> |
---|
6 | <form action="changeDocumentViewer"> |
---|
7 | |
---|
8 | <p class="form-optional">Title</p> |
---|
9 | <p class="form-element"><input size="80" tal:attributes="value here/title" name="title"></p> |
---|
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> |
---|
11 | objects in the <tt>template</tt> folder.</p> |
---|
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> |
---|
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> |
---|
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> |
---|
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> |
---|
27 | |
---|
28 | <p><input type="submit" value="change"></p> |
---|
29 | </form> |
---|
30 | |
---|
31 | <div tal:replace="structure here/manage_page_footer">Footer</div> |
---|