summaryrefslogtreecommitdiff
path: root/tests/crud1.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-10-14 16:37:43 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-10-14 16:37:43 -0400
commit98c7a9c7a897d8a5f7a483aa15bf211c9769dad4 (patch)
tree106aa4e31f132174d78e175a25e5e3851a24c049 /tests/crud1.ur
parentcf62ed3325e024601d3d04d638b6a0aa383310ae (diff)
Syntax highlighting for embedded XML
Diffstat (limited to 'tests/crud1.ur')
-rw-r--r--tests/crud1.ur16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/crud1.ur b/tests/crud1.ur
index 2ed2b9e7..80b2b103 100644
--- a/tests/crud1.ur
+++ b/tests/crud1.ur
@@ -2,33 +2,33 @@ table t1 : {Id : int, A : int, B : string, C : float, D : bool}
val a = {Nam = "A",
Show = txt _,
- Widget = fn nm :: Name => <lform><textbox{nm}/></lform>,
+ Widget = fn nm :: Name => <xml><textbox{nm}/></xml>,
WidgetPopulated = fn (nm :: Name) n =>
- <lform><textbox{nm} value={show _ n}/></lform>,
+ <xml><textbox{nm} value={show _ n}/></xml>,
Parse = readError _,
Inject = _}
val b = {Nam = "B",
Show = txt _,
- Widget = fn nm :: Name => <lform><textbox{nm}/></lform>,
+ Widget = fn nm :: Name => <xml><textbox{nm}/></xml>,
WidgetPopulated = fn (nm :: Name) s =>
- <lform><textbox{nm} value={s}/></lform>,
+ <xml><textbox{nm} value={s}/></xml>,
Parse = readError _,
Inject = _}
val c = {Nam = "C",
Show = txt _,
- Widget = fn nm :: Name => <lform><textbox{nm}/></lform>,
+ Widget = fn nm :: Name => <xml><textbox{nm}/></xml>,
WidgetPopulated = fn (nm :: Name) n =>
- <lform><textbox{nm} value={show _ n}/></lform>,
+ <xml><textbox{nm} value={show _ n}/></xml>,
Parse = readError _,
Inject = _}
val d = {Nam = "D",
Show = txt _,
- Widget = fn nm :: Name => <lform><checkbox{nm}/></lform>,
+ Widget = fn nm :: Name => <xml><checkbox{nm}/></xml>,
WidgetPopulated = fn (nm :: Name) b =>
- <lform><checkbox{nm} checked={b}/></lform>,
+ <xml><checkbox{nm} checked={b}/></xml>,
Parse = fn x => x,
Inject = _}