aboutsummaryrefslogtreecommitdiffhomepage
path: root/demo/batchG.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-04-16 15:38:01 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-04-16 15:38:01 -0400
commit7f7d05616c489b6039bc1e8824c00b43209109c2 (patch)
tree319480b616f48c0f2ec38e1673c2b89a1de79125 /demo/batchG.ur
parent55d10dd587a94d356096c2dfc39306c14b55c7bf (diff)
Add more buttons to demo, to avoid effectful GET
Diffstat (limited to 'demo/batchG.ur')
-rw-r--r--demo/batchG.ur16
1 files changed, 10 insertions, 6 deletions
diff --git a/demo/batchG.ur b/demo/batchG.ur
index d0071d7d..ea658164 100644
--- a/demo/batchG.ur
+++ b/demo/batchG.ur
@@ -1,9 +1,13 @@
table t : {Id : int, A : string, B : float}
PRIMARY KEY Id
-open BatchFun.Make(struct
- val tab = t
- val title = "BatchG"
- val cols = {A = BatchFun.string "A",
- B = BatchFun.float "B"}
- end)
+structure B = BatchFun.Make(struct
+ val tab = t
+ val title = "BatchG"
+ val cols = {A = BatchFun.string "A",
+ B = BatchFun.float "B"}
+ end)
+
+fun main () = return <xml><body>
+ <form><submit value="Begin demo" action={B.main}/></form>
+</body></xml>