package cow

  1. Overview
  2. Docs

Source file html.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
(*
 * Copyright (c) 2010 Thomas Gazagnaire <thomas@gazagnaire.org>
 * Copyright (c) 2013 Anil Madhavapeddy <anil@recoil.org>
 * Copyright (c) 2015 David Sheets <sheets@alum.mit.edu>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *)

let (@@) f x = f x

let (|>) x f = f x

type t = Xml.t

let void_elements = [
  "img";
  "input";
  "link";
  "meta";
  "br";
  "hr";
  "source";
  "wbr";
  "param";
  "embed";
  "base";
  "area";
  "col";
  "track";
  "keygen";
]

type node = ?cls:string -> ?id:string -> ?attrs:(string * string) list -> t -> t

let tag name ?cls ?id ?(attrs=[]) t =
  let attrs = match id with
    | None   -> attrs
    | Some i -> ("id", i) :: attrs
  in
  let attrs = match cls with
    | None   -> attrs
    | Some c -> ("class", c) :: attrs
  in
  Xml.tag name ~attrs t

let empty: t = []
let div = tag "div"
let span = tag "span"

let add_oattr name attr attrs =
  match attr with
  | None   -> attrs
  | Some i -> (name, i) :: attrs

let add_uattr name attr attrs =
  match attr with
  | None   -> attrs
  | Some i -> (name, Uri.to_string i) :: attrs

let add_iattr name attr attrs =
  match attr with
  | None   -> attrs
  | Some i -> (name, string_of_int i) :: attrs

let add_battr name attr attrs =
  if attr then (name, name) :: attrs else attrs

let input ?cls ?id ?(attrs=[]) ?ty v =
  let attrs = ("value", v)
              :: add_oattr "type" ty attrs in
  tag "input" ?cls ?id ~attrs empty

let br = tag "br" empty
let hr = tag "hr" empty

let source ?media ?ty uri =
  let attrs = add_oattr "media" media []
              |> add_oattr "type" ty in
  tag "source" empty ~attrs:(("src", Uri.to_string uri) :: attrs)

let wbr = tag "wbr" empty

let param ~name v =
  tag "param" empty ~attrs:[("name", name); ("value", v)]

let embed ?width ?height ?ty ?(attrs=[]) uri =
  let attrs = attrs
              |> add_iattr "width" width
              |> add_iattr "height" height
              |> add_oattr "type" ty in
  tag "embed" empty ~attrs:(("src", Uri.to_string uri) :: attrs)

let col ?cls ?style ?(attrs=[]) n =
  let attrs = ("span", string_of_int n) :: attrs in
  tag "col" empty ?cls ~attrs:(add_oattr "style" style attrs)

