--- documentViewer/zpt/Attic/viewer_text.zpt 2011/08/15 09:58:56 1.1 +++ documentViewer/zpt/Attic/viewer_text.zpt 2011/08/17 15:00:31 1.1.2.4 @@ -0,0 +1,71 @@ + + + + + + <link rel="stylesheet" href="template/docuviewer_css" type="text/css"> +</head> +<body tal:condition="numPages"> + <tal:block tal:define="docpath docinfo/textURLPath; + pn pageinfo/pn; + flowLtr python:pageinfo.get('pageFlow','ltr')!='rtl'; + prev python:test(pn>1,pn-1,None); next python:test(pn<numPages,pn+1,None); + first python:test(pn>1,1,None); last python:test(pn<numPages,numPages,None); + left python:test(flowLtr,prev,next); right python:test(flowLtr,next,prev); + leftest python:test(flowLtr,first,last); rightest python:test(flowLtr,last,first); + 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_body" tal:condition="python:here.isAccessible(docinfo)"> + <!--table of contents--> + <div class="col_left" + metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" /> + <!-- text page --> + <div class="col_main"> + <div class="ruler"> + <form class="autosubmit" 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)">|<</a> + <span tal:condition="not:leftest">|<</span> + <a tal:condition="left" tal:attributes="href python:here.getLink('pn',left)"><</a> + <span tal:condition="not:left"><</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> + <input type="submit" value="Go" /> + of + <span tal:replace="numPages"/> + <a tal:condition="right" tal:attributes="href python:here.getLink('pn',right)">></a> + <span tal:condition="not:right">></span> + <a tal:condition="rightest" tal:attributes="href python:here.getLink('pn',rightest)">>|</a> + <span tal:condition="not:rightest">>|</span> + </form> + </div> <!-- ruler --> + <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"/> + <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> + </tal:block> +</body> +<body tal:condition="not:numPages"> + <div class="errortext">Sorry, document doesn't exist.</div> +</body> +</html>