milkfarm-onix 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. data/CHANGELOG +136 -0
  2. data/README.markdown +40 -0
  3. data/TODO +14 -0
  4. data/dtd/2.1r3/iso-amsa.ent +173 -0
  5. data/dtd/2.1r3/iso-amsb.ent +146 -0
  6. data/dtd/2.1r3/iso-amsc.ent +49 -0
  7. data/dtd/2.1r3/iso-amsn.ent +117 -0
  8. data/dtd/2.1r3/iso-amso.ent +77 -0
  9. data/dtd/2.1r3/iso-amsr.ent +205 -0
  10. data/dtd/2.1r3/iso-box.ent +67 -0
  11. data/dtd/2.1r3/iso-cyr1.ent +94 -0
  12. data/dtd/2.1r3/iso-cyr2.ent +53 -0
  13. data/dtd/2.1r3/iso-dia.ent +41 -0
  14. data/dtd/2.1r3/iso-grk3.ent +70 -0
  15. data/dtd/2.1r3/iso-lat1.ent +89 -0
  16. data/dtd/2.1r3/iso-lat2.ent +148 -0
  17. data/dtd/2.1r3/iso-mfrk.ent +79 -0
  18. data/dtd/2.1r3/iso-mopf.ent +53 -0
  19. data/dtd/2.1r3/iso-mscr.ent +79 -0
  20. data/dtd/2.1r3/iso-num.ent +103 -0
  21. data/dtd/2.1r3/iso-num.old.ent +103 -0
  22. data/dtd/2.1r3/iso-pub.ent +110 -0
  23. data/dtd/2.1r3/iso-tech.ent +183 -0
  24. data/dtd/2.1r3/onix-international.dtd +1012 -0
  25. data/dtd/2.1r3/onix-xhtml.elt +672 -0
  26. data/dtd/2.1r3/reference.elt +4758 -0
  27. data/dtd/2.1r3/xhtml-special.ent +79 -0
  28. data/dtd/2.1r3/xhtml-symbol.ent +242 -0
  29. data/lib/onix/addressee_identifier.rb +12 -0
  30. data/lib/onix/apa_product.rb +731 -0
  31. data/lib/onix/audience_range.rb +26 -0
  32. data/lib/onix/common.rb +26 -0
  33. data/lib/onix/contributor.rb +27 -0
  34. data/lib/onix/header.rb +46 -0
  35. data/lib/onix/imprint.rb +15 -0
  36. data/lib/onix/language.rb +14 -0
  37. data/lib/onix/lists/audience_code.rb +17 -0
  38. data/lib/onix/lists/country_code.rb +257 -0
  39. data/lib/onix/lists/language_code.rb +498 -0
  40. data/lib/onix/lists/language_role.rb +18 -0
  41. data/lib/onix/lists/notification_type.rb +19 -0
  42. data/lib/onix/lists/product_availability.rb +32 -0
  43. data/lib/onix/lists/product_form.rb +99 -0
  44. data/lib/onix/lists/product_form_detail.rb +157 -0
  45. data/lib/onix/market_representation.rb +19 -0
  46. data/lib/onix/measure.rb +14 -0
  47. data/lib/onix/media_file.rb +16 -0
  48. data/lib/onix/normaliser.rb +187 -0
  49. data/lib/onix/other_text.rb +17 -0
  50. data/lib/onix/price.rb +21 -0
  51. data/lib/onix/product.rb +73 -0
  52. data/lib/onix/product_identifier.rb +13 -0
  53. data/lib/onix/publisher.rb +16 -0
  54. data/lib/onix/reader.rb +187 -0
  55. data/lib/onix/sales_restriction.rb +12 -0
  56. data/lib/onix/sender_identifier.rb +14 -0
  57. data/lib/onix/series.rb +57 -0
  58. data/lib/onix/series_identifier.rb +13 -0
  59. data/lib/onix/simple_product.rb +47 -0
  60. data/lib/onix/sl_product.rb +131 -0
  61. data/lib/onix/stock.rb +15 -0
  62. data/lib/onix/subject.rb +16 -0
  63. data/lib/onix/supply_detail.rb +32 -0
  64. data/lib/onix/title.rb +17 -0
  65. data/lib/onix/website.rb +14 -0
  66. data/lib/onix/writer.rb +86 -0
  67. data/lib/onix.rb +114 -0
  68. data/spec/apa_product_spec.rb +59 -0
  69. data/spec/audience_range_spec.rb +46 -0
  70. data/spec/contributor_spec.rb +42 -0
  71. data/spec/header_spec.rb +123 -0
  72. data/spec/imprint_spec.rb +39 -0
  73. data/spec/language_spec.rb +42 -0
  74. data/spec/market_representation_spec.rb +41 -0
  75. data/spec/measure_spec.rb +43 -0
  76. data/spec/media_file_spec.rb +42 -0
  77. data/spec/normaliser_spec.rb +125 -0
  78. data/spec/other_text_spec.rb +40 -0
  79. data/spec/price_spec.rb +40 -0
  80. data/spec/product_identifier_spec.rb +40 -0
  81. data/spec/product_spec.rb +96 -0
  82. data/spec/publisher_spec.rb +38 -0
  83. data/spec/reader_spec.rb +131 -0
  84. data/spec/sales_restriction_spec.rb +35 -0
  85. data/spec/sender_identifier.rb +40 -0
  86. data/spec/series_identifier_spec.rb +38 -0
  87. data/spec/series_spec.rb +34 -0
  88. data/spec/sl_product_spec.rb +48 -0
  89. data/spec/stock_spec.rb +44 -0
  90. data/spec/subject_spec.rb +40 -0
  91. data/spec/supply_detail_spec.rb +53 -0
  92. data/spec/title_spec.rb +43 -0
  93. data/spec/website_spec.rb +41 -0
  94. data/spec/writer_spec.rb +81 -0
  95. data/support/entities.txt +1499 -0
  96. data/support/extract.rb +25 -0
  97. data/support/switch-onix-2.1-short-to-reference.xsl +23 -0
  98. data/support/switch-onix-tagnames-1.1.xsl +25 -0
  99. data/support/switch-onix-tagnames-2.0.xsl +37 -0
  100. metadata +209 -0
