annotate tests/setInner.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 06791667937e
children
rev   line source
adam@1702 1 fun main () : transaction page =
adam@1702 2 x <- fresh;
adam@1702 3 s <- source 0;
adam@1702 4 q <- source "";
adam@1702 5 return <xml><body>
adam@1702 6 <span id={x}/>
adam@1702 7 <button onclick={v <- get q; set q (v ^ "!"); Ffi.setIt x <xml><dyn signal={n <- signal s; return <xml>n = {[n]}</xml>}/>{[v]}</xml>}/>
adam@1702 8 <button onclick={n <- get s; set s (n + 1)}/>
adam@1702 9 </body></xml>