definition:
|
addCookies :: [(String,String)] -> HtmlPage -> HtmlPage
addCookies cs (HtmlPage title params hexps) =
HtmlPage title (map pageCookie cs ++ params) hexps
addCookies _ (HtmlAnswer _ _) =
error "addCookies: cannot add cookie to HTML answer"
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds simple cookie to an HTML page.
--- The cookies are sent to the client's browser together with this page.
--- @param cs - the cookies as a list of name/value pairs
--- @param form - the form to add cookies to
--- @return a new HTML page
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{HtmlPage}) |-> {HtmlPage}}
|
name:
|
addCookies
|
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
|