File:  [Repository] / documentViewer / zpt / viewer_main.zpt
Revision 1.5: download - view: text, annotated - select for diffs - revision graph
Wed Apr 12 17:47:53 2006 UTC (18 years, 2 months ago) by casties
Branches: MAIN
CVS tags: roc_1, Root_roc_1, HEAD
version 0.2.4
* minor improvements
* tries more than one time to read info from digilib

<html tal:define="docinfo options/docinfo; pageinfo options/pageinfo">
<head>
<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)"/>
<tal:block tal:condition="python:here.isAccessible(docinfo)">
<table border="0" width="100%" height="100%">
  <tr>
    <td width="300px" valign="top">
		<tal:block replace="structure python:here.template.thumbs_main(docinfo=docinfo,pageinfo=pageinfo)" /> 
    </td>
    <td width="100%" valign="top">
      <tal:block tal:content="structure python:here.template.image_main(docinfo=docinfo,pageinfo=pageinfo)" />
    </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>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>