Annotation of documentViewer/zpt/viewer_text.zpt, revision 1.1.2.2

1.1.2.1   casties     1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                      2:     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
                      3: <html xmlns="http://www.w3.org/1999/xhtml"
1.1.2.2 ! casties     4:   tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode;
        !             5:               tocMode pageinfo/tocMode; viewType pageinfo/viewType; viewerUrl docinfo/viewerUrl;
        !             6:               numPages docinfo/numPages | nothing;">
1.1.2.1   casties     7: <head>
                      8:   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
                      9:   <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
                     10: </head>
1.1.2.2 ! casties    11: <body tal:condition="numPages">
        !            12:   <tal:block tal:define="docpath docinfo/textURLPath;
        !            13:               pn pageinfo/pn; 
        !            14:               flowLtr python:pageinfo.get('pageFlow','ltr')!='rtl';
        !            15:               prev python:test(pn>1,pn-1,None); next python:test(pn<numPages,pn+1,None);
        !            16:               first python:test(pn>1,1,None); last python:test(pn<numPages,numPages,None);
        !            17:               left python:test(flowLtr,prev,next); right python:test(flowLtr,next,prev);
        !            18:               leftest python:test(flowLtr,first,last); rightest python:test(flowLtr,last,first);
        !            19:               textPage python:here.getTextPage(mode=viewType, pn=pn, docinfo=docinfo, pageinfo=pageinfo);">
        !            20:   <div class="page_head" metal:use-macro="here/template/head_main/macros/main" />
        !            21:   <div class="page_body" tal:condition="python:here.isAccessible(docinfo)">
        !            22:     <!--table of contents-->
        !            23:     <div class="toc"
        !            24:       metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" />
        !            25:     <!-- text page -->
        !            26:     <div class="text">
        !            27:       <div class="ruler">
        !            28:         <form class="autosubmit pageruler" tal:attributes="action viewerUrl">
        !            29:           <input type="hidden" tal:define="params python:here.getParams('pn', None)"
        !            30:             tal:repeat="param params" tal:attributes="name param; value python:params[param]" />
        !            31:         page
        !            32:         <a tal:condition="leftest" tal:attributes="href python:here.getLink('pn',leftest)">|&lt;</a>
        !            33:         <span tal:condition="not:leftest">|&lt;</span>
        !            34:         <a tal:condition="left" tal:attributes="href python:here.getLink('pn',left)">&lt;</a>
        !            35:         <span tal:condition="not:left">&lt;</span>
        !            36:         <input class="autosubmit" size="3" type="text" name="pn" tal:attributes="value pn" /> 
        !            37:         <tal:block tal:define="originalPage pageinfo/pageNumberOrig | nothing"
        !            38:                tal:condition="python:originalPage!=None">
        !            39:           (<span tal:replace="originalPage"/><span tal:define="originalPageNorm pageinfo/pageNumberOrigNorm | nothing" tal:condition="python:originalPageNorm!=None">[<span tal:replace="originalPageNorm"/>]</span>)      
        !            40:         </tal:block>
        !            41:         <input type="submit" value="Go" />
        !            42:         of 
        !            43:         <span tal:replace="numPages"/>
        !            44:         <a tal:condition="right" tal:attributes="href python:here.getLink('pn',right)">&gt;</a>
        !            45:         <span tal:condition="not:right">&gt;</span>
        !            46:         <a tal:condition="rightest" tal:attributes="href python:here.getLink('pn',rightest)">&gt;|</a>
        !            47:         <span tal:condition="not:rightest">&gt;|</span>
        !            48:         </form>
        !            49:       </div>
        !            50:       <div class="page">
        !            51:         <div class="pageHeaderTitle" tal:condition="exists:pageinfo/pageHeaderTitle" tal:content="structure pageinfo/pageHeaderTitle"/>
        !            52:         <tal:block tal:replace="structure textPage"/>
        !            53:       </div>
        !            54:     </div>
        !            55:   </div>
        !            56:   <div class="page_body" tal:condition="python:not here.isAccessible(docinfo)">
        !            57:     <div class="errortext">Sorry, access to this document is restricted.</div>
        !            58:   </div>
        !            59:   </tal:block>
1.1.2.1   casties    60: </body>
1.1.2.2 ! casties    61: <body tal:condition="not:numPages">
        !            62:   <div class="errortext">Sorry, document doesn't exist.</div>
1.1.2.1   casties    63: </body>
                     64: </html>

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