File: svg_f.ml

package info (click to toggle)
tyxml 2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 652 kB
  • sloc: ml: 8,786; makefile: 235; sh: 1
file content (969 lines) | stat: -rw-r--r-- 27,214 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
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
(* TyXML
 * http://www.ocsigen.org/tyxml
 * Copyright (C) 2010 by Simon Castellan
 * Copyright (C) 2010 by Cecile Herbelin
 * Copyright (C) 2010 by Vincent Balat
 *
 * 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.
 *)

(** Type instantiations for SVG *)

(** This module defines basic data types for data, attributes
    and element occuring in SVG documents.
    It is based on the specification available at http://www.w3.org/TR/SVG/.

    This module is experimental, it may lack of some attributes,
    and the interface is very low level and do not take deeply into account
    the needs of SVG elements. *)

open Svg_types

open Unit

let string_of_iri x = x

module Unit = struct

  let rel x     = (x, None)
  let deg x     = (x, Some `Deg)
  let grad x    = (x, Some `Grad)
  let rad x     = (x, Some `Rad)
  let ms x      = (x, Some `Ms)
  let s x       = (x, Some `S)
  let em x      = (x, Some `Em)
  let ex x      = (x, Some `Ex)
  let px x      = (x, Some `Px)
  let in_ x     = (x, Some `In)
  let cm x      = (x, Some `Cm)
  let mm x      = (x, Some `Mm)
  let pt x      = (x, Some `Pt)
  let pc x      = (x, Some `Pc)
  let percent x = (x, Some `Percent)
  let hz x      = (x, Some `Hz)
  let khz x     = (x, Some `KHz)
  let to_string list (n, unit) = Printf.sprintf "%g%s" n begin
    match unit with
    | Some unit -> List.assoc unit list
    | None -> ""
  end
  let deg_names = [ (`Deg, "deg"); (`Grad, "grad"); (`Rad, "rad") ]
  let string_of_angle a = to_string deg_names a
  let time_names = [ (`Ms, "ms"); (`S, "s") ]
  let string_of_time a = to_string time_names a
  let length_names =
    [ (`Em, "em"); (`Ex, "ex"); (`Px, "px"); (`In, "in"); (`Cm, "cm");
      (`Mm, "mm"); (`Pt, "pt"); (`Pc, "pc"); (`Percent, "%") ]
  let string_of_length (a: length) = to_string length_names a

  let freq_names = [ (`Hz, "Hz"); (`KHz, "kHz") ]
  let string_of_freq a = to_string freq_names a

end

open Unit

let string_of_coord = string_of_length
let string_of_number = string_of_float
let string_of_number_optional_number =
  function
  | (x, Some y) -> Printf.sprintf "%g, %g" x y
  | (x, None) -> Printf.sprintf "%g" x
let string_of_percentage = Printf.sprintf "%d%%"
let string_of_strings = String.concat ", "
let string_of_transform =
  function
  | Matrix ((a, b, c, d, e, f)) ->
      Printf.sprintf "matrix(%g %g %g %g %g %g)" a b c d e f
  | Translate x ->
      Printf.sprintf "translate(%s)" (string_of_number_optional_number x)
  | Scale x ->
      Printf.sprintf "scale(%s)" (string_of_number_optional_number x)
  | Rotate ((angle, x)) ->
      Printf.sprintf "rotate(%s %s)" (string_of_angle angle)
        (match x with
         | Some ((x, y)) -> Printf.sprintf "%g %g" x y
         | None -> "")
  | SkewX angle -> Printf.sprintf "skewX(%s)" (string_of_angle angle)
  | SkewY angle -> Printf.sprintf "skewY(%s)" (string_of_angle angle)
let string_of_spacestrings = String.concat " "
let string_of_commastrings = String.concat ", "
let string_of_transforms x = String.concat " " (List.map string_of_transform x)
let string_of_fourfloats (a, b, c, d) = Printf.sprintf "%g %g %g %g" a b c d
let string_of_lengths l = String.concat " " (List.map string_of_length l)
let string_of_numbers l = String.concat " " (List.map string_of_float l)
let string_of_numbers_semicolon l =
  String.concat ";" (List.map string_of_float l)
