annotate tests/form.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 71bafe66dbe1
children
rev   line source
adamc@142 1 val handler = fn r => <html><body>
adamc@142 2 <li> Name: {cdata r.Nam}</li>
adamc@142 3 <li> Word: {cdata r.Word}</li>
adamc@142 4 </body></html>
adamc@142 5
adamc@141 6 val main : unit -> page = fn () => <html><body>
adamc@141 7 <lform>
adamc@141 8 Name: <textbox{#Nam} /><br/>
adamc@142 9 Word: <textbox{#Word} /><br/>
adamc@142 10
adamc@142 11 <submit action={handler}/>
adamc@141 12 </lform>
adamc@141 13 </body></html>