Mercurial > hg > documentViewer
view zpt/viewer_xml.zpt @ 515:0afba3afd538
more cleanup.
author | casties |
---|---|
date | Tue, 28 Feb 2012 21:22:52 +0100 |
parents | 92a6443a6f16 |
children | 0b8bed1223ad |
line wrap: on
line source
<!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 pageinfo/viewMode; tocMode pageinfo/tocMode; viewerUrl docinfo/viewerUrl; rootUrl here/getDocumentViewerURL; numPages docinfo/numPages | nothing;"> <head> <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" /> <script type="text/javascript" tal:attributes="src string:$rootUrl/template/jquery_js"></script> <script type="text/javascript"> // <!-- $(document).ready(function() { // autosubmit forms $('form.autosubmit').find('.autosubmit').change(function() { this.form.submit(); }); $('form.autosubmit input[type="submit"]').hide(); }); // --> </script> </head> <body tal:condition="numPages"> <tal:block tal:define="docpath docinfo/textURLPath; pn pageinfo/pn; flowLtr python:docinfo.get('pageFlow','ltr')!='rtl'; textPage python:here.getTextPage(mode='xml', pn=pn, docinfo=docinfo, pageinfo=pageinfo) or '[no text here]';"> <!-- header --> <div class="page-head"> <metal:block metal:use-macro="here/template/common_template/macros/head" /> </div> <div class="page-body" tal:condition="python:here.isAccessible(docinfo)"> <!--table of contents--> <div class="col toc"> <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" /> </div> <!-- text page --> <div class="col main"> <div class="ruler"> <metal:block metal:use-macro="here/template/common_template/macros/page_ruler" /> </div> <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> <!-- col-main --> <!-- right-side options --> <div class="col buttons"> <!--"BEGIN TEXT DISPLAY" --> <div class="options"> <h4>Text display</h4> <form tal:attributes="action viewerUrl" class="autosubmit"> <input type="hidden" tal:define="params python:here.getParams(params={'viewMode':None})" tal:repeat="param params" tal:attributes="name param; value python:params[param]" /> <ul> <li> <input class="autosubmit" type="radio" name="viewMode" value="text" tal:attributes="checked python:viewMode=='text'" /> Text </li> <li> <input type="radio" class="autosubmit" name="viewMode" value="text" tal:attributes="checked python:viewMode=='xml'" /> XML </li> </ul> <input type="submit" value="Go!" /> </form> </div> <!--"END TEXT DISPLAY"--> <!--"BEGIN TEXT SIZE"--> <div class="options"> <h4>Text size</h4> <ul class="fsizer"> <li> <a href="javascript:fontSize(12);" class="fs_sml">S</a> </li> <li> <a href="javascript:fontSize(14);" class="fs_med">M</a> </li> <li> <a href="javascript:fontSize(16);" class="fs_lrg">L</a> </li> </ul> </div> <!--"END TEXT SIZE"--> </div> <!-- /col-right --> </div> <!-- /page-body --> <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>