File: xhtml_f.ml

package info (click to toggle)
tyxml 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 884 kB
  • ctags: 5,290
  • sloc: ml: 14,771; makefile: 184; sh: 22
file content (849 lines) | stat: -rw-r--r-- 24,362 bytes parent folder | download
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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
(* TyXML
 * http://www.ocsigen.org/tyxml
 * Copyright (C) 2004 by Thorsten Ohl <ohl@physik.uni-wuerzburg.de>
 * Copyright (C) 2007 by Vincent Balat, Gabriel Kerneis
 * Copyright (C) 2010 by Cecile Herbelin
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General 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., 51 Franklin Street, Suite 500, Boston, MA 02111-1307, USA.
 *)

(* IDEAS:
      The [a_] prefix would have to be maintained and the
   only advantage are a potentially better mapping of the XHTML modularization
   to O'Caml modules. *)

(** Typesafe constructors for XHTML 1.1 documents.
    @see <http://www.w3.org/TR/xhtml-modularization/abstract_modules.html> W3C Recommendation *)

open Xhtml_types

module Version(Xml : Xml_sigs.T) = struct

  module Xml = Xml

  type uri = Xml.uri
  let string_of_uri = Xml.string_of_uri
  let uri_of_string = Xml.uri_of_string

  (* Directly from http://www.w3.org/TR/xhtml-modularization/abstract_modules.html *)

  type core = [ `Class | `Id | `Title | `XML_space ]
  type i18n = [ `XML_lang | `Dir ]

  type events =
      [ `OnClick | `OnDblClick | `OnMouseDown | `OnMouseUp |
        `OnMouseOver | `OnMouseMove | `OnMouseOut | `OnKeyPress |
	`OnKeyDown | `OnKeyUp ]

  type common = [ core | i18n | events | `Style_Attr]

  type 'a attrib = Xml.attrib

  let to_xmlattribs x = x (* VB *)
  let to_attrib x = x

  let int_attrib = Xml.int_attrib
  let string_attrib = Xml.string_attrib
  let uri_attrib = Xml.uri_attrib
  let uris_attrib = Xml.uris_attrib
  let space_sep_attrib = Xml.space_sep_attrib
  let comma_sep_attrib = Xml.comma_sep_attrib
  let event_handler_attrib = Xml.event_handler_attrib

  (* Deprecated alias. *)
  let event_attrib = Xml.event_handler_attrib

  type cdata = string
  type id = string
  type idref = string
  type idrefs = idref list (* space-separated *)
  type name = string
  type nmtoken = string
  type nmtokens = nmtoken list (* space-separated *)
  type pcdata = string

  type character = char
  type charset = string
  type charsets = charset list (* space-separated *)

  type contenttype = string
  type contenttypes = contenttype list (* comma-separated *)
  type coords = string list (* Comma separated list of coordinates to use in defining areas. *)
  type datetime = string
  type fpi = string
  type frametarget = string
  type languagecode = string
  type length = [ `Pixels of int | `Percent of int ]
  type linktypes =
      [`Alternate | `Appendix | `Bookmark | `Chapter | `Contents
    | `Copyright | `Glossary | `Help | `Index | `Next | `Prev
    | `Section | `Start | `Stylesheet | `Subsection | `Other of string] list
  type mediadesc =
      [ `All | `Aural | `Braille | `Embossed | `Handheld | `Print
    | `Projection | `Screen | `Speech | `TTY | `TV ] list

  type multilength = [ length | `Relative of int ]
  type multilengths = multilength list (* comma-separated *)
  type number = int
  type pixels = int
  type script = string
  type text = string

  let length_attrib name = function
    | `Pixels p -> int_attrib name p
    | `Percent p -> string_attrib name (string_of_int p ^ "%")

  let multilength_attrib name = function
    | #length as l -> length_attrib name l
    | `Relative 1 -> string_attrib name "*"
    | `Relative i -> string_attrib name (string_of_int i ^ "*")

  let multilength_to_string = function
    | `Pixels p -> string_of_int p
    | `Percent p -> string_of_int p ^ "%"
    | `Relative 1 -> "*"
    | `Relative i -> string_of_int i ^ "*"

  let multilengths_attrib name multilengths =
    string_attrib name
      (String.concat ", " (List.map multilength_to_string multilengths))

  let linktype_to_string = function
    | `Alternate -> "alternate"
    | `Appendix -> "appendix"
    | `Bookmark -> "bookmark"
    | `Chapter -> "chapter"
    | `Contents -> "contents"
    | `Copyright -> "copyright"
    | `Glossary -> "glossary"
    | `Help -> "help"
    | `Index -> "index"
    | `Next -> "next"
    | `Prev -> "prev"
    | `Section -> "section"
    | `Start -> "start"
    | `Stylesheet -> "stylesheet"
    | `Subsection -> "subsection"
    | `Other t -> t

  let linktypes_attrib name linktypes =
    string_attrib name
      (String.concat " " (List.map linktype_to_string linktypes))

  let mediadesc_to_string = function
    | `All -> "all"
    | `Aural -> "aural"
    | `Braille -> "braille"
    | `Embossed -> "embossed"
    | `Handheld -> "handheld"
    | `Print -> "print"
    | `Projection -> "projection"
    | `Screen -> "screen"
    | `Speech -> "speech"
    | `TTY -> "tty"
    | `TV -> "tv"

  let mediadesc_attrib name mediadescs =
    string_attrib name
      (String.concat ", " (List.map mediadesc_to_string mediadescs))

      (* Core: *)

  let a_class = space_sep_attrib "class"
      (* class is different on client side.
         We put the value in xml.ml
         because this file has a different implementation client side.
       *)
  let a_id = string_attrib "id"
  let a_title = string_attrib "title"

      (* I18N: *)

  let a_xml_lang = string_attrib "xml:lang"

      (* Style: *)

  let a_style = string_attrib "style"


      (* Events: *)

  let a_onblur = event_attrib "onblur"
  let a_onclick = event_attrib "onclick"
  let a_ondblclick = event_attrib "ondblclick"
  let a_onchange = event_attrib "onchange"
  let a_onfocus = event_attrib "onfocus"
  let a_onload = event_attrib "onload"
  let a_onunload = event_attrib "onunload"
  let a_onreset = event_attrib "onreset"
  let a_onselect = event_attrib "onselect"
  let a_onsubmit = event_attrib "onsubmit"
  let a_onmousedown = event_attrib "onmousedown"
  let a_onmouseup = event_attrib "onmouseup"
  let a_onmouseover = event_attrib "onmouseover"
  let a_onmousemove = event_attrib "onmousemove"
  let a_onmouseout = event_attrib "onmouseout"
  let a_onkeypress = event_attrib "onkeypress"
  let a_onkeydown = event_attrib "onkeydown"
  let a_onkeyup = event_attrib "onkeyup"


      (* Other Attributes *)

  let a_profile = uri_attrib "profile"
  let a_version = string_attrib "version"
  let a_xmlns = function
    | `W3_org_1999_xhtml -> string_attrib "xmlns" "http://www.w3.org/1999/xhtml"

  let a_cite = uri_attrib "cite"
  let a_xml_space = function
    | `Preserve -> string_attrib "xml:space" "preserve"

  let a_accesskey c = string_attrib "accesskey" (String.make 1 c)
  let a_charset = string_attrib "charset"
  let a_accept_charset = string_attrib "accept-charset"
  let a_accept = string_attrib "accept"
  let a_href = uri_attrib "href"
  let a_hreflang = string_attrib "hreflang"
  let a_rel = linktypes_attrib "rel"
  let a_rev = linktypes_attrib "rev"
  let a_tabindex = int_attrib "tabindex"
  let a_type = string_attrib "type"

  let a_alt = string_attrib "alt"
  let a_height p = length_attrib "height" p
  let a_longdesc = uri_attrib "longdesc"
  let a_src = uri_attrib "src"
  let a_width p = length_attrib "width" p

  let a_for = string_attrib "for"
  let a_selected = function
    | `Selected -> string_attrib "selected" "selected"
  let a_value = string_attrib "value"
  let a_action = uri_attrib "action"
  let a_method m =
    string_attrib "method" (match m with `Get ->  "get" | `Post -> "post")
  let a_enctype = string_attrib "enctype"

  let a_ismap `Ismap = string_attrib "ismap" "ismap"

  let a_checked `Checked = string_attrib "checked" "checked"
  let a_disabled `Disabled = string_attrib "disabled" "disabled"
  let a_readonly `ReadOnly = string_attrib "readonly" "readonly"
  let a_maxlength = int_attrib "maxlength"
  let a_name = string_attrib "name"

  let a_span = int_attrib "span"

  let a_value_type it =
    string_attrib "valuetype"
      (match it with
      | `Data -> "data"
      | `Ref -> "ref"
      | `Object -> "object")

(* XHTML 1.0 allows the name attribute for more elements:*)
  let a_name_01_00 = string_attrib "name"

  let a_size = int_attrib "size"
  let a_input_type it =
    string_attrib "type"
      (match it with
      | `Text -> "text"
      | `Password -> "password"
      | `Checkbox -> "checkbox"
      | `Radio -> "radio"
      | `Submit -> "submit"
      | `Reset -> "reset"
      | `File -> "file"
      | `Image -> "image"
      | `Button -> "button"
      | `Hidden -> "hidden")
  let a_button_type bt =
    string_attrib "type"
      (match bt with
      | `Button -> "button"
      | `Submit -> "submit"
      | `Reset -> "reset")
  let a_multiple = function
    | `Multiple -> string_attrib "multiple" "multiple"
  let a_cols = int_attrib "cols"
  let a_rows = int_attrib "rows"

  let a_summary = string_attrib "summary"

  let a_abbr = string_attrib "attrib"
  let a_align a =
    string_attrib "align"
      (match a with
      | `Left -> "left"
      | `Center -> "center"
      | `Right -> "right"
      | `Justify -> "justify"
      | `Char -> "char")
  let a_axis = string_attrib "axis"
  let a_colspan = int_attrib "colspan"
  let a_headers = space_sep_attrib "headers"
  let a_rowspan = int_attrib "rowspan"
  let a_scope s =
    string_attrib "scope"
      (match s with
      | `Row -> "row"
      | `Col -> "col"
      | `Rowgroup -> "rowgroup"
      | `Colgroup -> "colgroup")
  let a_valign v =
    string_attrib "valign"
      (match v with
      | `Top -> "top"
      | `Middle -> "middle"
      | `Bottom -> "bottom"
      | `Baseline -> "baseline")

  let a_border = int_attrib "border"
  let a_cellpadding = length_attrib "cellpadding"
  let a_cellspacing = length_attrib "cellspacing"
  let a_datapagesize = string_attrib "datapagesize"
  let a_frame f =
    string_attrib "frame"
      (match f with
      | `Void -> "void"
      | `Above -> "above"
      | `Below -> "below"
      | `Hsides -> "hsides"
      | `LHS -> "lhs"
      | `RHS -> "rhs"
      | `Vsides -> "vsides"
      | `Box -> "box"
      | `Border -> "border")
  let a_rules r =
    string_attrib "rules"
      (match r with
      | `None -> "none"
      | `Groups -> "groups"
      | `Rows -> "rows"
      | `Cols -> "cols"
      | `All -> "all")
  let a_char c = string_attrib "char" (String.make 1 c)
  let a_charoff = length_attrib "charoff"

  let a_declare `Declare = string_attrib "declare" "declare"
  let a_classid = uri_attrib "classid"
  let a_codebase = uri_attrib "codebase"
  let a_data = uri_attrib "data"
  let a_codetype = string_attrib "codetype"
  let a_archive = uris_attrib "archive"
  let a_standby = string_attrib "standby"

  let a_fs_rows mls = multilengths_attrib "rows" mls
  let a_fs_cols mls = multilengths_attrib "cols" mls
  let a_frameborder b =
    int_attrib "frameborder" (match b with `Zero -> 0 | `One -> 1)
  let a_marginheight = int_attrib "marginheight"
  let a_marginwidth = int_attrib "marginwidth"
  let a_noresize `Noresize = string_attrib "noresize" "noresize"
  let a_scrolling s =
    string_attrib "scrolling"
      (match s with
      | `Yes -> "yes"
      | `No -> "no"
      | `Auto -> "auto")

  let a_target = string_attrib "target"

  let a_content = string_attrib "content"
  let a_http_equiv = string_attrib "http-equiv"
  let a_scheme = string_attrib "scheme"

  let a_media = mediadesc_attrib "media"

  type 'a elt = Xml.elt

  type html = [`Html] elt

	(* NB: These are more general than the ones in xhtml.mli *)

  type ('a, 'b) nullary = ?a:('a attrib list) -> unit -> 'b elt
  type ('a, 'b, 'c) unary = ?a:('a attrib list) -> 'b elt -> 'c elt
  type ('a, 'b, 'c, 'd) binary = ?a:('a attrib list) -> 'b elt -> 'c elt -> 'd elt
(* CH *)
  type ('a, 'b, 'c, 'd, 'e, 'f) quadry= ?a:('a attrib list) -> 'b elt -> 'c elt -> 'd elt -> 'e elt -> 'f elt
(* CH *)
  type ('a, 'b, 'c) star = ?a:('a attrib list) -> 'b elt list -> 'c elt
  type ('a, 'b, 'c) plus = ?a:('a attrib list) -> 'b elt -> 'b elt list -> 'c elt

  let terminal tag ?a () = Xml.leaf ?a tag
      (* let nullary tag ?a () = Xml.node ?a tag [] *)
  let unary tag ?a elt = Xml.node ?a tag [elt]
  let binary tag ?a elt1 elt2 = Xml.node ?a tag [elt1; elt2]
  let star tag ?a elts = Xml.node ?a tag elts
  let plus tag ?a elt elts = Xml.node ?a tag (elt :: elts)

(* CH *)
  let quadry tag ?a elt1 elt2 elt3 elt4 = Xml.node ?a tag [elt1; elt2; elt3; elt4]
(* CH *)


  module STRUCTURE =
    struct
      type t = [ `Body | `Head | `Html | `Title ]
    end

  let body = star "body"
  let head = plus "head"
  let title = unary "title"
  let html = binary "html"

  let pcdata = Xml.pcdata
  let entity = Xml.entity

  let space () = entity "nbsp"

  let cdata = Xml.cdata

  let cdata_script = Xml.cdata_script

  let cdata_style = Xml.cdata_style

  let unsafe_data s = Xml.encodedpcdata s


  module TEXT =
    struct
      type heading = [ `H1 | `H2 | `H3 | `H4 | `H5 | `H6 ]
      type block = [ `Address | `Blockquote | `Div | `P | `Pre ]
      type inline =
          [ `Abbr | `Acronym | `Br | `Cite | `Code | `Dfn
        | `Em | `Kbd | `Q | `Samp | `Span | `Strong | `Var ]
      type flow = [ heading | block | inline ]
    end

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

  let address = star "address"
  let blockquote = star "blockquote"
  let div = star "div"
  let p = star "p"
  let pre = star "pre"

  let abbr = star "abbr"
  let acronym = star "acronym"
  let br = terminal "br"
  let cite = star "cite"
  let code = star "code"
  let dfn = star "dfn"
  let em = star "em"
  let kbd = star "kbd"
  let q = star "q"
  let samp = star "samp"
  let span = star "span"
  let strong = star "strong"
  let var = star "var"

  module HYPERTEXT =
    struct
      type inline = [ `A ]
      type flow = inline
    end

  let a = star "a"

  module LIST =
    struct
      type list = [ `Dl | `Ol | `Ul ]
      type t = [ `Dd | `Dt | `Li ]
      type flow = list
    end

  let dl = plus "dl"
  let ol = plus "ol"
  let ul = plus "ul"
  let dd = star "dd"
  let dt = star "dt"
  let li = star "li"

  module PRESENTATION =
    struct
      type block = [ `Hr ]
      type inline = [ `B | `Big | `I | `Small | `Sub | `Sup | `Tt ]
      type flow = [ inline | block ]
    end

  let hr = terminal "hr"
  let b = star "b"
  let big = star "big"
  let i = star "i"
  let small = star "small"
  let sub = star "sub"
  let sup = star "sup"
  let tt = star "tt"


(* VB *)
  type i18nclass = [ `Bdo ]
  type shape = [ `Rect | `Circle | `Poly | `Default ]


  let a_datetime = string_attrib "datetime"

  let a_dir d =
    string_attrib "dir" (match d with `Rtl -> "rtl" | `Ltr -> "ltr")

(* CH *)
  let bdo ~dir ?(a = []) elts =
    Xml.node ~a:(a_dir dir :: a) "bdo" elts
(* CH *)

  let a_shape d =
    string_attrib "shape"
      (match d with
        `Rect -> "rect"
      | `Circle -> "circle"
      | `Poly -> "poly"
      | `Default -> "default")
  let a_coords coords =
    string_attrib "coords" (String.concat ","
                              (List.map string_of_int coords))

  let a_nohref `Nohref = string_attrib "nohref" "nohref"
  let a_usemap = string_attrib "usemap"
  let a_defer `Defer = string_attrib "defer" "defer"
  let a_label = string_attrib "label"

  let area ~alt ?(a = []) () =
    Xml.leaf ~a:(a_alt alt :: a) "area"
  let map ~id ?(a = []) elt elts =
    Xml.node ~a:(a_id id :: a) "map" (elt::elts)
  let del = star "del"
  let ins = star "ins"
  let script ~contenttype ?(a = []) elt =
    Xml.node ~a:(a_type contenttype :: a) "script" [elt]
  let noscript = plus "noscript"
(* VB *)

  module FORMS =
    struct
      type t = [ `Option ]
      type form = [ `Form ]
      type formctrl_sans_label = [ `Input | `Select | `Textarea | `Button ]
      type formctrl = [ `Label | formctrl_sans_label ]
      type block = form
      type inline_sans_label = formctrl_sans_label
      type inline = formctrl
      type flow_sans_label = [block | inline_sans_label ]
      type flow = [ block | inline ]
    end

  module Basic_Forms =
    struct
      let form ~action ?(a = []) elt elts =
        Xml.node ~a:(a_action action :: a) "form" (elt::elts)
      let input = terminal "input"
      let label = star "label"
      let option = unary "option"
      let select = plus "select"
      let textarea ~rows ~cols ?(a = []) elt =
        Xml.node ~a:(a_rows rows :: a_cols cols :: a) "textarea" [elt]
    end

  let form ~action ?(a = []) elt elts =
    Xml.node ~a:(a_action action :: a) "form" (elt::elts)
  let input = terminal "input"
  let label = star "label"
  let option = unary "option"
  let select = plus "select"
  let textarea ~rows ~cols ?(a = []) elt =
    Xml.node ~a:(a_rows rows :: a_cols cols :: a) "textarea" [elt]
  let button = star "button"
  let legend = star "legend"
  let fieldset = star "fieldset"
  let optgroup ~label ?(a = []) elt elts =
    Xml.node ~a:(a_label label :: a) "optgroup" (elt :: elts)

  module TABLES =
    struct
      type t = [ `Caption | `Td | `Th | `Tr ]
      type block = [ `Table ]
      type flow = block
    end

  let list_of_option = function
    | Some x -> [x]
    | None -> []

  let list_of_list_option = function
    | Some x -> x
    | None -> []

  module Basic_Tables =
    struct
      let a_align = a_align
      let a_scope = a_scope
      let a_valign = a_valign
      let caption = star "caption"
      let table ?caption ?a elt elts =
        Xml.node ?a "table" (list_of_option caption @ elt :: elts)
      let td = star "td"
      let th = star "th"
      let tr = plus "tr"
    end

  let caption = star "caption"

  let cols_option = function
    | Some (`Cols c) -> c
    | Some (`Colgroups c) -> c
    | None -> []

  let table ?caption ?columns ?a elt elts =
    Xml.node ?a "table"
      (list_of_option caption @ cols_option columns @ elt :: elts)

  let tablex ?caption ?columns ?thead ?tfoot ?a elt elts =
    Xml.node ?a "table"
      (list_of_option caption @ cols_option columns @
       list_of_option thead @ list_of_option tfoot @ elt :: elts)

  let td = star "td"
  let th = star "th"
  let tr = plus "tr"

  let col = terminal "col"
  let colgroup = star "colgroup"
  let thead = plus "thead"
  let tbody = plus "tbody"
  let tfoot = plus "tfoot"

  let object_ = star "object"
  let param ~name ?(a = []) () =
    Xml.leaf ~a:(a_name name :: a) "param"

  let img ~src ~alt ?(a = []) () =
    Xml.leaf ~a:(a_src src :: a_alt alt :: a) "img"

  let frameset ?noframes ?a elt elts =
    Xml.node ?a "frameset"
      (elt :: elts @ (match noframes with None -> [] | Some e -> [e]))
  let frame ~src ?(a = []) () =
    Xml.leaf ~a:(a_src src :: a) "frame"
  let noframes = unary "noframes"
  let iframe = star "iframe"

  module METAINFORMATION =
    struct
      type t = [ `Meta ]
    end

  let meta ~content ?(a = []) () =
    Xml.leaf ~a:(a_content content :: a) "meta"

  module STYLE_SHEET =
    struct
      type t = [ `Style ]
    end

  let style ~contenttype ?(a = []) elts =
    Xml.node ~a:(a_type contenttype :: a) "style" elts

  module LINK =
    struct
      type t = [ `Link ]
    end

  let link = terminal "link"

  module BASE =
    struct
      type t = [ `Base ]
    end

  let base ~href ?(a = []) ()=
    Xml.leaf ~a:(a_href href :: a) "base"

  let ruby_simple1 = binary "ruby"
  let ruby_simple2 = quadry "ruby"
  let ruby_complex = binary "ruby"

  let rbc = plus "rbc"
  let rtc = plus "rtc"
  let rtc_complex= plus "rtc"
  let rb = star "rb"
  let rt = star "rt"
  let rt_complex = star "rt"
  let rp = star "rp"

  let a_rbspan = int_attrib "rbspan"


(* VB *)
  type edit = [ `Ins | `Del ]
  type scripttag = [ `Script | `Noscript ]
  type misc = [ edit | scripttag ]

  module SPECIAL = struct
    type inline = [ `Img | `Map | `Object ]
    type block = [ `Table | `Form | `Fieldset ]
    type flow = [ inline | block ]
  end

(* VB *)

(* CH *)
  module RUBY = struct
    type inline = [ `Ruby_simple1 | `Ruby_simple2 | `Ruby_complex ]
    type flow =  inline
  end

  type no_ruby_inline = [ TEXT.inline | PRESENTATION.inline | HYPERTEXT.inline | SPECIAL.inline | FORMS.inline | i18nclass ]
  type no_ruby_content = [ `PCDATA | no_ruby_inline | misc ]
(* CH *)

  type block =
      [ TEXT.block | PRESENTATION.block | FORMS.block | TABLES.block | SPECIAL.block | TEXT.heading | LIST.list | misc ]
  type block_sans_form =
      [ TEXT.block | PRESENTATION.block | TABLES.block | TEXT.heading | LIST.list | misc ]

  type flow =
      [ TEXT.flow | HYPERTEXT.flow | LIST.flow | FORMS.flow | TABLES.flow | PRESENTATION.flow | SPECIAL.flow | i18nclass | misc | RUBY.flow ]
  type flow_sans_table =
      [ TEXT.flow | HYPERTEXT.flow | LIST.flow | FORMS.flow | PRESENTATION.flow | SPECIAL.flow | i18nclass | misc | RUBY.flow ]

  type inline =
      [ TEXT.inline | HYPERTEXT.inline | PRESENTATION.inline
    | FORMS.inline | SPECIAL.inline | i18nclass | misc | RUBY.inline ]

  type inline_sans_a_mix =
      [ TEXT.inline | PRESENTATION.inline
    | FORMS.inline | SPECIAL.inline | i18nclass | misc | RUBY.inline ]

  type buttoncontent = (* VB *)
      [ TEXT.inline | PRESENTATION.inline
    | SPECIAL.inline | i18nclass | block_sans_form ]
  type precontent = inline
  type inline_sans_label =
      [ TEXT.inline | HYPERTEXT.inline | PRESENTATION.inline
    | FORMS.inline_sans_label | SPECIAL.inline | i18nclass | misc ]

  type heading = TEXT.heading

(*
  let validator =
  "http://validator.w3.org/check/referer"

  let compose_validator_icon icon alt =
  a ~a:[a_href validator]
  [img ~src:icon ~alt ~a:[a_height (`Pixels 31); a_width (`Pixels 88)] ()]

  let validator_icon = function
  | `XHTML_01_00 -> compose_validator_icon
  "http://www.w3.org/Icons/valid-xhtml10" "Valid XHTML 1.0!"
  | `XHTML_01_01 -> compose_validator_icon
  "http://www.w3.org/Icons/valid-xhtml11" "Valid XHTML 1.1!"
 *)

  (******************************************************************)
  (* In the following, my own stuffs for Ocsigen -- Vincent: *)

  let tot x = x
  let totl x = x
  let toelt x = x
  let toeltl x = x

  type doc = [ `Html ] elt
  let doc_toelt x = x

  module Unsafe = struct

    let data s = Xml.encodedpcdata s

    let leaf tag ?a () = Xml.leaf ?a tag

    let node tag ?a elts = Xml.node ?a tag elts

    let float_attrib = Xml.float_attrib

    let int_attrib = Xml.int_attrib

    let string_attrib = Xml.string_attrib

    let uri_attrib a s = Xml.uri_attrib a s

    let space_sep_attrib = Xml.space_sep_attrib

    let comma_sep_attrib = Xml.comma_sep_attrib

    let event_handler_attrib = Xml.event_handler_attrib

  end


end

(* The following tags are written <br />, etc.
   The other empty tags are written <p></p> for html compatibility.
   See guidelines here:
   http://www.w3.org/TR/xhtml1/#guidelines
 *)
let emptytags =
  [ "hr"; "br"; "img"; "meta"; "link"; "input"; "col"; "area";
    "param"; "base"; "basefont"; "isindex"; "frame" ]

module Make_01_00(Xml : Xml_sigs.T) = struct

  module M = Version(Xml)
  include M

  module Info = struct
    let content_type = "text/html"
    let alternative_content_types = ["application/xhtml+xml"]
    let version = "XHTML 1.0"
    let standard = "http://www.w3.org/TR/xhtml1/"
    let namespace = "http://www.w3.org/1999/xhtml"
    let doctype =
      Xml_print.compose_doctype	"html"
	["-//W3C//DTD XHTML 1.0 Strict//EN";
	 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"]
    let emptytags = emptytags
  end

end

module Make_01_01(Xml : Xml_sigs.T) = struct

  module M = Version(Xml)
  include M

  module Info = struct
    let content_type = "text/html"
    let alternative_content_types = ["application/xhtml+xml"]
    let version = "XHTML 1.1"
    let standard = "http://www.w3.org/TR/xhtml11/"
    let namespace = "http://www.w3.org/1999/xhtml"
    let doctype =
      Xml_print.compose_decl () ^
      Xml_print.compose_doctype "html"
	["-//W3C//DTD XHTML 1.1//EN";
	 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"]
    let emptytags = emptytags
  end

end

module Make = Make_01_01