definition:
|
addHttpHeader :: String -> String -> HtmlPage -> HtmlPage
addHttpHeader key value (HtmlPage t fas hs) =
HtmlPage t (HttpHeader key value : fas) hs
addHttpHeader _ _ (HtmlAnswer _ _) =
error "addHttpHeader: cannot add HTTP header to HTML answer"
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds a HTTP header to a HTML page.
--- Headers are sent to the client's browser together with the page.
--- @param key - the name of the HTTP header field
--- @param value - the value of the HTTP header field
--- @param page - the page to which the header is added
--- @return a new HTML page
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{HtmlPage}) |-> {HtmlPage}}
|
name:
|
addHttpHeader
|
precedence:
|
no precedence defined
|
result-values:
|
{HtmlPage}
|
signature:
|
String -> String -> HtmlPage -> HtmlPage
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|