onix2 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (240) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +209 -0
  3. data/README.markdown +69 -0
  4. data/TODO +14 -0
  5. data/dtd/2.1r3/iso-amsa.ent +173 -0
  6. data/dtd/2.1r3/iso-amsb.ent +146 -0
  7. data/dtd/2.1r3/iso-amsc.ent +49 -0
  8. data/dtd/2.1r3/iso-amsn.ent +117 -0
  9. data/dtd/2.1r3/iso-amso.ent +77 -0
  10. data/dtd/2.1r3/iso-amsr.ent +205 -0
  11. data/dtd/2.1r3/iso-box.ent +67 -0
  12. data/dtd/2.1r3/iso-cyr1.ent +94 -0
  13. data/dtd/2.1r3/iso-cyr2.ent +53 -0
  14. data/dtd/2.1r3/iso-dia.ent +41 -0
  15. data/dtd/2.1r3/iso-grk3.ent +70 -0
  16. data/dtd/2.1r3/iso-lat1.ent +89 -0
  17. data/dtd/2.1r3/iso-lat2.ent +148 -0
  18. data/dtd/2.1r3/iso-mfrk.ent +79 -0
  19. data/dtd/2.1r3/iso-mopf.ent +53 -0
  20. data/dtd/2.1r3/iso-mscr.ent +79 -0
  21. data/dtd/2.1r3/iso-num.ent +103 -0
  22. data/dtd/2.1r3/iso-num.old.ent +103 -0
  23. data/dtd/2.1r3/iso-pub.ent +110 -0
  24. data/dtd/2.1r3/iso-tech.ent +183 -0
  25. data/dtd/2.1r3/onix-international.dtd +1012 -0
  26. data/dtd/2.1r3/onix-xhtml.elt +672 -0
  27. data/dtd/2.1r3/reference.elt +4758 -0
  28. data/dtd/2.1r3/xhtml-special.ent +79 -0
  29. data/dtd/2.1r3/xhtml-symbol.ent +242 -0
  30. data/lib/onix2.rb +85 -0
  31. data/lib/onix2/addressee_identifier.rb +29 -0
  32. data/lib/onix2/apa_product.rb +785 -0
  33. data/lib/onix2/audience_range.rb +37 -0
  34. data/lib/onix2/code_list_extractor.rb +69 -0
  35. data/lib/onix2/contributor.rb +55 -0
  36. data/lib/onix2/discount_coded.rb +29 -0
  37. data/lib/onix2/header.rb +68 -0
  38. data/lib/onix2/imprint.rb +31 -0
  39. data/lib/onix2/language.rb +29 -0
  40. data/lib/onix2/lists.rb +134 -0
  41. data/lib/onix2/market_representation.rb +38 -0
  42. data/lib/onix2/measure.rb +29 -0
  43. data/lib/onix2/media_file.rb +33 -0
  44. data/lib/onix2/other_text.rb +35 -0
  45. data/lib/onix2/price.rb +47 -0
  46. data/lib/onix2/product.rb +97 -0
  47. data/lib/onix2/product_identifier.rb +27 -0
  48. data/lib/onix2/publisher.rb +33 -0
  49. data/lib/onix2/reader.rb +157 -0
  50. data/lib/onix2/sales_restriction.rb +25 -0
  51. data/lib/onix2/sales_rights.rb +28 -0
  52. data/lib/onix2/sender_identifier.rb +29 -0
  53. data/lib/onix2/series.rb +28 -0
  54. data/lib/onix2/series_identifier.rb +27 -0
  55. data/lib/onix2/simple_product.rb +47 -0
  56. data/lib/onix2/stock.rb +29 -0
  57. data/lib/onix2/subject.rb +33 -0
  58. data/lib/onix2/supply_detail.rb +53 -0
  59. data/lib/onix2/title.rb +33 -0
  60. data/lib/onix2/version.rb +3 -0
  61. data/lib/onix2/website.rb +29 -0
  62. data/lib/onix2/writer.rb +86 -0
  63. data/spec/addressee_identifier_spec.rb +33 -0
  64. data/spec/apa_product_spec.rb +116 -0
  65. data/spec/audience_range_spec.rb +44 -0
  66. data/spec/contributor_spec.rb +38 -0
  67. data/spec/discount_coded_spec.rb +34 -0
  68. data/spec/header_spec.rb +153 -0
  69. data/spec/imprint_spec.rb +31 -0
  70. data/spec/language_spec.rb +38 -0
  71. data/spec/lists_spec.rb +33 -0
  72. data/spec/market_representation_spec.rb +33 -0
  73. data/spec/measure_spec.rb +38 -0
  74. data/spec/media_file_spec.rb +38 -0
  75. data/spec/other_text_spec.rb +33 -0
  76. data/spec/price_spec.rb +52 -0
  77. data/spec/product_identifier_spec.rb +34 -0
  78. data/spec/product_spec.rb +102 -0
  79. data/spec/publisher_spec.rb +33 -0
  80. data/spec/reader_spec.rb +155 -0
  81. data/spec/sales_restriction_spec.rb +27 -0
  82. data/spec/sender_identifier.rb +33 -0
  83. data/spec/series_identifier_spec.rb +33 -0
  84. data/spec/series_spec.rb +47 -0
  85. data/spec/spec_helper.rb +15 -0
  86. data/spec/stock_spec.rb +39 -0
  87. data/spec/subject_spec.rb +34 -0
  88. data/spec/supply_detail_spec.rb +97 -0
  89. data/spec/title_spec.rb +38 -0
  90. data/spec/website_spec.rb +33 -0
  91. data/spec/writer_spec.rb +78 -0
  92. data/support/codes/001.tsv +10 -0
  93. data/support/codes/002.tsv +5 -0
  94. data/support/codes/003.tsv +7 -0
  95. data/support/codes/005.tsv +13 -0
  96. data/support/codes/006.tsv +76 -0
  97. data/support/codes/007.tsv +123 -0
  98. data/support/codes/008.tsv +7 -0
  99. data/support/codes/009.tsv +7 -0
  100. data/support/codes/010.tsv +34 -0
  101. data/support/codes/011.tsv +11 -0
  102. data/support/codes/012.tsv +11 -0
  103. data/support/codes/013.tsv +7 -0
  104. data/support/codes/014.tsv +4 -0
  105. data/support/codes/015.tsv +13 -0
  106. data/support/codes/016.tsv +6 -0
  107. data/support/codes/017.tsv +90 -0
  108. data/support/codes/018.tsv +3 -0
  109. data/support/codes/019.tsv +7 -0
  110. data/support/codes/020.tsv +0 -0
  111. data/support/codes/021.tsv +31 -0
  112. data/support/codes/022.tsv +9 -0
  113. data/support/codes/023.tsv +9 -0
  114. data/support/codes/024.tsv +11 -0
  115. data/support/codes/025.tsv +29 -0
  116. data/support/codes/026.tsv +75 -0
  117. data/support/codes/027.tsv +75 -0
  118. data/support/codes/028.tsv +8 -0
  119. data/support/codes/029.tsv +16 -0
  120. data/support/codes/030.tsv +15 -0
  121. data/support/codes/031.tsv +3 -0
  122. data/support/codes/032.tsv +2 -0
  123. data/support/codes/033.tsv +36 -0
  124. data/support/codes/034.tsv +14 -0
  125. data/support/codes/035.tsv +6 -0
  126. data/support/codes/036.tsv +3 -0
  127. data/support/codes/037.tsv +6 -0
  128. data/support/codes/038.tsv +36 -0
  129. data/support/codes/039.tsv +8 -0
  130. data/support/codes/040.tsv +6 -0
  131. data/support/codes/041.tsv +6 -0
  132. data/support/codes/042.tsv +16 -0
  133. data/support/codes/043.tsv +4 -0
  134. data/support/codes/044.tsv +13 -0
  135. data/support/codes/045.tsv +12 -0
  136. data/support/codes/046.tsv +3 -0
  137. data/support/codes/047.tsv +4 -0
  138. data/support/codes/048.tsv +11 -0
  139. data/support/codes/049.tsv +84 -0
  140. data/support/codes/050.tsv +8 -0
  141. data/support/codes/051.tsv +27 -0
  142. data/support/codes/052.tsv +1 -0
  143. data/support/codes/053.tsv +3 -0
  144. data/support/codes/054.tsv +23 -0
  145. data/support/codes/055.tsv +13 -0
  146. data/support/codes/056.tsv +2 -0
  147. data/support/codes/057.tsv +5 -0
  148. data/support/codes/058.tsv +21 -0
  149. data/support/codes/059.tsv +4 -0
  150. data/support/codes/060.tsv +2 -0
  151. data/support/codes/061.tsv +3 -0
  152. data/support/codes/062.tsv +5 -0
  153. data/support/codes/063.tsv +0 -0
  154. data/support/codes/064.tsv +13 -0
  155. data/support/codes/065.tsv +25 -0
  156. data/support/codes/066.tsv +4 -0
  157. data/support/codes/067.tsv +2 -0
  158. data/support/codes/068.tsv +15 -0
  159. data/support/codes/069.tsv +4 -0
  160. data/support/codes/070.tsv +2 -0
  161. data/support/codes/071.tsv +9 -0
  162. data/support/codes/072.tsv +7 -0
  163. data/support/codes/073.tsv +36 -0
  164. data/support/codes/074.tsv +489 -0
  165. data/support/codes/075.tsv +2 -0
  166. data/support/codes/076.tsv +12 -0
  167. data/support/codes/077.tsv +19 -0
  168. data/support/codes/078.tsv +148 -0
  169. data/support/codes/079.tsv +17 -0
  170. data/support/codes/080.tsv +19 -0
  171. data/support/codes/081.tsv +11 -0
  172. data/support/codes/082.tsv +17 -0
  173. data/support/codes/083.tsv +68 -0
  174. data/support/codes/084.tsv +10 -0
  175. data/support/codes/085.tsv +23 -0
  176. data/support/codes/086.tsv +5 -0
  177. data/support/codes/087.tsv +6 -0
  178. data/support/codes/088.tsv +0 -0
  179. data/support/codes/089.tsv +1 -0
  180. data/support/codes/090.tsv +11 -0
  181. data/support/codes/091.tsv +248 -0
  182. data/support/codes/092.tsv +7 -0
  183. data/support/codes/093.tsv +13 -0
  184. data/support/codes/094.tsv +3 -0
  185. data/support/codes/095.tsv +3 -0
  186. data/support/codes/096.tsv +185 -0
  187. data/support/codes/097.tsv +1 -0
  188. data/support/codes/098.tsv +21 -0
  189. data/support/codes/099.tsv +24 -0
  190. data/support/codes/100.tsv +4 -0
  191. data/support/codes/101.tsv +2 -0
  192. data/support/codes/102.tsv +3 -0
  193. data/support/codes/121.tsv +127 -0
  194. data/support/codes/138.tsv +6 -0
  195. data/support/codes/139.tsv +70 -0
  196. data/support/codes/140.tsv +7 -0
  197. data/support/codes/141.tsv +10 -0
  198. data/support/codes/142.tsv +12 -0
  199. data/support/codes/143.tsv +7 -0
  200. data/support/codes/144.tsv +4 -0
  201. data/support/codes/145.tsv +5 -0
  202. data/support/codes/146.tsv +3 -0
  203. data/support/codes/147.tsv +7 -0
  204. data/support/codes/148.tsv +3 -0
  205. data/support/codes/149.tsv +4 -0
  206. data/support/codes/150.tsv +124 -0
  207. data/support/codes/151.tsv +7 -0
  208. data/support/codes/152.tsv +2 -0
  209. data/support/codes/153.tsv +14 -0
  210. data/support/codes/154.tsv +9 -0
  211. data/support/codes/155.tsv +5 -0
  212. data/support/codes/156.tsv +4 -0
  213. data/support/codes/157.tsv +4 -0
  214. data/support/codes/158.tsv +24 -0
  215. data/support/codes/159.tsv +6 -0
  216. data/support/codes/160.tsv +0 -0
  217. data/support/codes/161.tsv +3 -0
  218. data/support/codes/162.tsv +3 -0
  219. data/support/codes/163.tsv +7 -0
  220. data/support/codes/164.tsv +2 -0
  221. data/support/codes/165.tsv +2 -0
  222. data/support/codes/166.tsv +2 -0
  223. data/support/codes/167.tsv +3 -0
  224. data/support/codes/168.tsv +2 -0
  225. data/support/codes/169.tsv +3 -0
  226. data/support/codes/170.tsv +0 -0
  227. data/support/codes/171.tsv +2 -0
  228. data/support/codes/172.tsv +1 -0
  229. data/support/codes/173.tsv +2 -0
  230. data/support/codes/174.tsv +2 -0
  231. data/support/codes/175.tsv +175 -0
  232. data/support/codes/176.tsv +12 -0
  233. data/support/codes/177.tsv +2 -0
  234. data/support/codes/178.tsv +17 -0
  235. data/support/entities.txt +1499 -0
  236. data/support/extract.rb +25 -0
  237. data/support/switch-onix-2.1-short-to-reference.xsl +24 -0
  238. data/support/switch-onix-tagnames-1.1.xsl +25 -0
  239. data/support/switch-onix-tagnames-2.0.xsl +37 -0
  240. metadata +440 -0
