Skip to content

Commit a8d2cc3

Browse files
authored
Merge branch 'master' into cookies
2 parents 2fb765c + 5253f7d commit a8d2cc3

123 files changed

Lines changed: 1245 additions & 25 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For web:
3636
- javascript XHR implemenation `ez_api.ixhr` or `ez_api.ixhr_lwt`
3737
- cohttp web `ez_api.icoxhr` or `ez_api.icoxhr_lwt` that requires cohttp-lwt-jsoo:
3838
```
39-
opem install cohttp-lwt-jsoo
39+
opam install cohttp-lwt-jsoo
4040
```
4141
- fetch implemetation `ez_api.ifetch` or `ez_api.ifetch_lwt` requiring `ezjs_fetch`
4242
```

src/common/arg.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2023 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
module Ty = struct
212

313
type 'a witness = ..

src/common/doc.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2023 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
type t = {
212
doc_id : int; (* uniq service identifier *)
313
doc_name : string option;

src/common/err.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2023 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
module IntMap = Map.Make(struct type t = int let compare = compare end)
212

313
type _ case =

src/common/error_codes.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2023 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
open Map.Make(Int)
212

313
let codes =

src/common/ezAPI.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2023 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
module Arg = Arg
212
module Url = Url
313
module Security = Security

src/common/js/ezDebug.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2022 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
open Js_of_ocaml
212

313
let printf fmt = Printf.kprintf (fun s -> Firebug.console##debug (Js.string s)) fmt

src/common/js/ezLwtSys.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2022 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
let run = Lwt.async
212
let sleep d =
313
let t, w = Lwt.task () in

src/common/meth.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2023 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
type empty = [ `OPTIONS | `HEAD ]
212
type t = [ `GET | `POST | `PUT | `DELETE | `PATCH ]
313
type all = [ t | empty ]

src/common/mime.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(**************************************************************************)
2+
(* *)
3+
(* Copyright 2018-2023 OCamlPro *)
4+
(* *)
5+
(* All rights reserved. This file is distributed under the terms of the *)
6+
(* GNU Lesser General Public License version 2.1, with the special *)
7+
(* exception on linking described in the file LICENSE. *)
8+
(* *)
9+
(**************************************************************************)
10+
111
type str_or_star = [ `star | `str of string ]
212

313
type t = {

0 commit comments

Comments
 (0)