Annotation of zogiLib/zpt/main_metaData.zpt, revision 1.1
1.1 ! casties 1: <html tal:define="dummy here/storeQuery">
! 2: <head tal:content="structure here/createHeadJS">
! 3: </head>
! 4: <body onload="dl_init()">
! 5: <div id="navigation">
! 6: <form method="get" tal:attributes="action python:here.zogilibAction('setDLParams')">
! 7: <input type="hidden" name="wid" tal:attributes="value here/getWID" />
! 8: <select onchange="setDLParam(event, this)" name="ws">
! 9: <option value="1" selected>Size</option>
! 10: <option tal:attributes="value python:here.getBiggerWS()">bigger</option>
! 11: <option tal:attributes="value python:here.getSmallerWS()">smaller</option>
! 12: <option value="1">1 x</option>
! 13: <option value="1.5">1.5 x</option>
! 14: <option value="2">2 x</option>
! 15: <option value="3">3 x</option>
! 16: </select>
! 17: <a href="javascript:setMark()">set a mark</a>
! 18: <a tal:attributes="href python:here.zogilibAction('dl_Unmark')">delete mark</a>
! 19: <a href="javascript:getRef(1)">get reference</a>
! 20: <a href="javascript:zoomArea()">zoom area</a>
! 21: <a tal:attributes="href python:here.zogilibAction('dl_ZoomIn')">zoom in</a>
! 22: <a tal:attributes="href python:here.zogilibAction('dl_ZoomOut')">zoom out</a>
! 23: <a tal:attributes="href python:here.zogilibAction('dl_WholePage')">whole page</a>
! 24: <a tal:attributes="href python:here.zogilibAction('dl_HMirror')">Mirror (h)</a>
! 25: <a tal:attributes="href python:here.zogilibAction('dl_VMirror')">Mirror (v)</a>
! 26: <a tal:attributes="href python:'javascript:openWin(\''+here.zogilibAction('optionwindow')+'&frametarget=\'+dlTarget,\'options_\'+dlTarget,\'width=300,height=250,resizable\')'">options</a>
! 27: </form>
! 28: </div>
! 29:
! 30: <div tal:replace="structure here/createScalerDiv"/>
! 31: <div tal:replace="structure here/createAuxDiv"/>
! 32:
! 33: <tal:block tal:define="statics here/getContextStatic;
! 34: dynamics here/getContextDatabases;
! 35: ">
! 36: <h2 tal:condition="statics">Static Links</h2>
! 37: <p tal:repeat="static statics"><a tal:attributes="href python:static[1]" tal:content="python:static[0]"/></p>
! 38:
! 39:
! 40: <tal:block tal:condition="python:(dynamics and len(dynamics)>1)">
! 41: <h2>Dynamic Links</h2>
! 42: <p tal:repeat="static here/getContextDatabases"><a tal:attributes="href python:static[1]" tal:content="python:static[0]"/></p>
! 43: </tal:block>
! 44: <h2>Data</h2>
! 45: <p tal:replace="structure here/getMetaData"/>
! 46: </tal:block>
! 47: </body>
! 48: </html>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>