annotate tests/reactive5.ur @ 1448:37599e85bba8

Fix getting UTC time from formatted strings ( in uw_Basis_readUtc ). Corrects 2 things: - timezones with offsets not an integer number of hours - double correcting for daylight savings time
author Karn Kallio <kkallio@eka>
date Wed, 13 Apr 2011 00:04:41 -0430
parents e955d50c389d
children
rev   line source
adamc@581 1 fun main () : transaction page =
adamc@581 2 x <- source <xml>A</xml>;
adamc@581 3 y <- source <xml>B</xml>;
adamc@581 4 return <xml><body>
adamc@581 5 <dyn signal={x <- signal x; y <- signal y; return <xml>{x}, {y}</xml>}/>
adamc@581 6 <br/>
adamc@581 7 <a onclick={set x <xml>C</xml>}>Change x</a><br/>
adamc@581 8 <a onclick={set y <xml>D</xml>}>Change y</a><br/>
adamc@581 9 </body></xml>