annotate tests/sqlprecision.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 2f33d9a51765
children
rev   line source
adam@1920 1 table t : { N : float }
adam@1920 2
adam@1920 3 fun insert r =
adam@1920 4 dml (INSERT INTO t (N) VALUES ({[readError r.N]}));
adam@1920 5 return <xml/>
adam@1920 6
adam@1920 7 fun main () = return <xml><body>
adam@1920 8 <form>
adam@1920 9 <textbox{#N}/>
adam@1920 10 <submit action={insert}/>
adam@1920 11 </form>
adam@1920 12 </body></xml>