Diff for /documentViewer/zpt/viewer_main.zpt between versions 1.10 and 1.11

version 1.10, 2008/11/04 22:03:56 version 1.11, 2010/03/19 11:42:40
Line 1 Line 1
 <html tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode options/viewMode">  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
   <html xmlns="http://www.w3.org/1999/xhtml"
    tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode options/viewMode">
 <head>  <head>
 <link rel="stylesheet" href="template/docuviewer_css" type="text/css">  
 <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">
 </head>  </head>
 <body tal:condition="docinfo/numPages">  <body tal:condition="docinfo/numPages">
 <div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>  <div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>
Line 9 Line 12
 <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">
         <tal:block replace="structure python:here.template.thumbs_main(docinfo=docinfo,pageinfo=pageinfo)" />         <tal:block tal:replace="structure python:here.template.thumbs_main(docinfo=docinfo,pageinfo=pageinfo)" /> 
     </td>      </td>
     <td width="100%" valign="top">      <td width="100%" valign="top">
       <tal:block tal:content="structure python:here.template.image_main(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=options['mk'])" />        <tal:block tal:condition="python:viewMode=='images'" tal:content="structure python:here.template.page_main_images(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=options['mk'])" />
         <tal:block tal:condition="python:viewMode.startswith('text')" tal:content="structure python:here.template.page_main_text(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=options['mk'])" />
     </td>      </td>
   </tr>    </tr>
 </table>  </table>

Removed from v.1.10  
changed lines
  Added in v.1.11


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