Mercurial > hg > documentViewer
annotate zpt/changeDocumentViewer.zpt @ 108:726a71254086
*** empty log message ***
author | abukhman |
---|---|
date | Fri, 21 May 2010 11:33:44 +0200 |
parents | a0fbc9a42be8 |
children | 17f0290b2327 |
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> | |
19 | 20 |
21 <p><input type="submit" value="change"></p> | |
22 </form> | |
23 | |
24 | 24 <div tal:replace="structure here/manage_page_footer">Footer</div> |