definition:
|
showHtmlPage :: HtmlPage -> String
showHtmlPage (HtmlAnswer _ cont) = cont
showHtmlPage (HtmlPage title params html) =
htmlPrelude ++
showHtml (BaseStruct "html" htmlTagAttrs
[BaseStruct "head" []
([BaseStruct "title" [] [BaseText (htmlQuote title)]] ++
concatMap pageParam2HTML params),
BaseStruct "body" bodyattrs html])
where
bodyattrs = [attr | (PageBodyAttr attr) <- params]
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Transforms HTML page into string representation.
--- @param page - the HTML page
--- @return string representation of the HTML document
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({HtmlAnswer}) |-> _ || ({HtmlPage}) |-> _}
|
name:
|
showHtmlPage
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
HtmlPage -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|