Changeset 94:9d08a21fdd83 in documentViewer for zpt/viewer_main.zpt


Ignore:
Timestamp:
Apr 9, 2010, 6:33:53 PM (14 years ago)
Author:
casties
Branch:
default
Message:

more changed templates, now with metal:use-macro
zogilib mostly working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • zpt/viewer_main.zpt

    r91 r94  
    22    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    33<html xmlns="http://www.w3.org/1999/xhtml"
    4  tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode; tocMode pageinfo/tocMode">
     4 tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode; tocMode pageinfo/tocMode;
     5 body_onload nothing">
    56<head>
    67  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    78  <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
     9  <metal:block metal:use-macro="python:path('here/template/page_main_%s/macros/head'%viewMode)"/>
    810</head>
    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>
     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>
    2628</body>
    2729<body tal:condition="not:docinfo/numPages">
Note: See TracChangeset for help on using the changeset viewer.