File:  [Repository] / zogiLib / zpt / main_metaData.zpt
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Tue Nov 8 18:10:10 2005 UTC (18 years, 7 months ago) by casties
Branches: MAIN
CVS tags: HEAD
zogilib version 1.10.1b
-finalized book and metadata template
- (hopefuly) correct pt handling with fewer calls to the server

<html tal:define="dummy here/storeQuery">
<head tal:content="structure here/head_js">
</head>
<body onload="dl_init()">
<div id="navigation">
<form method="get" tal:attributes="action python:here.zogilibAction('setDLParams')">
<select onchange="setDLParam(event, this)" name="ws">
  <option value="+0" selected>Size</option>
  <option value="+0.5">bigger</option>
  <option value="-0.5">smaller</option>
  <option value="1">1 x</option>
  <option value="1.5">1.5 x</option>
  <option value="2">2 x</option>
  <option value="3">3 x</option>
</select> <a href="javascript:setMark()">set a mark</a> <a href="javascript:removeMark()">delete mark</a> <a
  href="javascript:getRefWin()">get reference</a> <a href="javascript:zoomArea()">zoom area</a> <a href="javascript:zoomBy(1.4)">zoom
in</a> <a href="javascript:zoomBy(0.7)">zoom out</a> <a href="javascript:zoomFullpage()">whole page</a> <a
  href="javascript:showOptions(1)">options</a>
</form>
</div>

<div tal:replace="structure here/template/img_div" />
<div tal:replace="structure here/template/aux_divs" />
<tal:block tal:define="statics here/getContextStatic; dynamics here/getContextDatabases;">
  <h2 tal:condition="statics">Static Links</h2>
  
  <p tal:repeat="static statics">
    <a tal:attributes="href python:static[1]" tal:content="python:static[0]" />
  </p>

  <tal:block tal:condition="python:(dynamics and len(dynamics)>1)">
    <h2>Dynamic Links</h2>

    <p tal:repeat="static here/getContextDatabases">
      <a tal:attributes="href python:static[1]" tal:content="python:static[0]" />
    </p>
  </tal:block>
  
  <h2>Data</h2>
  
  <p tal:replace="structure here/getMetaData" />
</tal:block>

<div tal:replace="structure here/template/options" />
</body>
</html>

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