File:  [Repository] / OSA_system2 / zpt / storeOnline_index_html.zpt
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Mon Mar 7 19:33:42 2005 UTC (19 years, 4 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
new handlers

    1: <!--Template for browser environment -->
    2: <html>
    3: <table border="1">
    4:   <!-- Kopf -->
    5:   <tr >
    6:     <td colspan="2" align="center"><h2>OSAS Browser</h2></td>
    7:   </tr>
    8:   <tr >
    9:     <td colspan="2"><p tal:content="structure python:here.path_to_link(here.REQUEST.get('path',''))"/>
   10:     <p tal:repeat="handler python:here.getHandlersOfPath()[1]" tal:content="structure python:handler"/>
   11:    </td>
   12:   </tr>
   13:   <tr>
   14:     <!-- Navigation -->
   15:     <td valign="top" width="30%">
   16:       <table>
   17:       <tr tal:repeat="link python:here.generateTree(here.REQUEST.get('path',''))">
   18: 	<td>
   19: 	  <tal:block tal:replace="structure python:link[0]"/>
   20: 	  <tal:block tal:repeat="handler python:link[1]" tal:content="structure handler"/>
   21: 	   </td>
   22: 	<td>
   23: 	<tal:block tal:replace="structure python:link[2]"/>
   24: 	</td>
   25:       </tr>
   26:       </table>
   27:     </td>
   28:     <!-- Body -->
   29:     <td valign="top" tal:define="metaHtml python:here.getMetaFile(here.REQUEST.get('path',''))">
   30:     	
   31:       <tal:block tal:condition="not:python:metaHtml==''" tal:replace="structure metaHtml"/>
   32:       <tal:block tal:condition="python:metaHtml==''" tal:replace="structure here/addMetadata">Add metadata</tal:block>
   33:   
   34:     </td>
   35:   </tr>
   36:  
   37:  
   38:    </table>
   39: </html>

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