Mercurial > urweb
view demo/url.ur @ 925:552c989c1601
Change string URLification to avoid using the empty string, which confuses Apache no2slash()
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sat, 12 Sep 2009 09:31:50 -0400 |
parents | 412ccd97ab71 |
children |
line wrap: on
line source
fun yourChoice r = return <xml><body> {case checkUrl r.Url of None => <xml>You aren't allowed to link to there.</xml> | Some url => <xml><a href={url}>Enjoy!</a></xml>} </body></xml> fun main () = return <xml><body> <a href="http://en.wikipedia.org/wiki/Type_inference">Learn something</a><br/> <br/> <form> URL of your choice: <textbox{#Url}/> <submit action={yourChoice}/> </form> </body></xml>