Diff for /documentViewer/zpt/viewer_main.zpt between versions 1.13 and 1.14

version 1.13, 2010/04/09 18:33:53 version 1.14, 2010/05/25 14:36:24
Line 1 Line 1
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"  <html xmlns="http://www.w3.org/1999/xhtml"
  tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode; tocMode pageinfo/tocMode;   tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode; tocMode pageinfo/tocMode">
  body_onload nothing">  
 <head>  <head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   <link rel="stylesheet" href="template/docuviewer_css" type="text/css">    <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
   <metal:block metal:use-macro="python:path('here/template/page_main_%s/macros/head'%viewMode)"/>  
 </head>  </head>
 <body tal:condition="docinfo/numPages" tal:attributes="onload body_onload">  <body tal:condition="docinfo/numPages">
   <metal:block metal:use-macro="here/template/head_main/macros/main"/>  <div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>
   <tal:block tal:condition="python:here.isAccessible(docinfo)">    <tal:block tal:condition="python:here.isAccessible(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">
         <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)"/>         <tal:block tal:replace="structure python:getattr(here.template, 'toc_%s'%tocMode)(docinfo=docinfo,pageinfo=pageinfo)"/> 
       </td>        </td>
       <td width="100%" valign="top">        <td width="100%" valign="top">
         <metal:block metal:use-macro="python:path('here/template/page_main_%s/macros/main'%viewMode)"/>        <tal:block tal:content="structure python:getattr(here.template, 'page_main_%s'%viewMode)(docinfo=docinfo,pageinfo=pageinfo,mk=options['mk'])"/>
       </td>        </td>
     </tr>      </tr>
   </table>    </table>

Removed from v.1.13  
changed lines
  Added in v.1.14


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