diff demo/batchG.ur @ 733:15ddd64a5113

Add more buttons to demo, to avoid effectful GET
author Adam Chlipala <adamc@hcoop.net>
date Thu, 16 Apr 2009 15:38:01 -0400
parents 1a317a707d71
children a44daa674810
line wrap: on
line diff
--- a/demo/batchG.ur	Thu Apr 16 15:29:39 2009 -0400
+++ b/demo/batchG.ur	Thu Apr 16 15:38:01 2009 -0400
@@ -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>