view tests/cookieClear.ur @ 2253:d665925acff8

Factor out [Monoize.Fm] to make it accessible to [Sqlcache].
author Ziv Scully <ziv@mit.edu>
date Mon, 21 Sep 2015 14:54:07 -0400
parents bd6c90f5a428
children
line wrap: on
line source
cookie c : int

fun setit () =
    setCookie c {Value = 13,
                 Expires = None,
                 Secure = False};
    return <xml/>

fun doit () =
    ro <- getCookie c;
    clearCookie c;
    case ro of
      None => return <xml>None</xml>
    | Some v => return <xml>Some {[v]}</xml>

fun main () = return <xml><body>
  <form><submit value="Set it!" action={setit}/></form>
  <form><submit value="Get busy!" action={doit}/></form>
</body></xml>