annotate forms.urs @ 33:2e7f8f7d71d4
Update for Ur/Web's new tag name resolution
author |
Adam Chlipala <adam@chlipala.net> |
date |
Thu, 21 Nov 2013 16:12:17 -0500 |
parents |
5905b56e0cd9 |
children |
|
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
|
adam@27
|
6 val warningFmt : a ::: Type -> ctx ::: {Unit} -> [ctx ~ [Dyn]]
|
adam@27
|
7 => (string -> xml (ctx ++ [Dyn]) [] []) -> signal (readiness a)
|
adam@27
|
8 -> xml (ctx ++ [Dyn]) [] []
|
kkallio@9
|
9 (* A version of warning that adds a chrome wrapper to the warning message. *)
|