nokogiri 1.11.0.rc1-x86-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

Files changed (145) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE-DEPENDENCIES.md +1614 -0
  3. data/LICENSE.md +9 -0
  4. data/README.md +200 -0
  5. data/bin/nokogiri +118 -0
  6. data/dependencies.yml +74 -0
  7. data/ext/nokogiri/depend +358 -0
  8. data/ext/nokogiri/extconf.rb +695 -0
  9. data/ext/nokogiri/html_document.c +170 -0
  10. data/ext/nokogiri/html_document.h +10 -0
  11. data/ext/nokogiri/html_element_description.c +279 -0
  12. data/ext/nokogiri/html_element_description.h +10 -0
  13. data/ext/nokogiri/html_entity_lookup.c +32 -0
  14. data/ext/nokogiri/html_entity_lookup.h +8 -0
  15. data/ext/nokogiri/html_sax_parser_context.c +116 -0
  16. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  17. data/ext/nokogiri/html_sax_push_parser.c +87 -0
  18. data/ext/nokogiri/html_sax_push_parser.h +9 -0
  19. data/ext/nokogiri/nokogiri.c +147 -0
  20. data/ext/nokogiri/nokogiri.h +122 -0
  21. data/ext/nokogiri/xml_attr.c +103 -0
  22. data/ext/nokogiri/xml_attr.h +9 -0
  23. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  24. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  25. data/ext/nokogiri/xml_cdata.c +62 -0
  26. data/ext/nokogiri/xml_cdata.h +9 -0
  27. data/ext/nokogiri/xml_comment.c +69 -0
  28. data/ext/nokogiri/xml_comment.h +9 -0
  29. data/ext/nokogiri/xml_document.c +617 -0
  30. data/ext/nokogiri/xml_document.h +23 -0
  31. data/ext/nokogiri/xml_document_fragment.c +48 -0
  32. data/ext/nokogiri/xml_document_fragment.h +10 -0
  33. data/ext/nokogiri/xml_dtd.c +202 -0
  34. data/ext/nokogiri/xml_dtd.h +10 -0
  35. data/ext/nokogiri/xml_element_content.c +123 -0
  36. data/ext/nokogiri/xml_element_content.h +10 -0
  37. data/ext/nokogiri/xml_element_decl.c +69 -0
  38. data/ext/nokogiri/xml_element_decl.h +9 -0
  39. data/ext/nokogiri/xml_encoding_handler.c +79 -0
  40. data/ext/nokogiri/xml_encoding_handler.h +8 -0
  41. data/ext/nokogiri/xml_entity_decl.c +110 -0
  42. data/ext/nokogiri/xml_entity_decl.h +10 -0
  43. data/ext/nokogiri/xml_entity_reference.c +52 -0
  44. data/ext/nokogiri/xml_entity_reference.h +9 -0
  45. data/ext/nokogiri/xml_io.c +61 -0
  46. data/ext/nokogiri/xml_io.h +11 -0
  47. data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  48. data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  49. data/ext/nokogiri/xml_namespace.c +111 -0
  50. data/ext/nokogiri/xml_namespace.h +14 -0
  51. data/ext/nokogiri/xml_node.c +1773 -0
  52. data/ext/nokogiri/xml_node.h +13 -0
  53. data/ext/nokogiri/xml_node_set.c +486 -0
  54. data/ext/nokogiri/xml_node_set.h +12 -0
  55. data/ext/nokogiri/xml_processing_instruction.c +56 -0
  56. data/ext/nokogiri/xml_processing_instruction.h +9 -0
  57. data/ext/nokogiri/xml_reader.c +668 -0
  58. data/ext/nokogiri/xml_reader.h +10 -0
  59. data/ext/nokogiri/xml_relax_ng.c +161 -0
  60. data/ext/nokogiri/xml_relax_ng.h +9 -0
  61. data/ext/nokogiri/xml_sax_parser.c +310 -0
  62. data/ext/nokogiri/xml_sax_parser.h +39 -0
  63. data/ext/nokogiri/xml_sax_parser_context.c +262 -0
  64. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  65. data/ext/nokogiri/xml_sax_push_parser.c +159 -0
  66. data/ext/nokogiri/xml_sax_push_parser.h +9 -0
  67. data/ext/nokogiri/xml_schema.c +205 -0
  68. data/ext/nokogiri/xml_schema.h +9 -0
  69. data/ext/nokogiri/xml_syntax_error.c +64 -0
  70. data/ext/nokogiri/xml_syntax_error.h +13 -0
  71. data/ext/nokogiri/xml_text.c +52 -0
  72. data/ext/nokogiri/xml_text.h +9 -0
  73. data/ext/nokogiri/xml_xpath_context.c +298 -0
  74. data/ext/nokogiri/xml_xpath_context.h +10 -0
  75. data/ext/nokogiri/xslt_stylesheet.c +266 -0
  76. data/ext/nokogiri/xslt_stylesheet.h +14 -0
  77. data/lib/nokogiri.rb +127 -0
  78. data/lib/nokogiri/2.4/nokogiri.so +0 -0
  79. data/lib/nokogiri/2.5/nokogiri.so +0 -0
  80. data/lib/nokogiri/2.6/nokogiri.so +0 -0
  81. data/lib/nokogiri/2.7/nokogiri.so +0 -0
  82. data/lib/nokogiri/css.rb +28 -0
  83. data/lib/nokogiri/css/node.rb +53 -0
  84. data/lib/nokogiri/css/parser.rb +751 -0
  85. data/lib/nokogiri/css/parser.y +272 -0
  86. data/lib/nokogiri/css/parser_extras.rb +92 -0
  87. data/lib/nokogiri/css/syntax_error.rb +8 -0
  88. data/lib/nokogiri/css/tokenizer.rb +154 -0
  89. data/lib/nokogiri/css/tokenizer.rex +55 -0
  90. data/lib/nokogiri/css/xpath_visitor.rb +232 -0
  91. data/lib/nokogiri/decorators/slop.rb +43 -0
  92. data/lib/nokogiri/html.rb +38 -0
  93. data/lib/nokogiri/html/builder.rb +36 -0
  94. data/lib/nokogiri/html/document.rb +336 -0
  95. data/lib/nokogiri/html/document_fragment.rb +50 -0
  96. data/lib/nokogiri/html/element_description.rb +24 -0
  97. data/lib/nokogiri/html/element_description_defaults.rb +672 -0
  98. data/lib/nokogiri/html/entity_lookup.rb +14 -0
  99. data/lib/nokogiri/html/sax/parser.rb +63 -0
  100. data/lib/nokogiri/html/sax/parser_context.rb +17 -0
  101. data/lib/nokogiri/html/sax/push_parser.rb +37 -0
  102. data/lib/nokogiri/jruby/dependencies.rb +20 -0
  103. data/lib/nokogiri/syntax_error.rb +5 -0
  104. data/lib/nokogiri/version.rb +149 -0
  105. data/lib/nokogiri/xml.rb +76 -0
  106. data/lib/nokogiri/xml/attr.rb +15 -0
  107. data/lib/nokogiri/xml/attribute_decl.rb +19 -0
  108. data/lib/nokogiri/xml/builder.rb +447 -0
  109. data/lib/nokogiri/xml/cdata.rb +12 -0
  110. data/lib/nokogiri/xml/character_data.rb +8 -0
  111. data/lib/nokogiri/xml/document.rb +280 -0
  112. data/lib/nokogiri/xml/document_fragment.rb +161 -0
  113. data/lib/nokogiri/xml/dtd.rb +33 -0
  114. data/lib/nokogiri/xml/element_content.rb +37 -0
  115. data/lib/nokogiri/xml/element_decl.rb +14 -0
  116. data/lib/nokogiri/xml/entity_decl.rb +20 -0
  117. data/lib/nokogiri/xml/entity_reference.rb +19 -0
  118. data/lib/nokogiri/xml/namespace.rb +14 -0
  119. data/lib/nokogiri/xml/node.rb +916 -0
  120. data/lib/nokogiri/xml/node/save_options.rb +62 -0
  121. data/lib/nokogiri/xml/node_set.rb +372 -0
  122. data/lib/nokogiri/xml/notation.rb +7 -0
  123. data/lib/nokogiri/xml/parse_options.rb +121 -0
  124. data/lib/nokogiri/xml/pp.rb +3 -0
  125. data/lib/nokogiri/xml/pp/character_data.rb +19 -0
  126. data/lib/nokogiri/xml/pp/node.rb +57 -0
  127. data/lib/nokogiri/xml/processing_instruction.rb +9 -0
  128. data/lib/nokogiri/xml/reader.rb +116 -0
  129. data/lib/nokogiri/xml/relax_ng.rb +33 -0
  130. data/lib/nokogiri/xml/sax.rb +5 -0
  131. data/lib/nokogiri/xml/sax/document.rb +172 -0
  132. data/lib/nokogiri/xml/sax/parser.rb +123 -0
  133. data/lib/nokogiri/xml/sax/parser_context.rb +17 -0
  134. data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
  135. data/lib/nokogiri/xml/schema.rb +64 -0
  136. data/lib/nokogiri/xml/searchable.rb +231 -0
  137. data/lib/nokogiri/xml/syntax_error.rb +71 -0
  138. data/lib/nokogiri/xml/text.rb +10 -0
  139. data/lib/nokogiri/xml/xpath.rb +11 -0
  140. data/lib/nokogiri/xml/xpath/syntax_error.rb +12 -0
  141. data/lib/nokogiri/xml/xpath_context.rb +17 -0
  142. data/lib/nokogiri/xslt.rb +57 -0
  143. data/lib/nokogiri/xslt/stylesheet.rb +26 -0
  144. data/lib/xsd/xmlparser/nokogiri.rb +103 -0
  145. metadata +482 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 896bbbb69ad479014a4833c44c8cfd51e23d113ef1bc463818a95ef19c001628