let track ?(default=false) ?label kind uri =
  let attrs = add_battr "default" default []
              |> add_oattr "label" label in
  let attrs = match kind with
    | `Captions -> ("kind", "captions") :: attrs
    | `Chapters -> ("kind", "chapters") :: attrs
    | `Descriptions-> ("kind", "descriptions") :: attrs
    | `Metadata-> ("kind", "metadata") :: attrs
    | `Subtitles lang-> ("kind", "subtitles") :: ("srclang", lang) :: attrs in
  let attrs = ("src", Uri.to_string uri) :: attrs in
  tag "track" empty ~attrs

let keygen ?(autofocus=false) ?(disabled=false) ?form ?(challenge=true)
      ?(keytype=`RSA) name =
  let attrs = add_battr "autofocus" autofocus []
              |> add_battr "disabled" disabled
              |> add_oattr "form" form
              |> add_battr "challenge" challenge in
  let attrs = match keytype with
    | `RSA -> ("keytype", "rsa") :: attrs
    | `DSA -> ("keytype", "dsa") :: attrs
    | `EC  -> ("keytype", "ec")  :: attrs in
  tag "keygen" empty ~attrs:(("name", name) :: attrs)

let html = tag "html"
let footer = tag "footer"
let header = tag "header"
let head = tag "head"
let title = tag "title"
let body = tag "body"
let nav = tag "nav"
let tr = tag "tr"
let th = tag "th"
let td = tag "td"
let article = tag "article"
let section = tag "section"
let address = tag "address"

let list = List.concat
let some = function None -> empty | Some x -> x

let i = tag "i"
let p = tag "p"
let tt = tag "tt"
let aside = tag "aside"
let pre = tag "pre"
let main = tag "main"

let link ?cls ?id ?(attrs=[]) ?title ?media ?ty ?rel href =
  let attrs = add_oattr "media" media attrs
              |> add_oattr "title" title
              |> add_oattr "rel" rel
              |> add_oattr "type" ty in
  tag "link" empty ?cls ?id ~attrs:(("href", Uri.to_string href) :: attrs)

let base ?cls ?id ?(attrs=[]) ?target href =
  tag "base" empty ?cls ?id
    ~attrs:(("href", Uri.to_string href) :: add_oattr "target" target attrs)

let meta ?cls ?id ?name ?content ?charset attrs =
  tag "meta" empty ?cls ?id
    ~attrs:(add_oattr "name" name
           (add_oattr "content" content
           (add_oattr "charset" charset attrs)))

let blockquote ?cls ?id ?(attrs=[]) ?cite x =
  tag "blockquote" ?cls ?id
    ~attrs:(add_uattr "cite" cite attrs) x

let figure ?cls ?id ?(attrs=[]) ?figcaption x =
  let x = match figcaption with
    | None   -> x
    | Some i -> tag "figcaption" Xml.(i ++ x)
  in
  tag "figure" ?cls ?id ~attrs x

let em = tag "em"
let strong = tag "strong"
let s = tag "s"
let cite = tag "cite"
let code = tag "code"
let var = tag "var"
let samp = tag "samp"
let kbd = tag "kbd"
let sub = tag "sub"
let sup = tag "sup"
let b = tag "b"
let u = tag "u"
let mark = tag "mark"
let bdi = tag "bdi"
let bdo = tag "bdo"

let q ?cls ?id ?(attrs=[]) ?cite x =
  let attrs = match cite with
    | None   -> attrs
    | Some i -> ("cite", Uri.to_string i) :: attrs
  in
  tag "q" ?cls ?id ~attrs x

let dfn ?cls ?id ?(attrs=[]) ?title x =
  tag "dfn" ?cls ?id
    ~attrs:(add_oattr "title" title attrs) x

let abbr ?cls ?id ?(attrs=[]) ?title x =
  tag "abbr" ?cls ?id
    ~attrs:(add_oattr "title" title attrs) x

let data ?cls ?id ?(attrs=[]) ~value x =
  tag "data" ?cls ?id ~attrs:(("value", value) :: attrs) x

let time ?cls ?id ?(attrs=[]) ?datetime x =
  tag "time" ?cls ?id
    ~attrs:(add_oattr "datetime" datetime attrs) x

let ruby = tag "ruby"
let rb = tag "rb"
let rt = tag "rt"
let rtc = tag "rtc"
let rp = tag "rp"

let ins ?cls ?id ?(attrs=[]) ?cite ?datetime x =
  tag "ins" ?cls ?id
    ~attrs:(add_oattr "datetime" datetime
           (add_uattr "cite" cite attrs)) x

let del ?cls ?id ?(attrs=[]) ?cite ?datetime x =
  tag "del" ?cls ?id
    ~attrs:(add_oattr "datetime" datetime
           (add_uattr "cite" cite attrs)) x

let nil = empty
let concat = list

let li ?cls ?id ?attrs x =
  tag ?cls ?id ?attrs "li" x

let dt ?cls ?id ?attrs x =
  tag ?cls ?id ?attrs "dt" x

let dd ?cls ?id ?attrs x =
  tag ?cls ?id ?attrs "dd" x

let ul ?(add_li=true) ?cls ?id ?attrs ?licls ls =
  let ls = if add_li then List.map (fun x -> li ?cls:licls x) ls else ls in
  tag ?cls ?id ?attrs "ul" (list ls)

let ol ?(add_li=false) ?cls ?id ?attrs ?licls ls =
  let ls = if add_li then List.map (fun x -> li ?cls:licls x) ls else ls in
  tag ?cls ?id ?attrs "ol" (list ls)

let dl ?(add_dtdd=true) ?cls ?id ?attrs ?dtcls ?ddcls lss =
  let lss = if add_dtdd
            then List.map
                   (fun (t, d) -> list [dt ?cls:dtcls t; dd ?cls:ddcls d]) lss
            else List.map (fun (t, d) -> list [t; d]) lss in
  tag ?cls ?id ?attrs "dl" (list lss)

let h1 = tag "h1"
let h2 = tag "h2"
let h3 = tag "h3"
let h4 = tag "h4"
let h5 = tag "h5"
let h6 = tag "h6"

let small = tag "small"

let doctype = "<!DOCTYPE html>"

let rec generate_signals signals = function
  | `Data s -> (`Data s)::signals
  | `El (tag, children) ->
    let signals = (`El_start tag)::signals in
    let signals = List.fold_left generate_signals signals children in
    match signals with
    | `El_start ((_, tag),_) :: _ when List.mem tag void_elements ->
      `El_end::signals
    | [] | (`Data _ | `Dtd _ | `El_end)::_ -> `El_end::signals
    | `El_start _ :: _ -> `El_end::(`Data "")::signals

