changeset 34:0ca99253b4ce

version 0.2.3 - first version with access control! * defaults to open when no access info * uses any logged in user for local access
author casties
date Tue, 11 Apr 2006 19:27:57 +0200
parents b3fe3a50f605
children 2d9261aea8f3
files zpt/viewer_main.zpt
diffstat 1 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/zpt/viewer_main.zpt	Tue Apr 11 19:27:57 2006 +0200
+++ b/zpt/viewer_main.zpt	Tue Apr 11 19:27:57 2006 +0200
@@ -1,9 +1,10 @@
-<html>
+<html tal:define="docinfo options/docinfo; pageinfo options/pageinfo">
 <head>
 <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
 </head>
-<body tal:define="docinfo options/docinfo; pageinfo options/pageinfo" tal:condition="docinfo/numPages">
+<body tal:condition="docinfo/numPages">
 <div tal:replace="structure python:here.template.head_main(docinfo=docinfo)"/>
+<tal:block tal:condition="python:here.accessOK(docinfo)">
 <table border="0" width="100%" height="100%">
   <tr>
     <td width="300px" valign="top">
@@ -14,8 +15,12 @@
     </td>
   </tr>
 </table>
+</tal:block>
+<tal:block tal:condition="not:python:here.accessOK(docinfo)">
+<div class="errortext">Sorry, access to this document is restricted.</div>
+</tal:block>
 </body>
-<body tal:define="docinfo options/docinfo; pageinfo options/pageinfo" tal:condition="not:docinfo/numPages">
+<body tal:condition="not:docinfo/numPages">
 <div class="errortext">Sorry, document doesn't exist.</div>
 </body>
 </html>