Mercurial > urweb
view tests/option.ur @ 1448:37599e85bba8
Fix getting UTC time from formatted strings ( in uw_Basis_readUtc ).
Corrects 2 things:
- timezones with offsets not an integer number of hours
- double correcting for daylight savings time
author | Karn Kallio <kkallio@eka> |
---|---|
date | Wed, 13 Apr 2011 00:04:41 -0430 |
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>