summaryrefslogtreecommitdiff
path: root/tests/timef.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2011-11-24 11:27:51 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2011-11-24 11:27:51 -0500
commit3bc2a410599b65ab4936333b0bd71fce094b5fe2 (patch)
tree5ac338b6209f2a4b27bf5788d34a55b35231923f /tests/timef.ur
parent53d734702cd07305d86e55f886c2da84d4d237dc (diff)
Client-side timef
Diffstat (limited to 'tests/timef.ur')
-rw-r--r--tests/timef.ur12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/timef.ur b/tests/timef.ur
new file mode 100644
index 00000000..1e473482
--- /dev/null
+++ b/tests/timef.ur
@@ -0,0 +1,12 @@
+fun main () : transaction page =
+ date <- source "";
+ format <- source "";
+ return <xml><body>
+ <ctextbox source={date}/>
+ <ctextbox source={format}/>
+ <dyn signal={d <- signal date;
+ f <- signal format;
+ return (case read d of
+ None => <xml/>
+ | Some d => <xml>{[timef f d]}</xml>)}/>
+ </body></xml>