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

version 1.1.2.2, 2011/08/15 19:09:08 version 1.1.2.6, 2011/08/25 15:05:22
Line 6 Line 6
               numPages docinfo/numPages | nothing;">                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">
     <title tal:content="python:docinfo.get('creator',' ') + ' - ' + docinfo.get('title',' ')"/>
   <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="numPages">  <body tal:condition="numPages">
Line 17 Line 18
               left python:test(flowLtr,prev,next); right python:test(flowLtr,next,prev);                left python:test(flowLtr,prev,next); right python:test(flowLtr,next,prev);
               leftest python:test(flowLtr,first,last); rightest python:test(flowLtr,last,first);                leftest python:test(flowLtr,first,last); rightest python:test(flowLtr,last,first);
               textPage python:here.getTextPage(mode=viewType, pn=pn, docinfo=docinfo, pageinfo=pageinfo);">                textPage python:here.getTextPage(mode=viewType, pn=pn, docinfo=docinfo, pageinfo=pageinfo);">
   <div class="page_head" metal:use-macro="here/template/head_main/macros/main" />    <div class="page-head" metal:use-macro="here/template/head_main/macros/main" />
   <div class="page_body" tal:condition="python:here.isAccessible(docinfo)">    <div class="page-body" tal:condition="python:here.isAccessible(docinfo)">
     <!--table of contents-->      <!--table of contents-->
     <div class="toc"      <div class="col-left">
       metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" />        <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" />
       </div>
   
     <!-- text page -->      <!-- text page -->
     <div class="text">      <div class="col-main">
       <div class="ruler">        <div class="ruler">
         <form class="autosubmit pageruler" tal:attributes="action viewerUrl">          <form class="autosubmit" tal:attributes="action viewerUrl">
           <input type="hidden" tal:define="params python:here.getParams('pn', None)"            <input type="hidden" tal:define="params python:here.getParams('pn', None)"
             tal:repeat="param params" tal:attributes="name param; value python:params[param]" />              tal:repeat="param params" tal:attributes="name param; value python:params[param]" />
         page          page
