annotate tests/reactive5.ur @ 2139:8c81cd351c1a

Allow URIs specified in file directives implicitly It seems to me that, by specifying that one wants to serve a given file at a specified URI, one is implying that this URI should be allowed.
author Julian Squires <julian@cipht.net>
date Fri, 24 Apr 2015 16:21:55 -0400
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>