@@ -0,0 +1,41 @@
1
+
2
+ <!--
3
+ File isodia.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1986
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY acute "&#x000B4;" ><!--=acute accent -->
29
+ <!ENTITY breve "&#x002D8;" ><!--=breve -->
30
+ <!ENTITY caron "&#x002C7;" ><!--=caron -->
31
+ <!ENTITY cedil "&#x000B8;" ><!--=cedilla -->
32
+ <!ENTITY circ "&#x0005E;" ><!--circumflex accent -->
33
+ <!ENTITY dblac "&#x002DD;" ><!--=double acute accent -->
34
+ <!ENTITY die "&#x000A8;" ><!--=dieresis -->
35
+ <!ENTITY dot "&#x002D9;" ><!--=dot above -->
36
+ <!ENTITY grave "&#x00060;" ><!--=grave accent -->
37
+ <!ENTITY macr "&#x000AF;" ><!--=macron -->
38
+ <!ENTITY ogon "&#x002DB;" ><!--=ogonek -->
39
+ <!ENTITY ring "&#x002DA;" ><!--=ring -->
40
+ <!ENTITY tilde "&#x002DC;" ><!--=tilde -->
41
+ <!ENTITY uml "&#x000A8;" ><!--=umlaut mark -->
@@ -0,0 +1,70 @@
1
+
2
+ <!--
3
+ File isogrk3.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1991
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY alpha "&#x003B1;" ><!--/alpha small alpha, Greek -->
29
+ <!ENTITY beta "&#x003B2;" ><!--/beta small beta, Greek -->
30
+ <!ENTITY chi "&#x003C7;" ><!--/chi small chi, Greek -->
31
+ <!ENTITY delta "&#x003B4;" ><!--/delta small delta, Greek -->
32
+ <!ENTITY Delta "&#x00394;" ><!--/Delta capital Delta, Greek -->
33
+ <!ENTITY epsi "&#x003B5;" ><!--/straightepsilon, small epsilon, Greek -->
34
+ <!ENTITY epsiv "&#x0025B;" ><!--/varepsilon -->
35
+ <!ENTITY eta "&#x003B7;" ><!--/eta small eta, Greek -->
36
+ <!ENTITY gamma "&#x003B3;" ><!--/gamma small gamma, Greek -->
37
+ <!ENTITY Gamma "&#x00393;" ><!--/Gamma capital Gamma, Greek -->
38
+ <!ENTITY gammad "&#x003DC;" ><!--/digamma -->
39
+ <!ENTITY Gammad "&#x003DC;" ><!--capital digamma -->
40
+ <!ENTITY iota "&#x003B9;" ><!--/iota small iota, Greek -->
41
+ <!ENTITY kappa "&#x003BA;" ><!--/kappa small kappa, Greek -->
42
+ <!ENTITY kappav "&#x003F0;" ><!--/varkappa -->
43
+ <!ENTITY lambda "&#x003BB;" ><!--/lambda small lambda, Greek -->
44
+ <!ENTITY Lambda "&#x0039B;" ><!--/Lambda capital Lambda, Greek -->
45
+ <!ENTITY mu "&#x003BC;" ><!--/mu small mu, Greek -->
46
+ <!ENTITY nu "&#x003BD;" ><!--/nu small nu, Greek -->
47
+ <!ENTITY omega "&#x003C9;" ><!--/omega small omega, Greek -->
48
+ <!ENTITY Omega "&#x003A9;" ><!--/Omega capital Omega, Greek -->
49
+ <!ENTITY phi "&#x003C6;" ><!--/straightphi - small phi, Greek -->
50
+ <!ENTITY Phi "&#x003A6;" ><!--/Phi capital Phi, Greek -->
51
+ <!ENTITY phiv "&#x003D5;" ><!--/varphi - curly or open phi -->
52
+ <!ENTITY pi "&#x003C0;" ><!--/pi small pi, Greek -->
53
+ <!ENTITY Pi "&#x003A0;" ><!--/Pi capital Pi, Greek -->
54
+ <!ENTITY piv "&#x003D6;" ><!--/varpi -->
55
+ <!ENTITY psi "&#x003C8;" ><!--/psi small psi, Greek -->
56
+ <!ENTITY Psi "&#x003A8;" ><!--/Psi capital Psi, Greek -->
57
+ <!ENTITY rho "&#x003C1;" ><!--/rho small rho, Greek -->
58
+ <!ENTITY rhov "&#x003F1;" ><!--/varrho -->
59
+ <!ENTITY sigma "&#x003C3;" ><!--/sigma small sigma, Greek -->
60
+ <!ENTITY Sigma "&#x003A3;" ><!--/Sigma capital Sigma, Greek -->
61
+ <!ENTITY sigmav "&#x003C2;" ><!--/varsigma -->
62
+ <!ENTITY tau "&#x003C4;" ><!--/tau small tau, Greek -->
63
+ <!ENTITY theta "&#x003B8;" ><!--/theta straight theta, small theta, Greek -->
64
+ <!ENTITY Theta "&#x00398;" ><!--/Theta capital Theta, Greek -->
65
+ <!ENTITY thetav "&#x003D1;" ><!--/vartheta - curly or open theta -->
66
+ <!ENTITY upsi "&#x003C5;" ><!--/upsilon small upsilon, Greek -->
67
+ <!ENTITY Upsi "&#x003D2;" ><!--/Upsilon capital Upsilon, Greek -->
68
+ <!ENTITY xi "&#x003BE;" ><!--/xi small xi, Greek -->
69
+ <!ENTITY Xi "&#x0039E;" ><!--/Xi capital Xi, Greek -->
70
+ <!ENTITY zeta "&#x003B6;" ><!--/zeta small zeta, Greek -->
@@ -0,0 +1,89 @@
1
+
2
+ <!--
3
+ File isolat1.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1986
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY aacute "&#x000E1;" ><!--=small a, acute accent -->
29
+ <!ENTITY Aacute "&#x000C1;" ><!--=capital A, acute accent -->
30
+ <!ENTITY acirc "&#x000E2;" ><!--=small a, circumflex accent -->
31
+ <!ENTITY Acirc "&#x000C2;" ><!--=capital A, circumflex accent -->
32
+ <!ENTITY aelig "&#x000E6;" ><!--=small ae diphthong (ligature) -->
33
+ <!ENTITY AElig "&#x000C6;" ><!--=capital AE diphthong (ligature) -->
34
+ <!ENTITY agrave "&#x000E0;" ><!--=small a, grave accent -->
35
+ <!ENTITY Agrave "&#x000C0;" ><!--=capital A, grave accent -->
36
+ <!ENTITY aring "&#x000E5;" ><!--=small a, ring -->
37
+ <!ENTITY Aring "&#x000C5;" ><!--=capital A, ring -->
38
+ <!ENTITY atilde "&#x000E3;" ><!--=small a, tilde -->
39
+ <!ENTITY Atilde "&#x000C3;" ><!--=capital A, tilde -->
40
+ <!ENTITY auml "&#x000E4;" ><!--=small a, dieresis or umlaut mark -->
41
+ <!ENTITY Auml "&#x000C4;" ><!--=capital A, dieresis or umlaut mark -->
42
+ <!ENTITY ccedil "&#x000E7;" ><!--=small c, cedilla -->
43
+ <!ENTITY Ccedil "&#x000C7;" ><!--=capital C, cedilla -->
44
+ <!ENTITY eacute "&#x000E9;" ><!--=small e, acute accent -->
45
+ <!ENTITY Eacute "&#x000C9;" ><!--=capital E, acute accent -->
46
+ <!ENTITY ecirc "&#x000EA;" ><!--=small e, circumflex accent -->
47
+ <!ENTITY Ecirc "&#x000CA;" ><!--=capital E, circumflex accent -->
48
+ <!ENTITY egrave "&#x000E8;" ><!--=small e, grave accent -->
49
+ <!ENTITY Egrave "&#x000C8;" ><!--=capital E, grave accent -->
50
+ <!ENTITY eth "&#x000F0;" ><!--=small eth, Icelandic -->
51
+ <!ENTITY ETH "&#x000D0;" ><!--=capital Eth, Icelandic -->
52
+ <!ENTITY euml "&#x000EB;" ><!--=small e, dieresis or umlaut mark -->
53
+ <!ENTITY Euml "&#x000CB;" ><!--=capital E, dieresis or umlaut mark -->
54
+ <!ENTITY iacute "&#x000ED;" ><!--=small i, acute accent -->
55
+ <!ENTITY Iacute "&#x000CD;" ><!--=capital I, acute accent -->
56
+ <!ENTITY icirc "&#x000EE;" ><!--=small i, circumflex accent -->
57
+ <!ENTITY Icirc "&#x000CE;" ><!--=capital I, circumflex accent -->
58
+ <!ENTITY igrave "&#x000EC;" ><!--=small i, grave accent -->
59
+ <!ENTITY Igrave "&#x000CC;" ><!--=capital I, grave accent -->
60
+ <!ENTITY iuml "&#x000EF;" ><!--=small i, dieresis or umlaut mark -->
61
+ <!ENTITY Iuml "&#x000CF;" ><!--=capital I, dieresis or umlaut mark -->
62
+ <!ENTITY ntilde "&#x000F1;" ><!--=small n, tilde -->
63
+ <!ENTITY Ntilde "&#x000D1;" ><!--=capital N, tilde -->
64
+ <!ENTITY oacute "&#x000F3;" ><!--=small o, acute accent -->
65
+ <!ENTITY Oacute "&#x000D3;" ><!--=capital O, acute accent -->
66
+ <!ENTITY ocirc "&#x000F4;" ><!--=small o, circumflex accent -->
67
+ <!ENTITY Ocirc "&#x000D4;" ><!--=capital O, circumflex accent -->
68
+ <!ENTITY ograve "&#x000F2;" ><!--=small o, grave accent -->
69
+ <!ENTITY Ograve "&#x000D2;" ><!--=capital O, grave accent -->
70
+ <!ENTITY oslash "&#x000F8;" ><!--latin small letter o with stroke -->
71
+ <!ENTITY Oslash "&#x000D8;" ><!--=capital O, slash -->
72
+ <!ENTITY otilde "&#x000F5;" ><!--=small o, tilde -->
73
+ <!ENTITY Otilde "&#x000D5;" ><!--=capital O, tilde -->
74
+ <!ENTITY ouml "&#x000F6;" ><!--=small o, dieresis or umlaut mark -->
75
+ <!ENTITY Ouml "&#x000D6;" ><!--=capital O, dieresis or umlaut mark -->
76
+ <!ENTITY szlig "&#x000DF;" ><!--=small sharp s, German (sz ligature) -->
77
+ <!ENTITY thorn "&#x000FE;" ><!--=small thorn, Icelandic -->
78
+ <!ENTITY THORN "&#x000DE;" ><!--=capital THORN, Icelandic -->
79
+ <!ENTITY uacute "&#x000FA;" ><!--=small u, acute accent -->
80
+ <!ENTITY Uacute "&#x000DA;" ><!--=capital U, acute accent -->
81
+ <!ENTITY ucirc "&#x000FB;" ><!--=small u, circumflex accent -->
82
+ <!ENTITY Ucirc "&#x000DB;" ><!--=capital U, circumflex accent -->
83
+ <!ENTITY ugrave "&#x000F9;" ><!--=small u, grave accent -->
84
+ <!ENTITY Ugrave "&#x000D9;" ><!--=capital U, grave accent -->
85
+ <!ENTITY uuml "&#x000FC;" ><!--=small u, dieresis or umlaut mark -->
86
+ <!ENTITY Uuml "&#x000DC;" ><!--=capital U, dieresis or umlaut mark -->
87
+ <!ENTITY yacute "&#x000FD;" ><!--=small y, acute accent -->
88
+ <!ENTITY Yacute "&#x000DD;" ><!--=capital Y, acute accent -->
89
+ <!ENTITY yuml "&#x000FF;" ><!--=small y, dieresis or umlaut mark -->
@@ -0,0 +1,148 @@
1
+
2
+ <!--
3
+ File isolat2.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1986
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY abreve "&#x00103;" ><!--=small a, breve -->
29
+ <!ENTITY Abreve "&#x00102;" ><!--=capital A, breve -->
30
+ <!ENTITY amacr "&#x00101;" ><!--=small a, macron -->
31
+ <!ENTITY Amacr "&#x00100;" ><!--=capital A, macron -->
32
+ <!ENTITY aogon "&#x00105;" ><!--=small a, ogonek -->
33
+ <!ENTITY Aogon "&#x00104;" ><!--=capital A, ogonek -->
34
+ <!ENTITY cacute "&#x00107;" ><!--=small c, acute accent -->
35
+ <!ENTITY Cacute "&#x00106;" ><!--=capital C, acute accent -->
36
+ <!ENTITY ccaron "&#x0010D;" ><!--=small c, caron -->
37
+ <!ENTITY Ccaron "&#x0010C;" ><!--=capital C, caron -->
38
+ <!ENTITY ccirc "&#x00109;" ><!--=small c, circumflex accent -->
39
+ <!ENTITY Ccirc "&#x00108;" ><!--=capital C, circumflex accent -->
40
+ <!ENTITY cdot "&#x0010B;" ><!--=small c, dot above -->
41
+ <!ENTITY Cdot "&#x0010A;" ><!--=capital C, dot above -->
42
+ <!ENTITY dcaron "&#x0010F;" ><!--=small d, caron -->
43
+ <!ENTITY Dcaron "&#x0010E;" ><!--=capital D, caron -->
44
+ <!ENTITY dstrok "&#x00111;" ><!--=small d, stroke -->
45
+ <!ENTITY Dstrok "&#x00110;" ><!--=capital D, stroke -->
46
+ <!ENTITY ecaron "&#x0011B;" ><!--=small e, caron -->
47
+ <!ENTITY Ecaron "&#x0011A;" ><!--=capital E, caron -->
48
+ <!ENTITY edot "&#x00117;" ><!--=small e, dot above -->
49
+ <!ENTITY Edot "&#x00116;" ><!--=capital E, dot above -->
50
+ <!ENTITY emacr "&#x00113;" ><!--=small e, macron -->
51
+ <!ENTITY Emacr "&#x00112;" ><!--=capital E, macron -->
52
+ <!ENTITY eng "&#x0014B;" ><!--=small eng, Lapp -->
53
+ <!ENTITY ENG "&#x0014A;" ><!--=capital ENG, Lapp -->
54
+ <!ENTITY eogon "&#x00119;" ><!--=small e, ogonek -->
55
+ <!ENTITY Eogon "&#x00118;" ><!--=capital E, ogonek -->
56
+ <!ENTITY gacute "&#x001F5;" ><!--=small g, acute accent -->
57
+ <!ENTITY gbreve "&#x0011F;" ><!--=small g, breve -->
58
+ <!ENTITY Gbreve "&#x0011E;" ><!--=capital G, breve -->
59
+ <!ENTITY Gcedil "&#x00122;" ><!--=capital G, cedilla -->
60
+ <!ENTITY gcirc "&#x0011D;" ><!--=small g, circumflex accent -->
61
+ <!ENTITY Gcirc "&#x0011C;" ><!--=capital G, circumflex accent -->
62
+ <!ENTITY gdot "&#x00121;" ><!--=small g, dot above -->
63
+ <!ENTITY Gdot "&#x00120;" ><!--=capital G, dot above -->
64
+ <!ENTITY hcirc "&#x00125;" ><!--=small h, circumflex accent -->
65
+ <!ENTITY Hcirc "&#x00124;" ><!--=capital H, circumflex accent -->
66
+ <!ENTITY hstrok "&#x00127;" ><!--=small h, stroke -->
67
+ <!ENTITY Hstrok "&#x00126;" ><!--=capital H, stroke -->
68
+ <!ENTITY Idot "&#x00130;" ><!--=capital I, dot above -->
69
+ <!ENTITY ijlig "&#x00133;" ><!--=small ij ligature -->
70
+ <!ENTITY IJlig "&#x00132;" ><!--=capital IJ ligature -->
71
+ <!ENTITY imacr "&#x0012B;" ><!--=small i, macron -->
72
+ <!ENTITY Imacr "&#x0012A;" ><!--=capital I, macron -->
73
+ <!ENTITY inodot "&#x00131;" ><!--=small i without dot -->
74
+ <!ENTITY iogon "&#x0012F;" ><!--=small i, ogonek -->
75
+ <!ENTITY Iogon "&#x0012E;" ><!--=capital I, ogonek -->
76
+ <!ENTITY itilde "&#x00129;" ><!--=small i, tilde -->
77
+ <!ENTITY Itilde "&#x00128;" ><!--=capital I, tilde -->
78
+ <!ENTITY jcirc "&#x00135;" ><!--=small j, circumflex accent -->
79
+ <!ENTITY Jcirc "&#x00134;" ><!--=capital J, circumflex accent -->
80
+ <!ENTITY kcedil "&#x00137;" ><!--=small k, cedilla -->
81
+ <!ENTITY Kcedil "&#x00136;" ><!--=capital K, cedilla -->
82
+ <!ENTITY kgreen "&#x00138;" ><!--=small k, Greenlandic -->
83
+ <!ENTITY lacute "&#x0013A;" ><!--=small l, acute accent -->
84
+ <!ENTITY Lacute "&#x00139;" ><!--=capital L, acute accent -->
85
+ <!ENTITY lcaron "&#x0013E;" ><!--=small l, caron -->
86
+ <!ENTITY Lcaron "&#x0013D;" ><!--=capital L, caron -->
87
+ <!ENTITY lcedil "&#x0013C;" ><!--=small l, cedilla -->
88
+ <!ENTITY Lcedil "&#x0013B;" ><!--=capital L, cedilla -->
89
+ <!ENTITY lmidot "&#x00140;" ><!--=small l, middle dot -->
90
+ <!ENTITY Lmidot "&#x0013F;" ><!--=capital L, middle dot -->
91
+ <!ENTITY lstrok "&#x00142;" ><!--=small l, stroke -->
92
+ <!ENTITY Lstrok "&#x00141;" ><!--=capital L, stroke -->
93
+ <!ENTITY nacute "&#x00144;" ><!--=small n, acute accent -->
94
+ <!ENTITY Nacute "&#x00143;" ><!--=capital N, acute accent -->
95
+ <!ENTITY napos "&#x00149;" ><!--=small n, apostrophe -->
96
+ <!ENTITY ncaron "&#x00148;" ><!--=small n, caron -->
97
+ <!ENTITY Ncaron "&#x00147;" ><!--=capital N, caron -->
98
+ <!ENTITY ncedil "&#x00146;" ><!--=small n, cedilla -->
99
+ <!ENTITY Ncedil "&#x00145;" ><!--=capital N, cedilla -->
100
+ <!ENTITY odblac "&#x00151;" ><!--=small o, double acute accent -->
101
+ <!ENTITY Odblac "&#x00150;" ><!--=capital O, double acute accent -->
102
+ <!ENTITY oelig "&#x00153;" ><!--=small oe ligature -->
103
+ <!ENTITY OElig "&#x00152;" ><!--=capital OE ligature -->
104
+ <!ENTITY omacr "&#x0014D;" ><!--=small o, macron -->
105
+ <!ENTITY Omacr "&#x0014C;" ><!--=capital O, macron -->
106
+ <!ENTITY racute "&#x00155;" ><!--=small r, acute accent -->
107
+ <!ENTITY Racute "&#x00154;" ><!--=capital R, acute accent -->
108
+ <!ENTITY rcaron "&#x00159;" ><!--=small r, caron -->
109
+ <!ENTITY Rcaron "&#x00158;" ><!--=capital R, caron -->
110
+ <!ENTITY rcedil "&#x00157;" ><!--=small r, cedilla -->
111
+ <!ENTITY Rcedil "&#x00156;" ><!--=capital R, cedilla -->
112
+ <!ENTITY sacute "&#x0015B;" ><!--=small s, acute accent -->
113
+ <!ENTITY Sacute "&#x0015A;" ><!--=capital S, acute accent -->
114
+ <!ENTITY scaron "&#x00161;" ><!--=small s, caron -->
115
+ <!ENTITY Scaron "&#x00160;" ><!--=capital S, caron -->
116
+ <!ENTITY scedil "&#x0015F;" ><!--=small s, cedilla -->
117
+ <!ENTITY Scedil "&#x0015E;" ><!--=capital S, cedilla -->
118
+ <!ENTITY scirc "&#x0015D;" ><!--=small s, circumflex accent -->
119
+ <!ENTITY Scirc "&#x0015C;" ><!--=capital S, circumflex accent -->
120
+ <!ENTITY tcaron "&#x00165;" ><!--=small t, caron -->
121
+ <!ENTITY Tcaron "&#x00164;" ><!--=capital T, caron -->
122
+ <!ENTITY tcedil "&#x00163;" ><!--=small t, cedilla -->
123
+ <!ENTITY Tcedil "&#x00162;" ><!--=capital T, cedilla -->
124
+ <!ENTITY tstrok "&#x00167;" ><!--=small t, stroke -->
125
+ <!ENTITY Tstrok "&#x00166;" ><!--=capital T, stroke -->
126
+ <!ENTITY ubreve "&#x0016D;" ><!--=small u, breve -->
127
+ <!ENTITY Ubreve "&#x0016C;" ><!--=capital U, breve -->
128
+ <!ENTITY udblac "&#x00171;" ><!--=small u, double acute accent -->
129
+ <!ENTITY Udblac "&#x00170;" ><!--=capital U, double acute accent -->
130
+ <!ENTITY umacr "&#x0016B;" ><!--=small u, macron -->
131
+ <!ENTITY Umacr "&#x0016A;" ><!--=capital U, macron -->
132
+ <!ENTITY uogon "&#x00173;" ><!--=small u, ogonek -->
133
+ <!ENTITY Uogon "&#x00172;" ><!--=capital U, ogonek -->
134
+ <!ENTITY uring "&#x0016F;" ><!--=small u, ring -->
135
+ <!ENTITY Uring "&#x0016E;" ><!--=capital U, ring -->
136
+ <!ENTITY utilde "&#x00169;" ><!--=small u, tilde -->
137
+ <!ENTITY Utilde "&#x00168;" ><!--=capital U, tilde -->
138
+ <!ENTITY wcirc "&#x00175;" ><!--=small w, circumflex accent -->
139
+ <!ENTITY Wcirc "&#x00174;" ><!--=capital W, circumflex accent -->
140
+ <!ENTITY ycirc "&#x00177;" ><!--=small y, circumflex accent -->
141
+ <!ENTITY Ycirc "&#x00176;" ><!--=capital Y, circumflex accent -->
142
+ <!ENTITY Yuml "&#x00178;" ><!--=capital Y, dieresis or umlaut mark -->
143
+ <!ENTITY zacute "&#x0017A;" ><!--=small z, acute accent -->
144
+ <!ENTITY Zacute "&#x00179;" ><!--=capital Z, acute accent -->
145
+ <!ENTITY zcaron "&#x0017E;" ><!--=small z, caron -->
146
+ <!ENTITY Zcaron "&#x0017D;" ><!--=capital Z, caron -->
147
+ <!ENTITY zdot "&#x0017C;" ><!--=small z, dot above -->
148
+ <!ENTITY Zdot "&#x0017B;" ><!--=capital Z, dot above -->
@@ -0,0 +1,79 @@
1
+
2
+ <!--
3
+ File isomfrk.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1991
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY afr "&#x1D51E;" ><!--/frak a, lower case a -->
29
+ <!ENTITY Afr "&#x1D504;" ><!--/frak A, upper case a -->
30
+ <!ENTITY bfr "&#x1D51F;" ><!--/frak b, lower case b -->
31
+ <!ENTITY Bfr "&#x1D505;" ><!--/frak B, upper case b -->
32
+ <!ENTITY cfr "&#x1D520;" ><!--/frak c, lower case c -->
33
+ <!ENTITY Cfr "&#x0212D;" ><!--/frak C, upper case c -->
34
+ <!ENTITY dfr "&#x1D521;" ><!--/frak d, lower case d -->
35
+ <!ENTITY Dfr "&#x1D507;" ><!--/frak D, upper case d -->
36
+ <!ENTITY efr "&#x1D522;" ><!--/frak e, lower case e -->
37
+ <!ENTITY Efr "&#x1D508;" ><!--/frak E, upper case e -->
38
+ <!ENTITY ffr "&#x1D523;" ><!--/frak f, lower case f -->
39
+ <!ENTITY Ffr "&#x1D509;" ><!--/frak F, upper case f -->
40
+ <!ENTITY gfr "&#x1D524;" ><!--/frak g, lower case g -->
41
+ <!ENTITY Gfr "&#x1D50A;" ><!--/frak G, upper case g -->
42
+ <!ENTITY hfr "&#x1D525;" ><!--/frak h, lower case h -->
43
+ <!ENTITY Hfr "&#x0210C;" ><!--/frak H, upper case h -->
44
+ <!ENTITY ifr "&#x1D526;" ><!--/frak i, lower case i -->
45
+ <!ENTITY Ifr "&#x02111;" ><!--/frak I, upper case i -->
46
+ <!ENTITY jfr "&#x1D527;" ><!--/frak j, lower case j -->
47
+ <!ENTITY Jfr "&#x1D50D;" ><!--/frak J, upper case j -->
48
+ <!ENTITY kfr "&#x1D528;" ><!--/frak k, lower case k -->
49
+ <!ENTITY Kfr "&#x1D50E;" ><!--/frak K, upper case k -->
50
+ <!ENTITY lfr "&#x1D529;" ><!--/frak l, lower case l -->
51
+ <!ENTITY Lfr "&#x1D50F;" ><!--/frak L, upper case l -->
52
+ <!ENTITY mfr "&#x1D52A;" ><!--/frak m, lower case m -->
53
+ <!ENTITY Mfr "&#x1D510;" ><!--/frak M, upper case m -->
54
+ <!ENTITY nfr "&#x1D52B;" ><!--/frak n, lower case n -->
55
+ <!ENTITY Nfr "&#x1D511;" ><!--/frak N, upper case n -->
56
+ <!ENTITY ofr "&#x1D52C;" ><!--/frak o, lower case o -->
57
+ <!ENTITY Ofr "&#x1D512;" ><!--/frak O, upper case o -->
58
+ <!ENTITY pfr "&#x1D52D;" ><!--/frak p, lower case p -->
59
+ <!ENTITY Pfr "&#x1D513;" ><!--/frak P, upper case p -->
60
+ <!ENTITY qfr "&#x1D52E;" ><!--/frak q, lower case q -->
61
+ <!ENTITY Qfr "&#x1D514;" ><!--/frak Q, upper case q -->
62
+ <!ENTITY rfr "&#x1D52F;" ><!--/frak r, lower case r -->
63
+ <!ENTITY Rfr "&#x0211C;" ><!--/frak R, upper case r -->
64
+ <!ENTITY sfr "&#x1D530;" ><!--/frak s, lower case s -->
65
+ <!ENTITY Sfr "&#x1D516;" ><!--/frak S, upper case s -->
66
+ <!ENTITY tfr "&#x1D531;" ><!--/frak t, lower case t -->
67
+ <!ENTITY Tfr "&#x1D517;" ><!--/frak T, upper case t -->
68
+ <!ENTITY ufr "&#x1D532;" ><!--/frak u, lower case u -->
69
+ <!ENTITY Ufr "&#x1D518;" ><!--/frak U, upper case u -->
70
+ <!ENTITY vfr "&#x1D533;" ><!--/frak v, lower case v -->
71
+ <!ENTITY Vfr "&#x1D519;" ><!--/frak V, upper case v -->
72
+ <!ENTITY wfr "&#x1D534;" ><!--/frak w, lower case w -->
73
+ <!ENTITY Wfr "&#x1D51A;" ><!--/frak W, upper case w -->
74
+ <!ENTITY xfr "&#x1D535;" ><!--/frak x, lower case x -->
75
+ <!ENTITY Xfr "&#x1D51B;" ><!--/frak X, upper case x -->
76
+ <!ENTITY yfr "&#x1D536;" ><!--/frak y, lower case y -->
77
+ <!ENTITY Yfr "&#x1D51C;" ><!--/frak Y, upper case y -->
78
+ <!ENTITY zfr "&#x1D537;" ><!--/frak z, lower case z -->
79
+ <!ENTITY Zfr "&#x02128;" ><!--/frak Z, upper case z -->
@@ -0,0 +1,53 @@
1
+
2
+ <!--
3
+ File isomopf.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1991
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY Aopf "&#x1D538;" ><!--/Bbb A, open face A -->
29
+ <!ENTITY Bopf "&#x1D539;" ><!--/Bbb B, open face B -->
30
+ <!ENTITY Copf "&#x02102;" ><!--/Bbb C, open face C -->
31
+ <!ENTITY Dopf "&#x1D53B;" ><!--/Bbb D, open face D -->
32
+ <!ENTITY Eopf "&#x1D53C;" ><!--/Bbb E, open face E -->
33
+ <!ENTITY Fopf "&#x1D53D;" ><!--/Bbb F, open face F -->
34
+ <!ENTITY Gopf "&#x1D53E;" ><!--/Bbb G, open face G -->
35
+ <!ENTITY Hopf "&#x0210D;" ><!--/Bbb H, open face H -->
36
+ <!ENTITY Iopf "&#x1D540;" ><!--/Bbb I, open face I -->
37
+ <!ENTITY Jopf "&#x1D541;" ><!--/Bbb J, open face J -->
38
+ <!ENTITY Kopf "&#x1D542;" ><!--/Bbb K, open face K -->
39
+ <!ENTITY Lopf "&#x1D543;" ><!--/Bbb L, open face L -->
40
+ <!ENTITY Mopf "&#x1D544;" ><!--/Bbb M, open face M -->
41
+ <!ENTITY Nopf "&#x02115;" ><!--/Bbb N, open face N -->
42
+ <!ENTITY Oopf "&#x1D546;" ><!--/Bbb O, open face O -->
43
+ <!ENTITY Popf "&#x02119;" ><!--/Bbb P, open face P -->
44
+ <!ENTITY Qopf "&#x0211A;" ><!--/Bbb Q, open face Q -->
45
+ <!ENTITY Ropf "&#x0211D;" ><!--/Bbb R, open face R -->
46
+ <!ENTITY Sopf "&#x1D54A;" ><!--/Bbb S, open face S -->
47
+ <!ENTITY Topf "&#x1D54B;" ><!--/Bbb T, open face T -->
48
+ <!ENTITY Uopf "&#x1D54C;" ><!--/Bbb U, open face U -->
49
+ <!ENTITY Vopf "&#x1D54D;" ><!--/Bbb V, open face V -->
50
+ <!ENTITY Wopf "&#x1D54E;" ><!--/Bbb W, open face W -->
51
+ <!ENTITY Xopf "&#x1D54F;" ><!--/Bbb X, open face X -->
52
+ <!ENTITY Yopf "&#x1D550;" ><!--/Bbb Y, open face Y -->
53
+ <!ENTITY Zopf "&#x02124;" ><!--/Bbb Z, open face Z -->
@@ -0,0 +1,79 @@
1
+
2
+ <!--
3
+ File isomscr.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1991
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY ascr "&#x1D4B6;" ><!--/scr a, script letter a -->
29
+ <!ENTITY Ascr "&#x1D49C;" ><!--/scr A, script letter A -->
30
+ <!ENTITY bscr "&#x1D4B7;" ><!--/scr b, script letter b -->
31
+ <!ENTITY Bscr "&#x0212C;" ><!--/scr B, script letter B -->
32
+ <!ENTITY cscr "&#x1D4B8;" ><!--/scr c, script letter c -->
33
+ <!ENTITY Cscr "&#x1D49E;" ><!--/scr C, script letter C -->
34
+ <!ENTITY dscr "&#x1D4B9;" ><!--/scr d, script letter d -->
35
+ <!ENTITY Dscr "&#x1D49F;" ><!--/scr D, script letter D -->
36
+ <!ENTITY escr "&#x0212F;" ><!--/scr e, script letter e -->
37
+ <!ENTITY Escr "&#x02130;" ><!--/scr E, script letter E -->
38
+ <!ENTITY fscr "&#x1D4BB;" ><!--/scr f, script letter f -->
39
+ <!ENTITY Fscr "&#x02131;" ><!--/scr F, script letter F -->
40
+ <!ENTITY gscr "&#x0210A;" ><!--/scr g, script letter g -->
41
+ <!ENTITY Gscr "&#x1D4A2;" ><!--/scr G, script letter G -->
42
+ <!ENTITY hscr "&#x1D4BD;" ><!--/scr h, script letter h -->
43
+ <!ENTITY Hscr "&#x0210B;" ><!--/scr H, script letter H -->
44
+ <!ENTITY iscr "&#x1D4BE;" ><!--/scr i, script letter i -->
45
+ <!ENTITY Iscr "&#x02110;" ><!--/scr I, script letter I -->
46
+ <!ENTITY jscr "&#x1D4BF;" ><!--/scr j, script letter j -->
47
+ <!ENTITY Jscr "&#x1D4A5;" ><!--/scr J, script letter J -->
48
+ <!ENTITY kscr "&#x1D4C0;" ><!--/scr k, script letter k -->
49
+ <!ENTITY Kscr "&#x1D4A6;" ><!--/scr K, script letter K -->
50
+ <!ENTITY lscr "&#x02113;" ><!--/scr l, script letter l -->
51
+ <!ENTITY Lscr "&#x02112;" ><!--/scr L, script letter L -->
52
+ <!ENTITY mscr "&#x1D4C2;" ><!--/scr m, script letter m -->
53
+ <!ENTITY Mscr "&#x02133;" ><!--/scr M, script letter M -->
54
+ <!ENTITY nscr "&#x1D4C3;" ><!--/scr n, script letter n -->
55
+ <!ENTITY Nscr "&#x1D4A9;" ><!--/scr N, script letter N -->
56
+ <!ENTITY oscr "&#x02134;" ><!--/scr o, script letter o -->
57
+ <!ENTITY Oscr "&#x1D4AA;" ><!--/scr O, script letter O -->
58
+ <!ENTITY pscr "&#x1D4C5;" ><!--/scr p, script letter p -->
59
+ <!ENTITY Pscr "&#x1D4AB;" ><!--/scr P, script letter P -->
60
+ <!ENTITY qscr "&#x1D4C6;" ><!--/scr q, script letter q -->
61
+ <!ENTITY Qscr "&#x1D4AC;" ><!--/scr Q, script letter Q -->
62
+ <!ENTITY rscr "&#x1D4C7;" ><!--/scr r, script letter r -->
63
+ <!ENTITY Rscr "&#x0211B;" ><!--/scr R, script letter R -->
64
+ <!ENTITY sscr "&#x1D4C8;" ><!--/scr s, script letter s -->
65
+ <!ENTITY Sscr "&#x1D4AE;" ><!--/scr S, script letter S -->
66
+ <!ENTITY tscr "&#x1D4C9;" ><!--/scr t, script letter t -->
67
+ <!ENTITY Tscr "&#x1D4AF;" ><!--/scr T, script letter T -->
68
+ <!ENTITY uscr "&#x1D4CA;" ><!--/scr u, script letter u -->
69
+ <!ENTITY Uscr "&#x1D4B0;" ><!--/scr U, script letter U -->
70
+ <!ENTITY vscr "&#x1D4CB;" ><!--/scr v, script letter v -->
71
+ <!ENTITY Vscr "&#x1D4B1;" ><!--/scr V, script letter V -->
72
+ <!ENTITY wscr "&#x1D4CC;" ><!--/scr w, script letter w -->
73
+ <!ENTITY Wscr "&#x1D4B2;" ><!--/scr W, script letter W -->
74
+ <!ENTITY xscr "&#x1D4CD;" ><!--/scr x, script letter x -->
75
+ <!ENTITY Xscr "&#x1D4B3;" ><!--/scr X, script letter X -->
76
+ <!ENTITY yscr "&#x1D4CE;" ><!--/scr y, script letter y -->
77
+ <!ENTITY Yscr "&#x1D4B4;" ><!--/scr Y, script letter Y -->
78
+ <!ENTITY zscr "&#x1D4CF;" ><!--/scr z, script letter z -->
79
+ <!ENTITY Zscr "&#x1D4B5;" ><!--/scr Z, script letter Z -->