annotate forms.urs @ 19:3a303df9ae92
Partial generalize togglePanel solution (breaks build)
author |
Ron de Bruijn <rmbruijn@gmail.com> |
date |
Fri, 23 Sep 2011 13:30:01 +0200 |
parents |
1e04008eaef7 |
children |
5905b56e0cd9 |
rev |
line source |
adam@1
|
1 datatype readiness a = Ready of a | Waiting | Invalid of string
|
adam@1
|
2 datatype rpcResult a = Success of a | Failure of string
|
adam@1
|
3
|
adam@1
|
4 val warning : a ::: Type -> signal (readiness a) -> xbody
|
kkallio@9
|
5
|
kkallio@9
|
6 val warningFmt : a ::: Type -> ctx ::: {Unit} -> [ctx ~ body]
|
kkallio@9
|
7 => (string -> xml (ctx ++ body) [] []) -> signal (readiness a)
|
kkallio@9
|
8 -> xml (ctx ++ body) [] []
|
kkallio@9
|
9 (* A version of warning that adds a chrome wrapper to the warning message. *)
|