CurryInfo: html2-3.5.0 / HTML.Session.sessionCookie

definition:
sessionCookie :: IO PageParam
sessionCookie = do
  sessionId <- getSessionId
  clockTime <- getClockTime
  dirpath   <- getScriptDirPath
  return $ PageCookie sessionCookieName (getId (sessionId))
                      [CookiePath (if null dirpath then "/" else dirpath),
                       CookieExpire (addMinutes sessionLifespan clockTime)]
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Creates a cookie to hold the current session id.
--- This cookie should be sent to the client together with every HTML page.
failfree:
<FAILING>
indeterministic:
might be indeterministic
infix:
no fixity defined
iotype:
{() |-> _}
name:
sessionCookie
precedence:
no precedence defined
result-values:
_
signature:
Prelude.IO HTML.Base.PageParam
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term