Annotation of zogiLib/zpt/optionwindow_static.zpt, revision 1.2
1.1 casties 1: <html>
2: <head>
3: <title>Options</title>
4: </head>
5: <body>
6: <h2>Viewing options</h2>
1.2 ! casties 7: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_ZoomIn'">zoom in</a><br/>
! 8: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_ZoomOut'">zoom out</a><br/>
! 9: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_WholePage'">whole page</a><br/>
! 10: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_HMirror'">Mirror (h)</a> <span tal:condition="python:here.hasMode('hmir')">yes</span><br/>
! 11: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_VMirror'">Mirror (v)</a> <span tal:condition="python:here.hasMode('vmir')">yes</span><br/>
! 12: <form tal:attributes="target here/dlTarget; action python:here.zogilibPath('')+'setDLParams'">
1.1 casties 13: <table>
14: <tr>
15: <td>
16: Rotate:
17: </td>
18: <td>
19: <input type="text" size="5" name="rot" tal:attributes="value python:(here.getDLParam('rot') or '')" />
20: (0..360) clockwise
21: </td>
22: </tr>
23: <tr>
24: <td>
25: Brightness:
26: </td>
27: <td>
28: <input type="text" size="5" name="brgt" tal:attributes="value python:(here.getDLParam('brgt') or '')" />
29: (-255..255)
30: </td>
31: </tr>
32: <tr>
33: <td>
34: Contrast:
35: </td>
36: <td>
37: <input type="text" size="5" name="cont" tal:attributes="value python:(here.getDLParam('cont') or '')" />
38: (0..8)
39: </td>
40: </tr>
41: </table>
42: <div align="center"><input type="submit" /></div>
43: </form>
44: <hr/>
45: <p><b>Experimental:</b></p>
1.2 ! casties 46: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_DynamicHTML'">switch to dynamic HTML</a><br/>
! 47: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_MoveUp'">move up</a><br/>
! 48: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_MoveDown'">move down</a><br/>
! 49: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_MoveLeft'">move left</a><br/>
! 50: <a tal:attributes="target here/dlTarget; href python:here.zogilibPath('')+'dl_MoveRight'">move right</a><br/>
1.1 casties 51: </body>
52: </html>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>