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

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.13    ! casties     4:  tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode; tocMode pageinfo/tocMode;
        !             5:  body_onload nothing">
1.1       casties     6: <head>
1.11      casties     7:   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
                      8:   <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
1.13    ! casties     9:   <metal:block metal:use-macro="python:path('here/template/page_main_%s/macros/head'%viewMode)"/>
1.1       casties    10: </head>
1.13    ! casties    11: <body tal:condition="docinfo/numPages" tal:attributes="onload body_onload">
        !            12:   <metal:block metal:use-macro="here/template/head_main/macros/main"/>
        !            13:   <tal:block tal:condition="python:here.isAccessible(docinfo)">
        !            14:   <table border="0" width="100%" height="100%">
        !            15:     <tr>
        !            16:       <td width="300px" valign="top">
        !            17:         <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)"/> 
        !            18:       </td>
        !            19:       <td width="100%" valign="top">
        !            20:         <metal:block metal:use-macro="python:path('here/template/page_main_%s/macros/main'%viewMode)"/>
        !            21:       </td>
        !            22:     </tr>
        !            23:   </table>
        !            24:   </tal:block>
        !            25:   <tal:block tal:condition="not:python:here.isAccessible(docinfo)">
        !            26:     <div class="errortext">Sorry, access to this document is restricted.</div>
        !            27:   </tal:block>
1.1       casties    28: </body>
1.4       casties    29: <body tal:condition="not:docinfo/numPages">
1.3       casties    30: <div class="errortext">Sorry, document doesn't exist.</div>
                     31: </body>
1.1       casties    32: </html>

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