source: documentViewer/zpt/viewer_xml.zpt @ 510:4fb35343d2e7

elementtree
Last change on this file since 510:4fb35343d2e7 was 504:454a42f4c369, checked in by casties, 12 years ago

viewer_xml works now.

File size: 5.4 KB
Line 
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"
4  tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode pageinfo/viewMode;
5              tocMode pageinfo/tocMode; viewerUrl docinfo/viewerUrl;
6              rootUrl here/getDocumentViewerURL;
7              numPages docinfo/numPages | nothing;">
8<head>
9<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10  <title
11    tal:content="python:docinfo.get('creator',' ') + ' - ' + docinfo.get('title',' ')" />
12  <link rel="stylesheet" href="template/docuviewer_css" type="text/css" />
13  <script type="text/javascript" tal:attributes="src string:$rootUrl/template/jquery_js"></script>
14  <script type="text/javascript">
15            // <!--
16            $(document).ready(function() {
17                // autosubmit forms
18                $('form.autosubmit').find('.autosubmit').change(function() {
19                    this.form.submit();
20                });
21                $('form.autosubmit input[type="submit"]').hide();
22            });
23        // -->
24        </script>
25</head>
26<body tal:condition="numPages">
27  <tal:block
28    tal:define="docpath docinfo/textURLPath;
29                               pn pageinfo/pn;
30                               flowLtr python:pageinfo.get('pageFlow','ltr')!='rtl';
31                               textPage python:here.getTextPage(mode='xml', pn=pn, docinfo=docinfo, pageinfo=pageinfo) or '[no text here]';">
32    <!-- header -->
33    <div class="page-head">
34      <metal:block metal:use-macro="here/template/common_template/macros/head" />
35    </div>
36    <div class="page-body" tal:condition="python:here.isAccessible(docinfo)">
37      <!--table of contents-->
38      <div class="col-left">
39        <metal:block
40          metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" />
41      </div>
42
43      <!-- text page -->
44      <div class="col-main">
45        <div class="ruler">
46          <metal:block metal:use-macro="here/template/common_template/macros/page_ruler" />
47        </div>
48        <ul class="switcher">
49          <li>
50            <a tal:attributes="href python:here.getLink('viewMode','images')">Image</a>
51          </li>
52          <li class="sel">Text</li>
53        </ul>
54        <div class="content">
55          <div class="pageHeaderTitle" tal:condition="exists:pageinfo/pageHeaderTitle"
56            tal:content="structure pageinfo/pageHeaderTitle" />
57          <tal:block tal:replace="structure textPage" />
58        </div>
59      </div>
60      <!-- col-main -->
61
62      <!-- right-side options -->
63      <div class="col-right">
64        <!--"BEGIN TEXT DISPLAY"  -->
65        <div class="options">
66          <h4>Text display</h4>
67          <form tal:attributes="action viewerUrl" class="autosubmit">
68            <input type="hidden"
69              tal:define="params python:here.getParams(params={'viewMode':None})"
70              tal:repeat="param params"
71              tal:attributes="name param; value python:params[param]" />
72            <input class="autosubmit" type="radio" name="viewMode" value="text"
73              tal:attributes="checked python:viewMode=='text'" /> Text<br />
74            <input type="radio" class="autosubmit" name="viewMode" value="text"
75              tal:attributes="checked python:viewMode=='xml'" /> XML<br />
76            <input type="submit" value="Go!" />
77          </form>
78        </div>
79        <!--"END TEXT DISPLAY"-->
80
81        <!--"BEGIN TEXT SIZE"-->
82        <div class="options">
83          <h4>Text size</h4>
84          <div class="fsizer">
85            &nbsp; <a href="javascript:fontSize(12);" class="fs_sml">S</a> <a
86              href="javascript:fontSize(14);" class="fs_med">M</a> <a
87              href="javascript:fontSize(16);" class="fs_lrg">L</a>
88          </div>
89        </div>
90        <!--"END TEXT SIZE"-->
91
92        <!--"BEGIN TEXT NORMALIZATION"-->
93        <div class="options" tal:condition="python:viewMode!='xml'">
94          <h4>Text normalization</h4>
95          <form tal:attributes="action viewerUrl" class="autosubmit"
96            tal:define="norm python:pageinfo.get('characterNormalization','regPlusNorm');">
97            <input type="hidden"
98              tal:define="params python:here.getParams('characterNormalization',None)"
99              tal:repeat="param params"
100              tal:attributes="name param; value python:params[param]" /> <input
101              type="radio" class="autosubmit" name="characterNormalization" value="orig"
102              tal:attributes="checked python:norm=='orig'" /> Original<br /> <input
103              type="radio" class="autosubmit" name="characterNormalization" value="reg"
104              tal:attributes="checked python:norm=='reg'" /> Regularized<br /> <input
105              type="radio" class="autosubmit" name="characterNormalization"
106              value="regPlusNorm" tal:attributes="checked python:norm=='regPlusNorm'" />
107            Normalized<br /> <input type="submit" value="Go!" />
108          </form>
109        </div>
110        <!--"END TEXT NORMALIZATION"-->
111
112      </div>
113      <!-- /col-right -->
114
115    </div>
116    <!-- /page-body -->
117
118    <div class="page-body" tal:condition="python:not here.isAccessible(docinfo)">
119      <div class="errortext">Sorry, access to this document is restricted.</div>
120    </div>
121
122  </tal:block>
123</body>
124<body tal:condition="not:numPages">
125  <div class="errortext">Sorry, document doesn't exist.</div>
126</body>
127</html>
Note: See TracBrowser for help on using the repository browser.