source: documentViewer/zpt/toc_thumbs.zpt @ 530:5c7433c2515c

Last change on this file since 530:5c7433c2515c was 528:f8a5f63eafc0, checked in by casties, 12 years ago

new viewMode=thumbs.

File size: 1.9 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<head>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6</head>
7<body>
8  <!-- block used for main content area -->
9  <div class="toc-thumbs" metal:define-macro="main"
10    tal:define="start pageinfo/start;
11                grpsize pageinfo/groupsize;
12                numgroups pageinfo/numgroups;
13                pageBatch pageinfo/pageBatch; pageZero pageinfo/pageZero;
14                pageNumbers docinfo/pageNumbers | nothing;
15                left python:test(flowLtr,pageBatch['prevStart'],pageBatch['nextStart']);
16                right python:test(flowLtr,pageBatch['nextStart'],pageBatch['prevStart']);">
17    <div metal:use-macro="here/template/common_template/macros/toc_switcher"/>
18
19    <div class="content">
20      <div class="ruler">
21        <metal:block metal:use-macro="here/template/common_template/macros/toc_ruler_thumbs"/>
22      </div>
23
24      <table class="thumbs">
25        <tr tal:repeat="row pageBatch/pages">
26          <td tal:repeat="thumb row"
27            tal:attributes="class python:here.getStyle(thumb['idx'],pn,'thumb')">
28            <a tal:define="idx thumb/idx" tal:condition="idx"
29              tal:attributes="href python:here.getLink('pn',idx)">
30              <img
31                tal:attributes="src python:test(docinfo['imageURL'],here.getScalerUrl(pn=idx,dw=100,dh=100,docinfo=docinfo),'images/pic');
32                                alt idx" /><br/>
33              <span title="Scan number" tal:content="idx"/>
34              <span tal:condition="python:pageNumbers and pageNumbers.get(idx, False) and pageNumbers[idx]['no']" title="Original page number" tal:content="python:' (%s)'%(pageNumbers[idx]['no'])"/>
35            </a>
36          </td>
37        </tr>
38      </table>
39    </div> <!-- content -->
40  </div> <!-- toc -->
41</body>
42</html>
Note: See TracBrowser for help on using the repository browser.