let string_of_coords l =
  String.concat " " (List.map (fun (a, b) -> Printf.sprintf "%g, %g" a b) l)

module Make(Xml : Xml_sigs.T) = struct

  module Xml = Xml

  module Info = struct
    let content_type = "image/svg+xml"
    let alternative_content_types = []
    let emptytags = []
    let version = "SVG 1.1"
    let standard = "http://www.w3.org/TR/svg11/"
    let namespace = "http://www.w3.org/2000/svg"
    let doctype =
      Xml_print.compose_doctype	"svg"
	["-//W3C//DTD SVG 1.1//EN";
	 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"]
  end

  open Unit

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

  type 'a attrib = Xml.attrib

  type +'a elt = Xml.elt

  type +'a elts = Xml.elt list

  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) 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 tot x = x

  let totl x = x

  let toelt x = x

  let toeltl x = x

  let to_xmlattribs x = x
  let to_attrib x = x

  let nullary tag ?a () = Xml.node ?a tag []

  let unary tag ?a elt = Xml.node ?a tag [ elt ]

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

  let plus tag ?a elt elts = Xml.node ?a tag (elt :: elts)

  type altglyphdef_content =
      [ | `Ref of (glyphref elt) list | `Item of (altglyphitem elt) list
      ]

  let string_of_string s = s

  let to_xmlattribs x = x

  let float_attrib = Xml.float_attrib

  let int_attrib = Xml.int_attrib

  let string_attrib = Xml.string_attrib

  let uri_attrib = Xml.uri_attrib

  let user_attrib f name v = Xml.string_attrib name (f v)

  let metadata ?a children = Xml.node ?a "metadata" children

  let foreignobject ?a children = Xml.node ?a "foreignObject" children

  (* generated *)
  let a_version = user_attrib string_of_string "version"

  let a_baseprofile = user_attrib string_of_string "baseProfile"

  let a_x = user_attrib string_of_coord "x"

  let a_y = user_attrib string_of_coord "y"

  let a_width = user_attrib string_of_length "width"

  let a_height = user_attrib string_of_length "height"

  let a_preserveaspectratio =
    user_attrib string_of_string "preserveAspectRatio"

  let a_contentscripttype =
    user_attrib string_of_string "contentScriptType"

  let a_contentstyletype = user_attrib string_of_string "contentStyleType"

  let a_zoomAndPan x =
    user_attrib string_of_string "zoomAndSpan"
      (match x with `Disable -> "disable" | `Magnify -> "magnify")

  let a_xlink_href = user_attrib string_of_iri "xlink:href"

  let a_requiredfeatures =
    user_attrib string_of_spacestrings "requiredFeatures"

  let a_requiredextensions =
    user_attrib string_of_spacestrings "requiredExtension"

  let a_systemlanguage =
    user_attrib string_of_commastrings "systemLanguage"

  let a_externalressourcesrequired =
    user_attrib string_of_bool "externalRessourcesRequired"

  let a_id = user_attrib string_of_string "id"

  let a_xml_base = user_attrib string_of_iri "xml:base"

  let a_xml_lang = user_attrib string_of_iri "xml:lang"

  let a_xml_space x =
    user_attrib string_of_string
      "xml:space"
      (match x with | `Default -> "default" | `Preserve -> "preserve")

  let a_type = user_attrib string_of_string "type"

  let a_media = user_attrib string_of_commastrings "media"

  let a_title = user_attrib string_of_string "title"

  let a_class = user_attrib string_of_spacestrings "class"

  let a_style = user_attrib string_of_string "style"

  let a_transform = user_attrib string_of_transform "transform"

  let a_viewbox = user_attrib string_of_fourfloats "viewbox"

  let a_d = user_attrib string_of_string "d"

  let a_pathlength = user_attrib string_of_float "pathLength"

  let a_rx = user_attrib string_of_length "rx"

  let a_ry = user_attrib string_of_length "ry"

  let a_cx = user_attrib string_of_length "cx"

  let a_cy = user_attrib string_of_length "cy"

  let a_r = user_attrib string_of_length "r"

  let a_x1 = user_attrib string_of_coord "x1"

  let a_y1 = user_attrib string_of_coord "y1"

  let a_x2 = user_attrib string_of_coord "x2"

  let a_y2 = user_attrib string_of_coord "y2"

  let a_points = user_attrib string_of_coords "points"

  let a_x_list = user_attrib string_of_lengths "x"

  let a_y_list = user_attrib string_of_lengths "y"

  let a_dx = user_attrib string_of_lengths "dx"

  let a_dy = user_attrib string_of_lengths "dy"

  let a_dx_single = user_attrib string_of_length "dx"

  let a_dy_single = user_attrib string_of_length "dy"

  let a_dx_number = user_attrib string_of_number "dx"

  let a_dy_number = user_attrib string_of_number "dy"

  let a_lengthadjust x =
    user_attrib string_of_string
      "lengthAdjust"
      (match x with
        | `Spacing -> "spacing"
        | `SpacingAndGlyphs -> "spacingAndGlyphs")

  let a_textlength = user_attrib string_of_length "textLength"

  let a_rotate = user_attrib string_of_numbers "rotate"

  let a_startoffset = user_attrib string_of_length "startOffset"

  let a_method x =
    user_attrib string_of_string "method"
      (match x with | `Align -> "align" | `Stretch -> "stretch")
  let a_spacing x =
    user_attrib string_of_string "spacing"
      (match x with | `Auto -> "auto" | `Exact -> "exact")

  let a_glyphref = user_attrib string_of_string "glyphRef"

  let a_format = user_attrib string_of_string "format"

  let a_markerunits x =
    user_attrib string_of_string
      "markerUnits"
      (match x with
        | `StrokeWidth -> "strokeWidth"
        | `UserSpaceOnUse -> "userSpaceOnUse")

  let a_refx = user_attrib string_of_coord "refX"

  let a_refy = user_attrib string_of_coord "refY"

  let a_markerwidth = user_attrib string_of_length "markerWidth"

  let a_markerheight = user_attrib string_of_length "markerHeight"

  let a_orient x =
    user_attrib string_of_string "orient"
      (match x with | `Auto -> "auto" | `Angle __svg -> string_of_angle __svg)

  let a_local = user_attrib string_of_string "local"

  let a_string = user_attrib string_of_string "name"

  let a_renderingindent x =
    user_attrib string_of_string "rendering:indent"
      (match x with
        | `Auto -> "auto"
        | `Perceptual -> "perceptual"
        | `Relative_colorimetric -> "relative_colorimetric"
        | `Saturation -> "saturation"
        | `Absolute_colorimetric -> "absolute_colorimetric")

  let a_gradientunits x =
    user_attrib string_of_string "gradientUnits"
      (match x with
        | `UserSpaceOnUse -> "userSpaceOnUse"
        | `ObjectBoundingBox -> "objectBoundingBox")

  let a_gradienttransform =
    user_attrib string_of_transforms "gradient:transform"

  let a_spreadmethod x =
    user_attrib string_of_string "spreadMethod"
      (match x with
        | `Pad -> "pad"
        | `Reflect -> "reflect"
        | `Repeat -> "repeat")

  let a_fx = user_attrib string_of_coord "fx"

  let a_fy = user_attrib string_of_coord "fy"

  let a_offset x =
    user_attrib string_of_string "offset"
      (match x with
        | `Number __svg -> string_of_number __svg
        | `Percentage __svg -> string_of_percentage __svg)

  let a_patternunits x =
    user_attrib string_of_string "patternUnits"
      (match x with
        | `UserSpaceOnUse -> "userSpaceOnUse"
        | `ObjectBoundingBox -> "objectBoundingBox")

  let a_patterncontentunits x =
    user_attrib string_of_string "patternContentUnits"
      (match x with
        | `UserSpaceOnUse -> "userSpaceOnUse"
        | `ObjectBoundingBox -> "objectBoundingBox")

  let a_patterntransform =
    user_attrib string_of_transforms "patternTransform"

  let a_clippathunits x =
    user_attrib string_of_string "clipPathUnits"
      (match x with
        | `UserSpaceOnUse -> "userSpaceOnUse"
        | `ObjectBoundingBox -> "objectBoundingBox")

  let a_maskunits x =
    user_attrib string_of_string "maskUnits"
      (match x with
        | `UserSpaceOnUse -> "userSpaceOnUse"
        | `ObjectBoundingBox -> "objectBoundingBox")

  let a_maskcontentunits x =
    user_attrib string_of_string "maskContentUnits"
      (match x with
        | `UserSpaceOnUse -> "userSpaceOnUse"
        | `ObjectBoundingBox -> "objectBoundingBox")

  let a_primitiveunits x =
    user_attrib string_of_string "primitiveUnits"
      (match x with
        | `UserSpaceOnUse -> "userSpaceOnUse"
        | `ObjectBoundingBox -> "objectBoundingBox")

  let a_filterres =
    user_attrib string_of_number_optional_number "filterResUnits"

  let a_result = user_attrib string_of_string "result"

  let a_in x =
    user_attrib string_of_string "in"
      (match x with
        | `SourceGraphic -> "sourceGraphic"
        | `SourceAlpha -> "sourceAlpha"
        | `BackgroundImage -> "backgroundImage"
        | `BackgroundAlpha -> "backgroundAlpha"
        | `FillPaint -> "fillPaint"
        | `StrokePaint -> "strokePaint"
        | `Ref __svg -> string_of_string __svg)

  let a_in2 x =
    user_attrib string_of_string "in2"
      (match x with
        | `SourceGraphic -> "sourceGraphic"
        | `SourceAlpha -> "sourceAlpha"
        | `BackgroundImage -> "backgroundImage"
        | `BackgroundAlpha -> "backgroundAlpha"
        | `FillPaint -> "fillPaint"
        | `StrokePaint -> "strokePaint"
        | `Ref __svg -> string_of_string __svg)

  let a_aizmuth = user_attrib string_of_float "azimuth"

  let a_elevation = user_attrib string_of_float "elevation"

  let a_pointatx = user_attrib string_of_float "pointsAtX"

  let a_pointaty = user_attrib string_of_float "pointsAtY"

  let a_pointatz = user_attrib string_of_float "pointsAtZ"

  let a_specularexponent = user_attrib string_of_float "specularExponent"

  let a_specularconstant = user_attrib string_of_float "specularConstant"

  let a_limitingconeangle = user_attrib string_of_float "limitingConeAngle"

  let a_mode x =
    user_attrib string_of_string "mode"
      (match x with
        | `Normal -> "normal"
        | `Multiply -> "multiply"
        | `Screen -> "screen"
        | `Darken -> "darken"
        | `Lighten -> "lighten")

  let a_typefecolor x =
    user_attrib string_of_string "type"
      (match x with
        | `Matrix -> "matrix"
        | `Saturate -> "saturate"
        | `HueRotate -> "hueRotate"
        | `LuminanceToAlpha -> "luminanceToAlpha")

  let a_values = user_attrib string_of_numbers "values"

  let a_transferttype x =
    user_attrib string_of_string "type"
      (match x with
        | `Identity -> "identity"
        | `Table -> "table"
        | `Discrete -> "discrete"
        | `Linear -> "linear"
        | `Gamma -> "gamma")

  let a_tablevalues = user_attrib string_of_numbers "tableValues"

  let a_slope = user_attrib string_of_number "slope"

  let a_intercept = user_attrib string_of_number "intercept"

  let a_amplitude = user_attrib string_of_number "amplitude"

  let a_exponent = user_attrib string_of_number "exponent"

  let a_offsettransfer = user_attrib string_of_number "offset"

  let a_operator x =
    user_attrib string_of_string "operator"
      (match x with
        | `Over -> "over"
        | `In -> "in"
        | `Out -> "out"
        | `Atop -> "atop"
        | `Xor -> "xor"
        | `Arithmetic -> "arithmetic")

  let a_k1 = user_attrib string_of_number "k1"

  let a_k2 = user_attrib string_of_number "k2"

  let a_k3 = user_attrib string_of_number "k3"

  let a_k4 = user_attrib string_of_number "k4"

  let a_order = user_attrib string_of_number_optional_number "order"

  let a_kernelmatrix = user_attrib string_of_numbers "kernelMatrix"

  let a_divisor = user_attrib string_of_number "divisor"

  let a_bias = user_attrib string_of_number "bias"

  let a_kernelunitlength =
    user_attrib string_of_number_optional_number "kernelUnitLength"

  let a_targetX = user_attrib string_of_int "targetX"

  let a_targetY = user_attrib string_of_int "targetY"

  let a_edgemode x =
    user_attrib string_of_string "targetY"
      (match x with
        | `Duplicate -> "duplicate"
        | `Wrap -> "wrap"
        | `None -> "none")

  let a_preservealpha = user_attrib string_of_bool "targetY"

  let a_surfacescale = user_attrib string_of_number "surfaceScale"

  let a_diffuseconstant = user_attrib string_of_number "diffuseConstant"

  let a_scale = user_attrib string_of_number "scale"

  let a_xchannelselector x =
    user_attrib string_of_string "xChannelSelector"
      (match x with | `R -> "r" | `G -> "g" | `B -> "b" | `A -> "a")

  let a_ychannelselector x =
    user_attrib string_of_string "yChannelSelector"
      (match x with | `R -> "r" | `G -> "g" | `B -> "b" | `A -> "a")

  let a_stddeviation =
    user_attrib string_of_number_optional_number "stdDeviation"

  let a_operatormorphology x =
    user_attrib string_of_string "operatorMorphology"
      (match x with | `Erode -> "erode" | `Dilate -> "dilate")

  let a_radius = user_attrib string_of_number_optional_number "radius"

  let a_basefrenquency =
    user_attrib string_of_number_optional_number "baseFrequency"

  let a_numoctaves = user_attrib string_of_int "numOctaves"

  let a_seed = user_attrib string_of_number "seed"

  let a_stitchtiles x =
    user_attrib string_of_string "stitchTiles"
      (match x with | `Stitch -> "stitch" | `NoStitch -> "noStitch")

  let a_stitchtype x =
    user_attrib string_of_string "typeStitch"
      (match x with
        | `FractalNoise -> "fractalNoise"
        | `Turbulence -> "turbulence")

  let a_xlinkshow x =
    user_attrib string_of_string "xlink:show"
      (match x with | `New -> "new" | `Replace -> "replace")

  let a_xlinkactuate x =
    user_attrib string_of_string "xlink:actuate"
      (match x with | `OnRequest -> "onRequest")

  let a_target = user_attrib string_of_string "xlink:target"

  let a_viewtarget = user_attrib string_of_string "viewTarget"

  let a_attributename = user_attrib string_of_string "attributeName"

  let a_attributetype x =
    user_attrib string_of_string "attributeType"
      (match x with | `CSS -> "cSS" | `XML -> "xML" | `Auto -> "auto")

  let a_begin = user_attrib string_of_string "begin"

  let a_dur = user_attrib string_of_string "dur"

  let a_min = user_attrib string_of_string "min"

  let a_max = user_attrib string_of_string "max"

  let a_restart x =
    user_attrib string_of_string "restart"
      (match x with
        | `Always -> "always"
        | `WhenNotActive -> "whenNotActive"
        | `Never -> "never")

  let a_repeatcount = user_attrib string_of_string "repeatCount"

  let a_repeatdur = user_attrib string_of_string "repeatDur"

  let a_fill x =
    user_attrib string_of_string "fill"
      (match x with | `Freeze -> "freeze" | `Remove -> "remove")

  let a_calcmode x =
    user_attrib string_of_string "calcMode"
      (match x with
        | `Discrete -> "discrete"
        | `Linear -> "linear"
        | `Paced -> "paced"
        | `Spline -> "spline")

  let a_values_anim = user_attrib string_of_strings "values"

  let a_keytimes = user_attrib string_of_strings "keyTimes"

  let a_keysplines = user_attrib string_of_strings "keySplines"

  let a_from = user_attrib string_of_string "from"

  let a_to = user_attrib string_of_string "to"

  let a_by = user_attrib string_of_string "by"

  let a_additive x =
    user_attrib string_of_string "additive"
      (match x with | `Replace -> "replace" | `Sum -> "sum")

  let a_accumulate x =
    user_attrib string_of_string "accumulate"
      (match x with | `None -> "none" | `Sum -> "sum")

  let a_keypoints = user_attrib string_of_numbers_semicolon "keyPoints"

  let a_path = user_attrib string_of_string "path"

  let a_typeanimatecolor x =
    user_attrib string_of_string "type"
      (match x with
        | `Translate -> "translate"
        | `Scale -> "scale"
        | `Rotate -> "rotate"
        | `SkewX -> "skewX"
        | `SkewY -> "skewY")

  let a_horiz_origin_x = user_attrib string_of_number "horiz-origin-x"

  let a_horiz_origin_y = user_attrib string_of_number "horiz-origin-y"

  let a_horiz_adv_x = user_attrib string_of_number "horiz-adv-x"

  let a_vert_origin_x = user_attrib string_of_number "vert-origin-x"

  let a_vert_origin_y = user_attrib string_of_number "vert-origin-y"

  let a_vert_adv_y = user_attrib string_of_number "vert-adv-y"

  let a_unicode = user_attrib string_of_string "unicode"

  let a_glyphname = user_attrib string_of_string "glyphname"

  let a_orientation x =
    user_attrib string_of_string "orientation"
      (match x with | `H -> "h" | `V -> "v")

  let a_arabicform x =
    user_attrib string_of_string "arabic-form"
      (match x with
        | `Initial -> "initial"
        | `Medial -> "medial"
        | `Terminal -> "terminal"
        | `Isolated -> "isolated")

  let a_lang = user_attrib string_of_string "lang"

  let a_u1 = user_attrib string_of_string "u1"

  let a_u2 = user_attrib string_of_string "u2"

  let a_g1 = user_attrib string_of_string "g1"

  let a_g2 = user_attrib string_of_string "g2"

  let a_k = user_attrib string_of_string "k"

  let a_fontfamily = user_attrib string_of_string "font-family"

  let a_fontstyle = user_attrib string_of_string "font-style"

  let a_fontvariant = user_attrib string_of_string "font-variant"

  let a_fontweight = user_attrib string_of_string "font-weight"

  let a_fontstretch = user_attrib string_of_string "font-stretch"

  let a_fontsize = user_attrib string_of_string "font-size"

  let a_unicoderange = user_attrib string_of_string "unicode-range"

  let a_unitsperem = user_attrib string_of_string "units-per-em"

  let a_stemv = user_attrib string_of_number "stemv"

  let a_stemh = user_attrib string_of_number "stemh"

  let a_slope = user_attrib string_of_number "slope"

  let a_capheight = user_attrib string_of_number "cap-height"

  let a_xheight = user_attrib string_of_number "x-height"

  let a_accentheight = user_attrib string_of_number "accent-height"

  let a_ascent = user_attrib string_of_number "ascent"

  let a_widths = user_attrib string_of_string "widths"

  let a_bbox = user_attrib string_of_string "bbox"

  let a_ideographic = user_attrib string_of_number "ideographic"

  let a_alphabetic = user_attrib string_of_number "alphabetic"

  let a_mathematical = user_attrib string_of_number "mathematical"

  let a_hanging = user_attrib string_of_number "hanging"

  let a_videographic = user_attrib string_of_number "v-ideographic"

  let a_valphabetic = user_attrib string_of_number "v-alphabetic"

  let a_vmathematical = user_attrib string_of_number "v-mathematical"

  let a_vhanging = user_attrib string_of_number "v-hanging"

  let a_underlineposition =
    user_attrib string_of_number "underline-position"

  let a_underlinethickness =
    user_attrib string_of_number "underline-thickness"

  let a_strikethroughposition =
    user_attrib string_of_number "strikethrough-position"

  let a_strikethroughthickness =
    user_attrib string_of_number "strikethrough-thickness"

  let a_overlineposition = user_attrib string_of_number "overline-position"

  let a_overlinethickness =
    user_attrib string_of_number "overline-thickness"

  let a_string = user_attrib string_of_string "string"

  let a_name = user_attrib string_of_string "name"

  let a_onabort = user_attrib string_of_string "onabort"

  let a_onactivate = user_attrib string_of_string "onactivate"

  let a_onbegin = user_attrib string_of_string "onbegin"

  let a_onclick = user_attrib string_of_string "onclick"

  let a_onend = user_attrib string_of_string "onend"

  let a_onerror = user_attrib string_of_string "onerror"

  let a_onfocusin = user_attrib string_of_string "onfocusin"

  let a_onfocusout = user_attrib string_of_string "onfocusout"

  let a_onload = user_attrib string_of_string "onload"

  let a_onmousedown = user_attrib string_of_string "onmousdown"

  let a_onmouseup = user_attrib string_of_string "onmouseup"

  let a_onmouseover = user_attrib string_of_string "onmouseover"

  let a_onmouseout = user_attrib string_of_string "onmouseout"

  let a_onmousemove = user_attrib string_of_string "onmousemove"

  let a_onrepeat = user_attrib string_of_string "onrepeat"

  let a_onresize = user_attrib string_of_string "onresize"

  let a_onscroll = user_attrib string_of_string "onscroll"

  let a_onunload = user_attrib string_of_string "onunload"

  let a_onzoom = user_attrib string_of_string "onzoom"

  (* also generated *)
  let svg = star "svg"

  let g = star "g"

  let defs = star "defs"

  let desc = unary "desc"

  let title = unary "title"

  let symbol = star "symbol"

  let use = star "use"

  let image = star "image"

  let switch = star "switch"

  let style = unary "style"

  let path = star "path"

  let rect = star "rect"

  let circle = star "circle"

  let ellipse = star "ellipse"

  let line = star "line"

  let polyline = star "polyline"

  let polygon = star "polygon"

  let text = star "text"

  let tspan = star "tspan"

  let tref = star "tref"

  let textpath = star "textPath"

  let altglyph = unary "altGlyph"

  let altglyphdef = unary "altGlyphDef"

  let altglyphitem = plus "altGlyphItem"

  let glyphref = nullary "glyphRef];"

  let marker = star "marker"

  let colorprofile = star "colorProfile"

  let lineargradient = star "linear-gradient"

  let radialgradient = star "radial-gradient"

  let gradientstop = star "gradient-stop"

  let pattern = star "pattern"

  let clippath = star "clipPath"

  let filter = star "filter"

  let fedistantlight = star "feDistantLight"

  let fepointlight = star "fePointLight"

  let fespotlight = star "feSpotLight"

  let feblend = star "feBlend"

  let fecolormatrix = star "feColorMatrix"

  let fecomponenttransfer = star "feComponentTransfer"

  let fefunca = star "feFuncA"

  let fefuncg = star "feFuncA"

  let fefuncb = star "feFuncA"

  let fefuncr = star "feFuncA"

  let fecomposite = star "(*"

  let feconvolvematrix = star "feConvolveMatrix"

  let fediffuselighting = star "(*"

  let fedisplacementmap = star "feDisplacementMap];"

  let feflood = star "(*"

  let fegaussianblur = star "];"

  let feimage = star "(*"

  let femerge = star "feMerge"

  let femorphology = star "feMorphology"

  let feoffset = star "feOffset"

  let fespecularlighting = star "feSpecularLighting"

  let fetile = star "feTile"

  let feturbulence = star "feTurbulence"

  let cursor = star "(*"

  let a = star "a"

  let view = star "view"

  let script = unary "script"

  let animation = star "(*"

  let set = star "set"

  let animatemotion = star "animateMotion"

  let mpath = star "mpath"

  let animatecolor = star "animateColor"

  let animatetransform = star "animateTransform"

  let font = star "font"

  let glyph = star "glyph"

  let missingglyph = star "missingGlyph"

  let hkern = nullary "hkern"

  let vkern = nullary "vkern"

  let fontface = nullary "fontFace"

  let fontfacesrc = star "font-face-src"

  let fontfaceuri = star "font-face-uri"

  let fontfaceformat = nullary "font-face-uri"

  let fontfacename = nullary "font-face-name"

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

end