Diff for /documentViewer/zpt/viewer_main.zpt between versions 1.3 and 1.4

version 1.3, 2006/04/10 19:51:50 version 1.4, 2006/04/11 17:27:57
Line 1 Line 1
 <html>  <html tal:define="docinfo options/docinfo; pageinfo options/pageinfo">
 <head>  <head>
 <link rel="stylesheet" href="template/docuviewer_css" type="text/css">  <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
 </head>  </head>
 <body tal:define="docinfo options/docinfo; pageinfo options/pageinfo" tal:condition="docinfo/numPages">  <body tal:condition="docinfo/numPages">
 <div tal:replace="structure python:here.template.head_main(docinfo=docinfo)"/>  <div tal:replace="structure python:here.template.head_main(docinfo=docinfo)"/>
   <tal:block tal:condition="python:here.accessOK(docinfo)">
 <table border="0" width="100%" height="100%">  <table border="0" width="100%" height="100%">
   <tr>    <tr>
     <td width="300px" valign="top">      <td width="300px" valign="top">
Line 14 Line 15
     </td>      </td>
   </tr>    </tr>
 </table>  </table>
   </tal:block>
   <tal:block tal:condition="not:python:here.accessOK(docinfo)">
   <div class="errortext">Sorry, access to this document is restricted.</div>
   </tal:block>
 </body>  </body>
 <body tal:define="docinfo options/docinfo; pageinfo options/pageinfo" tal:condition="not:docinfo/numPages">  <body tal:condition="not:docinfo/numPages">
 <div class="errortext">Sorry, document doesn't exist.</div>  <div class="errortext">Sorry, document doesn't exist.</div>
 </body>  </body>
 </html>  </html>

Removed from v.1.3  
changed lines
  Added in v.1.4


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