From ed10a428abc7be47f8cce83db8dc64ac3cb6e84b Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Tue, 14 Oct 2008 17:18:59 -0400 Subject: Reusable column handlers for Crud --- tests/crud1.ur | 40 ++++------------------------------------ 1 file changed, 4 insertions(+), 36 deletions(-) (limited to 'tests/crud1.ur') diff --git a/tests/crud1.ur b/tests/crud1.ur index 80b2b103..3849e822 100644 --- a/tests/crud1.ur +++ b/tests/crud1.ur @@ -1,44 +1,12 @@ table t1 : {Id : int, A : int, B : string, C : float, D : bool} -val a = {Nam = "A", - Show = txt _, - Widget = fn nm :: Name => , - WidgetPopulated = fn (nm :: Name) n => - , - Parse = readError _, - Inject = _} - -val b = {Nam = "B", - Show = txt _, - Widget = fn nm :: Name => , - WidgetPopulated = fn (nm :: Name) s => - , - Parse = readError _, - Inject = _} - -val c = {Nam = "C", - Show = txt _, - Widget = fn nm :: Name => , - WidgetPopulated = fn (nm :: Name) n => - , - Parse = readError _, - Inject = _} - -val d = {Nam = "D", - Show = txt _, - Widget = fn nm :: Name => , - WidgetPopulated = fn (nm :: Name) b => - , - Parse = fn x => x, - Inject = _} - open Crud.Make(struct val tab = t1 val title = "Crud1" - val cols = {A = a, - B = b, - C = c, - D = d} + val cols = {A = Crud.int "A", + B = Crud.string "B", + C = Crud.float "C", + D = Crud.bool "D"} end) -- cgit v1.2.3