annotate tests/ctextarea.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 118ab9641a64
children
rev   line source
adamc@1099 1 fun main () =
adamc@1099 2 s <- source "DEFAULT";
adamc@1099 3 return <xml><body>
adamc@1099 4 <ctextarea rows={2} source={s}/><br/>
adamc@1099 5 <br/>
adamc@1099 6
adamc@1099 7 <dyn signal={s <- signal s; return (cdata s)}/>
adamc@1099 8 </body></xml>