package eliom
Advanced client/server Web and mobile framework
Install
Dune Dependency
Authors
Maintainers
Sources
11.0.1.tar.gz
md5=3aeeca5f734f8e932b5a00fbfd43bd26
sha512=d92948949c81fe5b84f7d262b72653175d4f69574cbb4f85433f3a40df436e9e78b3f024ebcd98cb0e1c8ec45af0e3f9cd1153187549883f4ddfd32feeee3176
doc/src/eliom.client/eliommod_cookies.ml.html
Source file eliommod_cookies.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
(* Ocsigen * http://www.ocsigen.org * Copyright (C) 2010 Vincent Balat * * This program is free softwar the GNU Lesser Public License as published by * the Free Software Foundation, with linking exception; * either version 2.1 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *) open Js_of_ocaml open Eliom_lib include Eliom_cookies_base (* CCC The tables are indexed by the hostname, not the port appear. there are no particular reason. If needed it is possible to add it *) let : (float option * string * bool) Ocsigen_cookie_map.Map_inner.t Ocsigen_cookie_map.Map_path.t Jstable.t = Jstable.create () (** [in_local_storage] implements cookie substitutes for iOS WKWebView *) let get_table ?(in_local_storage = false) = function | None -> Ocsigen_cookie_map.Map_path.empty | Some host -> if in_local_storage then let host = Js.string (host ^ "/substitutes") in Js.Optdef.case Dom_html.window##.localStorage (fun () -> Ocsigen_cookie_map.Map_path.empty) (fun st -> Js.Opt.case st ## (getItem host) (fun () -> Ocsigen_cookie_map.Map_path.empty) (fun v -> Json.unsafe_input v)) else Js.Optdef.get (Jstable.find cookie_tables (Js.string host)) (fun () -> Ocsigen_cookie_map.Map_path.empty) (** [in_local_storage] implements cookie substitutes for iOS WKWebView *) let set_table ?(in_local_storage = false) host t = match host with | None -> () | Some host -> if in_local_storage then let host = Js.string (host ^ "/substitutes") in Js.Optdef.case Dom_html.window##.localStorage (fun () -> ()) (fun st -> st ## (setItem host (Json.output t))) else Jstable.add cookie_tables (Js.string host) t let now () = let date = new%js Js.date_now in date##getTime /. 1000. (** [in_local_storage] implements cookie substitutes for iOS WKWebView *) let ?(in_local_storage = false) host = let now = now () in Ocsigen_cookie_map.Map_path.iter (fun path table -> Ocsigen_cookie_map.Map_inner.iter (fun name -> function | OSet (Some exp, _, _) when exp <= now -> set_table ~in_local_storage host (Ocsigen_cookie_map.Poly.remove ~path name (get_table ~in_local_storage host)) | OUnset -> set_table ~in_local_storage host (Ocsigen_cookie_map.Poly.remove ~path name (get_table ~in_local_storage host)) | OSet (exp, value, secure) -> set_table ~in_local_storage host (Ocsigen_cookie_map.Poly.add ~path name (exp, value, secure) (get_table ~in_local_storage host))) table) cookies (** [in_local_storage] implements cookie substitutes for iOS WKWebView *) let ?(in_local_storage = false) host https path = let now = now () in Ocsigen_cookie_map.Map_path.fold (fun cpath t -> if Url.is_prefix_skip_end_slash (Url.remove_slash_at_beginning cpath) (Url.remove_slash_at_beginning path) then Ocsigen_cookie_map.Map_inner.fold (fun name (exp, value, secure) -> match exp with | Some exp when exp <= now -> set_table ~in_local_storage host (Ocsigen_cookie_map.Poly.remove ~path:cpath name (get_table ~in_local_storage host)); cookies_to_send | _ -> if (not secure) || https then (name, value) :: cookies_to_send else cookies_to_send) t cookies_to_send else cookies_to_send) (get_table ~in_local_storage host) [] let make_new_session_id () = failwith "Cannot define anonymous coservices on client side. Ask their values to the server."
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>