summaryrefslogtreecommitdiff
path: root/tests/crud.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-13 20:04:28 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-13 20:04:28 -0400
commitb145e03e5e25cfd59f544312efe3ea93e265a8ce (patch)
tree63178c623e47e45b58631910c533721505226647 /tests/crud.ur
parent291fe704e9a5be0a71cd03418ec5229c99910898 (diff)
Crud gets column headings
Diffstat (limited to 'tests/crud.ur')
-rw-r--r--tests/crud.ur17
1 files changed, 13 insertions, 4 deletions
diff --git a/tests/crud.ur b/tests/crud.ur
index 7f0fc71c..c596eaad 100644
--- a/tests/crud.ur
+++ b/tests/crud.ur
@@ -1,4 +1,4 @@
-con colMeta' = fn t :: Type => {Show : t -> xbody}
+con colMeta' = fn t :: Type => {Nam : string, Show : t -> xbody}
con colMeta = fn cols :: {Type} => $(Top.mapTT colMeta' cols)
functor Make(M : sig
@@ -22,8 +22,8 @@ fun main () : transaction page =
{foldTRX2 [idT] [colMeta'] [tr]
(fn (nm :: Name) (t :: Type) (rest :: {Type}) =>
[[nm] ~ rest] =>
- fn v funcs => <tr>
- <td>{funcs.Show v}</td>
+ fn v col => <tr>
+ <td>{col.Show v}</td>
</tr>)
[M.cols] (fs.T -- #Id) M.cols}
</tr>
@@ -36,7 +36,16 @@ fun main () : transaction page =
<h1>{cdata M.title}</h1>
<table border={1}>
- <tr> <th>ID</th> </tr>
+ <tr>
+ <th>ID</th>
+ {foldTRX [colMeta'] [tr]
+ (fn (nm :: Name) (t :: Type) (rest :: {Type}) =>
+ [[nm] ~ rest] =>
+ fn col => <tr>
+ <th>{cdata col.Nam}</th>
+ </tr>)
+ [M.cols] M.cols}
+ </tr>
{rows}
</table>
</body></html>