Mercurial > urweb
annotate tests/ccheckbox.ur @ 1839:d8c260bcc1f9
Fix determination of MySQL timestamp hour fields (may still be wrong once DST bit flips)
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 13 Dec 2012 17:51:34 -0500 |
parents | 37f5a23446b2 |
children |
rev | line source |
---|---|
adam@1610 | 1 fun main () : transaction page = |
adam@1610 | 2 s <- source True; |
adam@1610 | 3 t <- source 1; |
adam@1610 | 4 return <xml><body><ccheckbox source={s} onclick={set t 3}/> |
adam@1610 | 5 <dyn signal={s <- signal s; |
adam@1610 | 6 t <- signal t; |
adam@1610 | 7 return <xml>{[s]} {[t]}</xml>}/> |
adam@1610 | 8 </body></xml> |