source: documentViewer/zpt/viewer_images.zpt @ 489:55e3398e395e

elementtree
Last change on this file since 489:55e3398e395e was 489:55e3398e395e, checked in by casties, 13 years ago

more new templates. monkey-patch for App.ImageFile?.

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; 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" metal:use-macro="here/template/head_main/macros/main" />
54    <div class="page-body" tal:condition="python:here.isAccessible(docinfo)">
55      <!--table of contents-->
56      <div class="col-left">
57        <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)" />
58      </div>
59      <!-- text page -->
60      <div class="col-main">
61        <div class="ruler">
62          <form class="autosubmit" tal:attributes="action viewerUrl">
63            <input type="hidden" tal:define="params python:here.getParams('pn', None)" tal:repeat="param params"
64              tal:attributes="name param; value python:params[param]" /> page <a tal:condition="leftest"
65              tal:attributes="href python:here.getLink('pn',leftest)">|&lt;</a> <span tal:condition="not:leftest">|&lt;</span> <a
66              tal:condition="left" tal:attributes="href python:here.getLink('pn',left)">&lt;</a> <span tal:condition="not:left">&lt;</span>
67            <input class="autosubmit" size="3" type="text" name="pn" tal:attributes="value pn" />
68            <tal:block tal:define="originalPage pageinfo/pageNumberOrig | nothing" tal:condition="python:originalPage!=None">
69              (<span tal:replace="originalPage" />
70              <span tal:define="originalPageNorm pageinfo/pageNumberOrigNorm | nothing"
71                tal:condition="python:originalPageNorm!=None">[<span tal:replace="originalPageNorm" />]</span>)     
72            </tal:block>
73            <input type="submit" value="Go" />
74            of <span tal:replace="numPages" /> <a tal:condition="right"
75              tal:attributes="href python:here.getLink('pn',right)">&gt;</a> <span tal:condition="not:right">&gt;</span> <a
76              tal:condition="rightest" tal:attributes="href python:here.getLink('pn',rightest)">&gt;|</a> <span
77              tal:condition="not:rightest">&gt;|</span>
78          </form>
79        </div>
80        <!-- ruler -->
81        <ul class="switcher">
82          <li class="sel">Image</li>
83          <li><a tal:condition="docpath" tal:attributes="href python:here.getLink('viewMode','text')">Text</a></li>
84        </ul>
85        <div class="content">
86          <div class="scaler">
87            <img tal:attributes="src string:${docinfo/imageURL}&pn=${pageinfo/pn}&dw=500&dh=500" />
88          </div>
89        </div> <!-- content -->
90      </div> <!-- col-main -->
91      <div class="col-right">
92        BUTTONS
93      </div>
94    </div> <!-- page-body -->
95    <div class="page-body" tal:condition="python:not here.isAccessible(docinfo)">
96      <div class="errortext">Sorry, access to this document is restricted.</div>
97    </div>
98  </tal:block>
99</body>
100<body tal:condition="not:numPages">
101  <div class="errortext">Sorry, document doesn't exist.</div>
102</body>
103</html>
Note: See TracBrowser for help on using the repository browser.