Mercurial > urweb
view tests/url.ur @ 1611:217384f4b8ea
Tweak error message about Basis.get to use that name instead of internal name
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 24 Nov 2011 11:56:05 -0500 |
parents | c125df6fabfc |
children |
line wrap: on
line source
fun readersChoice r = return <xml><body> {case checkUrl r.Url of None => <xml>I can't do that, Dave.</xml> | Some url => <xml><a href={url}>Your pick, boss</a></xml>} </body></xml> fun main () : transaction page = return <xml><body> <a href="http://en.wikipedia.org/wiki/Wikipedia:About">Learn</a> <br/> <form><textbox{#Url}/> <submit action={readersChoice}/></form> </body></xml>