Diff for /documentViewer/zpt/Attic/viewer_text.zpt between versions 1.1.2.1 and 1.1.2.2

version 1.1.2.1, 2011/08/15 09:58:56 version 1.1.2.2, 2011/08/15 19:09:08
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; viewType pageinfo/viewType; viewerUrl docinfo/viewerUrl;
                 numPages docinfo/numPages | 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">
 </head>  </head>
 <body tal:condition="docinfo/numPages">  <body tal:condition="numPages">
 <div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>    <tal:block tal:define="docpath docinfo/textURLPath;
 <tal:block tal:condition="python:here.isAccessible(docinfo)">                pn pageinfo/pn; 
 <table border="0" width="100%" height="100%">                flowLtr python:pageinfo.get('pageFlow','ltr')!='rtl';
   <tr>                prev python:test(pn>1,pn-1,None); next python:test(pn<numPages,pn+1,None);
     <td width="300px" valign="top">                first python:test(pn>1,1,None); last python:test(pn<numPages,numPages,None);
       <tal:block tal:replace="structure python:getattr(here.template, 'toc_%s'%tocMode)(docinfo=docinfo,pageinfo=pageinfo)"/>                 left python:test(flowLtr,prev,next); right python:test(flowLtr,next,prev);
     </td>                leftest python:test(flowLtr,first,last); rightest python:test(flowLtr,last,first);
     <td width="100%" valign="top">                textPage python:here.getTextPage(mode=viewType, pn=pn, docinfo=docinfo, pageinfo=pageinfo);">
       <tal:block tal:content="structure python:getattr(here.template, 'page_main_%s'%viewMode)(docinfo=docinfo,pageinfo=pageinfo,mk=options['mk'])"/>    <div class="page_head" metal:use-macro="here/template/head_main/macros/main" />
     </td>    <div class="page_body" tal:condition="python:here.isAccessible(docinfo)">
   </tr>      <!--table of contents-->
 </table>      <div class="toc"
         metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" />
       <!-- text page -->
       <div class="text">
         <div class="ruler">
           <form class="autosubmit pageruler" tal:attributes="action viewerUrl">
             <input type="hidden" tal:define="params python:here.getParams('pn', None)"
               tal:repeat="param params" tal:attributes="name param; value python:params[param]" />
           page
           <a tal:condition="leftest" tal:attributes="href python:here.getLink('pn',leftest)">|&lt;</a>
           <span tal:condition="not:leftest">|&lt;</span>
           <a tal:condition="left" tal:attributes="href python:here.getLink('pn',left)">&lt;</a>
           <span tal:condition="not:left">&lt;</span>
           <input class="autosubmit" size="3" type="text" name="pn" tal:attributes="value pn" /> 
           <tal:block tal:define="originalPage pageinfo/pageNumberOrig | nothing"
                  tal:condition="python:originalPage!=None">
             (<span tal:replace="originalPage"/><span tal:define="originalPageNorm pageinfo/pageNumberOrigNorm | nothing" tal:condition="python:originalPageNorm!=None">[<span tal:replace="originalPageNorm"/>]</span>)      
 </tal:block>  </tal:block>
 <tal:block tal:condition="not:python:here.isAccessible(docinfo)">          <input type="submit" value="Go" />
           of 
           <span tal:replace="numPages"/>
           <a tal:condition="right" tal:attributes="href python:here.getLink('pn',right)">&gt;</a>
           <span tal:condition="not:right">&gt;</span>
           <a tal:condition="rightest" tal:attributes="href python:here.getLink('pn',rightest)">&gt;|</a>
           <span tal:condition="not:rightest">&gt;|</span>
           </form>
         </div>
         <div class="page">
           <div class="pageHeaderTitle" tal:condition="exists:pageinfo/pageHeaderTitle" tal:content="structure pageinfo/pageHeaderTitle"/>
           <tal:block tal:replace="structure textPage"/>
         </div>
       </div>
     </div>
     <div class="page_body" tal:condition="python:not here.isAccessible(docinfo)">
 <div class="errortext">Sorry, access to this document is restricted.</div>  <div class="errortext">Sorry, access to this document is restricted.</div>
     </div>
 </tal:block>  </tal:block>
 </body>  </body>
 <body tal:condition="not:docinfo/numPages">  <body tal:condition="not: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.1.2.1  
changed lines
  Added in v.1.1.2.2


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