changeset 479:fe5b0e4ac5f2 elementtree

starting new templates in product
author casties
date Mon, 15 Aug 2011 11:58:56 +0200
parents cd37d6f8d5e8
children 50a28442f21c
files documentViewer.py zpt/viewer_text.zpt
diffstat 2 files changed, 31 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/documentViewer.py	Fri Aug 12 16:41:39 2011 +0200
+++ b/documentViewer.py	Mon Aug 15 11:58:56 2011 +0200
@@ -122,6 +122,7 @@
     """MetaDataFolder instance"""
 
     # templates and forms
+    viewer_text = PageTemplateFile('zpt/viewer_text', globals())
     viewer_main = PageTemplateFile('zpt/viewer_main', globals())
     toc_thumbs = PageTemplateFile('zpt/toc_thumbs', globals())
     toc_text = PageTemplateFile('zpt/toc_text', globals())
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/zpt/viewer_text.zpt	Mon Aug 15 11:58:56 2011 +0200
@@ -0,0 +1,30 @@
+<!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 pageinfo/viewMode; tocMode pageinfo/tocMode">
+<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:getattr(here.template, 'toc_%s'%tocMode)(docinfo=docinfo,pageinfo=pageinfo)"/> 
+    </td>
+    <td width="100%" valign="top">
+      <tal:block tal:content="structure python:getattr(here.template, 'page_main_%s'%viewMode)(docinfo=docinfo,pageinfo=pageinfo,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>