Line 46 Line 49
         <a tal:condition="rightest" tal:attributes="href python:here.getLink('pn',rightest)">&gt;|</a>          <a tal:condition="rightest" tal:attributes="href python:here.getLink('pn',rightest)">&gt;|</a>
         <span tal:condition="not:rightest">&gt;|</span>          <span tal:condition="not:rightest">&gt;|</span>
         </form>          </form>
       </div>        </div> <!-- ruler -->
       <div class="page">        <ul class="switcher">
           <li>
               <a tal:attributes="href python:here.getLink('viewMode','images')">Image</a>
           </li>
           <li class="sel">Text</li>
         </ul>
         <div class="content">
         <div class="pageHeaderTitle" tal:condition="exists:pageinfo/pageHeaderTitle" tal:content="structure pageinfo/pageHeaderTitle"/>          <div class="pageHeaderTitle" tal:condition="exists:pageinfo/pageHeaderTitle" tal:content="structure pageinfo/pageHeaderTitle"/>
         <tal:block tal:replace="structure textPage"/>          <tal:block tal:replace="structure textPage"/>
       </div>        </div>
       </div> <!-- col-main -->
       
       <!-- right-side options -->
       <div class="col-right">
           <!--"BEGIN TEXT DISPLAY"  -->
           <div class="options">
           <h3>Text display</h3>
           <form tal:attributes="action viewerUrl" class="autosubmit">
                 <input type="hidden" tal:define="params python:here.getParams(params={'viewType':None})" tal:repeat="param params" tal:attributes="name param; value python:params[param]"/>
             <input class="autosubmit" type="radio" name="viewType" value="" tal:attributes="checked python:viewType!='xml'"/> Text<br/>
                 <span class="optionsText" tal:condition="python:viewType!='xml'">
                   &nbsp;&nbsp;<input type="checkbox" class="autosubmit" name="viewType" value="dict" tal:attributes="checked python:viewType=='dict'"/> Dictionary<br/>
                 </span>
                 <span class="optionsText" tal:condition="python:viewType!='xml' and docinfo.get('numPlaces',0)">
                   &nbsp;&nbsp;<input type="checkbox" class="autosubmit" name="viewType" value="gis" tal:attributes="checked python:viewType=='gis'"/> Places<br/>
                 </span> <input type="radio" class="autosubmit" name="viewType" tal:attributes="value string:xml; checked python:viewType=='xml'"/> XML<br/>
                 <input type="submit" value="Go!"/>
           </form>
         </div>
         <!--"END TEXT DISPLAY"-->
         
         <!--"BEGIN TEXT SIZE"-->
         <div class="options">
           <h4>Text size</h4>
           <div class="fsizer">
             &nbsp;
             <a href="javascript:fontSize(12);" class="fs_sml">A</a>
             <a href="javascript:fontSize(14);" class="fs_med">A</a>
             <a href="javascript:fontSize(16);" class="fs_lrg">A</a>
           </div>
     </div>      </div>
         <!--"END TEXT SIZE"-->    
         
         <!--"BEGIN DICTIONARY OVERVIEW"-->
         <div class="options" tal:condition="python:viewType=='dict'">
           <h4>Dictionary view</h4>
           <form name="f3" action="">
             <input type="radio" name="r3"/>Tab<br/>
             <input type="radio" name="r3"/>Window<br/>
           </form>
         </div>
         <!--"END DICTIONARY OVERVIEW"-->
         
         <!--"BEGIN TEXT NORMALIZATION"-->
         <div class="options" tal:condition="python:viewType!='xml'">
           <h4>Text normalization</h4>
           <form tal:attributes="action viewerUrl" class="autosubmit" 
                     tal:define="norm python:pageinfo.get('characterNormalization','regPlusNorm');">
                 <input type="hidden" tal:define="params python:here.getParams('characterNormalization',None)" tal:repeat="param params" tal:attributes="name param; value python:params[param]"/>
             <input type="radio" class="autosubmit" name="characterNormalization" value="orig" tal:attributes="checked python:norm=='orig'"/> Original<br/>
             <input type="radio" class="autosubmit" name="characterNormalization" value="reg" tal:attributes="checked python:norm=='reg'"/> Regularized<br/>
             <input type="radio" class="autosubmit" name="characterNormalization" value="regPlusNorm" tal:attributes="checked python:norm=='regPlusNorm'"/> Normalized<br/>
                 <input type="submit" value="Go!"/>
           </form>
         </div>
            <!--"END TEXT NORMALIZATION"-->
             
             <!--"BEGIN PLACES"-->
             <div class="options" tal:condition="python:viewType=='gis'">  
               <tal:block tal:define="gisPlaces python:here.getGisPlaces(docinfo=docinfo, pageinfo=pageinfo); gisAllPlaces python:here.getAllGisPlaces(docinfo=docinfo, pageinfo=pageinfo);">
                 <span><b>Places</b></span><BR/>(Link to extern:)<BR/>
                 <span>Page</span>
             <span style="float:right">
           <a tal:attributes="href python:'http://chinagis.mpiwg-berlin.mpg.de/chinagis/REST/db/mpdl/%s?id=%s&format=%s'%(name,gisPlaces,'gis')" target="_blank">
             <img src="images/arrow.png" alt=""/>
           </a>
             </span><BR/>
                 <span>Book</span>
                 <span style="float:right">
               <a tal:attributes="href python:'http://chinagis.mpiwg-berlin.mpg.de/chinagis/REST/db/mpdl/%s?format=%s'%(name,'gis')" target="_blank">
             <img src="images/arrow.png" alt=""/>
               </a>
             </span><BR/>
             </tal:block>
   </div>    </div>
             <!--"END PLACES"-->   
       </div> <!-- col-right -->
       
     </div> <!-- page-body -->
   <div class="page_body" tal:condition="python:not here.isAccessible(docinfo)">    <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>    </div>

Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.6


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