Annotation of documentViewer/zpt/viewer_main.zpt, revision 1.12

1.11      casties     1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                      2:     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
                      3: <html xmlns="http://www.w3.org/1999/xhtml"
1.12    ! casties     4:  tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode; tocMode pageinfo/tocMode">
1.1       casties     5: <head>
1.11      casties     6:   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
                      7:   <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
1.1       casties     8: </head>
1.4       casties     9: <body tal:condition="docinfo/numPages">
1.8       dwinter    10: <div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>
1.5       casties    11: <tal:block tal:condition="python:here.isAccessible(docinfo)">
1.1       casties    12: <table border="0" width="100%" height="100%">
                     13:   <tr>
                     14:     <td width="300px" valign="top">
1.12    ! casties    15:       <tal:block tal:replace="structure python:getattr(here.template, 'toc_%s'%tocMode)(docinfo=docinfo,pageinfo=pageinfo)"/> 
1.1       casties    16:     </td>
1.2       casties    17:     <td width="100%" valign="top">
1.12    ! casties    18:       <tal:block tal:content="structure python:getattr(here.template, 'page_main_%s'%viewMode)(docinfo=docinfo,pageinfo=pageinfo,mk=options['mk'])"/>
1.1       casties    19:     </td>
                     20:   </tr>
                     21: </table>
1.4       casties    22: </tal:block>
1.5       casties    23: <tal:block tal:condition="not:python:here.isAccessible(docinfo)">
1.4       casties    24: <div class="errortext">Sorry, access to this document is restricted.</div>
                     25: </tal:block>
1.1       casties    26: </body>
1.4       casties    27: <body tal:condition="not:docinfo/numPages">
1.3       casties    28: <div class="errortext">Sorry, document doesn't exist.</div>
                     29: </body>
1.1       casties    30: </html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>