let output ?(nl=false) ?(indent=None) ?(ns_prefix=fun _ -> None) dest t =
  let append tree =
    let signals = generate_signals [] tree in
    let out = Xml.make_output ~decl:false ~nl ~indent ~ns_prefix dest in
    Xml.output out (`Dtd None);
    List.(iter (Xml.output out) (rev signals))
  in
  List.iter append t

let output_doc ?(nl=false) ?(indent=None) ?(ns_prefix=fun _ -> None) dest t =
  (* This could build an Xmlm.output and use `Dtd to set the DOCTYPE. *)
  let doctype = doctype ^ "\n" in
  begin match dest with
  | `Buffer buf -> Buffer.add_string buf doctype
  | `Channel oc -> output_string oc doctype
  | `Fun f ->
    let len = String.length doctype in
    for i = 0 to len - 1 do f (int_of_char doctype.[i]) done
  end;
  output ~nl ~indent ~ns_prefix dest t

let to_string t =
  let buf = Buffer.create 4096 in
  output_doc (`Buffer buf) t;
  Buffer.contents buf

let of_string ?enc str =
  Xml.of_string ~entity:Xhtml.entity ?enc str

type rel =
  [ `alternate
  | `author
  | `bookmark
  | `help
  | `license
  | `next
  | `nofollow
  | `noreferrer
  | `prefetch
  | `prev
  | `search
  | `tag ]

let string_of_rel = function
  | `alternate  -> "alternate"
  | `author     -> "author"
  | `bookmark   -> "bookmark"
  | `help       -> "help"
  | `license    -> "license"
  | `next       -> "next"
  | `nofollow   -> "nofollow"
  | `noreferrer -> "noreferrer"
  | `prefetch   -> "prefetch"
  | `prev       -> "prev"
  | `search     -> "search"
  | `tag        -> "tag"

