annotate tests/showTime.ur @ 1998:cc7e5d469d1b

Protect uw_Basis_new_client_source from invalid ctx->id We assume that FFI code may create new contextes with id left unassigned
author Sergey Mironov <grrwlf@gmail.com>
date Wed, 26 Feb 2014 09:43:47 +0000
parents 438561303d02
children
rev   line source
adam@1629 1 fun main () : transaction page =
adam@1629 2 tm <- now;
adam@1629 3 s <- source tm;
adam@1629 4 return <xml><body>
adam@1629 5 <b>Server:</b> {[tm]}<br/>
adam@1629 6 <b>Client:</b> <dyn signal={v <- signal s; return (txt v)}/>
adam@1629 7 <button value="Recalculate" onclick={tm <- now; set s tm}/>
adam@1629 8 </body></xml>