source: documentViewer/zpt/viewer_images.zpt @ 491:fe319aa0ba30

elementtree
Last change on this file since 491:fe319aa0ba30 was 490:6f116b86a226, checked in by casties, 13 years ago

more new template stuff. moved ImageFile? index method to SrvTxtUtils?

File size: 5.5 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; viewType pageinfo/viewType; viewerUrl docinfo/viewerUrl;
6              numPages docinfo/numPages | nothing; dlBaseUrl docinfo/digilibBaseUrl | nothing;">
7<head>
8<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
9  <title tal:content="python:docinfo.get('creator',' ') + ' - ' + docinfo.get('title',' ')" />
10  <link rel="stylesheet" href="template/docuviewer_css" type="text/css" />
11<script type="text/javascript" tal:attributes="src string:$dlBaseUrl/jquery/jquery.js"></script>
12<script type="text/javascript" tal:attributes="src string:$dlBaseUrl/jquery/jquery.cookie.js"></script>
13<script type="text/javascript" tal:attributes="src string:$dlBaseUrl/jquery/jquery.digilib.js"></script>
14<script type="text/javascript" tal:attributes="src string:$dlBaseUrl/jquery/jquery.digilib.geometry.js"></script>
15<script type="text/javascript" tal:attributes="src string:$dlBaseUrl/jquery/jquery.digilib.birdseye.js"></script>
16<!--        <script type="text/javascript" tal:attributes="src string:$dlBaseUrl/jquery/jquery.digilib.regions.js"></script> -->
17<link rel="stylesheet" type="text/css" tal:attributes="href string:$dlBaseUrl/jquery/jquery.digilib.css" />
18
19<script type="text/javascript"
20  tal:content="string:
21       var dlOpts = {
22            'interactionMode' : 'fullscreen',
23            'digilibBaseUrl' : '$dlBaseUrl',
24            'fn' : '${docinfo/imagePath}',
25            'pn' : '${pageinfo/pn}',
26            'suppressParamNames' : ['fn'],
27            'showRegionNumbers' : true
28        };"></script>
29
30<script type="text/javascript">
31    //<!--
32    $(document).ready(function() {
33        // autosubmit forms
34        $('form.autosubmit').find('.autosubmit').change(function() {
35            this.form.submit();
36        });
37        $('form.autosubmit input[type="submit"]').hide();
38        // configure digilib
39        $('div.scaler').digilib(dlOpts);
40    });
41//-->
42</script>
43</head>
44<body tal:condition="numPages">
45  <tal:block
46    tal:define="docpath docinfo/textURLPath | nothing;
47              pn pageinfo/pn;
48              flowLtr python:pageinfo.get('pageFlow','ltr')!='rtl';
49              prev python:test(pn>1,pn-1,None); next python:test(pn<numPages,pn+1,None);
50              first python:test(pn>1,1,None); last python:test(pn<numPages,numPages,None);
51              left python:test(flowLtr,prev,next); right python:test(flowLtr,next,prev);
52              leftest python:test(flowLtr,first,last); rightest python:test(flowLtr,last,first);">
53    <div class="page-head">
54      <metal:block metal:use-macro="here/template/head_main/macros/main" />
55    </div>
56    <div class="page-body" tal:condition="python:here.isAccessible(docinfo)">
57      <!--table of contents-->
58      <div class="col-left">
59        <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" />
60      </div>
61      <!-- text page -->
62      <div class="col-main">
63        <div class="ruler">
64          <form class="autosubmit" tal:attributes="action viewerUrl">
65            <input type="hidden" tal:define="params python:here.getParams('pn', None)" tal:repeat="param params"
66              tal:attributes="name param; value python:params[param]" /> page <a tal:condition="leftest"
67              tal:attributes="href python:here.getLink('pn',leftest)">|&lt;</a> <span tal:condition="not:leftest">|&lt;</span> <a
68              tal:condition="left" tal:attributes="href python:here.getLink('pn',left)">&lt;</a> <span tal:condition="not:left">&lt;</span>
69            <input class="autosubmit" size="3" type="text" name="pn" tal:attributes="value pn" />
70            <tal:block tal:define="originalPage pageinfo/pageNumberOrig | nothing" tal:condition="python:originalPage!=None">
71              (<span tal:replace="originalPage" />
72              <span tal:define="originalPageNorm pageinfo/pageNumberOrigNorm | nothing"
73                tal:condition="python:originalPageNorm!=None">[<span tal:replace="originalPageNorm" />]</span>)     
74            </tal:block>
75            <input type="submit" value="Go" />
76            of <span tal:replace="numPages" /> <a tal:condition="right"
77              tal:attributes="href python:here.getLink('pn',right)">&gt;</a> <span tal:condition="not:right">&gt;</span> <a
78              tal:condition="rightest" tal:attributes="href python:here.getLink('pn',rightest)">&gt;|</a> <span
79              tal:condition="not:rightest">&gt;|</span>
80          </form>
81        </div>
82        <!-- ruler -->
83        <ul class="switcher">
84          <li class="sel">Image</li>
85          <li><a tal:condition="docpath" tal:attributes="href python:here.getLink('viewMode','text')">Text</a></li>
86        </ul>
87        <div class="content">
88          <div class="scaler">
89            <img tal:attributes="src string:${docinfo/imageURL}&pn=${pageinfo/pn}&dw=500&dh=500" />
90          </div>
91        </div> <!-- content -->
92      </div> <!-- col-main -->
93      <div class="col-right">
94        BUTTONS
95      </div>
96    </div> <!-- page-body -->
97    <div class="page-body" tal:condition="python:not here.isAccessible(docinfo)">
98      <div class="errortext">Sorry, access to this document is restricted.</div>
99    </div>
100  </tal:block>
101</body>
102<body tal:condition="not:numPages">
103  <div class="errortext">Sorry, document doesn't exist.</div>
104</body>
105</html>
Note: See TracBrowser for help on using the repository browser.