Annotation of zogiLib/zpt/optionwindow.zpt, revision 1.2

1.1       dwinter     1: <html>
                      2: <script type="text/javascript" src="option_js"/>
                      3: 
                      4: <body>
1.2     ! casties     5: <a target="digilib" href="javascript:zoomArea()">zoom area</a><br/>
        !             6: <a target="digilib" href="javascript:zoomPoint(+1)">zoom in</a><br/>
        !             7: <a target="digilib" href="javascript:zoomPoint(-1)">zoom out</a><br/>
        !             8: <a target="digilib" href="javascript:zoomFullpage()">whole page</a><br/>
        !             9: <a target="digilib" href="javascript:mirror('h')">Mirror (h)</a><br/>
        !            10: <a target="digilib" href="javascript:mirror('v')">Mirror (v)</a><br/>
        !            11: <form method="get" onchange="setDLParam(event)">
1.1       dwinter    12: <table tal:define="dlInfo python:here.REQUEST.SESSION['dlInfo']">
                     13:   <tr>
                     14:     <td>
                     15:       Rotate:
                     16:     </td>
                     17:     <td>
1.2     ! casties    18:       <input type="text" size="5" name="rot" tal:attributes="value python:dlInfo['rot']">
1.1       dwinter    19:     </td>
                     20:   </tr>
                     21:   <tr>
                     22:     <td>
                     23:       Brightness (-255,255):
                     24:     </td>
                     25:     <td>
1.2     ! casties    26:       <input type="text" size="5" name="brgt" tal:attributes="value python:dlInfo['brgt']">
1.1       dwinter    27:     </td>
                     28:   </tr>
                     29:   <tr>
                     30:     <td>
                     31:       Contrast:
                     32:     </td>
                     33:     <td>
1.2     ! casties    34:       <input type="text" size="5" name="cont" tal:attributes="value python:dlInfo['cont']">
1.1       dwinter    35:     </td>
                     36:   </tr>
                     37: </table>
                     38: </form>
                     39: </body>
1.2     ! casties    40: </html>

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