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