Mercurial > urweb
annotate tests/stringToTime.ur @ 1904:686fa4e7f397
xml/parse: Accept entity files on the command line
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
Makefile.am | 2 +-
xml/parse.sml | 4 +---
2 files changed, 2 insertions(+), 4 deletions(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Fri, 22 Nov 2013 09:36:14 -0500 |
parents | 252e05bf199d |
children |
rev | line source |
---|---|
adam@1599 | 1 fun main () : transaction page = |
adam@1599 | 2 s <- source ""; |
adam@1599 | 3 return <xml><body> |
adam@1599 | 4 <ctextbox source={s}/> |
adam@1599 | 5 <button onclick={v <- get s; alert (show (readError v : time))}/> |
adam@1599 | 6 <button onclick={v <- get s; case read v : option time of |
adam@1599 | 7 None => alert "Invalid" |
adam@1599 | 8 | Some tm => alert (show tm)}/> |
adam@1599 | 9 </body></xml> |