annotate zpt/changeDocumentViewer.zpt @ 526:3f375a048402

moved search and dict into separate layers. removed search_template. added tocMode=concordance. fixed bug with paging tocs.
author casties
date Tue, 10 Apr 2012 19:41:44 +0200
parents 17f0290b2327
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24
2204e028811b preliminary version 0.2
casties
parents: 19
diff changeset
1 <div tal:replace="structure here/manage_page_header">Header</div>
45
0391fe75aef3 fixed handling of documents with missing access tag
casties
parents: 33
diff changeset
2 <!-- ZOPE management tabs -->
0391fe75aef3 fixed handling of documents with missing access tag
casties
parents: 33
diff changeset
3 <h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing"
0391fe75aef3 fixed handling of documents with missing access tag
casties
parents: 33
diff changeset
4 tal:replace="structure here/manage_tabs">Tabs</h2>
0391fe75aef3 fixed handling of documents with missing access tag
casties
parents: 33
diff changeset
5 <!-- end of ZOPE management tabs -->
19
dwinter
parents:
diff changeset
6 <form action="changeDocumentViewer">
dwinter
parents:
diff changeset
7
24
2204e028811b preliminary version 0.2
casties
parents: 19
diff changeset
8 <p class="form-optional">Title</p>
2204e028811b preliminary version 0.2
casties
parents: 19
diff changeset
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
e93fb8cadd3a new, less preliminary version 0.2
casties
parents: 24
diff changeset
12 <p class="form-optional">Thumbnail rows</p>
e93fb8cadd3a new, less preliminary version 0.2
casties
parents: 24
diff changeset
13 <p class="form-element"><input size="3" tal:attributes="value here/thumbrows | default" name="thumbrows"></p>
e93fb8cadd3a new, less preliminary version 0.2
casties
parents: 24
diff changeset
14 <p class="form-optional">Thumbnail columns</p>
e93fb8cadd3a new, less preliminary version 0.2
casties
parents: 24
diff changeset
15 <p class="form-element"><input size="3" tal:attributes="value here/thumbcols | default" name="thumbcols"></p>
33
b3fe3a50f605 version 0.2.3 - first version with access control!
casties
parents: 25
diff changeset
16 <p class="form-optional">Authorized groups</p>
b3fe3a50f605 version 0.2.3 - first version with access control!
casties
parents: 25
diff changeset
17 <p class="form-element"><input size="80" tal:attributes="value python:','.join(getattr(here,'authgroups', []))" name="authgroups"></p>
b3fe3a50f605 version 0.2.3 - first version with access control!
casties
parents: 25
diff changeset
18 <p class="form-text">Access groups (separated by ',') that are considered local, i.e. when a ressource restricts access
b3fe3a50f605 version 0.2.3 - first version with access control!
casties
parents: 25
diff changeset
19 to one of these groups, local access to the ressource is granted.</p>
526
3f375a048402 moved search and dict into separate layers.
casties
parents: 477
diff changeset
20 <p class="form-optional">Available Layers</p>
3f375a048402 moved search and dict into separate layers.
casties
parents: 477
diff changeset
21 <p class="form-element"><input size="80" tal:attributes="value here/getAvailableLayersJson | nothing" name="availableLayers"></p>
3f375a048402 moved search and dict into separate layers.
casties
parents: 477
diff changeset
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.
3f375a048402 moved search and dict into separate layers.
casties
parents: 477
diff changeset
23 Leave empty for autoconfiguration.</p>
477
17f0290b2327 small fixes.
casties
parents: 87
diff changeset
24 <p class="form-optional">Digilib base URL</p>
17f0290b2327 small fixes.
casties
parents: 87
diff changeset
25 <p class="form-element"><input size="80" tal:attributes="value here/digilibBaseUrl | nothing" name="digilibBaseUrl"></p>
17f0290b2327 small fixes.
casties
parents: 87
diff changeset
26 <p class="form-text">Leave empty for autoconfiguration.</p>
19
dwinter
parents:
diff changeset
27
dwinter
parents:
diff changeset
28 <p><input type="submit" value="change"></p>
dwinter
parents:
diff changeset
29 </form>
dwinter
parents:
diff changeset
30
24
2204e028811b preliminary version 0.2
casties
parents: 19
diff changeset
31 <div tal:replace="structure here/manage_page_footer">Footer</div>