annotate tests/snest.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 8932f855fa85
children
rev   line source
adamc@1039 1 fun main () =
adamc@1039 2 s1 <- source False;
adamc@1039 3 s2 <- source False;
adamc@1039 4
adamc@1039 5 return <xml><body>
adamc@1039 6 <dyn signal={s1 <- signal s1;
adamc@1039 7 return (if s1 then
adamc@1039 8 <xml><dyn signal={s2 <- signal s2;
adamc@1039 9 return <xml>{[s2]}</xml>}/></xml>
adamc@1039 10 else
adamc@1039 11 <xml>Not yet</xml>)}/>
adamc@1039 12 <hr/>
adamc@1039 13 <button value="s1" onclick={set s1 True}/>
adamc@1039 14 <button value="s2" onclick={set s2 True}/>
adamc@1039 15 </body></xml>