annotate zpt/viewer_main.zpt @ 89:3d95ba1bf535

first version with new full-text infrastructure and slightly changed templates
author casties
date Fri, 19 Mar 2010 12:42:40 +0100
parents 47d76f050883
children b8c491e52ebc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
89
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
3 <html xmlns="http://www.w3.org/1999/xhtml"
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
4 tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode options/viewMode">
24
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
5 <head>
89
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
7 <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
24
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
8 </head>
34
0ca99253b4ce version 0.2.3 - first version with access control!
casties
parents: 31
diff changeset
9 <body tal:condition="docinfo/numPages">
49
a10fff6199b0 verbesserung f?r text unterst?tzung, text kann jetzt aus url kommen, sprache bisher nur deutsch
dwinter
parents: 48
diff changeset
10 <div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>
36
0bf5aac0ff41 version 0.2.4
casties
parents: 34
diff changeset
11 <tal:block tal:condition="python:here.isAccessible(docinfo)">
24
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
12 <table border="0" width="100%" height="100%">
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
13 <tr>
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
14 <td width="300px" valign="top">
89
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
15 <tal:block tal:replace="structure python:here.template.thumbs_main(docinfo=docinfo,pageinfo=pageinfo)" />
24
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
16 </td>
27
3ce65220672c new, less preliminary version 0.2
casties
parents: 24
diff changeset
17 <td width="100%" valign="top">
89
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
18 <tal:block tal:condition="python:viewMode=='images'" tal:content="structure python:here.template.page_main_images(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=options['mk'])" />
3d95ba1bf535 first version with new full-text infrastructure and slightly changed templates
casties
parents: 76
diff changeset
19 <tal:block tal:condition="python:viewMode.startswith('text')" tal:content="structure python:here.template.page_main_text(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=options['mk'])" />
24
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
20 </td>
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
21 </tr>
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
22 </table>
34
0ca99253b4ce version 0.2.3 - first version with access control!
casties
parents: 31
diff changeset
23 </tal:block>
36
0bf5aac0ff41 version 0.2.4
casties
parents: 34
diff changeset
24 <tal:block tal:condition="not:python:here.isAccessible(docinfo)">
34
0ca99253b4ce version 0.2.3 - first version with access control!
casties
parents: 31
diff changeset
25 <div class="errortext">Sorry, access to this document is restricted.</div>
0ca99253b4ce version 0.2.3 - first version with access control!
casties
parents: 31
diff changeset
26 </tal:block>
24
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
27 </body>
34
0ca99253b4ce version 0.2.3 - first version with access control!
casties
parents: 31
diff changeset
28 <body tal:condition="not:docinfo/numPages">
31
c6451e8d5d23 more small fixes - now version 0.2.2
casties
parents: 27
diff changeset
29 <div class="errortext">Sorry, document doesn't exist.</div>
c6451e8d5d23 more small fixes - now version 0.2.2
casties
parents: 27
diff changeset
30 </body>
24
2204e028811b preliminary version 0.2
casties
parents:
diff changeset
31 </html>