Mercurial > urweb
view tests/option.ur @ 2162:c39c48696393
Allow returnBlob and redirect in static protocol
Both of these functions end up returning RETURN_INDIRECTLY, which is
assumed to be an error by static.c's main. Treat it as success
instead.
author | Julian Squires <julian@cipht.net> |
---|---|
date | Mon, 13 Jul 2015 14:34:30 -0400 |
parents | 77a28e7430bf |
children |
line wrap: on
line source
datatype option a = None | Some of a val none_Hi : option string = None val some_Hi = Some "Hi" val none_some_Hi : option (option string) = None val some_some_Hi = Some some_Hi val show = fn x => case x of None => "None" | Some x => x val show2 = fn x => case x of None => "None'" | Some x => show x val page = fn x => return <html><body> {cdata (show x)} </body></html> val page2 = fn x => return <html><body> {cdata (show2 x)} </body></html> val main : unit -> transaction page = fn () => return <html><body> <li><a link={page none_Hi}>None1</a></li> <li><a link={page some_Hi}>Some1</a></li> <li><a link={page2 none_some_Hi}>None2</a></li> <li><a link={page2 some_some_Hi}>Some2</a></li> </body></html>