Mercurial > hg > documentViewer
annotate zpt/viewer_main.zpt @ 327:1c4e63d22283
*** empty log message ***
author | abukhman |
---|---|
date | Fri, 15 Oct 2010 16:26:20 +0200 |
parents | 027134cca83e |
children |
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" |
122 | 4 tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode; tocMode pageinfo/tocMode"> |
24 | 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 | 8 </head> |
122 | 9 <body tal:condition="docinfo/numPages"> |
10 <div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/> | |
11 <tal:block tal:condition="python:here.isAccessible(docinfo)"> | |
12 <table border="0" width="100%" height="100%"> | |
13 <tr> | |
14 <td width="300px" valign="top"> | |
15 <tal:block tal:replace="structure python:getattr(here.template, 'toc_%s'%tocMode)(docinfo=docinfo,pageinfo=pageinfo)"/> | |
16 </td> | |
17 <td width="100%" valign="top"> | |
18 <tal:block tal:content="structure python:getattr(here.template, 'page_main_%s'%viewMode)(docinfo=docinfo,pageinfo=pageinfo,mk=options['mk'])"/> | |
19 </td> | |
20 </tr> | |
21 </table> | |
22 </tal:block> | |
23 <tal:block tal:condition="not:python:here.isAccessible(docinfo)"> | |
24 <div class="errortext">Sorry, access to this document is restricted.</div> | |
25 </tal:block> | |
24 | 26 </body> |
34 | 27 <body tal:condition="not:docinfo/numPages"> |
31 | 28 <div class="errortext">Sorry, document doesn't exist.</div> |
29 </body> | |
24 | 30 </html> |