comparison forms.urs @ 9:1e04008eaef7

Add version of warning with a format wrapper.
author Karn Kallio <kkallio@eka>
date Tue, 21 Jun 2011 17:32:36 -0430
parents 4d8165e8f89a
children 5905b56e0cd9
comparison
equal deleted inserted replaced
8:90be8b8917d5 9:1e04008eaef7
1 datatype readiness a = Ready of a | Waiting | Invalid of string 1 datatype readiness a = Ready of a | Waiting | Invalid of string
2 datatype rpcResult a = Success of a | Failure of string 2 datatype rpcResult a = Success of a | Failure of string
3 3
4 val warning : a ::: Type -> signal (readiness a) -> xbody 4 val warning : a ::: Type -> signal (readiness a) -> xbody
5
6 val warningFmt : a ::: Type -> ctx ::: {Unit} -> [ctx ~ body]
7 => (string -> xml (ctx ++ body) [] []) -> signal (readiness a)
8 -> xml (ctx ++ body) [] []
9 (* A version of warning that adds a chrome wrapper to the warning message. *)