source: documentViewer/zpt/viewer_main.zpt @ 89:3d95ba1bf535

Last change on this file since 89:3d95ba1bf535 was 89:3d95ba1bf535, checked in by casties, 14 years ago

first version with new full-text infrastructure and slightly changed templates

File size: 1.6 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 options/viewMode">
5<head>
6  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7  <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
8</head>
9<body tal:condition="docinfo/numPages">
10<div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>
11<tal:block tal:condition="python:here.isAccessible(docinfo)">
12<table border="0" width="100%" height="100%">
13  <tr>
14    <td width="300px" valign="top">
15      <tal:block tal:replace="structure python:here.template.thumbs_main(docinfo=docinfo,pageinfo=pageinfo)" />
16    </td>
17    <td width="100%" valign="top">
18      <tal:block tal:condition="python:viewMode=='images'" tal:content="structure python:here.template.page_main_images(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=options['mk'])" />
19      <tal:block tal:condition="python:viewMode.startswith('text')" tal:content="structure python:here.template.page_main_text(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=options['mk'])" />
20    </td>
21  </tr>
22</table>
23</tal:block>
24<tal:block tal:condition="not:python:here.isAccessible(docinfo)">
25<div class="errortext">Sorry, access to this document is restricted.</div>
26</tal:block>
27</body>
28<body tal:condition="not:docinfo/numPages">
29<div class="errortext">Sorry, document doesn't exist.</div>
30</body>
31</html>
Note: See TracBrowser for help on using the repository browser.