definition:
|
execFormDef :: HtmlFormDef a -> [(String,String)] -> IO ()
execFormDef formdef cgivars = catchFormErrors $ do
val <- formDefRead formdef
hexps <- mapM execHtml (formDefView formdef val)
let (iform,_) = instHtmlRefs hexps 0
cenv = cgiGetValue cgivars
p <- maybe (return noHandlerPage) (\h -> h cenv) (findHandler cenv iform)
execPage p >>= printPage
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Translates a form definition into an operation which takes
--- CGI variables and their values and produces the HTML text on
--- standard output.
--- The generated operation processes reads the required data (by executing
--- the read action of the form definition) and
--- constructs the initial form to find the corresponding event handler
--- contained in this form.
--- The list of CGI variables/values is passed as the second argument.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
execFormDef
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
HTML.Base.HtmlFormDef a -> [(String, String)] -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|