diff zpt/viewer_main.zpt @ 495:ede0c93de798 metalify-1

update branch to latest version of HEAD (with modularisierung branch)
author casties
date Thu, 17 Jun 2010 19:35:24 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/zpt/viewer_main.zpt	Thu Jun 17 19:35:24 2010 +0200
@@ -0,0 +1,32 @@
+<!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; global viewMode pageinfo/viewMode; tocMode pageinfo/tocMode;
+ body_onload nothing">
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  <link rel="stylesheet" href="template/docuviewer_css" type="text/css">
+  <metal:block metal:use-macro="python:path('here/template/page_main_%s/macros/head'%viewMode)"/>
+</head>
+<body tal:condition="docinfo/numPages" tal:attributes="onload body_onload">
+  <metal:block metal:use-macro="here/template/head_main/macros/main"/>
+  <tal:block tal:condition="python:here.isAccessible(docinfo)">
+  <table border="0" width="100%" height="100%">
+    <tr>
+      <td width="300px" valign="top">
+        <metal:block metal:use-macro="python:path('here/template/toc_%s/macros/main'%tocMode)"/> 
+      </td>
+      <td width="100%" valign="top">
+        <metal:block metal:use-macro="python:path('here/template/page_main_%s/macros/main'%viewMode)"/>
+      </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>