4
+ data.tar.gz: a65487203280cec952842d8f053c372963049527a2e7c0ef5637f8476f6483a9
5
+ SHA512:
6
+ metadata.gz: e977cbf4ae652e4f6d915f3c4c4d4791d862b6c3bfe2d7fe7406e55d8d6a2a00a630624d88a8fbd502a2be10dfff2a556b09fcf4de064fe82476fa134a084b5a
7
+ data.tar.gz: 821ba1491a4c93350ca4a0cc92bd4195407225c280b90db951bb4a2017affa2eb0962c9695adfbfb9363a78890d619d72fa5c371857f9394f6db8635d4849e96
@@ -0,0 +1,1614 @@
1
+ ## Vendored Dependency Licenses
2
+
3
+ Nokogiri ships with some third party dependencies, which are listed
4
+ here along with their licenses.
5
+
6
+ Note that this document is broken into three sections, each of which
7
+ will apply to different platform releases of Nokogiri:
8
+
9
+ 1. default platform release
10
+ 2. `java` platform release
11
+ 3. binary windows platform releases (`x86-mingw32` and `x64-mingw32`)
12
+
13
+ It's encouraged for anyone consuming this file via license-tracking
14
+ software to understand which dependencies are used by your particular
15
+ software, so as not to misinterpret the contents of this file.
16
+
17
+ In particular, I'm sure somebody's lawyer, somewhere, is going to
18
+ freak out that the LGPL appears in this file; and so I'd like to take
19
+ special note that the dependency covered by LGPL, `libiconv`, is only
20
+ being redistributed in the binary Windows platform release. It's not
21
+ present in any non-Windows releases.
22
+
23
+ -----
24
+
25
+ ## default platform release
26
+
27
+ ### libxml2
28
+
29
+ MIT
30
+
31
+ http://xmlsoft.org/
32
+
33
+ Except where otherwise noted in the source code (e.g. the files hash.c,
34
+ list.c and the trio files, which are covered by a similar licence but
35
+ with different Copyright notices) all the files are:
36
+
37
+ Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
38
+
39
+ Permission is hereby granted, free of charge, to any person obtaining a copy
40
+ of this software and associated documentation files (the "Software"), to deal
41
+ in the Software without restriction, including without limitation the rights
42
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
43
+ copies of the Software, and to permit persons to whom the Software is fur-
44
+ nished to do so, subject to the following conditions:
45
+
46
+ The above copyright notice and this permission notice shall be included in
47
+ all copies or substantial portions of the Software.
48
+
49
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
50
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
51
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
52
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
53
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
54
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
55
+ THE SOFTWARE.
56
+
57
+
58
+ ### libxslt
59
+
60
+ MIT
61
+
62
+ http://xmlsoft.org/libxslt/
63
+
64
+ Licence for libxslt except libexslt
65
+ ----------------------------------------------------------------------
66
+ Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved.
67
+
68
+ Permission is hereby granted, free of charge, to any person obtaining a copy
69
+ of this software and associated documentation files (the "Software"), to deal
70
+ in the Software without restriction, including without limitation the rights
71
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
72
+ copies of the Software, and to permit persons to whom the Software is fur-
73
+ nished to do so, subject to the following conditions:
74
+
75
+ The above copyright notice and this permission notice shall be included in
76
+ all copies or substantial portions of the Software.
77
+
78
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
79
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
80
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
81
+ DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
82
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
83
+ NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
84
+
85
+ Except as contained in this notice, the name of Daniel Veillard shall not
86
+ be used in advertising or otherwise to promote the sale, use or other deal-
87
+ ings in this Software without prior written authorization from him.
88
+
89
+ ----------------------------------------------------------------------
90
+
91
+ Licence for libexslt
92
+ ----------------------------------------------------------------------
93
+ Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard.
94
+ All Rights Reserved.
95
+
96
+ Permission is hereby granted, free of charge, to any person obtaining a copy
97
+ of this software and associated documentation files (the "Software"), to deal
98
+ in the Software without restriction, including without limitation the rights
99
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
100
+ copies of the Software, and to permit persons to whom the Software is fur-
101
+ nished to do so, subject to the following conditions:
102
+
103
+ The above copyright notice and this permission notice shall be included in
104
+ all copies or substantial portions of the Software.
105
+
106
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
107
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
108
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
109
+ AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
110
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
111
+ NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
112
+
113
+ Except as contained in this notice, the name of the authors shall not
114
+ be used in advertising or otherwise to promote the sale, use or other deal-
115
+ ings in this Software without prior written authorization from him.
116
+ ----------------------------------------------------------------------
117
+
118
+ ## `java` platform release
119
+
120
+ ### isorelax
121
+
122
+ MIT
123
+
124
+ http://iso-relax.sourceforge.net/
125
+
126
+ Copyright (c) 2001-2002, SourceForge ISO-RELAX Project (ASAMI
127
+ Tomoharu, Daisuke Okajima, Kohsuke Kawaguchi, and MURATA Makoto)
128
+
129
+ Permission is hereby granted, free of charge, to any person obtaining
130
+ a copy of this software and associated documentation files (the
131
+ "Software"), to deal in the Software without restriction, including
132
+ without limitation the rights to use, copy, modify, merge, publish,
133
+ distribute, sublicense, and/or sell copies of the Software, and to
134
+ permit persons to whom the Software is furnished to do so, subject to
135
+ the following conditions:
136
+
137
+ The above copyright notice and this permission notice shall be
138
+ included in all copies or substantial portions of the Software.
139
+
140
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
141
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
142
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
143
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
144
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
145
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
146
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
147
+
148
+
149
+ ### jing
150
+
151
+ BSD-3-Clause
152
+
153
+ http://www.thaiopensource.com/relaxng/jing.html
154
+
155
+ Copyright (c) 2001-2003 Thai Open Source Software Center Ltd
156
+ All rights reserved.
157
+
158
+ Redistribution and use in source and binary forms, with or without
159
+ modification, are permitted provided that the following conditions
160
+ are met:
161
+
162
+ * Redistributions of source code must retain the above copyright
163
+ notice, this list of conditions and the following disclaimer.
164
+
165
+ * Redistributions in binary form must reproduce the above
166
+ copyright notice, this list of conditions and the following
167
+ disclaimer in the documentation and/or other materials provided
168
+ with the distribution.
169
+
170
+ * Neither the name of the Thai Open Source Software Center Ltd nor
171
+ the names of its contributors may be used to endorse or promote
172
+ products derived from this software without specific prior
173
+ written permission.
174
+
175
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
176
+ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
177
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
178
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
179
+ DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
180
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
181
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
182
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
183
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
184
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
185
+ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
186
+ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
187
+ SUCH DAMAGE.
188
+
189
+
190
+ ### nekodtd
191
+
192
+ Apache 1.0-derived
193
+
194
+ https://people.apache.org/~andyc/neko/doc/dtd/
195
+
196
+ The CyberNeko Software License, Version 1.0
197
+
198
+ (C) Copyright 2002-2005, Andy Clark. All rights reserved.
199
+
200
+ Redistribution and use in source and binary forms, with or without
201
+ modification, are permitted provided that the following conditions
202
+ are met:
203
+
204
+ 1. Redistributions of source code must retain the above copyright
205
+ notice, this list of conditions and the following disclaimer.
206
+
207
+ 2. Redistributions in binary form must reproduce the above copyright
208
+ notice, this list of conditions and the following disclaimer in
209
+ the documentation and/or other materials provided with the
210
+ distribution.
211
+
212
+ 3. The end-user documentation included with the redistribution,
213
+ if any, must include the following acknowledgment:
214
+ "This product includes software developed by Andy Clark."
215
+ Alternately, this acknowledgment may appear in the software itself,
216
+ if and wherever such third-party acknowledgments normally appear.
217
+
218
+ 4. The names "CyberNeko" and "NekoHTML" must not be used to endorse
219
+ or promote products derived from this software without prior
220
+ written permission. For written permission, please contact
221
+ andyc@cyberneko.net.
222
+
223
+ 5. Products derived from this software may not be called "CyberNeko",
224
+ nor may "CyberNeko" appear in their name, without prior written
225
+ permission of the author.
226
+
227
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
228
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
229
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
230
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS
231
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
232
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
233
+ OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
234
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
235
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
236
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
237
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
238
+
239
+ ====================================================================
240
+
241
+ This license is based on the Apache Software License, version 1.1.
242
+
243
+ ### nekohtml
244
+
245
+ Apache 2.0
246
+
247
+ http://nekohtml.sourceforge.net/
248
+
249
+
250
+ Apache License
251
+ Version 2.0, January 2004
252
+ http://www.apache.org/licenses/
253
+
254
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
255
+
256
+ 1. Definitions.
257
+
258
+ "License" shall mean the terms and conditions for use, reproduction,
259
+ and distribution as defined by Sections 1 through 9 of this document.
260
+
261
+ "Licensor" shall mean the copyright owner or entity authorized by
262
+ the copyright owner that is granting the License.
263
+
264
+ "Legal Entity" shall mean the union of the acting entity and all
265
+ other entities that control, are controlled by, or are under common
266
+ control with that entity. For the purposes of this definition,
267
+ "control" means (i) the power, direct or indirect, to cause the
268
+ direction or management of such entity, whether by contract or
269
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
270
+ outstanding shares, or (iii) beneficial ownership of such entity.
271
+
272
+ "You" (or "Your") shall mean an individual or Legal Entity
273
+ exercising permissions granted by this License.
274
+
275
+ "Source" form shall mean the preferred form for making modifications,
276
+ including but not limited to software source code, documentation
277
+ source, and configuration files.
278
+
279
+ "Object" form shall mean any form resulting from mechanical
280
+ transformation or translation of a Source form, including but
281
+ not limited to compiled object code, generated documentation,
282
+ and conversions to other media types.
283
+
284
+ "Work" shall mean the work of authorship, whether in Source or
285
+ Object form, made available under the License, as indicated by a
286
+ copyright notice that is included in or attached to the work
287
+ (an example is provided in the Appendix below).
288
+
289
+ "Derivative Works" shall mean any work, whether in Source or Object
290
+ form, that is based on (or derived from) the Work and for which the
291
+ editorial revisions, annotations, elaborations, or other modifications
292
+ represent, as a whole, an original work of authorship. For the purposes
293
+ of this License, Derivative Works shall not include works that remain
294
+ separable from, or merely link (or bind by name) to the interfaces of,
295
+ the Work and Derivative Works thereof.
296
+
297
+ "Contribution" shall mean any work of authorship, including
298
+ the original version of the Work and any modifications or additions
299
+ to that Work or Derivative Works thereof, that is intentionally
300
+ submitted to Licensor for inclusion in the Work by the copyright owner
301
+ or by an individual or Legal Entity authorized to submit on behalf of
302
+ the copyright owner. For the purposes of this definition, "submitted"
303
+ means any form of electronic, verbal, or written communication sent
304
+ to the Licensor or its representatives, including but not limited to
305
+ communication on electronic mailing lists, source code control systems,
306
+ and issue tracking systems that are managed by, or on behalf of, the
307
+ Licensor for the purpose of discussing and improving the Work, but
308
+ excluding communication that is conspicuously marked or otherwise
309
+ designated in writing by the copyright owner as "Not a Contribution."
310
+
311
+ "Contributor" shall mean Licensor and any individual or Legal Entity
312
+ on behalf of whom a Contribution has been received by Licensor and
313
+ subsequently incorporated within the Work.
314
+
315
+ 2. Grant of Copyright License. Subject to the terms and conditions of
316
+ this License, each Contributor hereby grants to You a perpetual,
317
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
318
+ copyright license to reproduce, prepare Derivative Works of,
319
+ publicly display, publicly perform, sublicense, and distribute the
320
+ Work and such Derivative Works in Source or Object form.
321
+
322
+ 3. Grant of Patent License. Subject to the terms and conditions of
323
+ this License, each Contributor hereby grants to You a perpetual,
324
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
325
+ (except as stated in this section) patent license to make, have made,
326
+ use, offer to sell, sell, import, and otherwise transfer the Work,
327
+ where such license applies only to those patent claims licensable
328
+ by such Contributor that are necessarily infringed by their
329
+ Contribution(s) alone or by combination of their Contribution(s)
330
+ with the Work to which such Contribution(s) was submitted. If You
331
+ institute patent litigation against any entity (including a
332
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
333
+ or a Contribution incorporated within the Work constitutes direct
334
+ or contributory patent infringement, then any patent licenses
335
+ granted to You under this License for that Work shall terminate
336
+ as of the date such litigation is filed.
337
+
338
+ 4. Redistribution. You may reproduce and distribute copies of the
339
+ Work or Derivative Works thereof in any medium, with or without
340
+ modifications, and in Source or Object form, provided that You
341
+ meet the following conditions:
342
+
343
+ (a) You must give any other recipients of the Work or
344
+ Derivative Works a copy of this License; and
345
+
346
+ (b) You must cause any modified files to carry prominent notices
347
+ stating that You changed the files; and
348
+
349
+ (c) You must retain, in the Source form of any Derivative Works
350
+ that You distribute, all copyright, patent, trademark, and
351
+ attribution notices from the Source form of the Work,
352
+ excluding those notices that do not pertain to any part of
353
+ the Derivative Works; and
354
+
355
+ (d) If the Work includes a "NOTICE" text file as part of its
356
+ distribution, then any Derivative Works that You distribute must
357
+ include a readable copy of the attribution notices contained
358
+ within such NOTICE file, excluding those notices that do not
359
+ pertain to any part of the Derivative Works, in at least one
360
+ of the following places: within a NOTICE text file distributed
361
+ as part of the Derivative Works; within the Source form or
362
+ documentation, if provided along with the Derivative Works; or,
363
+ within a display generated by the Derivative Works, if and
364
+ wherever such third-party notices normally appear. The contents
365
+ of the NOTICE file are for informational purposes only and
366
+ do not modify the License. You may add Your own attribution
367
+ notices within Derivative Works that You distribute, alongside
368
+ or as an addendum to the NOTICE text from the Work, provided
369
+ that such additional attribution notices cannot be construed
370
+ as modifying the License.
371
+
372
+ You may add Your own copyright statement to Your modifications and
373
+ may provide additional or different license terms and conditions
374
+ for use, reproduction, or distribution of Your modifications, or
375
+ for any such Derivative Works as a whole, provided Your use,
376
+ reproduction, and distribution of the Work otherwise complies with
377
+ the conditions stated in this License.
378
+
379
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
380
+ any Contribution intentionally submitted for inclusion in the Work
381
+ by You to the Licensor shall be under the terms and conditions of
382
+ this License, without any additional terms or conditions.
383
+ Notwithstanding the above, nothing herein shall supersede or modify
384
+ the terms of any separate license agreement you may have executed
385
+ with Licensor regarding such Contributions.
386
+
387
+ 6. Trademarks. This License does not grant permission to use the trade
388
+ names, trademarks, service marks, or product names of the Licensor,
389
+ except as required for reasonable and customary use in describing the
390
+ origin of the Work and reproducing the content of the NOTICE file.
391
+
392
+ 7. Disclaimer of Warranty. Unless required by applicable law or
393
+ agreed to in writing, Licensor provides the Work (and each
394
+ Contributor provides its Contributions) on an "AS IS" BASIS,
395
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
396
+ implied, including, without limitation, any warranties or conditions
397
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
398
+ PARTICULAR PURPOSE. You are solely responsible for determining the
399
+ appropriateness of using or redistributing the Work and assume any
400
+ risks associated with Your exercise of permissions under this License.
401
+
402
+ 8. Limitation of Liability. In no event and under no legal theory,
403
+ whether in tort (including negligence), contract, or otherwise,
404
+ unless required by applicable law (such as deliberate and grossly
405
+ negligent acts) or agreed to in writing, shall any Contributor be
406
+ liable to You for damages, including any direct, indirect, special,
407
+ incidental, or consequential damages of any character arising as a
408
+ result of this License or out of the use or inability to use the
409
+ Work (including but not limited to damages for loss of goodwill,
410
+ work stoppage, computer failure or malfunction, or any and all
411
+ other commercial damages or losses), even if such Contributor
412
+ has been advised of the possibility of such damages.
413
+
414
+ 9. Accepting Warranty or Additional Liability. While redistributing
415
+ the Work or Derivative Works thereof, You may choose to offer,
416
+ and charge a fee for, acceptance of support, warranty, indemnity,
417
+ or other liability obligations and/or rights consistent with this
418
+ License. However, in accepting such obligations, You may act only
419
+ on Your own behalf and on Your sole responsibility, not on behalf
420
+ of any other Contributor, and only if You agree to indemnify,
421
+ defend, and hold each Contributor harmless for any liability
422
+ incurred by, or claims asserted against, such Contributor by reason
423
+ of your accepting any such warranty or additional liability.
424
+
425
+ END OF TERMS AND CONDITIONS
426
+
427
+ APPENDIX: How to apply the Apache License to your work.
428
+
429
+ To apply the Apache License to your work, attach the following
430
+ boilerplate notice, with the fields enclosed by brackets "[]"
431
+ replaced with your own identifying information. (Don't include
432
+ the brackets!) The text should be enclosed in the appropriate
433
+ comment syntax for the file format. We also recommend that a
434
+ file or class name and description of purpose be included on the
435
+ same "printed page" as the copyright notice for easier
436
+ identification within third-party archives.
437
+
438
+ Copyright [yyyy] [name of copyright owner]
439
+
440
+ Licensed under the Apache License, Version 2.0 (the "License");
441
+ you may not use this file except in compliance with the License.
442
+ You may obtain a copy of the License at
443
+
444
+ http://www.apache.org/licenses/LICENSE-2.0
445
+
446
+ Unless required by applicable law or agreed to in writing, software
447
+ distributed under the License is distributed on an "AS IS" BASIS,
448
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
449
+ See the License for the specific language governing permissions and
450
+ limitations under the License.
451
+
452
+ ### xalan
453
+
454
+ Apache 2.0
455
+
456
+ https://xml.apache.org/xalan-j/
457
+
458
+ covers xalan.jar and serializer.jar
459
+
460
+ Apache License
461
+ Version 2.0, January 2004
462
+ http://www.apache.org/licenses/
463
+
464
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
465
+
466
+ 1. Definitions.
467
+
468
+ "License" shall mean the terms and conditions for use, reproduction,
469
+ and distribution as defined by Sections 1 through 9 of this document.
470
+
471
+ "Licensor" shall mean the copyright owner or entity authorized by
472
+ the copyright owner that is granting the License.
473
+
474
+ "Legal Entity" shall mean the union of the acting entity and all
475
+ other entities that control, are controlled by, or are under common
476
+ control with that entity. For the purposes of this definition,
477
+ "control" means (i) the power, direct or indirect, to cause the
478
+ direction or management of such entity, whether by contract or
479
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
480
+ outstanding shares, or (iii) beneficial ownership of such entity.
481
+
482
+ "You" (or "Your") shall mean an individual or Legal Entity
483
+ exercising permissions granted by this License.
484
+
485
+ "Source" form shall mean the preferred form for making modifications,
486
+ including but not limited to software source code, documentation
487
+ source, and configuration files.
488
+
489
+ "Object" form shall mean any form resulting from mechanical
490
+ transformation or translation of a Source form, including but
491
+ not limited to compiled object code, generated documentation,
492
+ and conversions to other media types.
493
+
494
+ "Work" shall mean the work of authorship, whether in Source or
495
+ Object form, made available under the License, as indicated by a
496
+ copyright notice that is included in or attached to the work
497
+ (an example is provided in the Appendix below).
498
+
499
+ "Derivative Works" shall mean any work, whether in Source or Object
500
+ form, that is based on (or derived from) the Work and for which the
501
+ editorial revisions, annotations, elaborations, or other modifications
502
+ represent, as a whole, an original work of authorship. For the purposes
503
+ of this License, Derivative Works shall not include works that remain
504
+ separable from, or merely link (or bind by name) to the interfaces of,
505
+ the Work and Derivative Works thereof.
506
+
507
+ "Contribution" shall mean any work of authorship, including
508
+ the original version of the Work and any modifications or additions
509
+ to that Work or Derivative Works thereof, that is intentionally
510
+ submitted to Licensor for inclusion in the Work by the copyright owner
511
+ or by an individual or Legal Entity authorized to submit on behalf of
512
+ the copyright owner. For the purposes of this definition, "submitted"
513
+ means any form of electronic, verbal, or written communication sent
514
+ to the Licensor or its representatives, including but not limited to
515
+ communication on electronic mailing lists, source code control systems,
516
+ and issue tracking systems that are managed by, or on behalf of, the
517
+ Licensor for the purpose of discussing and improving the Work, but
518
+ excluding communication that is conspicuously marked or otherwise
519
+ designated in writing by the copyright owner as "Not a Contribution."
520
+
521
+ "Contributor" shall mean Licensor and any individual or Legal Entity
522
+ on behalf of whom a Contribution has been received by Licensor and
523
+ subsequently incorporated within the Work.
524
+
525
+ 2. Grant of Copyright License. Subject to the terms and conditions of
526
+ this License, each Contributor hereby grants to You a perpetual,
527
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
528
+ copyright license to reproduce, prepare Derivative Works of,
529
+ publicly display, publicly perform, sublicense, and distribute the
530
+ Work and such Derivative Works in Source or Object form.
531
+
532
+ 3. Grant of Patent License. Subject to the terms and conditions of
533
+ this License, each Contributor hereby grants to You a perpetual,
534
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
535
+ (except as stated in this section) patent license to make, have made,
536
+ use, offer to sell, sell, import, and otherwise transfer the Work,
537
+ where such license applies only to those patent claims licensable
538
+ by such Contributor that are necessarily infringed by their
539
+ Contribution(s) alone or by combination of their Contribution(s)
540
+ with the Work to which such Contribution(s) was submitted. If You
541
+ institute patent litigation against any entity (including a
542
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
543
+ or a Contribution incorporated within the Work constitutes direct
544
+ or contributory patent infringement, then any patent licenses
545
+ granted to You under this License for that Work shall terminate
546
+ as of the date such litigation is filed.
547
+
548
+ 4. Redistribution. You may reproduce and distribute copies of the
549
+ Work or Derivative Works thereof in any medium, with or without
550
+ modifications, and in Source or Object form, provided that You
551
+ meet the following conditions:
552
+
553
+ (a) You must give any other recipients of the Work or
554
+ Derivative Works a copy of this License; and
555
+
556
+ (b) You must cause any modified files to carry prominent notices
557
+ stating that You changed the files; and
558
+
559
+ (c) You must retain, in the Source form of any Derivative Works
560
+ that You distribute, all copyright, patent, trademark, and
561
+ attribution notices from the Source form of the Work,
562
+ excluding those notices that do not pertain to any part of
563
+ the Derivative Works; and
564
+
565
+ (d) If the Work includes a "NOTICE" text file as part of its
566
+ distribution, then any Derivative Works that You distribute must
567
+ include a readable copy of the attribution notices contained
568
+ within such NOTICE file, excluding those notices that do not
569
+ pertain to any part of the Derivative Works, in at least one
570
+ of the following places: within a NOTICE text file distributed
571
+ as part of the Derivative Works; within the Source form or
572
+ documentation, if provided along with the Derivative Works; or,
573
+ within a display generated by the Derivative Works, if and
574
+ wherever such third-party notices normally appear. The contents
575
+ of the NOTICE file are for informational purposes only and
576
+ do not modify the License. You may add Your own attribution
577
+ notices within Derivative Works that You distribute, alongside
578
+ or as an addendum to the NOTICE text from the Work, provided
579
+ that such additional attribution notices cannot be construed
580
+ as modifying the License.
581
+
582
+ You may add Your own copyright statement to Your modifications and
583
+ may provide additional or different license terms and conditions
584
+ for use, reproduction, or distribution of Your modifications, or
585
+ for any such Derivative Works as a whole, provided Your use,
586
+ reproduction, and distribution of the Work otherwise complies with
587
+ the conditions stated in this License.
588
+
589
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
590
+ any Contribution intentionally submitted for inclusion in the Work
591
+ by You to the Licensor shall be under the terms and conditions of
592
+ this License, without any additional terms or conditions.
593
+ Notwithstanding the above, nothing herein shall supersede or modify
594
+ the terms of any separate license agreement you may have executed
595
+ with Licensor regarding such Contributions.
596
+
597
+ 6. Trademarks. This License does not grant permission to use the trade
598
+ names, trademarks, service marks, or product names of the Licensor,
599
+ except as required for reasonable and customary use in describing the
600
+ origin of the Work and reproducing the content of the NOTICE file.
601
+
602
+ 7. Disclaimer of Warranty. Unless required by applicable law or
603
+ agreed to in writing, Licensor provides the Work (and each
604
+ Contributor provides its Contributions) on an "AS IS" BASIS,
605
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
606
+ implied, including, without limitation, any warranties or conditions
607
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
608
+ PARTICULAR PURPOSE. You are solely responsible for determining the
609
+ appropriateness of using or redistributing the Work and assume any
610
+ risks associated with Your exercise of permissions under this License.
611
+
612
+ 8. Limitation of Liability. In no event and under no legal theory,
613
+ whether in tort (including negligence), contract, or otherwise,
614
+ unless required by applicable law (such as deliberate and grossly
615
+ negligent acts) or agreed to in writing, shall any Contributor be
616
+ liable to You for damages, including any direct, indirect, special,
617
+ incidental, or consequential damages of any character arising as a
618
+ result of this License or out of the use or inability to use the
619
+ Work (including but not limited to damages for loss of goodwill,
620
+ work stoppage, computer failure or malfunction, or any and all
621
+ other commercial damages or losses), even if such Contributor
622
+ has been advised of the possibility of such damages.
623
+
624
+ 9. Accepting Warranty or Additional Liability. While redistributing
625
+ the Work or Derivative Works thereof, You may choose to offer,
626
+ and charge a fee for, acceptance of support, warranty, indemnity,
627
+ or other liability obligations and/or rights consistent with this
628
+ License. However, in accepting such obligations, You may act only
629
+ on Your own behalf and on Your sole responsibility, not on behalf
630
+ of any other Contributor, and only if You agree to indemnify,
631
+ defend, and hold each Contributor harmless for any liability
632
+ incurred by, or claims asserted against, such Contributor by reason
633
+ of your accepting any such warranty or additional liability.
634
+
635
+ END OF TERMS AND CONDITIONS
636
+
637
+ APPENDIX: How to apply the Apache License to your work.
638
+
639
+ To apply the Apache License to your work, attach the following
640
+ boilerplate notice, with the fields enclosed by brackets "[]"
641
+ replaced with your own identifying information. (Don't include
642
+ the brackets!) The text should be enclosed in the appropriate
643
+ comment syntax for the file format. We also recommend that a
644
+ file or class name and description of purpose be included on the
645
+ same "printed page" as the copyright notice for easier
646
+ identification within third-party archives.
647
+
648
+ Copyright [yyyy] [name of copyright owner]
649
+
650
+ Licensed under the Apache License, Version 2.0 (the "License");
651
+ you may not use this file except in compliance with the License.
652
+ You may obtain a copy of the License at
653
+
654
+ http://www.apache.org/licenses/LICENSE-2.0
655
+
656
+ Unless required by applicable law or agreed to in writing, software
657
+ distributed under the License is distributed on an "AS IS" BASIS,
658
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
659
+ See the License for the specific language governing permissions and
660
+ limitations under the License.
661
+
662
+
663
+ ### xerces
664
+
665
+ Apache 2.0
666
+
667
+ https://xerces.apache.org/xerces2-j/
668
+
669
+
670
+ Apache License
671
+ Version 2.0, January 2004
672
+ http://www.apache.org/licenses/
673
+
674
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
675
+
676
+ 1. Definitions.
677
+
678
+ "License" shall mean the terms and conditions for use, reproduction,
679
+ and distribution as defined by Sections 1 through 9 of this document.
680
+
681
+ "Licensor" shall mean the copyright owner or entity authorized by
682
+ the copyright owner that is granting the License.
683
+
684
+ "Legal Entity" shall mean the union of the acting entity and all
685
+ other entities that control, are controlled by, or are under common
686
+ control with that entity. For the purposes of this definition,
687
+ "control" means (i) the power, direct or indirect, to cause the
688
+ direction or management of such entity, whether by contract or
689
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
690
+ outstanding shares, or (iii) beneficial ownership of such entity.
691
+
692
+ "You" (or "Your") shall mean an individual or Legal Entity
693
+ exercising permissions granted by this License.
694
+
695
+ "Source" form shall mean the preferred form for making modifications,
696
+ including but not limited to software source code, documentation
697
+ source, and configuration files.
698
+
699
+ "Object" form shall mean any form resulting from mechanical
700
+ transformation or translation of a Source form, including but
701
+ not limited to compiled object code, generated documentation,
702
+ and conversions to other media types.
703
+
704
+ "Work" shall mean the work of authorship, whether in Source or
705
+ Object form, made available under the License, as indicated by a
706
+ copyright notice that is included in or attached to the work
707
+ (an example is provided in the Appendix below).
708
+
709
+ "Derivative Works" shall mean any work, whether in Source or Object
710
+ form, that is based on (or derived from) the Work and for which the
711
+ editorial revisions, annotations, elaborations, or other modifications
712
+ represent, as a whole, an original work of authorship. For the purposes
713
+ of this License, Derivative Works shall not include works that remain
714
+ separable from, or merely link (or bind by name) to the interfaces of,
715
+ the Work and Derivative Works thereof.
716
+
717
+ "Contribution" shall mean any work of authorship, including
718
+ the original version of the Work and any modifications or additions
719
+ to that Work or Derivative Works thereof, that is intentionally
720
+ submitted to Licensor for inclusion in the Work by the copyright owner
721
+ or by an individual or Legal Entity authorized to submit on behalf of
722
+ the copyright owner. For the purposes of this definition, "submitted"
723
+ means any form of electronic, verbal, or written communication sent
724
+ to the Licensor or its representatives, including but not limited to
725
+ communication on electronic mailing lists, source code control systems,
726
+ and issue tracking systems that are managed by, or on behalf of, the
727
+ Licensor for the purpose of discussing and improving the Work, but
728
+ excluding communication that is conspicuously marked or otherwise
729
+ designated in writing by the copyright owner as "Not a Contribution."
730
+
731
+ "Contributor" shall mean Licensor and any individual or Legal Entity
732
+ on behalf of whom a Contribution has been received by Licensor and
733
+ subsequently incorporated within the Work.
734
+
735
+ 2. Grant of Copyright License. Subject to the terms and conditions of
736
+ this License, each Contributor hereby grants to You a perpetual,
737
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
738
+ copyright license to reproduce, prepare Derivative Works of,
739
+ publicly display, publicly perform, sublicense, and distribute the
740
+ Work and such Derivative Works in Source or Object form.
741
+
742
+ 3. Grant of Patent License. Subject to the terms and conditions of
743
+ this License, each Contributor hereby grants to You a perpetual,
744
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
745
+ (except as stated in this section) patent license to make, have made,
746
+ use, offer to sell, sell, import, and otherwise transfer the Work,
747
+ where such license applies only to those patent claims licensable
748
+ by such Contributor that are necessarily infringed by their
749
+ Contribution(s) alone or by combination of their Contribution(s)
750
+ with the Work to which such Contribution(s) was submitted. If You
751
+ institute patent litigation against any entity (including a
752
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
753
+ or a Contribution incorporated within the Work constitutes direct
754
+ or contributory patent infringement, then any patent licenses
755
+ granted to You under this License for that Work shall terminate
756
+ as of the date such litigation is filed.
757
+
758
+ 4. Redistribution. You may reproduce and distribute copies of the
759
+ Work or Derivative Works thereof in any medium, with or without
760
+ modifications, and in Source or Object form, provided that You
761
+ meet the following conditions:
762
+
763
+ (a) You must give any other recipients of the Work or
764
+ Derivative Works a copy of this License; and
765
+
766
+ (b) You must cause any modified files to carry prominent notices
767
+ stating that You changed the files; and
768
+
769
+ (c) You must retain, in the Source form of any Derivative Works
770
+ that You distribute, all copyright, patent, trademark, and
771
+ attribution notices from the Source form of the Work,
772
+ excluding those notices that do not pertain to any part of
773
+ the Derivative Works; and
774
+
775
+ (d) If the Work includes a "NOTICE" text file as part of its
776
+ distribution, then any Derivative Works that You distribute must
777
+ include a readable copy of the attribution notices contained
778
+ within such NOTICE file, excluding those notices that do not
779
+ pertain to any part of the Derivative Works, in at least one
780
+ of the following places: within a NOTICE text file distributed
781
+ as part of the Derivative Works; within the Source form or
782
+ documentation, if provided along with the Derivative Works; or,
783
+ within a display generated by the Derivative Works, if and
784
+ wherever such third-party notices normally appear. The contents
785
+ of the NOTICE file are for informational purposes only and
786
+ do not modify the License. You may add Your own attribution
787
+ notices within Derivative Works that You distribute, alongside
788
+ or as an addendum to the NOTICE text from the Work, provided
789
+ that such additional attribution notices cannot be construed
790
+ as modifying the License.
791
+
792
+ You may add Your own copyright statement to Your modifications and
793
+ may provide additional or different license terms and conditions
794
+ for use, reproduction, or distribution of Your modifications, or
795
+ for any such Derivative Works as a whole, provided Your use,
796
+ reproduction, and distribution of the Work otherwise complies with
797
+ the conditions stated in this License.
798
+
799
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
800
+ any Contribution intentionally submitted for inclusion in the Work
801
+ by You to the Licensor shall be under the terms and conditions of
802
+ this License, without any additional terms or conditions.
803
+ Notwithstanding the above, nothing herein shall supersede or modify
804
+ the terms of any separate license agreement you may have executed
805
+ with Licensor regarding such Contributions.
806
+
807
+ 6. Trademarks. This License does not grant permission to use the trade
808
+ names, trademarks, service marks, or product names of the Licensor,
809
+ except as required for reasonable and customary use in describing the
810
+ origin of the Work and reproducing the content of the NOTICE file.
811
+
812
+ 7. Disclaimer of Warranty. Unless required by applicable law or
813
+ agreed to in writing, Licensor provides the Work (and each
814
+ Contributor provides its Contributions) on an "AS IS" BASIS,
815
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
816
+ implied, including, without limitation, any warranties or conditions
817
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
818
+ PARTICULAR PURPOSE. You are solely responsible for determining the
819
+ appropriateness of using or redistributing the Work and assume any
820
+ risks associated with Your exercise of permissions under this License.
821
+
822
+ 8. Limitation of Liability. In no event and under no legal theory,
823
+ whether in tort (including negligence), contract, or otherwise,
824
+ unless required by applicable law (such as deliberate and grossly
825
+ negligent acts) or agreed to in writing, shall any Contributor be
826
+ liable to You for damages, including any direct, indirect, special,
827
+ incidental, or consequential damages of any character arising as a
828
+ result of this License or out of the use or inability to use the
829
+ Work (including but not limited to damages for loss of goodwill,
830
+ work stoppage, computer failure or malfunction, or any and all
831
+ other commercial damages or losses), even if such Contributor
832
+ has been advised of the possibility of such damages.
833
+
834
+ 9. Accepting Warranty or Additional Liability. While redistributing
835
+ the Work or Derivative Works thereof, You may choose to offer,
836
+ and charge a fee for, acceptance of support, warranty, indemnity,
837
+ or other liability obligations and/or rights consistent with this
838
+ License. However, in accepting such obligations, You may act only
839
+ on Your own behalf and on Your sole responsibility, not on behalf
840
+ of any other Contributor, and only if You agree to indemnify,
841
+ defend, and hold each Contributor harmless for any liability
842
+ incurred by, or claims asserted against, such Contributor by reason
843
+ of your accepting any such warranty or additional liability.
844
+
845
+ END OF TERMS AND CONDITIONS
846
+
847
+ APPENDIX: How to apply the Apache License to your work.
848
+
849
+ To apply the Apache License to your work, attach the following
850
+ boilerplate notice, with the fields enclosed by brackets "[]"
851
+ replaced with your own identifying information. (Don't include
852
+ the brackets!) The text should be enclosed in the appropriate
853
+ comment syntax for the file format. We also recommend that a
854
+ file or class name and description of purpose be included on the
855
+ same "printed page" as the copyright notice for easier
856
+ identification within third-party archives.
857
+
858
+ Copyright [yyyy] [name of copyright owner]
859
+
860
+ Licensed under the Apache License, Version 2.0 (the "License");
861
+ you may not use this file except in compliance with the License.
862
+ You may obtain a copy of the License at
863
+
864
+ http://www.apache.org/licenses/LICENSE-2.0
865
+
866
+ Unless required by applicable law or agreed to in writing, software
867
+ distributed under the License is distributed on an "AS IS" BASIS,
868
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
869
+ See the License for the specific language governing permissions and
870
+ limitations under the License.
871
+
872
+
873
+ ### xml-apis
874
+
875
+ Apache 2.0
876
+
877
+ https://xerces.apache.org/xml-commons/
878
+
879
+ Unless otherwise noted all files in XML Commons are covered under the
880
+ Apache License Version 2.0. Please read the LICENSE and NOTICE files.
881
+
882
+ XML Commons contains some software and documentation that is covered
883
+ under a number of different licenses. This applies particularly to the
884
+ xml-commons/java/external/ directory. Most files under
885
+ xml-commons/java/external/ are covered under their respective
886
+ LICENSE.*.txt files; see the matching README.*.txt files for
887
+ descriptions.
888
+
889
+
890
+ Apache License
891
+ Version 2.0, January 2004
892
+ http://www.apache.org/licenses/
893
+
894
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
895
+
896
+ 1. Definitions.
897
+
898
+ "License" shall mean the terms and conditions for use, reproduction,
899
+ and distribution as defined by Sections 1 through 9 of this document.
900
+
901
+ "Licensor" shall mean the copyright owner or entity authorized by
902
+ the copyright owner that is granting the License.
903
+
904
+ "Legal Entity" shall mean the union of the acting entity and all
905
+ other entities that control, are controlled by, or are under common
906
+ control with that entity. For the purposes of this definition,
907
+ "control" means (i) the power, direct or indirect, to cause the
908
+ direction or management of such entity, whether by contract or
909
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
910
+ outstanding shares, or (iii) beneficial ownership of such entity.
911
+
912
+ "You" (or "Your") shall mean an individual or Legal Entity
913
+ exercising permissions granted by this License.
914
+
915
+ "Source" form shall mean the preferred form for making modifications,
916
+ including but not limited to software source code, documentation
917
+ source, and configuration files.
918
+
919
+ "Object" form shall mean any form resulting from mechanical
920
+ transformation or translation of a Source form, including but
921
+ not limited to compiled object code, generated documentation,
922
+ and conversions to other media types.
923
+
924
+ "Work" shall mean the work of authorship, whether in Source or
925
+ Object form, made available under the License, as indicated by a
926
+ copyright notice that is included in or attached to the work
927
+ (an example is provided in the Appendix below).
928
+
929
+ "Derivative Works" shall mean any work, whether in Source or Object
930
+ form, that is based on (or derived from) the Work and for which the
931
+ editorial revisions, annotations, elaborations, or other modifications
932
+ represent, as a whole, an original work of authorship. For the purposes
933
+ of this License, Derivative Works shall not include works that remain
934
+ separable from, or merely link (or bind by name) to the interfaces of,
935
+ the Work and Derivative Works thereof.
936
+
937
+ "Contribution" shall mean any work of authorship, including
938
+ the original version of the Work and any modifications or additions
939
+ to that Work or Derivative Works thereof, that is intentionally
940
+ submitted to Licensor for inclusion in the Work by the copyright owner
941
+ or by an individual or Legal Entity authorized to submit on behalf of
942
+ the copyright owner. For the purposes of this definition, "submitted"
943
+ means any form of electronic, verbal, or written communication sent
944
+ to the Licensor or its representatives, including but not limited to
945
+ communication on electronic mailing lists, source code control systems,
946
+ and issue tracking systems that are managed by, or on behalf of, the
947
+ Licensor for the purpose of discussing and improving the Work, but
948
+ excluding communication that is conspicuously marked or otherwise
949
+ designated in writing by the copyright owner as "Not a Contribution."
950
+
951
+ "Contributor" shall mean Licensor and any individual or Legal Entity
952
+ on behalf of whom a Contribution has been received by Licensor and
953
+ subsequently incorporated within the Work.
954
+
955
+ 2. Grant of Copyright License. Subject to the terms and conditions of
956
+ this License, each Contributor hereby grants to You a perpetual,
957
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
958
+ copyright license to reproduce, prepare Derivative Works of,
959
+ publicly display, publicly perform, sublicense, and distribute the
960
+ Work and such Derivative Works in Source or Object form.
961
+
962
+ 3. Grant of Patent License. Subject to the terms and conditions of
963
+ this License, each Contributor hereby grants to You a perpetual,
964
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
965
+ (except as stated in this section) patent license to make, have made,
966
+ use, offer to sell, sell, import, and otherwise transfer the Work,
967
+ where such license applies only to those patent claims licensable
968
+ by such Contributor that are necessarily infringed by their
969
+ Contribution(s) alone or by combination of their Contribution(s)
970
+ with the Work to which such Contribution(s) was submitted. If You
971
+ institute patent litigation against any entity (including a
972
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
973
+ or a Contribution incorporated within the Work constitutes direct
974
+ or contributory patent infringement, then any patent licenses
975
+ granted to You under this License for that Work shall terminate
976
+ as of the date such litigation is filed.
977
+
978
+ 4. Redistribution. You may reproduce and distribute copies of the
979
+ Work or Derivative Works thereof in any medium, with or without
980
+ modifications, and in Source or Object form, provided that You
981
+ meet the following conditions:
982
+
983
+ (a) You must give any other recipients of the Work or
984
+ Derivative Works a copy of this License; and
985
+
986
+ (b) You must cause any modified files to carry prominent notices
987
+ stating that You changed the files; and
988
+
989
+ (c) You must retain, in the Source form of any Derivative Works
990
+ that You distribute, all copyright, patent, trademark, and
991
+ attribution notices from the Source form of the Work,
992
+ excluding those notices that do not pertain to any part of
993
+ the Derivative Works; and
994
+
995
+ (d) If the Work includes a "NOTICE" text file as part of its
996
+ distribution, then any Derivative Works that You distribute must
997
+ include a readable copy of the attribution notices contained
998
+ within such NOTICE file, excluding those notices that do not
999
+ pertain to any part of the Derivative Works, in at least one
1000
+ of the following places: within a NOTICE text file distributed
1001
+ as part of the Derivative Works; within the Source form or
1002
+ documentation, if provided along with the Derivative Works; or,
1003
+ within a display generated by the Derivative Works, if and
1004
+ wherever such third-party notices normally appear. The contents
1005
+ of the NOTICE file are for informational purposes only and
1006
+ do not modify the License. You may add Your own attribution
1007
+ notices within Derivative Works that You distribute, alongside
1008
+ or as an addendum to the NOTICE text from the Work, provided
1009
+ that such additional attribution notices cannot be construed
1010
+ as modifying the License.
1011
+
1012
+ You may add Your own copyright statement to Your modifications and
1013
+ may provide additional or different license terms and conditions
1014
+ for use, reproduction, or distribution of Your modifications, or
1015
+ for any such Derivative Works as a whole, provided Your use,
1016
+ reproduction, and distribution of the Work otherwise complies with
1017
+ the conditions stated in this License.
1018
+
1019
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1020
+ any Contribution intentionally submitted for inclusion in the Work
1021
+ by You to the Licensor shall be under the terms and conditions of
1022
+ this License, without any additional terms or conditions.
1023
+ Notwithstanding the above, nothing herein shall supersede or modify
1024
+ the terms of any separate license agreement you may have executed
1025
+ with Licensor regarding such Contributions.
1026
+
1027
+ 6. Trademarks. This License does not grant permission to use the trade
1028
+ names, trademarks, service marks, or product names of the Licensor,
1029
+ except as required for reasonable and customary use in describing the
1030
+ origin of the Work and reproducing the content of the NOTICE file.
1031
+
1032
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1033
+ agreed to in writing, Licensor provides the Work (and each
1034
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1035
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1036
+ implied, including, without limitation, any warranties or conditions
1037
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1038
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1039
+ appropriateness of using or redistributing the Work and assume any
1040
+ risks associated with Your exercise of permissions under this License.
1041
+
1042
+ 8. Limitation of Liability. In no event and under no legal theory,
1043
+ whether in tort (including negligence), contract, or otherwise,
1044
+ unless required by applicable law (such as deliberate and grossly
1045
+ negligent acts) or agreed to in writing, shall any Contributor be
1046
+ liable to You for damages, including any direct, indirect, special,
1047
+ incidental, or consequential damages of any character arising as a
1048
+ result of this License or out of the use or inability to use the
1049
+ Work (including but not limited to damages for loss of goodwill,
1050
+ work stoppage, computer failure or malfunction, or any and all
1051
+ other commercial damages or losses), even if such Contributor
1052
+ has been advised of the possibility of such damages.
1053
+
1054
+ 9. Accepting Warranty or Additional Liability. While redistributing
1055
+ the Work or Derivative Works thereof, You may choose to offer,
1056
+ and charge a fee for, acceptance of support, warranty, indemnity,
1057
+ or other liability obligations and/or rights consistent with this
1058
+ License. However, in accepting such obligations, You may act only
1059
+ on Your own behalf and on Your sole responsibility, not on behalf
1060
+ of any other Contributor, and only if You agree to indemnify,
1061
+ defend, and hold each Contributor harmless for any liability
1062
+ incurred by, or claims asserted against, such Contributor by reason
1063
+ of your accepting any such warranty or additional liability.
1064
+
1065
+ END OF TERMS AND CONDITIONS
1066
+
1067
+ APPENDIX: How to apply the Apache License to your work.
1068
+
1069
+ To apply the Apache License to your work, attach the following
1070
+ boilerplate notice, with the fields enclosed by brackets "[]"
1071
+ replaced with your own identifying information. (Don't include
1072
+ the brackets!) The text should be enclosed in the appropriate
1073
+ comment syntax for the file format. We also recommend that a
1074
+ file or class name and description of purpose be included on the
1075
+ same "printed page" as the copyright notice for easier
1076
+ identification within third-party archives.
1077
+
1078
+ Copyright [yyyy] [name of copyright owner]
1079
+
1080
+ Licensed under the Apache License, Version 2.0 (the "License");
1081
+ you may not use this file except in compliance with the License.
1082
+ You may obtain a copy of the License at
1083
+
1084
+ http://www.apache.org/licenses/LICENSE-2.0
1085
+
1086
+ Unless required by applicable law or agreed to in writing, software
1087
+ distributed under the License is distributed on an "AS IS" BASIS,
1088
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1089
+ See the License for the specific language governing permissions and
1090
+ limitations under the License.
1091
+
1092
+
1093
+ ## binary windows release
1094
+
1095
+ NOTE: these libraries are redistributed ONLY with the binary
1096
+ cross-compiled Windows platform version of Nokogiri, both x86-mingw32
1097
+ and x64-mingw32.
1098
+
1099
+ ### zlib
1100
+
1101
+ zlib license
1102
+
1103
+ http://www.zlib.net/zlib_license.html
1104
+
1105
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
1106
+
1107
+ This software is provided 'as-is', without any express or implied
1108
+ warranty. In no event will the authors be held liable for any damages
1109
+ arising from the use of this software.
1110
+
1111
+ Permission is granted to anyone to use this software for any purpose,
1112
+ including commercial applications, and to alter it and redistribute it
1113
+ freely, subject to the following restrictions:
1114
+
1115
+ 1. The origin of this software must not be misrepresented; you must not
1116
+ claim that you wrote the original software. If you use this software
1117
+ in a product, an acknowledgment in the product documentation would be
1118
+ appreciated but is not required.
1119
+ 2. Altered source versions must be plainly marked as such, and must not be
1120
+ misrepresented as being the original software.
1121
+ 3. This notice may not be removed or altered from any source distribution.
1122
+
1123
+ Jean-loup Gailly Mark Adler
1124
+ jloup@gzip.org madler@alumni.caltech.edu
1125
+
1126
+
1127
+ ### libiconv
1128
+
1129
+ LGPL
1130
+
1131
+ https://www.gnu.org/software/libiconv/
1132
+
1133
+ GNU LIBRARY GENERAL PUBLIC LICENSE
1134
+ Version 2, June 1991
1135
+
1136
+ Copyright (C) 1991 Free Software Foundation, Inc.
1137
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
1138
+ Everyone is permitted to copy and distribute verbatim copies
1139
+ of this license document, but changing it is not allowed.
1140
+
1141
+ [This is the first released version of the library GPL. It is
1142
+ numbered 2 because it goes with version 2 of the ordinary GPL.]
1143
+
1144
+ Preamble
1145
+
1146
+ The licenses for most software are designed to take away your
1147
+ freedom to share and change it. By contrast, the GNU General Public
1148
+ Licenses are intended to guarantee your freedom to share and change
1149
+ free software--to make sure the software is free for all its users.
1150
+
1151
+ This license, the Library General Public License, applies to some
1152
+ specially designated Free Software Foundation software, and to any
1153
+ other libraries whose authors decide to use it. You can use it for
1154
+ your libraries, too.
1155
+
1156
+ When we speak of free software, we are referring to freedom, not
1157
+ price. Our General Public Licenses are designed to make sure that you
1158
+ have the freedom to distribute copies of free software (and charge for
1159
+ this service if you wish), that you receive source code or can get it
1160
+ if you want it, that you can change the software or use pieces of it
1161
+ in new free programs; and that you know you can do these things.
1162
+
1163
+ To protect your rights, we need to make restrictions that forbid
1164
+ anyone to deny you these rights or to ask you to surrender the rights.
1165
+ These restrictions translate to certain responsibilities for you if
1166
+ you distribute copies of the library, or if you modify it.
1167
+
1168
+ For example, if you distribute copies of the library, whether gratis
1169
+ or for a fee, you must give the recipients all the rights that we gave
1170
+ you. You must make sure that they, too, receive or can get the source
1171
+ code. If you link a program with the library, you must provide
1172
+ complete object files to the recipients so that they can relink them
1173
+ with the library, after making changes to the library and recompiling
1174
+ it. And you must show them these terms so they know their rights.
1175
+
1176
+ Our method of protecting your rights has two steps: (1) copyright
1177
+ the library, and (2) offer you this license which gives you legal
1178
+ permission to copy, distribute and/or modify the library.
1179
+
1180
+ Also, for each distributor's protection, we want to make certain
1181
+ that everyone understands that there is no warranty for this free
1182
+ library. If the library is modified by someone else and passed on, we
1183
+ want its recipients to know that what they have is not the original
1184
+ version, so that any problems introduced by others will not reflect on
1185
+ the original authors' reputations.
1186
+
1187
+ Finally, any free program is threatened constantly by software
1188
+ patents. We wish to avoid the danger that companies distributing free
1189
+ software will individually obtain patent licenses, thus in effect
1190
+ transforming the program into proprietary software. To prevent this,
1191
+ we have made it clear that any patent must be licensed for everyone's
1192
+ free use or not licensed at all.
1193
+
1194
+ Most GNU software, including some libraries, is covered by the ordinary
1195
+ GNU General Public License, which was designed for utility programs. This
1196
+ license, the GNU Library General Public License, applies to certain
1197
+ designated libraries. This license is quite different from the ordinary
1198
+ one; be sure to read it in full, and don't assume that anything in it is
1199
+ the same as in the ordinary license.
1200
+
1201
+ The reason we have a separate public license for some libraries is that
1202
+ they blur the distinction we usually make between modifying or adding to a
1203
+ program and simply using it. Linking a program with a library, without
1204
+ changing the library, is in some sense simply using the library, and is
1205
+ analogous to running a utility program or application program. However, in
1206
+ a textual and legal sense, the linked executable is a combined work, a
1207
+ derivative of the original library, and the ordinary General Public License
1208
+ treats it as such.
1209
+
1210
+ Because of this blurred distinction, using the ordinary General
1211
+ Public License for libraries did not effectively promote software
1212
+ sharing, because most developers did not use the libraries. We
1213
+ concluded that weaker conditions might promote sharing better.
1214
+
1215
+ However, unrestricted linking of non-free programs would deprive the
1216
+ users of those programs of all benefit from the free status of the
1217
+ libraries themselves. This Library General Public License is intended to
1218
+ permit developers of non-free programs to use free libraries, while
1219
+ preserving your freedom as a user of such programs to change the free
1220
+ libraries that are incorporated in them. (We have not seen how to achieve
1221
+ this as regards changes in header files, but we have achieved it as regards
1222
+ changes in the actual functions of the Library.) The hope is that this
1223
+ will lead to faster development of free libraries.
1224
+
1225
+ The precise terms and conditions for copying, distribution and
1226
+ modification follow. Pay close attention to the difference between a
1227
+ "work based on the library" and a "work that uses the library". The
1228
+ former contains code derived from the library, while the latter only
1229
+ works together with the library.
1230
+
1231
+ Note that it is possible for a library to be covered by the ordinary
1232
+ General Public License rather than by this special one.
1233
+
1234
+ GNU LIBRARY GENERAL PUBLIC LICENSE
1235
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
1236
+
1237
+ 0. This License Agreement applies to any software library which
1238
+ contains a notice placed by the copyright holder or other authorized
1239
+ party saying it may be distributed under the terms of this Library
1240
+ General Public License (also called "this License"). Each licensee is
1241
+ addressed as "you".
1242
+
1243
+ A "library" means a collection of software functions and/or data
1244
+ prepared so as to be conveniently linked with application programs
1245
+ (which use some of those functions and data) to form executables.
1246
+
1247
+ The "Library", below, refers to any such software library or work
1248
+ which has been distributed under these terms. A "work based on the
1249
+ Library" means either the Library or any derivative work under
1250
+ copyright law: that is to say, a work containing the Library or a
1251
+ portion of it, either verbatim or with modifications and/or translated
1252
+ straightforwardly into another language. (Hereinafter, translation is
1253
+ included without limitation in the term "modification".)
1254
+
1255
+ "Source code" for a work means the preferred form of the work for
1256
+ making modifications to it. For a library, complete source code means
1257
+ all the source code for all modules it contains, plus any associated
1258
+ interface definition files, plus the scripts used to control compilation
1259
+ and installation of the library.
1260
+
1261
+ Activities other than copying, distribution and modification are not
1262
+ covered by this License; they are outside its scope. The act of
1263
+ running a program using the Library is not restricted, and output from
1264
+ such a program is covered only if its contents constitute a work based
1265
+ on the Library (independent of the use of the Library in a tool for
1266
+ writing it). Whether that is true depends on what the Library does
1267
+ and what the program that uses the Library does.
1268
+
1269
+ 1. You may copy and distribute verbatim copies of the Library's
1270
+ complete source code as you receive it, in any medium, provided that
1271
+ you conspicuously and appropriately publish on each copy an
1272
+ appropriate copyright notice and disclaimer of warranty; keep intact
1273
+ all the notices that refer to this License and to the absence of any
1274
+ warranty; and distribute a copy of this License along with the
1275
+ Library.
1276
+
1277
+ You may charge a fee for the physical act of transferring a copy,
1278
+ and you may at your option offer warranty protection in exchange for a
1279
+ fee.
1280
+
1281
+ 2. You may modify your copy or copies of the Library or any portion
1282
+ of it, thus forming a work based on the Library, and copy and
1283
+ distribute such modifications or work under the terms of Section 1
1284
+ above, provided that you also meet all of these conditions:
1285
+
1286
+ a) The modified work must itself be a software library.
1287
+
1288
+ b) You must cause the files modified to carry prominent notices
1289
+ stating that you changed the files and the date of any change.
1290
+
1291
+ c) You must cause the whole of the work to be licensed at no
1292
+ charge to all third parties under the terms of this License.
1293
+
1294
+ d) If a facility in the modified Library refers to a function or a
1295
+ table of data to be supplied by an application program that uses
1296
+ the facility, other than as an argument passed when the facility
1297
+ is invoked, then you must make a good faith effort to ensure that,
1298
+ in the event an application does not supply such function or
1299
+ table, the facility still operates, and performs whatever part of
1300
+ its purpose remains meaningful.
1301
+
1302
+ (For example, a function in a library to compute square roots has
1303
+ a purpose that is entirely well-defined independent of the
1304
+ application. Therefore, Subsection 2d requires that any
1305
+ application-supplied function or table used by this function must
1306
+ be optional: if the application does not supply it, the square
1307
+ root function must still compute square roots.)
1308
+
1309
+ These requirements apply to the modified work as a whole. If
1310
+ identifiable sections of that work are not derived from the Library,
1311
+ and can be reasonably considered independent and separate works in
1312
+ themselves, then this License, and its terms, do not apply to those
1313
+ sections when you distribute them as separate works. But when you
1314
+ distribute the same sections as part of a whole which is a work based
1315
+ on the Library, the distribution of the whole must be on the terms of
1316
+ this License, whose permissions for other licensees extend to the
1317
+ entire whole, and thus to each and every part regardless of who wrote
1318
+ it.
1319
+
1320
+ Thus, it is not the intent of this section to claim rights or contest
1321
+ your rights to work written entirely by you; rather, the intent is to
1322
+ exercise the right to control the distribution of derivative or
1323
+ collective works based on the Library.
1324
+
1325
+ In addition, mere aggregation of another work not based on the Library
1326
+ with the Library (or with a work based on the Library) on a volume of
1327
+ a storage or distribution medium does not bring the other work under
1328
+ the scope of this License.
1329
+
1330
+ 3. You may opt to apply the terms of the ordinary GNU General Public
1331
+ License instead of this License to a given copy of the Library. To do
1332
+ this, you must alter all the notices that refer to this License, so
1333
+ that they refer to the ordinary GNU General Public License, version 2,
1334
+ instead of to this License. (If a newer version than version 2 of the
1335
+ ordinary GNU General Public License has appeared, then you can specify
1336
+ that version instead if you wish.) Do not make any other change in
1337
+ these notices.
1338
+
1339
+ Once this change is made in a given copy, it is irreversible for
1340
+ that copy, so the ordinary GNU General Public License applies to all
1341
+ subsequent copies and derivative works made from that copy.
1342
+
1343
+ This option is useful when you wish to copy part of the code of
1344
+ the Library into a program that is not a library.
1345
+
1346
+ 4. You may copy and distribute the Library (or a portion or
1347
+ derivative of it, under Section 2) in object code or executable form
1348
+ under the terms of Sections 1 and 2 above provided that you accompany
1349
+ it with the complete corresponding machine-readable source code, which
1350
+ must be distributed under the terms of Sections 1 and 2 above on a
1351
+ medium customarily used for software interchange.
1352
+
1353
+ If distribution of object code is made by offering access to copy
1354
+ from a designated place, then offering equivalent access to copy the
1355
+ source code from the same place satisfies the requirement to
1356
+ distribute the source code, even though third parties are not
1357
+ compelled to copy the source along with the object code.
1358
+
1359
+ 5. A program that contains no derivative of any portion of the
1360
+ Library, but is designed to work with the Library by being compiled or
1361
+ linked with it, is called a "work that uses the Library". Such a
1362
+ work, in isolation, is not a derivative work of the Library, and
1363
+ therefore falls outside the scope of this License.
1364
+
1365
+ However, linking a "work that uses the Library" with the Library
1366
+ creates an executable that is a derivative of the Library (because it
1367
+ contains portions of the Library), rather than a "work that uses the
1368
+ library". The executable is therefore covered by this License.
1369
+ Section 6 states terms for distribution of such executables.
1370
+
1371
+ When a "work that uses the Library" uses material from a header file
1372
+ that is part of the Library, the object code for the work may be a
1373
+ derivative work of the Library even though the source code is not.
1374
+ Whether this is true is especially significant if the work can be
1375
+ linked without the Library, or if the work is itself a library. The
1376
+ threshold for this to be true is not precisely defined by law.
1377
+
1378
+ If such an object file uses only numerical parameters, data
1379
+ structure layouts and accessors, and small macros and small inline
1380
+ functions (ten lines or less in length), then the use of the object
1381
+ file is unrestricted, regardless of whether it is legally a derivative
1382
+ work. (Executables containing this object code plus portions of the
1383
+ Library will still fall under Section 6.)
1384
+
1385
+ Otherwise, if the work is a derivative of the Library, you may
1386
+ distribute the object code for the work under the terms of Section 6.
1387
+ Any executables containing that work also fall under Section 6,
1388
+ whether or not they are linked directly with the Library itself.
1389
+
1390
+ 6. As an exception to the Sections above, you may also compile or
1391
+ link a "work that uses the Library" with the Library to produce a
1392
+ work containing portions of the Library, and distribute that work
1393
+ under terms of your choice, provided that the terms permit
1394
+ modification of the work for the customer's own use and reverse
1395
+ engineering for debugging such modifications.
1396
+
1397
+ You must give prominent notice with each copy of the work that the
1398
+ Library is used in it and that the Library and its use are covered by
1399
+ this License. You must supply a copy of this License. If the work
1400
+ during execution displays copyright notices, you must include the
1401
+ copyright notice for the Library among them, as well as a reference
1402
+ directing the user to the copy of this License. Also, you must do one
1403
+ of these things:
1404
+
1405
+ a) Accompany the work with the complete corresponding
1406
+ machine-readable source code for the Library including whatever
1407
+ changes were used in the work (which must be distributed under
1408
+ Sections 1 and 2 above); and, if the work is an executable linked
1409
+ with the Library, with the complete machine-readable "work that
1410
+ uses the Library", as object code and/or source code, so that the
1411
+ user can modify the Library and then relink to produce a modified
1412
+ executable containing the modified Library. (It is understood
1413
+ that the user who changes the contents of definitions files in the
1414
+ Library will not necessarily be able to recompile the application
1415
+ to use the modified definitions.)
1416
+
1417
+ b) Accompany the work with a written offer, valid for at
1418
+ least three years, to give the same user the materials
1419
+ specified in Subsection 6a, above, for a charge no more
1420
+ than the cost of performing this distribution.
1421
+
1422
+ c) If distribution of the work is made by offering access to copy
1423
+ from a designated place, offer equivalent access to copy the above
1424
+ specified materials from the same place.
1425
+
1426
+ d) Verify that the user has already received a copy of these
1427
+ materials or that you have already sent this user a copy.
1428
+
1429
+ For an executable, the required form of the "work that uses the
1430
+ Library" must include any data and utility programs needed for
1431
+ reproducing the executable from it. However, as a special exception,
1432
+ the source code distributed need not include anything that is normally
1433
+ distributed (in either source or binary form) with the major
1434
+ components (compiler, kernel, and so on) of the operating system on
1435
+ which the executable runs, unless that component itself accompanies
1436
+ the executable.
1437
+
1438
+ It may happen that this requirement contradicts the license
1439
+ restrictions of other proprietary libraries that do not normally
1440
+ accompany the operating system. Such a contradiction means you cannot
1441
+ use both them and the Library together in an executable that you
1442
+ distribute.
1443
+
1444
+ 7. You may place library facilities that are a work based on the
1445
+ Library side-by-side in a single library together with other library
1446
+ facilities not covered by this License, and distribute such a combined
1447
+ library, provided that the separate distribution of the work based on
1448
+ the Library and of the other library facilities is otherwise
1449
+ permitted, and provided that you do these two things:
1450
+
1451
+ a) Accompany the combined library with a copy of the same work
1452
+ based on the Library, uncombined with any other library
1453
+ facilities. This must be distributed under the terms of the
1454
+ Sections above.
1455
+
1456
+ b) Give prominent notice with the combined library of the fact
1457
+ that part of it is a work based on the Library, and explaining
1458
+ where to find the accompanying uncombined form of the same work.
1459
+
1460
+ 8. You may not copy, modify, sublicense, link with, or distribute
1461
+ the Library except as expressly provided under this License. Any
1462
+ attempt otherwise to copy, modify, sublicense, link with, or
1463
+ distribute the Library is void, and will automatically terminate your
1464
+ rights under this License. However, parties who have received copies,
1465
+ or rights, from you under this License will not have their licenses
1466
+ terminated so long as such parties remain in full compliance.
1467
+
1468
+ 9. You are not required to accept this License, since you have not
1469
+ signed it. However, nothing else grants you permission to modify or
1470
+ distribute the Library or its derivative works. These actions are
1471
+ prohibited by law if you do not accept this License. Therefore, by
1472
+ modifying or distributing the Library (or any work based on the
1473
+ Library), you indicate your acceptance of this License to do so, and
1474
+ all its terms and conditions for copying, distributing or modifying
1475
+ the Library or works based on it.
1476
+
1477
+ 10. Each time you redistribute the Library (or any work based on the
1478
+ Library), the recipient automatically receives a license from the
1479
+ original licensor to copy, distribute, link with or modify the Library
1480
+ subject to these terms and conditions. You may not impose any further
1481
+ restrictions on the recipients' exercise of the rights granted herein.
1482
+ You are not responsible for enforcing compliance by third parties to
1483
+ this License.
1484
+
1485
+ 11. If, as a consequence of a court judgment or allegation of patent
1486
+ infringement or for any other reason (not limited to patent issues),
1487
+ conditions are imposed on you (whether by court order, agreement or
1488
+ otherwise) that contradict the conditions of this License, they do not
1489
+ excuse you from the conditions of this License. If you cannot
1490
+ distribute so as to satisfy simultaneously your obligations under this
1491
+ License and any other pertinent obligations, then as a consequence you
1492
+ may not distribute the Library at all. For example, if a patent
1493
+ license would not permit royalty-free redistribution of the Library by
1494
+ all those who receive copies directly or indirectly through you, then
1495
+ the only way you could satisfy both it and this License would be to
1496
+ refrain entirely from distribution of the Library.
1497
+
1498
+ If any portion of this section is held invalid or unenforceable under any
1499
+ particular circumstance, the balance of the section is intended to apply,
1500
+ and the section as a whole is intended to apply in other circumstances.
1501
+
1502
+ It is not the purpose of this section to induce you to infringe any
1503
+ patents or other property right claims or to contest validity of any
1504
+ such claims; this section has the sole purpose of protecting the
1505
+ integrity of the free software distribution system which is
1506
+ implemented by public license practices. Many people have made
1507
+ generous contributions to the wide range of software distributed
1508
+ through that system in reliance on consistent application of that
1509
+ system; it is up to the author/donor to decide if he or she is willing
1510
+ to distribute software through any other system and a licensee cannot
1511
+ impose that choice.
1512
+
1513
+ This section is intended to make thoroughly clear what is believed to
1514
+ be a consequence of the rest of this License.
1515
+
1516
+ 12. If the distribution and/or use of the Library is restricted in
1517
+ certain countries either by patents or by copyrighted interfaces, the
1518
+ original copyright holder who places the Library under this License may add
1519
+ an explicit geographical distribution limitation excluding those countries,
1520
+ so that distribution is permitted only in or among countries not thus
1521
+ excluded. In such case, this License incorporates the limitation as if
1522
+ written in the body of this License.
1523
+
1524
+ 13. The Free Software Foundation may publish revised and/or new
1525
+ versions of the Library General Public License from time to time.
1526
+ Such new versions will be similar in spirit to the present version,
1527
+ but may differ in detail to address new problems or concerns.
1528
+
1529
+ Each version is given a distinguishing version number. If the Library
1530
+ specifies a version number of this License which applies to it and
1531
+ "any later version", you have the option of following the terms and
1532
+ conditions either of that version or of any later version published by
1533
+ the Free Software Foundation. If the Library does not specify a
1534
+ license version number, you may choose any version ever published by
1535
+ the Free Software Foundation.
1536
+
1537
+ 14. If you wish to incorporate parts of the Library into other free
1538
+ programs whose distribution conditions are incompatible with these,
1539
+ write to the author to ask for permission. For software which is
1540
+ copyrighted by the Free Software Foundation, write to the Free
1541
+ Software Foundation; we sometimes make exceptions for this. Our
1542
+ decision will be guided by the two goals of preserving the free status
1543
+ of all derivatives of our free software and of promoting the sharing
1544
+ and reuse of software generally.
1545
+
1546
+ NO WARRANTY
1547
+
1548
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
1549
+ WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
1550
+ EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
1551
+ OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
1552
+ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
1553
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1554
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
1555
+ LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
1556
+ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
1557
+
1558
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
1559
+ WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
1560
+ AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
1561
+ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
1562
+ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
1563
+ LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
1564
+ RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
1565
+ FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
1566
+ SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
1567
+ DAMAGES.
1568
+
1569
+ END OF TERMS AND CONDITIONS
1570
+
1571
+ Appendix: How to Apply These Terms to Your New Libraries
1572
+
1573
+ If you develop a new library, and you want it to be of the greatest
1574
+ possible use to the public, we recommend making it free software that
1575
+ everyone can redistribute and change. You can do so by permitting
1576
+ redistribution under these terms (or, alternatively, under the terms of the
1577
+ ordinary General Public License).
1578
+
1579
+ To apply these terms, attach the following notices to the library. It is
1580
+ safest to attach them to the start of each source file to most effectively
1581
+ convey the exclusion of warranty; and each file should have at least the
1582
+ "copyright" line and a pointer to where the full notice is found.
1583
+
1584
+ <one line to give the library's name and a brief idea of what it does.>
1585
+ Copyright (C) <year> <name of author>
1586
+
1587
+ This library is free software; you can redistribute it and/or
1588
+ modify it under the terms of the GNU Library General Public
1589
+ License as published by the Free Software Foundation; either
1590
+ version 2 of the License, or (at your option) any later version.
1591
+
1592
+ This library is distributed in the hope that it will be useful,
1593
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1594
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1595
+ Library General Public License for more details.
1596
+
1597
+ You should have received a copy of the GNU Library General Public
1598
+ License along with this library; if not, write to the Free
1599
+ Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
1600
+ MA 02110-1301, USA
1601
+
1602
+ Also add information on how to contact you by electronic and paper mail.
1603
+
1604
+ You should also get your employer (if you work as a programmer) or your
1605
+ school, if any, to sign a "copyright disclaimer" for the library, if
1606
+ necessary. Here is a sample; alter the names:
1607
+
1608
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
1609
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
1610
+
1611
+ <signature of Ty Coon>, 1 April 1990
1612
+ Ty Coon, President of Vice
1613
+
1614
+ That's all there is to it!