view forms.urs @ 15:8300d5f0dc19

Replace ChangePoller with SourceL, plus some other rearrangements
author Adam Chlipala <adam@chlipala.net>
date Sun, 07 Aug 2011 14:38:52 -0400
parents 1e04008eaef7
children 5905b56e0cd9
line wrap: on
line source
datatype readiness a = Ready of a | Waiting | Invalid of string
datatype rpcResult a = Success of a | Failure of string

val warning : a ::: Type -> signal (readiness a) -> xbody

val warningFmt : a ::: Type -> ctx ::: {Unit} -> [ctx ~ body] 
    => (string -> xml (ctx ++ body) [] []) -> signal (readiness a) 
    -> xml (ctx ++ body) [] []
(* A version of warning that adds a chrome wrapper to the warning message. *)