onix2 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,7 @@
1
+ 02 Proprietary
2
+ 04 Börsenverein Verkehrsnummer
3
+ 05 German ISBN Agency publisher identifier
4
+ 06 GLN GS1 global location number (formerly EAN location number)
5
+ 07 SAN Book trade Standard Address Number - US, UK etc
6
+ 12 Distributeurscode Boekenbank Flemish supplier code
7
+ 13 Fondscode Boekenbank Flemish publisher code
@@ -0,0 +1,13 @@
1
+ 00 Unspecified Default
2
+ 01 Publisher to retailers Publisher as supplier to retail trade outlets
3
+ 02 Publisher's exclusive distributor to retailers
4
+ 03 Publisher's non-exclusive distributor to retailers
5
+ 04 Wholesaler Wholesaler supplying retail trade outlets 
6
+ 05 Sales agent DEPRECATED - use <MarketRepresentation> (ONIX 2.1) or <MarketPublishingDetail> (ONIX 3.0) to specify a sales agent
7
+ 06 Publisher's distributor to retailers In a specified supply territory. Use only where exclusive/non-exclusive status is not known. Prefer 02 or 03 as appropriate, where possible.
8
+ 07 POD supplier Where a POD product is supplied to retailers and/or consumers direct from a POD source.
9
+ 08 Retailer
10
+ 09 Publisher to end-customers Publisher as supplier direct to consumers and/or institutional customers
11
+ 10 Exclusive distributor to end-customers Intermediary as exclusive distributor direct to consumers and/or institutional customers
12
+ 11 Non-exclusive distributor to end-customers Intermediary as non-exclusive distributor direct to consumers and/or institutional customers
13
+ 12 Distributor to end-customers Use only where exclusive/non-exclusive status is not known. Prefer 10 or 11 as appropriate, where possible.
@@ -0,0 +1,3 @@
1
+ cm Centimeters
2
+ in Inches (US)
3
+ mm Millimeters
@@ -0,0 +1,3 @@
1
+ lb Pounds (US)
2
+ gr Grams
3
+ oz Ounces (US)
@@ -0,0 +1,185 @@
1
+ AED UAE Dirham United Arab Emirates
2
+ AFA Afghani DEPRECATED, replaced by AFN
3
+ AFN Afghani Afghanistan
4
+ ALL Lek Albania
5
+ AMD Armenian Dram Armenia
6
+ ANG Netherlands Antillian Guilder Netherlands Antilles
7
+ AOA Kwanza Angola
8
+ ARS Argentine Peso Argentina
9
+ ATS Austria, Schilling Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
10
+ AUD Australian Dollar Australia, Christmas Island, Cocos (Keeling) Islands, Heard Island and McDonald Islands, Kiribati, Nauru, Norfolk Island, Tuvalu
11
+ AWG Aruban Guilder Aruba
12
+ AZN Azerbaijanian Manat Azerbaijan
13
+ BAM Convertible Marks Bosnia & Herzegovina
14
+ BBD Barbados Dollar Barbados
15
+ BDT Taka Bangladesh
16
+ BEF Belgium, Franc Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
17
+ BGL Lev DEPRECATED, replaced by BGN
18
+ BGN Lev Bulgaria
19
+ BHD Bahraini Dinar Bahrain
20
+ BIF Burundi Franc Burundi
21
+ BMD Bermuda Dollar Bermuda
22
+ BND Brunei Dollar Brunei Darussalam
23
+ BOB Boliviano Bolivia
24
+ BRL Brazilian Real Brazil
25
+ BSD Bahamian Dollar Bahamas
26
+ BTN Ngultrun Bhutan
27
+ BWP Pula Botswana
28
+ BYR Belarussian Ruble Belarus
29
+ BZD Belize Dollar Belize
30
+ CAD Canadian Dollar Canada
31
+ CDF Franc Congolais Congo (Democratic Republic of the)
32
+ CHF Swiss Franc Switzerland, Liechtenstein
33
+ CLP Chilean Peso Chile
34
+ CNY Yuan Renminbi China
35
+ COP Colombian Peso Colombia
36
+ CRC Costa Rican Colon Costa Rica
37
+ CSD Serbian Dinar Serbia
38
+ CUC Cuban Convertible Peso Cuba (alternative currency)
39
+ CUP Cuban Peso Cuba
40
+ CVE Cape Verde Escudo Cape Verde
41
+ CYP Cyprus Pound Cyprus
42
+ CZK Czech Koruna Czech Republic
43
+ DEM Germany, Mark Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
44
+ DJF Djibouti Franc Djibouti
45
+ DKK Danish Krone Denmark, Faroe Islands, Greenland
46
+ DOP Dominican Peso Dominican Republic
47
+ DZD Algerian Dinar Algeria
48
+ EEK Kroon Estonia
49
+ EGP Egyptian Pound Egypt
50
+ ERN Nakfa Eritrea
51
+ ESP Spain, Peseta Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
52
+ ETB Ethiopian Birr Ethiopia
53
+ EUR Euro Andorra, Austria, Belgium, Finland, France, Fr Guiana, Fr S Territories, Germany, Greece, Guadeloupe, Holy See (Vatican City), Ireland, Italy, Luxembourg, Martinique, Mayotte, Monaco, Netherlands, Portugal, Réunion, St Pierre & Miquelon, San Marino, Spain
54
+ FIM Finland, Markka Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
55
+ FJD Fiji Dollar Fiji
56
+ FKP Falkland Islands Pound Falkland Islands (Malvinas)
57
+ FRF France, Franc Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
58
+ GBP Pound Sterling United Kingdom
59
+ GEL Lari Georgia
60
+ GHC Cedi Ghana
61
+ GIP Gibraltar Pound Gibraltar
62
+ GMD Dalasi Gambia
63
+ GNF Guinea Franc Guinea
64
+ GRD Greece, Drachma Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
65
+ GTQ Quetzal Guatemala
66
+ GWP Guinea-Bissau Peso Guinea-Bissau
67
+ GYD Guyana Dollar Guyana
68
+ HKD Hong Kong Dollar Hong Kong
69
+ HNL Lempira Honduras
70
+ HRK Croatian Kuna Croatia
71
+ HTG Gourde Haiti
72
+ HUF Forint Hungary
73
+ IDR Rupiah Indonesia
74
+ IEP Ireland, Punt Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
75
+ ILS Israeli Sheqel Israel
76
+ INR Indian Rupee India
77
+ IQD Iraqi Dinar Iraq
78
+ IRR Iranian Rial Iran (Islamic Republic of)
79
+ ISK Iceland Krona Iceland
80
+ ITL Italy, Lira Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
81
+ JMD Jamaican Dollar Jamaica
82
+ JOD Jordanian Dinar Jordan
83
+ JPY Yen Japan
84
+ KES Kenyan Shilling Kenya
85
+ KGS Som Kyrgyzstan
86
+ KHR Riel Cambodia
87
+ KMF Comoro Franc Comoros
88
+ KPW North Korean Won Korea (Democratic People’s Republic of)
89
+ KRW Won Korea (Republic of)
90
+ KWD Kuwaiti Dinar Kuwait
91
+ KYD Cayman Islands Dollar Cayman Islands
92
+ KZT Tenge Kazakstan
93
+ LAK Kip Lao People’s Democratic Republic
94
+ LBP Lebanese Pound Lebanon
95
+ LKR Sri Lanka Rupee Sri Lanka
96
+ LRD Liberian Dollar Liberia
97
+ LSL Loti Lesotho
98
+ LTL Lithuanian Litus Lithuania
99
+ LUF Luxembourg, Franc Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
100
+ LVL Latvian Lats Latvia
101
+ LYD Libyan Dinar Libyan Arab Jamahiriya
102
+ MAD Moroccan Dirham Morocco, Western Sahara
103
+ MDL Moldovan Leu Moldova, Republic of
104
+ MGA Ariary Madagascar
105
+ MGF Malagasy Franc Madagascar
106
+ MKD Denar Macedonia (former Yugoslav Republic of)
107
+ MMK Kyat Myanmar
108
+ MNT Tugrik Mongolia
109
+ MOP Pataca Macau
110
+ MRO Ouguiya Mauritania
111
+ MTL Maltese Lira Malta
112
+ MUR Mauritius Rupee Mauritius
113
+ MVR Rufiyaa Maldives
114
+ MWK Kwacha Malawi
115
+ MXN Mexican Peso Mexico
116
+ MYR Malaysian Ringgit Malaysia
117
+ MZN Metical Mozambique
118
+ NAD Namibia Dollar Namibia
119
+ NGN Naira Nigeria
120
+ NIO Cordoba Oro Nicaragua
121
+ NLG Netherlands, Guilder Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
122
+ NOK Norwegian Krone Norway, Bouvet Island, Svalbard and Jan Mayen
123
+ NPR Nepalese Rupee Nepal
124
+ NZD New Zealand Dollar New Zealand, Cook Islands, Niue, Pitcairn, Tokelau
125
+ OMR Rial Omani Oman
126
+ PAB Balboa Panama
127
+ PEN Nuevo Sol Peru
128
+ PGK Kina Papua New Guinea
129
+ PHP Philippine Peso Philippines
130
+ PKR Pakistan Rupee Pakistan
131
+ PLN Zloty Poland
132
+ PTE Portugal, Escudo Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro
133
+ PYG Guarani Paraguay
134
+ QAR Qatari Rial Qatar
135
+ ROL Old Leu Romania
136
+ RON New Leu Romania
137
+ RUB Russian Ruble Russian Federation
138
+ RUR Russian Ruble DEPRECATED, replaced by RUB
139
+ RWF Rwanda Franc Rwanda
140
+ SAR Saudi Riyal Saudi Arabia
141
+ SBD Solomon Islands Dollar Solomon Islands
142
+ SCR Seychelles Rupee Seychelles
143
+ SDD Sudanese Dinar Sudan
144
+ SEK Swedish Krona Sweden
145
+ SGD Singapore Dollar Singapore
146
+ SHP Saint Helena Pound Saint Helena
147
+ SIT Tolar Slovenia
148
+ SKK Slovak Koruna Slovakia
149
+ SLL Leone Sierra Leone
150
+ SOS Somali Shilling Somalia
151
+ SRD Suriname Guilder Suriname
152
+ SRG Suriname Guilder DEPRECATED, replaced by SRD
153
+ STD Dobra São Tome and Principe
154
+ SVC El Salvador Colon El Salvador
155
+ SYP Syrian Pound Syrian Arab Republic
156
+ SZL Lilangeni Swaziland
157
+ THB Baht Thailand
158
+ TJS Somoni Tajikistan
159
+ TMM Manat Turkmenistan
160
+ TND Tunisian Dinar Tunisia
161
+ TOP Pa’anga Tonga
162
+ TPE Timor Escudo NO LONGER VALID, Timor-Leste now uses the US Dollar
163
+ TRL Turkish Lira (old) Turkey
164
+ TRY Turkish Lira (new) Turkey, from 1 January 2005
165
+ TTD Trinidad and Tobago Dollar Trinidad and Tobago
166
+ TWD New Taiwan Dollar Taiwan (Province of China)
167
+ TZS Tanzanian Shilling Tanzania (United Republic of)
168
+ UAH Hryvnia Ukraine
169
+ UGX Uganda Shilling Uganda
170
+ USD US Dollar United States, American Samoa, British Indian Ocean Territory, Ecuador, Guam, Marshall Is, Micronesia (Federated States of), Northern Mariana Is, Palau, Puerto Rico, Timor-Leste, Turks & Caicos Is, US Minor Outlying Is, Virgin Is (British), Virgin Is (US)
171
+ UYU Peso Uruguayo Uruguay
172
+ UZS Uzbekistan Sum Uzbekistan
173
+ VEB Bolivar Venezuela
174
+ VND Dong Viet Nam
175
+ VUV Vatu Vanuatu
176
+ WST Tala Samoa
177
+ XAF CFA Franc BEAC Cameroon, Central African Republic, Chad, Congo, Equatorial Guinea, Gabon
178
+ XCD East Caribbean Dollar Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines
179
+ XOF CFA Franc BCEAO Benin, Burkina Faso, Côte D'Ivoire, Mali, Niger, Senegal, Togo
180
+ XPF CFP Franc French Polynesia, New Caledonia, Wallis and Futuna
181
+ YER Yemeni Rial Yemen
182
+ YUM Yugoslavian Dinar DEPRECATED, replaced by CSD
183
+ ZAR Rand South Africa
184
+ ZMK Kwacha Zambia
185
+ ZWD Zimbabwe Dollar Zimbabwe
@@ -0,0 +1 @@
1
+ RL Red letter Words spoken by Christ are printed in red
@@ -0,0 +1,21 @@
1
+ BLK Black
2
+ BLU Blue
3
+ BRN Brown
4
+ BUR Burgundy/maroon
5
+ CRE Cream
6
+ FCO Four-color
7
+ FCS Four-color and spot-color
8
+ GLD Gold
9
+ GRN Green
10
+ GRY Grey
11
+ MUL Multicolor
12
+ NAV Navy
13
+ ORG Orange
14
+ PNK Pink
15
+ PUR Purple
16
+ RED Red
17
+ SLV Silver
18
+ TAN Tan
19
+ WHI White
20
+ YEL Yellow
21
+ ZZZ Other
@@ -0,0 +1,24 @@
1
+ 01 Berkshire leather Pigskin
2
+ 02 Calfskin
3
+ 03 French Morocco Calf split or sheep split
4
+ 04 Morocco Goatskin
5
+ 05 Bonded buffalo grain
6
+ 06 Bonded calf grain
7
+ 07 Bonded Cordova
8
+ 08 Bonded eelskin
9
+ 09 Bonded Ostraleg
10
+ 10 Bonded ostrich
11
+ 11 Bonded reptile grain
12
+ 12 Bonded leather
13
+ 13 Cowhide
14
+ 14 Eelskin
15
+ 15 Kivar
16
+ 16 Leatherflex
17
+ 17 Moleskin
18
+ 18 Softhide leather
19
+ 19 Metal
20
+ 20 Velvet German 'Samt'
21
+ 21 Mother-of-pearl Spanish 'nácar'
22
+ 22 Papyrus
23
+ 23 Géltex An imitation cloth binding material
24
+ 24 Guaflex An imitation leather binding material
@@ -0,0 +1,4 @@
1
+ 01 BIC discount group code UK publisher's or distributor's discount group code in a format specified by BIC to ensure uniqueness
2
+ 02 Proprietary
3
+ 03 Boeksoort Terms code used in the Netherlands book trade
4
+ 04 German terms code Terms code used in German ONIX applications
@@ -0,0 +1,2 @@
1
+ 01 Proprietary
2
+ 02 DNB-PND Deutsche Bibliothek Personennormdatei - person name code of the German national library
@@ -0,0 +1,3 @@
1
+ 01 Proprietary
2
+ 02 BIC sales outlet ID code DEPRECATED - use code 03
3
+ 03 ONIX sales outlet ID code From List 139
@@ -0,0 +1,127 @@
1
+ Arab Arabic
2
+ Armi Imperial Aramaic
3
+ Armn Armenian
4
+ Avst Avestan
5
+ Bali Balinese
6
+ Batk Batak
7
+ Beng Bengali
8
+ Blis Blissymbols
9
+ Bopo Bopomofo
10
+ Brah Brahmi
11
+ Brai Braille
12
+ Bugi Buginese
13
+ Buhd Buhid
14
+ Cakm Chakmachakma
15
+ Cans Unified Canadian Aboriginal Syllabics
16
+ Cari Carian
17
+ Cham Cham
18
+ Cher Cherokee
19
+ Cirt Cirth
20
+ Copt Coptic
21
+ Cprt Cypriot
22
+ Cyrl Cyrillic
23
+ Cyrs Cyrillic (Old Church Slavonic variant)
24
+ Deva Devanagari (Nagari)
25
+ Dsrt Deseret (Mormon)
26
+ Egyd Egyptian demotic
27
+ Egyh Egyptian hieratic
28
+ Egyp Egyptian hieroglyphs
29
+ Ethi Ethiopic (Ge‘ez)
30
+ Geok Khutsuri (Asomtavruli and Khutsuri)
31
+ Geor Georgian (Mkhedruli)
32
+ Glag Glagolitic
33
+ Goth Gothic
34
+ Grek Greek
35
+ Gujr Gujarati
36
+ Guru Gurmukhi
37
+ Hang Hangul (Hangŭl, Hangeul)
38
+ Hani Han (Hanzi, Kanji, Hanja)
39
+ Hano Hanunoo (Hanunóo)
40
+ Hans Han (Simplified variant)
41
+ Hant Han (Traditional variant)
42
+ Hebr Hebrew
43
+ Hira Hiragana
44
+ Hmng Pahawh
45
+ Hrkt (alias for Hiragana + Katakana)
46
+ Hung Old Hungarian
47
+ Inds Indus (Harappan)
48
+ Ital Old Italic (Etruscan, Oscan, etc)
49
+ Java Javanese
50
+ Kali Kayah Likayah li
51
+ Kana Katakana
52
+ Khar Kharoshthi
53
+ Khmr Khmer
54
+ Knda Kannada
55
+ Kore Korean (alias for Hangul + Han)
56
+ Kthi Kaithikaithî
57
+ Lana Lanna, Tai Tham
58
+ Laoo Lao
59
+ Latf Latin (Fraktur variant)
60
+ Latg Latin (Gaelic variant)
61
+ Latn Latin
62
+ Lepc Lepcha (Róng)
63
+ Limb Limbu
64
+ Lina Linear A
65
+ Linb Linear B
66
+ Lyci Lycian
67
+ Lydi Lydian
68
+ Mand Mandaic, Mandaean
69
+ Mani Manichaean
70
+ Maya Mayan hieroglyphs 
71
+ Mero Meroitic
72
+ Mlym Malayalam
73
+ Mong Mongolian
74
+ Mymr Myanmar (Burmese)
75
+ Nkoo N’Ko
76
+ Ogam Ogham
77
+ Olck Ol Chiki (Ol Cemet', Ol, Santali)
78
+ Orkh Orkhon
79
+ Orya Oriya
80
+ Osma Osmanya
81
+ Perm Old Permic
82
+ Phag Phags-pa
83
+ Phli Inscriptional Pahlavi
84
+ Phlp Psalter Pahlavi
85
+ Phlv Book Pahlavi
86
+ Phnx Phoenician
87
+ Plrd Pollard Phonetic
88
+ Prti Inscriptional Parthian
89
+ Qaaa Reserved for private use (start)
90
+ Qabx Reserved for private use (end)
91
+ Rjng Rejang, Redjang, Kaganga
92
+ Roro Rongorongo
93
+ Runr Runic
94
+ Samr Samaritan
95
+ Sara Sarati
96
+ Saur Saurashtra
97
+ Shaw Shavian (Shaw)
98
+ Sinh Sinhala
99
+ Sund Sundanese
100
+ Sylo Syloti Nagri
101
+ Syrc Syriac
102
+ Syre Syriac (Estrangelo variant)
103
+ Syrj Syriac (Western variant)
104
+ Syrn Syriac (Eastern variant)
105
+ Tagb Tagbanwa
106
+ Tale Tai Le
107
+ Talu New Tai Lue
108
+ Taml Tamil
109
+ Tavt Tai Viet
110
+ Telu Telugu
111
+ Teng Tengwar
112
+ Tfng Tifinagh (Berber)
113
+ Tglg Tagalog
114
+ Thaa Thaana
115
+ Thai Thai
116
+ Tibt Tibetan
117
+ Ugar Ugaritic
118
+ Vaii Vai
119
+ Visp Visible Speech
120
+ Xpeo Old Persian
121
+ Xsux Cuneiform, Sumero-Akkadian
122
+ Yiii Yi
123
+ Zmth Mathematical notation
124
+ Zsym Symbols
125
+ Zxxx Code for unwritten languages
126
+ Zyyy Code for undetermined script
127
+ Zzzz Code for uncoded script
@@ -0,0 +1,6 @@
1
+ SFS4900 Finnish standard SFS 4900 Transliteration of Cyrillic characters - Slavic languages
2
+ SFS5807 Finnish standard SFS 5807 Transliteration and transcription of Greek characters
3
+ SFS5755 Finnish standard SFS 5755 Transliteration of Arabic characters
4
+ SFS3602 Finnish standard SFS 5824 Transliteration of Hebrew characters
5
+ ISO3602 ISO 3602 Documentation - Romanization of Japanese (kana script)
6
+ ISO7098 ISO 7098 Information and documentation - Romanization of Chinese
@@ -0,0 +1,70 @@
1
+ ACM A C Moore
2
+ AAP A&P
3
+ ALB Albertson’s
4
+ AMZ Amazon
5
+ ANR Angus & Robertson
6
+ APC Apple Computer stores
7
+ ASD Asda
8
+ AUD Audible
9
+ BDL B Dalton
10
+ BNO Barnes & Noble
11
+ BBB Bed Bath & Beyond
12
+ BST Best Buy
13
+ BJW BJ’s Wholesale Club
14
+ BLK Blackwell’s
15
+ BCA Book Club Associates
16
+ BKP Bookpeople
17
+ BKM Books-A-Million
18
+ BRD Borders
19
+ BRB Borders/Books Etc
20
+ BRT British Bookshops
21
+ CST Costco
22
+ CRB Crate & Barrel
23
+ CVS CVS Drug Stores
24
+ DSG Dick’s Sporting Goods
25
+ DYM Dymocks
26
+ ELC Early Learning Centre
27
+ ESN Eason
28
+ ENH English Heritage
29
+ FRY Fry’s Electronics
30
+ GMS Gamestop
31
+ HST Hastings Entertainment
32
+ HMV HMV
33
+ HMD Home Depot
34
+ IND Indigo-Chapters
35
+ JSM John Smith & Son
36
+ KMT K-Mart
37
+ KRG Kroger
38
+ LWE Lowe’s
39
+ MKS Marks & Spencer
40
+ MCR Microcenter
41
+ MRR Morrisons
42
+ MTC Mothercare
43
+ NTR National Trust
44
+ OFD Office Depot
45
+ OFM Office Max
46
+ PST Past Times
47
+ PTS Pet Smart
48
+ PTC Petco
49
+ PLY Play.com
50
+ PTB Pottery Barn
51
+ RST Restoration Hardware
52
+ RTZ Ritz Camera
53
+ SFW Safeway
54
+ SNS Sainsbury’s
55
+ SLF Selfridges
56
+ STP Staples
57
+ TRG Target
58
+ TES Tesco
59
+ TSR Toys ‘R’ Us
60
+ TSO TSO (The Stationery Office)
61
+ VRG Virgin Megastores
62
+ WHS W H Smith
63
+ WTR Waitrose
64
+ WLM Wal-Mart
65
+ WST Waterstone’s
66
+ WHT Whitcoul’s
67
+ WLS Williams Sonoma
68
+ WLW Woolworths
69
+ ZVV Zavvi Formerly Virgin Megastores (UK)
70
+ ZZZ Other Include retailer name in <SalesOutletName>