view zpt/viewer_main.zpt @ 89:3d95ba1bf535

first version with new full-text infrastructure and slightly changed templates
author casties
date Fri, 19 Mar 2010 12:42:40 +0100
parents 47d76f050883
children b8c491e52ebc
line wrap: on
line source

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
 tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode options/viewMode">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
</head>
<body tal:condition="docinfo/numPages">
<div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>
<tal:block tal:condition="python:here.isAccessible(docinfo)">
<table border="0" width="100%" height="100%">
  <tr>
    <td width="300px" valign="top">
      <tal:block tal:replace="structure python:here.template.thumbs_main(docinfo=docinfo,pageinfo=pageinfo)" /> 
    </td>
    <td width="100%" valign="top">
      <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'])" />
      <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'])" />
    </td>
  </tr>
</table>
</tal:block>
<tal:block tal:condition="not:python:here.isAccessible(docinfo)">
<div class="errortext">Sorry, access to this document is restricted.</div>
</tal:block>
</body>
<body tal:condition="not:docinfo/numPages">
<div class="errortext">Sorry, document doesn't exist.</div>
</body>
</html>