@@ -0,0 +1,183 @@
1
+
2
+ <!--
3
+ File isotech.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 acd "&#x0223F;" ><!--ac current -->
29
+ <!ENTITY aleph "&#x02135;" ><!--/aleph aleph, Hebrew -->
30
+ <!ENTITY and "&#x02227;" ><!--/wedge /land B: logical and -->
31
+ <!ENTITY And "&#x02A53;" ><!--dbl logical and -->
32
+ <!ENTITY andand "&#x02A55;" ><!--two logical and -->
33
+ <!ENTITY andd "&#x02A5C;" ><!--and, horizontal dash -->
34
+ <!ENTITY andslope "&#x02A58;" ><!--sloping large and -->
35
+ <!ENTITY andv "&#x02A5A;" ><!--and with middle stem -->
36
+ <!ENTITY angrt "&#x0221F;" ><!--right (90 degree) angle -->
37
+ <!ENTITY angsph "&#x02222;" ><!--/sphericalangle angle-spherical -->
38
+ <!ENTITY angst "&#x0212B;" ><!--Angstrom capital A, ring -->
39
+ <!ENTITY ap "&#x02248;" ><!--/approx R: approximate -->
40
+ <!ENTITY apacir "&#x02A6F;" ><!--approximate, circumflex accent -->
41
+ <!ENTITY awconint "&#x02233;" ><!--contour integral, anti-clockwise -->
42
+ <!ENTITY awint "&#x02A11;" ><!--anti clock-wise integration -->
43
+ <!ENTITY becaus "&#x02235;" ><!--/because R: because -->
44
+ <!ENTITY bernou "&#x0212C;" ><!--Bernoulli function (script capital B) -->
45
+ <!ENTITY bne "&#x0003D;&#x020E5;" ><!--reverse not equal -->
46
+ <!ENTITY bnequiv "&#x02261;&#x020E5;" ><!--reverse not equivalent -->
47
+ <!ENTITY bnot "&#x02310;" ><!--reverse not -->
48
+ <!ENTITY bNot "&#x02AED;" ><!--reverse not with two horizontal strokes -->
49
+ <!ENTITY bottom "&#x022A5;" ><!--/bot bottom -->
50
+ <!ENTITY cap "&#x02229;" ><!--/cap B: intersection -->
51
+ <!ENTITY Cconint "&#x02230;" ><!--triple contour integral operator -->
52
+ <!ENTITY cirfnint "&#x02A10;" ><!--circulation function -->
53
+ <!ENTITY compfn "&#x02218;" ><!--/circ B: composite function (small circle) -->
54
+ <!ENTITY cong "&#x02245;" ><!--/cong R: congruent with -->
55
+ <!ENTITY conint "&#x0222E;" ><!--/oint L: contour integral operator -->
56
+ <!ENTITY Conint "&#x0222F;" ><!--double contour integral operator -->
57
+ <!ENTITY ctdot "&#x022EF;" ><!--/cdots, three dots, centered -->
58
+ <!ENTITY cup "&#x0222A;" ><!--/cup B: union or logical sum -->
59
+ <!ENTITY cwconint "&#x02232;" ><!--contour integral, clockwise -->
60
+ <!ENTITY cwint "&#x02231;" ><!--clockwise integral -->
61
+ <!ENTITY cylcty "&#x0232D;" ><!--cylindricity -->
62
+ <!ENTITY disin "&#x022F2;" ><!--set membership, long horizontal stroke -->
63
+ <!ENTITY Dot "&#x000A8;" ><!--dieresis or umlaut mark -->
64
+ <!ENTITY DotDot "&#x020DC;" ><!--four dots above -->
65
+ <!ENTITY dsol "&#x029F6;" ><!--solidus, bar above -->
66
+ <!ENTITY dtdot "&#x022F1;" ><!--/ddots, three dots, descending -->
67
+ <!ENTITY dwangle "&#x029A6;" ><!--large downward pointing angle -->
68
+ <!ENTITY epar "&#x022D5;" ><!--parallel, equal; equal or parallel -->
69
+ <!ENTITY eparsl "&#x029E3;" ><!--parallel, slanted, equal; homothetically congruent to -->
70
+ <!ENTITY equiv "&#x02261;" ><!--/equiv R: identical with -->
71
+ <!ENTITY eqvparsl "&#x029E5;" ><!--equivalent, equal; congruent and parallel -->
72
+ <!ENTITY exist "&#x02203;" ><!--/exists at least one exists -->
73
+ <!ENTITY fnof "&#x00192;" ><!--function of (italic small f) -->
74
+ <!ENTITY forall "&#x02200;" ><!--/forall for all -->
75
+ <!ENTITY fpartint "&#x02A0D;" ><!--finite part integral -->
76
+ <!ENTITY ge "&#x02265;" ><!--/geq /ge R: greater-than-or-equal -->
77
+ <!ENTITY hamilt "&#x0210B;" ><!--Hamiltonian (script capital H) -->
78
+ <!ENTITY iff "&#x021D4;" ><!--/iff if and only if -->
79
+ <!ENTITY iinfin "&#x029DC;" ><!--infinity sign, incomplete -->
80
+ <!ENTITY imped "&#x1D543;" ><!--impedance -->
81
+ <!ENTITY infin "&#x0221E;" ><!--/infty infinity -->
82
+ <!ENTITY int "&#x0222B;" ><!--/int L: integral operator -->
83
+ <!ENTITY Int "&#x0222C;" ><!--double integral operator -->
84
+ <!ENTITY intlarhk "&#x02A17;" ><!--integral, left arrow with hook -->
85
+ <!ENTITY isin "&#x02208;" ><!--/in R: set membership -->
86
+ <!ENTITY isindot "&#x022F5;" ><!--set membership, dot above -->
87
+ <!ENTITY isinE "&#x022F9;" ><!--set membership, two horizontal strokes -->
88
+ <!ENTITY isins "&#x022F4;" ><!--set membership, vertical bar on horizontal stroke -->
89
+ <!ENTITY isinsv "&#x022F3;" ><!--large set membership, vertical bar on horizontal stroke -->
90
+ <!ENTITY isinv "&#x02208;" ><!--set membership, variant -->
91
+ <!ENTITY lagran "&#x02112;" ><!--Lagrangian (script capital L) -->
92
+ <!ENTITY lang "&#x02329;" ><!--/langle O: left angle bracket -->
93
+ <!ENTITY Lang "&#x0300A;" ><!--left angle bracket, double -->
94
+ <!ENTITY lArr "&#x021D0;" ><!--/Leftarrow A: is implied by -->
95
+ <!ENTITY lbbrk "&#x03014;" ><!--left broken bracket -->
96
+ <!ENTITY le "&#x02264;" ><!--/leq /le R: less-than-or-equal -->
97
+ <!ENTITY loang "&#x0F558;" ><!--left open angular bracket -->
98
+ <!ENTITY lobrk "&#x0301A;" ><!--left open bracket -->
99
+ <!ENTITY lopar "&#x03018;" ><!--left open parenthesis -->
100
+ <!ENTITY lowast "&#x02217;" ><!--low asterisk -->
101
+ <!ENTITY minus "&#x02212;" ><!--B: minus sign -->
102
+ <!ENTITY mnplus "&#x02213;" ><!--/mp B: minus-or-plus sign -->
103
+ <!ENTITY nabla "&#x02207;" ><!--/nabla del, Hamilton operator -->
104
+ <!ENTITY ne "&#x02260;" ><!--/ne /neq R: not equal -->
105
+ <!ENTITY nedot "&#x02260;&#x0FE00;" ><!--not equal, dot -->
106
+ <!ENTITY nhpar "&#x02AF2;" ><!--not, horizontal, parallel -->
107
+ <!ENTITY ni "&#x0220B;" ><!--/ni /owns R: contains -->
108
+ <!ENTITY nis "&#x022FC;" ><!--contains, vertical bar on horizontal stroke -->
109
+ <!ENTITY nisd "&#x022FA;" ><!--contains, long horizontal stroke -->
110
+ <!ENTITY niv "&#x0220B;" ><!--contains, variant -->
111
+ <!ENTITY Not "&#x02AEC;" ><!--not with two horizontal strokes -->
112
+ <!ENTITY notin "&#x02209;" ><!--/notin N: negated set membership -->
113
+ <!ENTITY notindot "&#x022F6;&#x0FE00;" ><!--negated set membership, dot above -->
114
+ <!ENTITY notinva "&#x02209;&#x00338;" ><!--negated set membership, variant -->
115
+ <!ENTITY notinvb "&#x022F7;" ><!--negated set membership, variant -->
116
+ <!ENTITY notinvc "&#x022F6;" ><!--negated set membership, variant -->
117
+ <!ENTITY notni "&#x0220C;" ><!--negated contains -->
118
+ <!ENTITY notniva "&#x0220C;" ><!--negated contains, variant -->
119
+ <!ENTITY notnivb "&#x022FE;" ><!--contains, variant -->
120
+ <!ENTITY notnivc "&#x022FD;" ><!--contains, variant -->
121
+ <!ENTITY nparsl "&#x02225;&#x0FE00;&#x020E5;" ><!--not parallel, slanted -->
122
+ <!ENTITY npart "&#x02202;&#x00338;" ><!--not partial differential -->
123
+ <!ENTITY npolint "&#x02A14;" ><!--line integration, not including the pole -->
124
+ <!ENTITY nvinfin "&#x029DE;" ><!--not, vert, infinity -->
125
+ <!ENTITY olcross "&#x029BB;" ><!--circle, cross -->
126
+ <!ENTITY or "&#x02228;" ><!--/vee /lor B: logical or -->
127
+ <!ENTITY Or "&#x02A54;" ><!--dbl logical or -->
128
+ <!ENTITY ord "&#x02A5D;" ><!--or, horizontal dash -->
129
+ <!ENTITY order "&#x02134;" ><!--order of (script small o) -->
130
+ <!ENTITY oror "&#x02A56;" ><!--two logical or -->
131
+ <!ENTITY orslope "&#x02A57;" ><!--sloping large or -->
132
+ <!ENTITY orv "&#x02A5B;" ><!--or with middle stem -->
133
+ <!ENTITY par "&#x02225;" ><!--/parallel R: parallel -->
134
+ <!ENTITY parsl "&#x02225;&#x0FE00;" ><!--parallel, slanted -->
135
+ <!ENTITY part "&#x02202;" ><!--/partial partial differential -->
136
+ <!ENTITY permil "&#x02030;" ><!--per thousand -->
137
+ <!ENTITY perp "&#x022A5;" ><!--/perp R: perpendicular -->
138
+ <!ENTITY pertenk "&#x02031;" ><!--per 10 thousand -->
139
+ <!ENTITY phmmat "&#x02133;" ><!--physics M-matrix (script capital M) -->
140
+ <!ENTITY pointint "&#x02A15;" ><!--integral around a point operator -->
141
+ <!ENTITY prime "&#x02032;" ><!--/prime prime or minute -->
142
+ <!ENTITY Prime "&#x02033;" ><!--double prime or second -->
143
+ <!ENTITY profalar "&#x0232E;" ><!--all-around profile -->
144
+ <!ENTITY profline "&#x02312;" ><!--profile of a line -->
145
+ <!ENTITY profsurf "&#x02313;" ><!--profile of a surface -->
146
+ <!ENTITY prop "&#x0221D;" ><!--/propto R: is proportional to -->
147
+ <!ENTITY qint "&#x02A0C;" ><!--/iiiint quadruple integral operator -->
148
+ <!ENTITY qprime "&#x02057;" ><!--quadruple prime -->
149
+ <!ENTITY quatint "&#x02A16;" ><!--quaternion integral operator -->
150
+ <!ENTITY radic "&#x0221A;" ><!--/surd radical -->
151
+ <!ENTITY rang "&#x0232A;" ><!--/rangle C: right angle bracket -->
152
+ <!ENTITY Rang "&#x0300B;" ><!--right angle bracket, double -->
153
+ <!ENTITY rArr "&#x021D2;" ><!--/Rightarrow A: implies -->
154
+ <!ENTITY rbbrk "&#x03015;" ><!--right broken bracket -->
155
+ <!ENTITY roang "&#x0F559;" ><!--right open angular bracket -->
156
+ <!ENTITY robrk "&#x0301B;" ><!--right open bracket -->
157
+ <!ENTITY ropar "&#x03019;" ><!--right open parenthesis -->
158
+ <!ENTITY rppolint "&#x02A12;" ><!--line integration, rectangular path around pole -->
159
+ <!ENTITY scpolint "&#x02A13;" ><!--line integration, semi-circular path around pole -->
160
+ <!ENTITY sim "&#x0223C;" ><!--/sim R: similar -->
161
+ <!ENTITY simdot "&#x02A6A;" ><!--similar, dot -->
162
+ <!ENTITY sime "&#x02243;" ><!--/simeq R: similar, equals -->
163
+ <!ENTITY smeparsl "&#x029E4;" ><!--similar, parallel, slanted, equal -->
164
+ <!ENTITY square "&#x025A1;" ><!--/square, square -->
165
+ <!ENTITY squarf "&#x025AA;" ><!--/blacksquare, square, filled -->
166
+ <!ENTITY sub "&#x02282;" ><!--/subset R: subset or is implied by -->
167
+ <!ENTITY sube "&#x02286;" ><!--/subseteq R: subset, equals -->
168
+ <!ENTITY sup "&#x02283;" ><!--/supset R: superset or implies -->
169
+ <!ENTITY supe "&#x02287;" ><!--/supseteq R: superset, equals -->
170
+ <!ENTITY tdot "&#x020DB;" ><!--three dots above -->
171
+ <!ENTITY there4 "&#x02234;" ><!--/therefore R: therefore -->
172
+ <!ENTITY tint "&#x0222D;" ><!--/iiint triple integral operator -->
173
+ <!ENTITY top "&#x022A4;" ><!--/top top -->
174
+ <!ENTITY topbot "&#x02336;" ><!--top and bottom -->
175
+ <!ENTITY topcir "&#x02AF1;" ><!--top, circle below -->
176
+ <!ENTITY tprime "&#x02034;" ><!--triple prime -->
177
+ <!ENTITY utdot "&#x022F0;" ><!--three dots, ascending -->
178
+ <!ENTITY uwangle "&#x029A7;" ><!--large upward pointing angle -->
179
+ <!ENTITY vangrt "&#x022BE;" ><!--right angle, variant -->
180
+ <!ENTITY veeeq "&#x0225A;" ><!--logical or, equals -->
181
+ <!ENTITY Verbar "&#x02016;" ><!--/Vert dbl vertical bar -->
182
+ <!ENTITY wedgeq "&#x02259;" ><!--/wedgeq R: corresponds to (wedge, equals) -->
183
+ <!ENTITY xnis "&#x022FB;" ><!--large contains, vertical bar on horizontal stroke -->
@@ -0,0 +1,1012 @@
1
+ <!--
2
+ **************************************************
3
+ * *
4
+ * ONIX INTERNATIONAL *
5
+ * *
6
+ * XML DTD *
7
+ * LOCAL TAG NAMES DEFINITION MODULE *
8
+ * REFERENCE TAG VERSION *
9
+ * *
10
+ * Original filename: ONIX-INTERNATIONAL.DTD *
11
+ * *
12
+ * Original author: Francis Cave *
13
+ * *
14
+ * Version 2.1 *
15
+ * Revision 03 *
16
+ * Status: RELEASED *
17
+ * Release date: 2006-01-31 *
18
+ * *
19
+ * (c) 2000-2006 EDItEUR *
20
+ * http://www.editeur.org/ *
21
+ * *
22
+ **************************************************
23
+
24
+
25
+
26
+ TERMS AND CONDITIONS OF USE OF THE ONIX PRODUCT INFORMATION XML DTD
27
+
28
+ All ONIX standards and documentation are copyright materials, made available
29
+ free of charge for general use. If you use the ONIX Product Information
30
+ Message DTD, you will be deemed to have accepted these terms and conditions:
31
+
32
+ 1. You agree that you will not add to, delete from, amend, or copy for use
33
+ outside of the ONIX Product Information Message DTD, any part of the DTD
34
+ except for strictly internal use in your own organisation.
35
+
36
+ 2. You agree that if you wish to add to, amend, or make extracts of the
37
+ DTD for any purpose that is not strictly internal to your own organisation,
38
+ you will in the first instance notify EDItEUR and allow EDItEUR to review
39
+ and comment on your proposed use, in the interest of securing an orderly
40
+ development of the DTD for the benefit of other users.
41
+
42
+ If you do not accept these terms, you must not use the ONIX Product Information
43
+ Message DTD.
44
+
45
+ Full copies of the latest release of this DTD and all associated documentation
46
+ are available from the EDItEUR web site, where may also be found details of
47
+ how to contact EDItEUR for advice on the use of this DTD. The URL for the
48
+ EDItEUR web site is:
49
+
50
+ http://www.editeur.org/
51
+
52
+
53
+
54
+ MODULE REVISION HISTORY (IN REVERSE CHRONOLOGICAL ORDER)
55
+
56
+ 2006-01-31: Release 2.1 Revision 03
57
+
58
+ 1. (PR.24) New composite element added with reference tag name 'StockQuantityCoded'
59
+ and short tag name 'stockquantitycoded', containing new elements with
60
+ reference tag names 'StockQuantityCodeType', 'StockQuantityCodeTypeName' and
61
+ 'StockQuantityCode' and short tag names 'j293', 'j296' and 'j297'
62
+ respectively.
63
+ 2. (PR.24) New composite element added with reference tag name 'OnOrderDetail'
64
+ and short tag name 'onorderdetail', containing a new element with
65
+ reference tag name 'ExpectedDate' and short tag name 'j302'.
66
+ 3. (PR.24) New elements added with reference tag names 'Territory',
67
+ 'CountryExcluded' and 'TerritoryExcluded' and short tag names 'j303', 'j304'
68
+ and 'j308' respectively.
69
+ 4. (PR.26) New element added with reference tag name 'ReprintDetail' and short
70
+ tag name 'k309'.
71
+
72
+ 2004-08-03: Release 2.1 Revision 02
73
+
74
+ 2. (PR.8) New element added with reference tag name 'RegionCode'
75
+ and short tag name 'b398'.
76
+ 3. (PR.24) New element added with reference tag name 'SupplyRestrictionDetail'
77
+ and short tag name 'j399'.
78
+ 5. (PR.25) New composite element added with reference tag name 'MarketRepresentation'
79
+ and short tag name 'marketrepresentation'.
80
+ 6. (PR.25) New composite element added with reference tag name 'AgentIdentifier'
81
+ and short tag name 'agentidentifier', containing new element with
82
+ reference tag name 'AgentIDType' and short tag name 'j400'.
83
+ 7. (PR.25) New elements added with reference tag names 'AgentName',
84
+ 'AgentRole', 'MarketCountry', 'MarketTerritory', 'MarketCountryExcluded',
85
+ 'MarketRestrictionDetail' and 'MarketPublishingStatus' and short tag
86
+ names 'j401', 'j402', 'j403', 'j404', 'j405', 'j406' and 'j407'
87
+ respectively.
88
+ 8. (PR.25) New composite element with reference tag name 'MarketDate'
89
+ and short tag name 'marketdate' added, containing new element with
90
+ reference tag name 'MarketDateRole' and short tag name 'j408'.
91
+
92
+ 2004-03-16: Release 2.1 Revision 01 - corrections
93
+
94
+ 1. Element %Percentage; renamed %Percent; to be consistent with
95
+ documentation.
96
+
97
+ 2003-12-29: Release 2.1 Revision 01
98
+
99
+ New elements:
100
+
101
+ 1. (PR.20) New elements added with reference tag names 'PublishingStatus'
102
+ and 'PublishingStatusNote' and short tag names 'b394' and 'b395'
103
+ respectively.
104
+ 2. (PR.24) New element added with reference tag name 'ProductAvailability'
105
+ and short tag name 'j396'.
106
+ 3. (PR.24) New element added with reference tag name 'LastDateForReturns'
107
+ and short tag name 'j387'.
108
+
109
+ For details of corrections see module 'reference.elt'.
110
+
111
+ 2003-06-20: Major revision of Release 2.0 for Release 2.1
112
+
113
+ NOTE - Only notes relating to changes affecting this module are given here.
114
+ See 'reference.elt' for a complete set of revision notes.
115
+
116
+ GENERAL
117
+
118
+ 2. Main module renamed according to the version of the DTD, i.e.
119
+ "reference.elt" in this version.
120
+
121
+ PR.3
122
+
123
+ 6. New data elements added with reference tag names 'ProductFormDetail',
124
+ 'ProductPackaging', 'TradeCategory' and 'ProductContentType' and
125
+ short tag names 'b333', 'b225', 'b384' and 'b385' respectively.
126
+ 7. New composite element added with reference tag name 'ProductFormFeature'
127
+ and short tag name 'productformfeature', containing new elements with
128
+ reference tag names 'ProductFormFeatureType', 'ProductFormFeatureValue'
129
+ and 'ProductFormFeatureDescription' and short tag names 'b334', 'b335'
130
+ and 'b336' respectively.
131
+ 9. Content model of composite element %ProductClassification; modified
132
+ to include a new data element with reference tag name 'Percentage'
133
+ and short tag name 'b337'.
134
+
135
+ PR.5
136
+
137
+ 10. New empty element added with reference tag name 'NoSeries' and short
138
+ tag name 'n338'.
139
+
140
+ PR.7
141
+
142
+ 14. Group content model modified to include a new composite element with
143
+ reference tag name 'Website' and short tag name 'website', to contain
144
+ new data elements with reference tag names 'WebsiteRole',
145
+ 'WebsiteDescription' and 'WebsiteLink' and short tag names 'b367',
146
+ 'b294' and 'b295' respectively.
147
+ 15. New data elements added with reference tag names 'ThesisType',
148
+ 'ThesisPresentedTo' and 'ThesisYear' and short tag names 'b368',
149
+ 'b369' and 'b370' respectively.
150
+
151
+ PR.8
152
+
153
+ 16. Content model of composite element %Contributor modified to include
154
+ a new data element with reference tag name 'SequenceNumberWithinRole'
155
+ and short tag name 'b340'.
156
+ 17. Content model of composite element %Contributor; modified to include
157
+ a new composite element with reference tag name 'PersonNameIdentifier'
158
+ and short tag name 'personnameidentifier', containing new
159
+ data element with reference tag name 'PersonNameIDType' and
160
+ short tag name 'b390' and other existing data elements.
161
+ 19. Content model of composite element %Contributor; modified to include
162
+ a new composite element with reference tag name 'PersonDate' and short
163
+ tag name 'persondate', containing new data elements with reference
164
+ tag names 'PersonDateRole' and 'Date' and short tag names 'b305'
165
+ and 'b306' respectively.
166
+ 20. Content model of composite element %Contributor; modified to include
167
+ new composite element with reference tag name 'ProfessionalAffiliation'
168
+ and short tag name 'professionalaffiliation'.
169
+ 21. New empty element added with reference tag name 'NoContributor' and
170
+ short tag name 'n339'.
171
+
172
+ PR.9
173
+
174
+ 22. New composite element added with reference tag name 'Conference' and
175
+ short tag name 'conference', containing some existing data elements
176
+ plus new data elements with reference tag names 'ConferenceAcronym'
177
+ and 'ConferenceTheme', with short tag names 'b341' and 'b342' respectively,
178
+ and a new composite element with reference tag name 'ConferenceSponsor'
179
+ and short tag name 'conferencesponsor', containing some existing data
180
+ elements and a new composite element with reference tag name
181
+ 'ConferenceSponsorIdentifier' and short tag name 'conferencesponsoridentifier',
182
+ containing a new data element with reference tag name 'ConferenceSponsorIDType'
183
+ and short tag name 'b391' and other existing data elements.
184
+
185
+ PR.10
186
+
187
+ 23. New empty data element added with reference tag name 'NoEdition'
188
+ and short tag name 'n386'. New composite element added with reference
189
+ tag name 'ReligiousText' and short tag name 'religioustext'.
190
+ 24. New composite element added to content model of %ReligiousText; with
191
+ reference tag name 'Bible' and short tag name 'bible', containing new
192
+ data elements with reference tag names 'BibleContents', 'BibleVersion',
193
+ 'StudyBibleType', 'BiblePurpose', 'BibleTextOrganization', 'BibleReferenceLocation'
194
+ and 'BibleTextFeature' and short tag names 'b352', 'b353', 'b389', 'b354',
195
+ 'b355', 'b356' and 'b357' respectively.
196
+ 25. New data element added to content model of %ReligiousText; with reference
197
+ tag name 'ReligiousTextID' and short tag name 'b374'.
198
+ 26. New composite element added to content model of %ReligiousText; with
199
+ reference tag name 'ReligiousTextFeature' and short tag name
200
+ 'religioustextfeature' containing new data elements with reference tag
201
+ names 'ReligiousTextFeature', 'ReligiousTextFeatureCode' and
202
+ 'ReligiousTextFeatureDescription' and short tag names 'b358', 'b359'
203
+ and 'b360' respectively.
204
+
205
+ PR.12
206
+
207
+ 27. Content model of composite element %Illustrations; modified to include
208
+ a new data element with reference tag name 'IllustrationTypeDescription'
209
+ and short tag name 'b361'.
210
+
211
+ PR.15
212
+
213
+ 32. Content model of composite element %OtherText; modified to include
214
+ new data elements with reference tag names 'StartDate', 'EndDate'
215
+ and 'TextSourceCorporate' and short tag names 'b324', 'b325' and
216
+ 'b374' respectively.
217
+
218
+ PR.16
219
+
220
+ 33. Content model of composite element %MediaFile; modified to include a
221
+ new data element with reference tag name 'MediaFileDate' and short tag
222
+ name 'f373'.
223
+
224
+ PR.17
225
+
226
+ 35. Content model of composite element %Prize; modified to include a new
227
+ data element with reference tag name 'PrizeJury' and short tag name 'g343'.
228
+
229
+ PR.18
230
+
231
+ 36. New composite element added with reference tag name 'PageRun' and short
232
+ tag name 'pagerun'.
233
+
234
+ PR.20
235
+
236
+ 39. New data element added with reference tag name 'TradeAnnouncementDate'
237
+ and short tag name 'b362'.
238
+ 40. New composite element added with reference tag name 'CopyrightStatement'
239
+ and short tag name 'copyrightstatement', containing a new composite
240
+ with reference tag name 'CopyrightOwner' and short tag name
241
+ 'copyrightowner'.
242
+
243
+ PR.21
244
+
245
+ 41. New composite element added with reference tag name 'SalesRestriction'
246
+ and short tag name 'salesrestriction', containing new data elements
247
+ with reference tag names 'SalesRestrictionType' and 'SalesRestrictionDetail'
248
+ and short tag names 'b381' and 'b383' respectively and a new composite
249
+ element with reference tag name 'SalesOutlet' and short tag name 'salesoutlet',
250
+ containing a new data element with reference tag name 'SalesOutletName'
251
+ and short tag name 'b382' and a new composite element with reference
252
+ tag name 'SalesOutletIdentifier' and short tag name 'salesoutletidentifier',
253
+ containing a new data element with reference tag name 'SalesOutletIDType'
254
+ and short tag name 'b393'.
255
+ 42. Content models of %SalesRights; and %NotForSale; modified to include
256
+ a new data element with reference tag name 'RightsTerritory' and
257
+ short tag name 'b388'.
258
+
259
+ PR.24
260
+
261
+ 46. Content model of composite element %SupplyDetail; modified to include
262
+ a new composite element with reference tag name 'SupplierIdentifier'
263
+ and short tag name 'supplieridentifier', containing a new data element
264
+ with reference tag name 'SupplierIDType' and short tag name 'j345'.
265
+ 48. Content model of composite element %SupplyDetail; further modified to
266
+ include new data elements with reference tag names 'SupplierRole',
267
+ 'SupplyToTerritory' and 'IntermediaryAvailabilityCode' and short
268
+ tag names 'j292', 'j388' and 'j348' respectively.
269
+ 49. Content model of composite element %SupplyDetail; further modified to
270
+ include a new composite element with reference tag name 'Stock' and
271
+ short tag name 'stock', itself containing a new composite element
272
+ with reference tag name 'LocationIdentifier' and short tag name
273
+ 'locationidentifier', and new data elements with reference tag names
274
+ 'LocationName', 'OnHand','OnOrder' and 'CBO' and short tag names
275
+ 'j349', 'j350', 'j351' and 'j375' respectively.
276
+ 50. Content model of composite element %LocationIdentifier; to contain a
277
+ new data element with reference tag name 'LocationIDType' and short
278
+ tag name 'b999'.
279
+ 52. Content model of composite element %Price; modified to include a
280
+ new composite element with reference tag name 'DiscountCoded'
281
+ and short tag name 'discountcoded', itself containing new data
282
+ elements with reference tag names 'DiscountCodeType', 'DiscountCodeTypeName'
283
+ and 'DiscountCode' and short tag names 'j363', 'j376' and 'j364'
284
+ respectively.
285
+ 53. Content model of composite element %SupplyDetail; further modified to
286
+ include a new composite element with reference tag name 'Reissue' and
287
+ short tag name 'reissue', containing new data elements with reference
288
+ tag names 'ReissueDate' and 'ReissueDescription' and short tag names
289
+ 'j365' and 'j366' respectively.
290
+
291
+ MH (Message Header)
292
+
293
+ 55. New composites added with reference tag names 'SenderIdentifier'
294
+ and 'AddresseeIdentifier' and short tag names 'senderidentifier'
295
+ and 'addresseeidentifier' respectively, containing respectively
296
+ new data elements with reference tag names 'SenderIDType' and
297
+ 'AddresseeIDType' and short tag names 'm379' and 'm380' respectively.
298
+
299
+ 2001-07-25: Major revision of Release 1.2.1 for Release 2.0
300
+
301
+ 1. New record-level elements added with verbose names "MainSeriesRecord" and "SubSeriesRecord".
302
+ 2. New composite element added with verbose name "ProductIdentifier".
303
+ 3. New composite element added with verbose name "ProductIdentifier", to contain
304
+ new data elements with verbose names "ProductIDType", "IDTypeName", and "IDValue".
305
+ 4. New data element added with verbose name "Barcode".
306
+ 5. New composite element added with verbose name "ProductClassification",
307
+ to contain new data elements with verbose names "ProductClassificationType" and
308
+ "ProductClassificationCode".
309
+ 6. New data elements added with verbose names "EpubType", "EpubTypeVersion",
310
+ "EpubTypeDescription", "EpubFormat", "EpubFormatVersion", "EpubFormatDescription",
311
+ "EpubSource", "EpubSourceVersion", "EpubSourceDescription" and "EpubTypeNote".
312
+ 7. New composite element added with verbose name "SeriesIdentifier", to contain new
313
+ data element with verbose name "SeriesIDType".
314
+ 8. New data element added with verbose name "SetItemTitle".
315
+ 9. Verbose name "ItemNumberWithinSeries" renamed "NumberWithinSeries".
316
+ 10. New composite element added to Group PR7 with verbose name "Title", to contain
317
+ new data elements with verbose names "TitleType", "AbbreviatedLength" and "TitleText".
318
+ 11. New composite element added to Group PR7 with verbose name "WorkIdentifier", to
319
+ contain new data element with verbose name "WorkIDType".
320
+ 12. Verbose name "ContributorSequenceNumber" renamed "SequenceNumber".
321
+ 13. New data element added with verbose name "LanguageCode".
322
+ 14. New data elements added with verbose names "PrefixToKey" and "SuffixToKey".
323
+ 15. New composite element added with verbose name "Name", to contain a new
324
+ data element with verbose name "PersonNameType".
325
+ 16. New data element added with verbose name "UnnamedPersons".
326
+ 17. New data element added with verbose name "EditionVersionNumber".
327
+ 18. New composite element added with verbose name "Language", to contain new data
328
+ elements with verbose names "LanguageRole" and "CountryCode".
329
+ 19. New data elements added with verbose names "PagesRoman" and "PagesArabic".
330
+ 20. New composite element added with verbose name "Illustrations", to contain new
331
+ data elements with verbose names "IllustrationType" and "Number".
332
+ 21. Verbose names "Rights" and "RightsTypeCode" renamed "SalesRights" and
333
+ "SalesRightsTypeCode" respectively.
334
+ 22. New data element added with verbose name "Dimensions".
335
+ 23. New data elements added with verbose names "TelephoneNumber", "FaxNumber" and
336
+ "EmailAddress".
337
+ 24. New data elements added with verbose names "ReturnsCodeType" and "ReturnsCode".
338
+ 25. New composite element added with verbose name "NewSupplier".
339
+ 26. New data element added with verbose name "DateFormat".
340
+ 27. New data elements added with verbose names "PriceQualifier" and
341
+ "PriceTypeDescription".
342
+ 28. New data element added with verbose name "MinimumOrderQuantity".
343
+ 29. New composite element added with verbose name "BatchBonus", to contain new data
344
+ elements with verbose names "BatchQuantity" and "FreeQuantity".
345
+ 30. Verbose name "DiscountGroupCode" renamed "BICDiscountGroupCode".
346
+ 31. New data elements added with verbose names "DiscountPercent" and "PriceStatus".
347
+ 32. New data element added with verbose name "SubordinateEntries".
348
+ 33. New composite element added with verbose name "ParentIdentifier".
349
+ 34. New data elements added with verbose names "LevelSequenceNumber" and
350
+ "SeriesPartName".
351
+ 35. New data element added with verbose name "PublishingRole".
352
+ 36. New composite element added with verbose name "ContentItem", to
353
+ contain new composite elements with verbose names "TextItem" and
354
+ "TextItemIdentifier" and new data elements with verbose names
355
+ "TextItemType", "TextItemIDType", "FirstPageNumber", "LastPageNumber",
356
+ "ComponentTypeName" and "ComponentNumber".
357
+ 37. New data element added with verbose name "FromEmail".
358
+ 38. Verbose names "Rights" and "RightsTypeCode" renamed "SalesRights" and
359
+ "SalesRightsType".
360
+ 39. New data element added with verbose name "ImageResolution".
361
+
362
+ 2001-04-11: Amendment of Release 1.2 for Release 1.2.1
363
+
364
+ 1. New composite element added with verbose name "Imprint", to contain new
365
+ data elements with verbose names "NameCodeType", "NameCodeTypeName" and
366
+ "NameCodeValue".
367
+ 2. New composite element added with verbose name "Publisher", to contain the
368
+ same data elements as the new composite element "Publisher".
369
+ 3. Removed data elements with verbose names "ImprintCode" and "PublisherCode".
370
+ 4. New data element added with verbose name "OriginalPublisher".
371
+ 5. New data element added with verbose name "PricePer".
372
+ 6. New composite element added with verbose name "Header", to contain existing
373
+ header elements in Group 0.
374
+
375
+ 2000-11-27: Amendment of Revision 03b for Release 1.2
376
+
377
+ 1. New elements added to indicate the source of a record, with verbose names
378
+ "RecordSourceType", "RecordSourceIdentifierType", "RecordSourceIdentifier"
379
+ and "RecordSourceName"
380
+ 2. New elements added to indicate why a record has been deleted, with verbose
381
+ names "DeletionCode" and "DeletionText"
382
+ 3. Verbose name "ProductFormDetail" renamed "BookFormDetail"
383
+ 4. New element added to represent the number of pieces in a product, with
384
+ verbose name "NumberOfPieces"
385
+ 5. New composite element added with verbose name "Extent", to contain new data
386
+ elements with verbose names "ExtentType", "ExtentValue" and "ExtentUnit"
387
+ 6. New element added to represent the BASIC subject categories version number,
388
+ with verbose name "BASICVersion"
389
+ 7. New composite element added with verbose name "Audience", to contain new
390
+ data elements with verbose names "AudienceCodeType", "AudienceCodeTypeName"
391
+ and "AudienceCode"
392
+ 8. New element added with verbose name "AudienceDescription"
393
+ 9. Element with verbose name "RightsRegion" (formerly "Region") reinstated
394
+ 10. New composite element added with verbose name "NotForSale"
395
+ 11. New composite element added with verbose name "RelatedProduct", to contain
396
+ new data element with verbose name "RelationCode" and other existing data
397
+ elements
398
+
399
+ 2000-09-01: Amendment of Revision 03a following user test results (NO REVISION RELEASED)
400
+
401
+ 1. Short tag names moved to main module, and comments on selection
402
+ of short or reference tag names revised to improve clarity.
403
+
404
+ 2000-08-08: Alteration of Revision 03 to enable use with Icon XML Spy
405
+
406
+ 1. Comment added following end of final conditional section.
407
+
408
+ 2000-07-25: Amendments to Revision 02 for Release 1.1 of ONIX International
409
+
410
+ 1. Removed declarations of reference names, which are already declared in
411
+ the main module
412
+ 2. Surrounded short names with marked section controlled by new paramenter
413
+ entity %UsingShortNames;
414
+ 3. Blank lines added to end of file to avoid "unexpected file end" error
415
+ reported by Microsoft Internet Explorer 5.x
416
+ 4. New element added for prices specified as "free of charge" and "to be
417
+ announced", with entity and verbose name "UnpricedItemType" and
418
+ short tag name "j192"
419
+ 5. New composite added for Main subject with entity and verbose name
420
+ "MainSubject" and short tag name "mainsubject"
421
+ 6. New element added for Main subject scheme identifier with entity and
422
+ verbose name "MainSubjectSchemeIdentifier" and short tag name "b191"
423
+ 7. Reference name "ClassOfTradeCode" changed to "ClassOfTrade"
424
+ 8. New element added for default class of trade with entity and verbose
425
+ name "DefaultClassOfTrade" and short tag name "m193"
426
+
427
+ 2000-05-20: Amendments to Revision 01 for Release 1.0 of ONIX International
428
+
429
+ 1. Short tag name for %PublicationDate; changed from "a003" to "b003"
430
+ 2. Removed elements with verbose names "multiple", "quantity" and "tradeonly"
431
+ 3. Entity and verbose names for Series ISSN changed from "issn" to "SeriesISSN"
432
+ 4. Entity and verbose names for Contributor sequence number changed
433
+ from "contributornumber" to "ContributorSequenceNumber"
434
+ 5. New element added for Number of illustrations, with entity and verbose name
435
+ "NumberOfIllustrations" and short tag name "b125"
436
+ 6. Entity and verbose names "lexilecode" and "lexilenumber" replaced by
437
+ "ComplexitySchemeIdentifier" and "ComplexityCode"
438
+ 7. New composite added for Complexity with name "Complexity"
439
+ 8. Removed elements with verbose names "region" and "countryexcluded"
440
+ 9. New element added for Product website composite with name "ProductWebsite"
441
+ 10. New element added for Product website description with entity and verbose name
442
+ "ProductWebsiteDescription" and short tag name "f170"
443
+ 11. Changed short tag name for %Prize; from "g125" to "Prize" - it's a composite
444
+ 12. New elements added for Other alternative Product ISBN and Other alternative
445
+ Product EAN-13 with entity and verbose names "AlternativeProductISBN" and
446
+ "AlternativeProductEAN13" and short tag names "h163" and "h164"
447
+ 13. New elements added for Promotion campaign information, Promotion contact details,
448
+ Initial print run, Copies sold and Book Club adoption, with entity and verbose
449
+ names "PromotionCampaign", "PromotionContact", "InitialPrintRun", "CopiesSold"
450
+ and "BookClubAdoption" and short tag names "k165", "k166", "k167", "k168" and "k169"
451
+ 14. Changed all other names to UpperCamelCase
452
+ 15. New element added for Proprietary subject scheme name, with entity and verbose
453
+ names "SubjectSchemeName" and short tag name "b171"
454
+ 16. New elements added for the following message elements:
455
+ Element title: Entity and verbose name: Short tag name:
456
+ Sender EAN number FromEANNumber m172
457
+ Sender SAN FromSAN m173
458
+ Sender company name FromCompany m174
459
+ Sender contact FromPerson m175
460
+ Addressee EAN number ToEANNumber m176
461
+ Addressee SAN ToSAN m177
462
+ Addressee company name ToCompany m178
463
+ Addressee contact ToPerson m179
464
+ Message sequence number MessageNumber m180
465
+ Message repeat number MessageRepeat m181
466
+ Transmission date SentDate m182
467
+ Message note MessageNote m183
468
+ Default language of text DefaultLanguageOfText m184
469
+ Default price type DefaultPriceTypeCode m185
470
+ Default currency DefaultCurrencyCode m186
471
+ Default linear unit DefaultLinearUnit m187
472
+ Default unit of weight DefaultWeightUnit m188
473
+ 17. Top-level element entity and verbose name changed from "Message" to "ONIXMessage"
474
+ 18. Removed elements with entity and verbose names "PageTrimHeight" and "PageTrimWidth"
475
+ 19. Added new Measure composite element with entity and verbose name "Measure"
476
+ 20. Short tag name for %MeasureUnitCode; changed from "c093" to "c095"
477
+ 21. Added new elements with entity and verbose names "MeasureTypeCode" and "Measurement"
478
+ and short tag names "c093" and "c094"
479
+ 22. Added new elements with entity and verbose names "USSchoolGrade" and "InterestAge"
480
+ and short tag names "b189" and "b190"
481
+ 23. Changed entity and verbose names "SalesRestrictionFlag" and "SalesRestrictionNote"
482
+ to "AudienceRestrictionFlag" and "AudienceRestrictionNote"
483
+ 24. Local Name and Reference Name lists enclosed within marked sections, so that either
484
+ may be selected without modification of this file, by externally setting the
485
+ replacement value for the appropriate parameter entity to "INCLUDE"
486
+
487
+ 2000-05-04: First draft of Version 1 released
488
+
489
+ -->
490
+ <!--
491
+ **************************************************
492
+ * *
493
+ * SELECTING REFERENCE OR SHORT TAG NAMES *
494
+ * (FOR INFORMATION ONLY) *
495
+ * *
496
+ **************************************************
497
+
498
+ Two versions of the DTD are available, one defining meaningful
499
+ English-language names - the reference names - and the other defining
500
+ short tags - four character alphanumerics which, although they carried
501
+ some significance in the first ONIX releases, should now be regarded as
502
+ arbitrary. The appropriate version of the DTD must be referenced in the
503
+ document type declaration included at the start of each ONIX message.
504
+
505
+ Both versions of the DTD include both reference and short tag names as
506
+ fixed attributes of each element type, to aid conversion between the two
507
+ versions and for compatibility with previous releases.
508
+
509
+ Neither version has in the past been recommended in preference to the
510
+ other. Initially, a majority of ONIX implementations seem to have used
511
+ the short tags. It is noticeable, however, that as ONIX moves into new
512
+ areas of application, and as XML itself becomes more widely used and
513
+ accepted, more implementors are choosing the reference names, to the
514
+ point that some have questioned the desirability of maintaining the
515
+ short tags.
516
+
517
+ There is no possibility that the short tags could be withdrawn from ONIX
518
+ for Books in the near-term, or in any event without full consultation
519
+ with ONIX national groups and the ONIX International Steering Committee.
520
+ However, it is possible that some new ONIX applications (eg for Serials)
521
+ may use reference names only; and the ONIX support team would encourage
522
+ new implementors of any ONIX format to use reference names unless they
523
+ have a strong reason for doing otherwise.
524
+ -->
525
+ <!--
526
+ **************************************************
527
+ * *
528
+ * DEFINE MAIN MODULE *
529
+ * *
530
+ **************************************************
531
+
532
+ This module only declares local tag name variants. All declarations of ONIX International message structures are to be found in a separate module whose filename in the reference tag name version of the DTD is assumed to be 'reference.elt' and which is assumed to be located at the same relative path as this module. If this is not appropriate for a specific application, or for some other reason an absolute URI must be specified, a different URI can be used by inserting the desired string in between the double-quotation-marks in the following entity declaration.
533
+
534
+ WARNING!! ONLY CHANGE THE FOLLOWING DECLARATION IF YOU ARE CHANGING THE URI FOR THE MAIN MODULE! DELETING OR CHANGING THE DECLARATION IN ANY OTHER WAY OR CIRCUMSTANCES MAY RENDER THE DTD INOPERABLE!
535
+
536
+ -->
537
+ <!-- DO NOT DELETE THE FOLLOWING LINE! -->
538
+ <!ENTITY % MainModule SYSTEM "reference.elt">
539
+ <!--
540
+ **************************************************
541
+ * *
542
+ * ENABLE LOCAL MESSAGE EXTENSION MODULE *
543
+ * *
544
+ **************************************************
545
+
546
+ The model for product information may, with the prior consent of EDItEUR, be extended to include elements not defined by ONIX. This is done by declaring all new elements in a separate module named ONIX-EXTENDED.ELT and including them as the content of an extra supergroup Z.
547
+
548
+ To include a defined extension module in the DTD, change the replacement value of %ExtendedProductModel; below from "IGNORE" to "INCLUDE".
549
+
550
+ Further guidance on adding an extension module can be found in the ONIX International Level 2 Guide.
551
+
552
+ WARNING!! ONLY CHANGE THE FOLLOWING DECLARATION IF YOU WISH TO ENABLE THE LOCAL MESSAGE EXTENSION MODULE! DELETING OR CHANGING THE DECLARATION IN ANY OTHER WAY OR CIRCUMSTANCES MAY RENDER THE DTD INOPERABLE!
553
+
554
+ -->
555
+ <!-- DO NOT DELETE THE FOLLOWING LINE! -->
556
+ <!ENTITY % ExtendedProductModel "IGNORE">
557
+ <!--
558
+ **************************************************
559
+ * *
560
+ * LOCAL NAMES TEMPLATE *
561
+ * *
562
+ **************************************************
563
+
564
+ If there is a need to replace the reference names with others for local application, this should be done by defining a complete, new Set of names in the list that follows. The new name should be entered between double-quotation-marks following the corresponding reference name, e.g.
565
+
566
+ <!ENTITY % ISBN "LocalNameForISBN">
567
+
568
+ IMPORTANT NOTE!! Names must obey XML naming rules, i.e. they must begin with a letter and may only contain letters, digits, ".", "-" or "_". Space characters, in particular, are not valid in names. Names in XML are case-sensitive.
569
+
570
+ -->
571
+ <!--
572
+
573
+ To activate locally-defined names in this DTD for XML validation purposes, first define a COMPLETE set of local names! Then change the replacement value of %UsingLocalNames to "INCLUDE".
574
+
575
+ -->
576
+ <!-- DO NOT DELETE THE FOLLOWING LINE! -->
577
+ <!ENTITY % UsingLocalNames "IGNORE">
578
+ <![%UsingLocalNames;[
579
+ <!ENTITY % ONIXMessage "">
580
+ <!ENTITY % Product "">
581
+ <!ENTITY % MainSeriesRecord "">
582
+ <!ENTITY % SubSeriesRecord "">
583
+ <!ENTITY % RecordReference "">
584
+ <!ENTITY % NotificationType "">
585
+ <!ENTITY % RecordSourceType "">
586
+ <!ENTITY % RecordSourceIdentifierType "">
587
+ <!ENTITY % RecordSourceIdentifier "">
588
+ <!ENTITY % RecordSourceName "">
589
+ <!ENTITY % DeletionCode "">
590
+ <!ENTITY % DeletionText "">
591
+ <!ENTITY % ISBN "">
592
+ <!ENTITY % EAN13 "">
593
+ <!ENTITY % UPC "">
594
+ <!ENTITY % PublisherProductNo "">
595
+ <!ENTITY % ISMN "">
596
+ <!ENTITY % DOI "">
597
+ <!ENTITY % ProductIdentifier "">
598
+ <!ENTITY % ProductIDType "">
599
+ <!ENTITY % IDTypeName "">
600
+ <!ENTITY % IDValue "">
601
+ <!ENTITY % Barcode "">
602
+ <!ENTITY % ReplacesISBN "">
603
+ <!ENTITY % ReplacesEAN13 "">
604
+ <!ENTITY % ProductForm "">
605
+ <!ENTITY % ProductFormDetail "">
606
+ <!ENTITY % ProductFormFeature "">
607
+ <!ENTITY % ProductFormFeatureType "">
608
+ <!ENTITY % ProductFormFeatureValue "">
609
+ <!ENTITY % ProductFormFeatureDescription "">
610
+ <!ENTITY % BookFormDetail "">
611
+ <!ENTITY % ProductPackaging "">
612
+ <!ENTITY % TradeCategory "">
613
+ <!ENTITY % ProductContentType "">
614
+ <!ENTITY % ProductFormDescription "">
615
+ <!ENTITY % ContainedItem "">
616
+ <!ENTITY % NumberOfPieces "">
617
+ <!ENTITY % ItemQuantity "">
618
+ <!ENTITY % ProductClassification "">
619
+ <!ENTITY % ProductClassificationType "">
620
+ <!ENTITY % ProductClassificationCode "">
621
+ <!ENTITY % Percent "">
622
+ <!ENTITY % EpubType "">
623
+ <!ENTITY % EpubTypeVersion "">
624
+ <!ENTITY % EpubTypeDescription "">
625
+ <!ENTITY % EpubFormat "">
626
+ <!ENTITY % EpubFormatVersion "">
627
+ <!ENTITY % EpubFormatDescription "">
628
+ <!ENTITY % EpubSource "">
629
+ <!ENTITY % EpubSourceVersion "">
630
+ <!ENTITY % EpubSourceDescription "">
631
+ <!ENTITY % EpubTypeNote "">
632
+ <!ENTITY % Series "">
633
+ <!ENTITY % NoSeries "">
634
+ <!ENTITY % SeriesISSN "">
635
+ <!ENTITY % PublisherSeriesCode "">
636
+ <!ENTITY % SeriesIdentifier "">
637
+ <!ENTITY % SeriesIDType "">
638
+ <!ENTITY % TitleOfSeries "">
639
+ <!ENTITY % NumberWithinSeries "">
640
+ <!ENTITY % YearOfAnnual "">
641
+ <!ENTITY % Set "">
642
+ <!ENTITY % ISBNOfSet "">
643
+ <!ENTITY % EAN13OfSet "">
644
+ <!ENTITY % TitleOfSet "">
645
+ <!ENTITY % SetPartNumber "">
646
+ <!ENTITY % SetPartTitle "">
647
+ <!ENTITY % ItemNumberWithinSet "">
648
+ <!ENTITY % SetItemTitle "">
649
+ <!ENTITY % TextCaseFlag "">
650
+ <!ENTITY % DistinctiveTitle "">
651
+ <!ENTITY % Subtitle "">
652
+ <!ENTITY % TitlePrefix "">
653
+ <!ENTITY % TitleWithoutPrefix "">
654
+ <!ENTITY % TranslationOfTitle "">
655
+ <!ENTITY % FormerTitle "">
656
+ <!ENTITY % Title "">
657
+ <!ENTITY % TitleType "">
658
+ <!ENTITY % AbbreviatedLength "">
659
+ <!ENTITY % TitleText "">
660
+ <!ENTITY % WorkIdentifier "">
661
+ <!ENTITY % WorkIDType "">
662
+ <!ENTITY % Website "">
663
+ <!ENTITY % WebsiteRole "">
664
+ <!ENTITY % WebsiteDescription "">
665
+ <!ENTITY % WebsiteLink "">
666
+ <!ENTITY % ThesisType "">
667
+ <!ENTITY % ThesisPresentedTo "">
668
+ <!ENTITY % ThesisYear "">
669
+ <!ENTITY % Contributor "">
670
+ <!ENTITY % SequenceNumber "">
671
+ <!ENTITY % ContributorRole "">
672
+ <!ENTITY % LanguageCode "">
673
+ <!ENTITY % SequenceNumberWithinRole "">
674
+ <!ENTITY % PersonName "">
675
+ <!ENTITY % PersonNameInverted "">
676
+ <!ENTITY % TitlesBeforeNames "">
677
+ <!ENTITY % NamesBeforeKey "">
678
+ <!ENTITY % PrefixToKey "">
679
+ <!ENTITY % SuffixToKey "">
680
+ <!ENTITY % KeyNames "">
681
+ <!ENTITY % NamesAfterKey "">
682
+ <!ENTITY % LettersAfterNames "">
683
+ <!ENTITY % TitlesAfterNames "">
684
+ <!ENTITY % Name "">
685
+ <!ENTITY % PersonNameType "">
686
+ <!ENTITY % PersonNameIdentifier "">
687
+ <!ENTITY % PersonNameIDType "">
688
+ <!ENTITY % PersonDate "">
689
+ <!ENTITY % PersonDateRole "">
690
+ <!ENTITY % Date "">
691
+ <!ENTITY % BiographicalNote "">
692
+ <!ENTITY % ProfessionalAffiliation "">
693
+ <!ENTITY % ProfessionalPosition "">
694
+ <!ENTITY % Affiliation "">
695
+ <!ENTITY % CorporateName "">
696
+ <!ENTITY % ContributorDescription "">
697
+ <!ENTITY % UnnamedPersons "">
698
+ <!ENTITY % RegionCode "">
699
+ <!ENTITY % NoContributor "">
700
+ <!ENTITY % ContributorStatement "">
701
+ <!ENTITY % ConferenceDescription "">
702
+ <!ENTITY % ConferenceRole "">
703
+ <!ENTITY % ConferenceName "">
704
+ <!ENTITY % ConferenceNumber "">
705
+ <!ENTITY % ConferenceDate "">
706
+ <!ENTITY % ConferencePlace "">
707
+ <!ENTITY % Conference "">
708
+ <!ENTITY % ConferenceAcronym "">
709
+ <!ENTITY % ConferenceTheme "">
710
+ <!ENTITY % ConferenceSponsor "">
711
+ <!ENTITY % ConferenceSponsorIdentifier "">
712
+ <!ENTITY % ConferenceSponsorIDType "">
713
+ <!ENTITY % EditionTypeCode "">
714
+ <!ENTITY % EditionNumber "">
715
+ <!ENTITY % EditionVersionNumber "">
716
+ <!ENTITY % EditionStatement "">
717
+ <!ENTITY % NoEdition "">
718
+ <!ENTITY % ReligiousText "">
719
+ <!ENTITY % Bible "">
720
+ <!ENTITY % BibleContents "">
721
+ <!ENTITY % BibleVersion "">
722
+ <!ENTITY % StudyBibleType "">
723
+ <!ENTITY % BiblePurpose "">
724
+ <!ENTITY % BibleTextOrganization "">
725
+ <!ENTITY % BibleReferenceLocation "">
726
+ <!ENTITY % BibleTextFeature "">
727
+ <!ENTITY % ReligiousTextID "">
728
+ <!ENTITY % ReligiousTextFeature "">
729
+ <!ENTITY % ReligiousTextFeatureType "">
730
+ <!ENTITY % ReligiousTextFeatureCode "">
731
+ <!ENTITY % ReligiousTextFeatureDescription "">
732
+ <!ENTITY % LanguageOfText "">
733
+ <!ENTITY % OriginalLanguage "">
734
+ <!ENTITY % Language "">
735
+ <!ENTITY % LanguageRole "">
736
+ <!ENTITY % CountryCode "">
737
+ <!ENTITY % NumberOfPages "">
738
+ <!ENTITY % PagesRoman "">
739
+ <!ENTITY % PagesArabic "">
740
+ <!ENTITY % NumberOfIllustrations "">
741
+ <!ENTITY % IllustrationsNote "">
742
+ <!ENTITY % Illustrations "">
743
+ <!ENTITY % IllustrationType "">
744
+ <!ENTITY % IllustrationTypeDescription "">
745
+ <!ENTITY % Number "">
746
+ <!ENTITY % MapScale "">
747
+ <!ENTITY % Extent "">
748
+ <!ENTITY % ExtentType "">
749
+ <!ENTITY % ExtentValue "">
750
+ <!ENTITY % ExtentUnit "">
751
+ <!ENTITY % BASICMainSubject "">
752
+ <!ENTITY % BASICVersion "">
753
+ <!ENTITY % BICMainSubject "">
754
+ <!ENTITY % BICVersion "">
755
+ <!ENTITY % MainSubject "">
756
+ <!ENTITY % MainSubjectSchemeIdentifier "">
757
+ <!ENTITY % Subject "">
758
+ <!ENTITY % SubjectSchemeIdentifier "">
759
+ <!ENTITY % SubjectSchemeName "">
760
+ <!ENTITY % SubjectSchemeVersion "">
761
+ <!ENTITY % SubjectCode "">
762
+ <!ENTITY % SubjectHeadingText "">
763
+ <!ENTITY % PersonAsSubject "">
764
+ <!ENTITY % CorporateBodyAsSubject "">
765
+ <!ENTITY % PlaceAsSubject "">
766
+ <!ENTITY % Audience "">
767
+ <!ENTITY % AudienceCodeType "">
768
+ <!ENTITY % AudienceCodeTypeName "">
769
+ <!ENTITY % AudienceCode "">
770
+ <!ENTITY % AudienceCodeValue "">
771
+ <!ENTITY % USSchoolGrade "">
772
+ <!ENTITY % InterestAge "">
773
+ <!ENTITY % AudienceRange "">
774
+ <!ENTITY % AudienceRangeQualifier "">
775
+ <!ENTITY % AudienceRangePrecision "">
776
+ <!ENTITY % AudienceRangeValue "">
777
+ <!ENTITY % AudienceDescription "">
778
+ <!ENTITY % Complexity "">
779
+ <!ENTITY % ComplexitySchemeIdentifier "">
780
+ <!ENTITY % ComplexityCode "">
781
+ <!ENTITY % ImprintName "">
782
+ <!ENTITY % PublisherName "">
783
+ <!ENTITY % PublishingRole "">
784
+ <!ENTITY % Imprint "">
785
+ <!ENTITY % Publisher "">
786
+ <!ENTITY % NameCodeType "">
787
+ <!ENTITY % NameCodeTypeName "">
788
+ <!ENTITY % NameCodeValue "">
789
+ <!ENTITY % CityOfPublication "">
790
+ <!ENTITY % CountryOfPublication "">
791
+ <!ENTITY % CopublisherName "">
792
+ <!ENTITY % SponsorName "">
793
+ <!ENTITY % OriginalPublisher "">
794
+ <!ENTITY % PublishingStatus "">
795
+ <!ENTITY % PublishingStatusNote "">
796
+ <!ENTITY % AnnouncementDate "">
797
+ <!ENTITY % TradeAnnouncementDate "">
798
+ <!ENTITY % PublicationDate "">
799
+ <!ENTITY % CopyrightYear "">
800
+ <!ENTITY % YearFirstPublished "">
801
+ <!ENTITY % CopyrightStatement "">
802
+ <!ENTITY % CopyrightOwner "">
803
+ <!ENTITY % CopyrightOwnerIdentifier "">
804
+ <!ENTITY % CopyrightOwnerIDType "">
805
+ <!ENTITY % SalesRights "">
806
+ <!ENTITY % NotForSale "">
807
+ <!ENTITY % SalesRightsType "">
808
+ <!ENTITY % RightsCountry "">
809
+ <!ENTITY % RightsTerritory "">
810
+ <!ENTITY % RightsRegion "">
811
+ <!ENTITY % SalesRestriction "">
812
+ <!ENTITY % SalesRestrictionType "">
813
+ <!ENTITY % SalesOutlet "">
814
+ <!ENTITY % SalesOutletIdentifier "">
815
+ <!ENTITY % SalesOutletIDType "">
816
+ <!ENTITY % SalesOutletName "">
817
+ <!ENTITY % SalesRestrictionDetail "">
818
+ <!ENTITY % Measure "">
819
+ <!ENTITY % MeasureTypeCode "">
820
+ <!ENTITY % Measurement "">
821
+ <!ENTITY % MeasureUnitCode "">
822
+ <!ENTITY % Height "">
823
+ <!ENTITY % Width "">
824
+ <!ENTITY % Thickness "">
825
+ <!ENTITY % Weight "">
826
+ <!ENTITY % Dimensions "">
827
+ <!ENTITY % Annotation "">
828
+ <!ENTITY % MainDescription "">
829
+ <!ENTITY % OtherText "">
830
+ <!ENTITY % TextTypeCode "">
831
+ <!ENTITY % TextFormat "">
832
+ <!ENTITY % Text "">
833
+ <!ENTITY % TextLinkType "">
834
+ <!ENTITY % TextLink "">
835
+ <!ENTITY % TextAuthor "">
836
+ <!ENTITY % TextSourceCorporate "">
837
+ <!ENTITY % TextSourceTitle "">
838
+ <!ENTITY % TextPublicationDate "">
839
+ <!ENTITY % StartDate "">
840
+ <!ENTITY % EndDate "">
841
+ <!ENTITY % ReviewQuote "">
842
+ <!ENTITY % CoverImageFormatCode "">
843
+ <!ENTITY % CoverImageLinkTypeCode "">
844
+ <!ENTITY % CoverImageLink "">
845
+ <!ENTITY % MediaFile "">
846
+ <!ENTITY % MediaFileTypeCode "">
847
+ <!ENTITY % MediaFileFormatCode "">
848
+ <!ENTITY % ImageResolution "">
849
+ <!ENTITY % MediaFileLinkTypeCode "">
850
+ <!ENTITY % MediaFileLink "">
851
+ <!ENTITY % TextWithDownload "">
852
+ <!ENTITY % DownloadCaption "">
853
+ <!ENTITY % DownloadCredit "">
854
+ <!ENTITY % DownloadCopyrightNotice "">
855
+ <!ENTITY % DownloadTerms "">
856
+ <!ENTITY % MediaFileDate "">
857
+ <!ENTITY % ProductWebsite "">
858
+ <!ENTITY % ProductWebsiteDescription "">
859
+ <!ENTITY % ProductWebsiteLink "">
860
+ <!ENTITY % PrizesDescription "">
861
+ <!ENTITY % Prize "">
862
+ <!ENTITY % PrizeName "">
863
+ <!ENTITY % PrizeYear "">
864
+ <!ENTITY % PrizeCountry "">
865
+ <!ENTITY % PrizeCode "">
866
+ <!ENTITY % PrizeJury "">
867
+ <!ENTITY % ContentItem "">
868
+ <!ENTITY % LevelSequenceNumber "">
869
+ <!ENTITY % TextItem "">
870
+ <!ENTITY % TextItemType "">
871
+ <!ENTITY % TextItemIdentifier "">
872
+ <!ENTITY % TextItemIDType "">
873
+ <!ENTITY % FirstPageNumber "">
874
+ <!ENTITY % LastPageNumber "">
875
+ <!ENTITY % PageRun "">
876
+ <!ENTITY % ComponentTypeName "">
877
+ <!ENTITY % ComponentNumber "">
878
+ <!ENTITY % ReplacedByISBN "">
879
+ <!ENTITY % ReplacedByEAN13 "">
880
+ <!ENTITY % RelatedProduct "">
881
+ <!ENTITY % RelationCode "">
882
+ <!ENTITY % AlternativeFormatISBN "">
883
+ <!ENTITY % AlternativeFormatEAN13 "">
884
+ <!ENTITY % AlternativeProductISBN "">
885
+ <!ENTITY % AlternativeProductEAN13 "">
886
+ <!ENTITY % OutOfPrintDate "">
887
+ <!ENTITY % SupplyDetail "">
888
+ <!ENTITY % SupplierEANLocationNumber "">
889
+ <!ENTITY % SupplierSAN "">
890
+ <!ENTITY % SupplierIdentifier "">
891
+ <!ENTITY % SupplierIDType "">
892
+ <!ENTITY % SupplierName "">
893
+ <!ENTITY % TelephoneNumber "">
894
+ <!ENTITY % FaxNumber "">
895
+ <!ENTITY % EmailAddress "">
896
+ <!ENTITY % SupplierRole "">
897
+ <!ENTITY % SupplyToCountry "">
898
+ <!ENTITY % SupplyToRegion "">
899
+ <!ENTITY % SupplyToTerritory "">
900
+ <!ENTITY % SupplyToCountryExcluded "">
901
+ <!ENTITY % SupplyRestrictionDetail "">
902
+ <!ENTITY % ReturnsCodeType "">
903
+ <!ENTITY % ReturnsCode "">
904
+ <!ENTITY % LastDateForReturns "">
905
+ <!ENTITY % AvailabilityCode "">
906
+ <!ENTITY % ProductAvailability "">
907
+ <!ENTITY % IntermediaryAvailabilityCode "">
908
+ <!ENTITY % NewSupplier "">
909
+ <!ENTITY % Stock "">
910
+ <!ENTITY % LocationIdentifier "">
911
+ <!ENTITY % LocationIDType "">
912
+ <!ENTITY % LocationName "">
913
+ <!ENTITY % StockQuantityCoded "">
914
+ <!ENTITY % StockQuantityCodeType "">
915
+ <!ENTITY % StockQuantityCodeTypeName "">
916
+ <!ENTITY % StockQuantityCode "">
917
+ <!ENTITY % OnHand "">
918
+ <!ENTITY % OnOrder "">
919
+ <!ENTITY % CBO "">
920
+ <!ENTITY % OnOrderDetail "">
921
+ <!ENTITY % ExpectedDate "">
922
+ <!ENTITY % DateFormat "">
923
+ <!ENTITY % ExpectedShipDate "">
924
+ <!ENTITY % OnSaleDate "">
925
+ <!ENTITY % OrderTime "">
926
+ <!ENTITY % PackQuantity "">
927
+ <!ENTITY % AudienceRestrictionFlag "">
928
+ <!ENTITY % AudienceRestrictionNote "">
929
+ <!ENTITY % Price "">
930
+ <!ENTITY % PriceTypeCode "">
931
+ <!ENTITY % PriceQualifier "">
932
+ <!ENTITY % PriceTypeDescription "">
933
+ <!ENTITY % PricePer "">
934
+ <!ENTITY % MinimumOrderQuantity "">
935
+ <!ENTITY % BatchBonus "">
936
+ <!ENTITY % BatchQuantity "">
937
+ <!ENTITY % FreeQuantity "">
938
+ <!ENTITY % ClassOfTrade "">
939
+ <!ENTITY % BICDiscountGroupCode "">
940
+ <!ENTITY % DiscountCoded "">
941
+ <!ENTITY % DiscountCodeType "">
942
+ <!ENTITY % DiscountCodeTypeName "">
943
+ <!ENTITY % DiscountCode "">
944
+ <!ENTITY % DiscountPercent "">
945
+ <!ENTITY % PriceStatus "">
946
+ <!ENTITY % PriceAmount "">
947
+ <!ENTITY % UnpricedItemType "">
948
+ <!ENTITY % CurrencyCode "">
949
+ <!ENTITY % Territory "">
950
+ <!ENTITY % CountryExcluded "">
951
+ <!ENTITY % TerritoryExcluded "">
952
+ <!ENTITY % TaxRateCode1 "">
953
+ <!ENTITY % TaxRatePercent1 "">
954
+ <!ENTITY % TaxableAmount1 "">
955
+ <!ENTITY % TaxAmount1 "">
956
+ <!ENTITY % TaxRateCode2 "">
957
+ <!ENTITY % TaxRatePercent2 "">
958
+ <!ENTITY % TaxableAmount2 "">
959
+ <!ENTITY % TaxAmount2 "">
960
+ <!ENTITY % Reissue "">
961
+ <!ENTITY % ReissueDate "">
962
+ <!ENTITY % ReissueDescription "">
963
+ <!ENTITY % PriceEffectiveFrom "">
964
+ <!ENTITY % PriceEffectiveUntil "">
965
+ <!ENTITY % MarketRepresentation "">
966
+ <!ENTITY % AgentIdentifier "">
967
+ <!ENTITY % AgentIDType "">
968
+ <!ENTITY % AgentName "">
969
+ <!ENTITY % AgentRole "">
970
+ <!ENTITY % MarketCountry "">
971
+ <!ENTITY % MarketTerritory "">
972
+ <!ENTITY % MarketCountryExcluded "">
973
+ <!ENTITY % MarketRestrictionDetail "">
974
+ <!ENTITY % MarketPublishingStatus "">
975
+ <!ENTITY % MarketDate "">
976
+ <!ENTITY % MarketDateRole "">
977
+ <!ENTITY % PromotionCampaign "">
978
+ <!ENTITY % PromotionContact "">
979
+ <!ENTITY % InitialPrintRun "">
980
+ <!ENTITY % ReprintDetail "">
981
+ <!ENTITY % CopiesSold "">
982
+ <!ENTITY % BookClubAdoption "">
983
+ <!ENTITY % SubordinateEntries "">
984
+ <!ENTITY % ParentIdentifier "">
985
+ <!ENTITY % SeriesPartName "">
986
+ <!ENTITY % FromEANNumber "">
987
+ <!ENTITY % FromSAN "">
988
+ <!ENTITY % FromCompany "">
989
+ <!ENTITY % FromPerson "">
990
+ <!ENTITY % FromEmail "">
991
+ <!ENTITY % ToEANNumber "">
992
+ <!ENTITY % ToSAN "">
993
+ <!ENTITY % ToCompany "">
994
+ <!ENTITY % ToPerson "">
995
+ <!ENTITY % MessageNumber "">
996
+ <!ENTITY % MessageRepeat "">
997
+ <!ENTITY % SentDate "">
998
+ <!ENTITY % MessageNote "">
999
+ <!ENTITY % DefaultLanguageOfText "">
1000
+ <!ENTITY % DefaultPriceTypeCode "">
1001
+ <!ENTITY % DefaultCurrencyCode "">
1002
+ <!ENTITY % DefaultLinearUnit "">
1003
+ <!ENTITY % DefaultWeightUnit "">
1004
+ <!ENTITY % DefaultClassOfTrade "">
1005
+ <!ENTITY % SenderIdentifier "">
1006
+ <!ENTITY % AddresseeIdentifier "">
1007
+ <!ENTITY % SenderIDType "">
1008
+ <!ENTITY % AddresseeIDType "">
1009
+ <!ENTITY % Header "">
1010
+ ]]>
1011
+ <!-- This comment inserted as a work-around for a known bug in XML Spy -->
1012
+ %MainModule;