type target =
  [ `blank
  | `parent
  | `self
  | `top
  | `Frame of string ]

let string_of_target = function
  | `blank  -> "_blank"
  | `parent -> "_parent"
  | `self   -> "_self"
  | `top    -> "_top"
  | `Frame n -> n

let a ?cls ?(attrs=[]) ?hreflang ?rel ?target ?ty ?title ?href html =
  let attrs = add_uattr "href" href attrs in
  let attrs = List.map (fun (n,v) -> (("",n), v)) attrs in
  let attrs = match hreflang with
    | Some h -> (("", "hreflang"), h) :: attrs
    | None -> attrs
  in
  let attrs = match rel with
    | Some rel ->  (("", "rel"), string_of_rel rel) :: attrs
    | None -> attrs
  in
  let attrs = match target with
    | Some t -> (("", "target"), string_of_target t) :: attrs
    | None -> attrs
  in
  let attrs = match ty with
    | Some t -> (("", "type"), t) :: attrs
    | None -> attrs
  in
  let attrs = match title with
    | Some t -> (("", "title"), t) :: attrs
    | None -> attrs
  in
  let attrs = match cls with
    | Some c -> (("", "class"), c) :: attrs
    | None -> attrs
  in
  [`El((("", "a"), attrs), html)]

let img ?alt ?width ?height ?ismap ?title ?cls ?(attrs=[]) src =
  let attrs = List.map (fun (n,v) -> (("", n), v)) attrs in
  let attrs = (("", "src"), Uri.to_string src) :: attrs in
  let attrs = match alt with
    | Some t -> (("", "alt"), t) :: attrs
    | None -> attrs in
  let attrs = match width with
    | Some w -> (("", "width"), string_of_int w) :: attrs
    | None -> attrs in
  let attrs = match height with
    | Some h -> (("", "height"), string_of_int h) :: attrs
    | None -> attrs in
  let attrs = match title with
    | Some t -> (("", "title"), t) :: attrs
    | None -> attrs in
  let attrs = match cls with
    | Some c -> (("", "class"), c) :: attrs
    | None -> attrs in
  match ismap with
  | Some u -> a ~href:u ~target:`self
               [`El((("", "img"), (("", "ismap"), "") ::attrs), [])]
  | None -> [`El((("", "img"), attrs), [])]

let anchor name = tag "a" ~attrs:["name", name] empty

let style ?media ?(scoped=false) css =
  let attrs = add_oattr "media" media []
              |> add_battr "scoped" scoped in
  tag "style" (Xml.string css) ~attrs

(* color tweaks for lists *)
let interleave classes l =
  let i = ref 0 in
  let n = Array.length classes in
  let get () =
    let res = classes.(!i mod n) in
    incr i;
    res in
  List.map (Xml.tag "div" ~attrs:["class", get ()]) l

let html_of_string s = Xml.string s
let string = html_of_string

let html_of_int i = Xml.int i
let int = html_of_int

let html_of_float f = Xml.float f
let float = html_of_float

type table = t array array

let html_of_table ?(headings=false) t =
  let hd =
    if Array.length t > 0 && headings then
      let l = Array.to_list t.(0) in
      Some (tr (list @@ List.map (fun x -> th x) l))
    else
      None in
  let tl =
    if Array.length t > 1 && headings then
      List.map Array.to_list (List.tl (Array.to_list t))
    else
      List.map Array.to_list (Array.to_list t) in
  let tl = List.map (fun l -> tr (list @@ List.map (fun x -> td x) l)) tl in
  Xml.(tag "table" (some hd ++ list tl))

let append (_to : t) (el : t) = _to @ el
let (++) = append

module Create = struct
  module Tags = struct
    type html_list = [ `Ol of t list | `Ul of t list ]

    type color =
      | Rgba of char * char * char * char
      | Rgb of char * char * char

  let color_of_string ?(fmt = `Hex) s =
    let s = String.lowercase_ascii s in
    let coi = char_of_int in
    let rval = match fmt with
      | `Hex ->
        let fmt' = format_of_string "#%x" in
        let x = Scanf.sscanf s fmt' (fun x -> x) in
        let r,g,b = (x land 0xff0000) lsr 16, (x land 0xff00) lsr 8,
                    x land 0xff in
        Rgb(coi r, coi g, coi b)
      | `Rgb ->
        let fmt' = format_of_string "rgb(%d,%d,%d)" in
        let r,g,b = Scanf.sscanf s fmt' (fun a b c -> a,b,c) in
        Rgb(coi r, coi g, coi b)
    in rval

  type table_flags =
        Headings_fst_col
      | Headings_fst_row
      | Sideways
      | Heading_color of color
      | Bg_color of color

    type 'a table =
      [ `Tr of 'a table list | `Td of 'a * int * int | `Th of 'a * int * int ]
  end

  open Tags

  type t = Xml.t

  let stylesheet css =
    Xml.tag "style" ~attrs:["type","text/css"] (string css)

  let thead t = Xml.tag "thead" t
  let tbody t = Xml.tag "tbody" t

  let table ?(flags = [Headings_fst_row]) =
    let h_fst_col = ref false in
    let h_fst_row = ref false in
    let hdg_c = ref (color_of_string "#eDeDeD") in
    let bg_c = ref (color_of_string "#fFfFfF") in
    let side = ref false in
    let () = List.iter (fun tag ->
      match tag with
      | Headings_fst_col -> h_fst_col := true;
      | Headings_fst_row -> h_fst_row := true;
      | Heading_color c -> hdg_c := c;
      | Bg_color c -> bg_c := c;
      | Sideways -> side := true;
      ();)
      flags in
    let aux ~row tbl =
      let rows = List.map row tbl in
      let rows =
        if !side then
          List.mapi (fun i _ -> List.map (fun el -> List.nth el i) rows) @@ List.hd rows
        else
          rows in
      let cellify rows = List.map (fun r -> List.map (fun x -> td x) r) rows in
      let tr1 row = tr(List.flatten row) in
      let tr rows = List.concat (List.map tr1 rows) in
      let rows =
        match !h_fst_row,!h_fst_col with
        | false,false ->
            tbody (tr (cellify rows))
        | true,false ->
            let hrow = List.hd rows |> List.map (fun x -> th x) in
            let rest = cellify (List.tl rows) in
            thead (tr1 hrow) @ tbody (tr rest)
        | false,true ->
            List.map (fun r ->
              let h = List.hd r in
              let rest = List.map (fun x -> td x) (List.tl r) in
              th h :: rest
              ) rows
            |> tr
        | true,true ->
            let hrow = List.hd rows |> List.map (fun x -> th x) in
            let rest =
              List.tl rows
              |> List.map (fun r ->
                  let hcell = List.hd r in
                  let rest = List.flatten @@ cellify [List.tl r] in
                  th hcell:: rest)
            in thead(tr1 hrow) @ tbody(tr rest)
      in
      Xml.tag "table" rows
    in aux

end

let script ?src ?ty ?charset body =
  let attrs = add_uattr "src" src []
              |> add_oattr "type" ty
              |> add_oattr "charset" charset in
  tag "script" ~attrs body
OCaml

Innovation. Community. Security.