definition:
|
wuiSimpleRenderer :: HtmlExp -> (HtmlEnv -> IO [BaseHtml]) -> [HtmlExp]
wuiSimpleRenderer inputhexp storehandler =
[inputhexp, breakline,
button "Submit" (\env -> storehandler env >>= return . page "Answer")]
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- A standard rendering for WUI forms.
--- The arguments are the HTML expression representing the WUI fields
--- and the handler for the "submit" button.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {:}}
|
name:
|
wuiSimpleRenderer
|
precedence:
|
no precedence defined
|
result-values:
|
{:}
|
signature:
|
HTML.Base.HtmlExp -> ((HTML.Base.HtmlRef -> String)
-> Prelude.IO [HTML.Base.BaseHtml]) -> [HTML.Base.HtmlExp]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|