nokogiri 1.13.10-java → 1.14.0-java

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 (119) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +33 -0
  3. data/LICENSE-DEPENDENCIES.md +830 -509
  4. data/LICENSE.md +1 -1
  5. data/README.md +18 -11
  6. data/dependencies.yml +25 -7
  7. data/ext/java/nokogiri/Html4Document.java +2 -0
  8. data/ext/java/nokogiri/Html4ElementDescription.java +9 -9
  9. data/ext/java/nokogiri/Html4EntityLookup.java +14 -3
  10. data/ext/java/nokogiri/Html4SaxParserContext.java +2 -2
  11. data/ext/java/nokogiri/Html4SaxPushParser.java +3 -0
  12. data/ext/java/nokogiri/NokogiriService.java +1 -24
  13. data/ext/java/nokogiri/XmlAttr.java +1 -1
  14. data/ext/java/nokogiri/XmlAttributeDecl.java +2 -1
  15. data/ext/java/nokogiri/XmlCdata.java +2 -1
  16. data/ext/java/nokogiri/XmlComment.java +2 -1
  17. data/ext/java/nokogiri/XmlDocument.java +5 -6
  18. data/ext/java/nokogiri/XmlDocumentFragment.java +2 -1
  19. data/ext/java/nokogiri/XmlDtd.java +4 -3
  20. data/ext/java/nokogiri/XmlElement.java +1 -0
  21. data/ext/java/nokogiri/XmlElementContent.java +4 -1
  22. data/ext/java/nokogiri/XmlElementDecl.java +3 -1
  23. data/ext/java/nokogiri/XmlEntityDecl.java +2 -0
  24. data/ext/java/nokogiri/XmlEntityReference.java +1 -0
  25. data/ext/java/nokogiri/XmlNamespace.java +2 -0
  26. data/ext/java/nokogiri/XmlNode.java +39 -24
  27. data/ext/java/nokogiri/XmlNodeSet.java +10 -7
  28. data/ext/java/nokogiri/XmlProcessingInstruction.java +1 -0
  29. data/ext/java/nokogiri/XmlReader.java +4 -3
  30. data/ext/java/nokogiri/XmlRelaxng.java +1 -0
  31. data/ext/java/nokogiri/XmlSaxParserContext.java +1 -0
  32. data/ext/java/nokogiri/XmlSaxPushParser.java +3 -0
  33. data/ext/java/nokogiri/XmlSchema.java +4 -2
  34. data/ext/java/nokogiri/XmlSyntaxError.java +1 -0
  35. data/ext/java/nokogiri/XmlText.java +1 -0
  36. data/ext/java/nokogiri/XmlXpathContext.java +2 -0
  37. data/ext/java/nokogiri/XsltStylesheet.java +16 -13
  38. data/ext/java/nokogiri/internals/HtmlDomParserContext.java +3 -2
  39. data/ext/java/nokogiri/internals/NokogiriHandler.java +2 -2
  40. data/ext/java/nokogiri/internals/NokogiriHelpers.java +4 -5
  41. data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +3 -3
  42. data/ext/java/nokogiri/internals/ParserContext.java +2 -0
  43. data/ext/java/nokogiri/internals/ReaderNode.java +1 -1
  44. data/ext/java/nokogiri/internals/SaveContextVisitor.java +4 -2
  45. data/ext/java/nokogiri/internals/SchemaErrorHandler.java +2 -2
  46. data/ext/java/nokogiri/internals/XmlDomParserContext.java +2 -1
  47. data/ext/java/nokogiri/internals/c14n/Canonicalizer.java +1 -0
  48. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTM.java +5 -4
  49. data/ext/nokogiri/extconf.rb +80 -21
  50. data/ext/nokogiri/gumbo.c +19 -9
  51. data/ext/nokogiri/html4_document.c +1 -1
  52. data/ext/nokogiri/html4_entity_lookup.c +1 -1
  53. data/ext/nokogiri/html4_sax_parser_context.c +0 -5
  54. data/ext/nokogiri/nokogiri.c +33 -51
  55. data/ext/nokogiri/xml_attribute_decl.c +1 -1
  56. data/ext/nokogiri/xml_cdata.c +1 -1
  57. data/ext/nokogiri/xml_document.c +16 -11
  58. data/ext/nokogiri/xml_element_content.c +2 -2
  59. data/ext/nokogiri/xml_element_decl.c +1 -1
  60. data/ext/nokogiri/xml_encoding_handler.c +2 -2
  61. data/ext/nokogiri/xml_namespace.c +38 -8
  62. data/ext/nokogiri/xml_node.c +286 -26
  63. data/ext/nokogiri/xml_node_set.c +0 -2
  64. data/ext/nokogiri/xml_reader.c +40 -20
  65. data/ext/nokogiri/xml_relax_ng.c +0 -2
  66. data/ext/nokogiri/xml_sax_parser.c +22 -16
  67. data/ext/nokogiri/xml_sax_parser_context.c +0 -5
  68. data/ext/nokogiri/xml_sax_push_parser.c +0 -2
  69. data/ext/nokogiri/xml_schema.c +0 -2
  70. data/ext/nokogiri/xml_xpath_context.c +87 -83
  71. data/ext/nokogiri/xslt_stylesheet.c +14 -13
  72. data/gumbo-parser/Makefile +10 -0
  73. data/lib/nokogiri/css/node.rb +2 -2
  74. data/lib/nokogiri/css/xpath_visitor.rb +5 -3
  75. data/lib/nokogiri/css.rb +6 -0
  76. data/lib/nokogiri/encoding_handler.rb +57 -0
  77. data/lib/nokogiri/extension.rb +3 -2
  78. data/lib/nokogiri/html4/document.rb +2 -121
  79. data/lib/nokogiri/html4/element_description_defaults.rb +6 -12
  80. data/lib/nokogiri/html4/encoding_reader.rb +121 -0
  81. data/lib/nokogiri/html4.rb +1 -0
  82. data/lib/nokogiri/html5/document.rb +113 -36
  83. data/lib/nokogiri/html5/document_fragment.rb +9 -2
  84. data/lib/nokogiri/html5/node.rb +3 -5
  85. data/lib/nokogiri/html5.rb +127 -216
  86. data/lib/nokogiri/jruby/dependencies.rb +1 -19
  87. data/lib/{isorelax.jar → nokogiri/jruby/isorelax/isorelax/20030108/isorelax-20030108.jar} +0 -0
  88. data/lib/nokogiri/jruby/net/sf/saxon/Saxon-HE/9.6.0-4/Saxon-HE-9.6.0-4.jar +0 -0
  89. data/lib/nokogiri/jruby/net/sourceforge/htmlunit/neko-htmlunit/2.63.0/neko-htmlunit-2.63.0.jar +0 -0
  90. data/lib/nokogiri/jruby/nokogiri_jars.rb +43 -0
  91. data/lib/nokogiri/jruby/nu/validator/jing/20200702VNU/jing-20200702VNU.jar +0 -0
  92. data/lib/nokogiri/jruby/org/nokogiri/nekodtd/0.1.11.noko1/nekodtd-0.1.11.noko1.jar +0 -0
  93. data/lib/{serializer.jar → nokogiri/jruby/xalan/serializer/2.7.2/serializer-2.7.2.jar} +0 -0
  94. data/lib/{xalan.jar → nokogiri/jruby/xalan/xalan/2.7.2/xalan-2.7.2.jar} +0 -0
  95. data/lib/{xercesImpl.jar → nokogiri/jruby/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar} +0 -0
  96. data/lib/{xml-apis.jar → nokogiri/jruby/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar} +0 -0
  97. data/lib/nokogiri/nokogiri.jar +0 -0
  98. data/lib/nokogiri/version/constant.rb +1 -1
  99. data/lib/nokogiri/version/info.rb +11 -10
  100. data/lib/nokogiri/xml/attr.rb +49 -0
  101. data/lib/nokogiri/xml/builder.rb +1 -1
  102. data/lib/nokogiri/xml/document.rb +102 -54
  103. data/lib/nokogiri/xml/document_fragment.rb +49 -6
  104. data/lib/nokogiri/xml/namespace.rb +42 -0
  105. data/lib/nokogiri/xml/node/save_options.rb +6 -4
  106. data/lib/nokogiri/xml/node.rb +190 -35
  107. data/lib/nokogiri/xml/node_set.rb +87 -9
  108. data/lib/nokogiri/xml/parse_options.rb +129 -50
  109. data/lib/nokogiri/xml/pp/node.rb +6 -4
  110. data/lib/nokogiri/xml/processing_instruction.rb +2 -1
  111. data/lib/nokogiri/xml/sax/parser.rb +2 -3
  112. data/lib/nokogiri/xslt.rb +1 -1
  113. data/lib/nokogiri.rb +3 -11
  114. data/lib/xsd/xmlparser/nokogiri.rb +3 -1
  115. metadata +60 -272
  116. data/ext/java/nokogiri/EncodingHandler.java +0 -111
  117. data/lib/jing.jar +0 -0
  118. data/lib/nekodtd.jar +0 -0
  119. data/lib/nekohtml.jar +0 -0
@@ -4,29 +4,30 @@ Nokogiri ships with some third party dependencies, which are listed here along w
4
4
 
5
5
  Note that this document is broken into multiple sections, each of which describes the dependencies of a different "platform release" of Nokogiri.
6
6
 
7
- <!-- regenerate TOC with `markdown-toc -i` -->
7
+ <!-- regenerate TOC with `rake format:toc` -->
8
8
 
9
9
  <!-- toc -->
10
10
 
11
11
  - [Platform Releases](#platform-releases)
12
12
  * [Default platform release ("ruby")](#default-platform-release-ruby)
13
- * [Native LinuxⓇ platform releases ("x86_64-linux" and "arm64-linux")](#native-linux%E2%93%A1-platform-releases-x86_64-linux-and-arm64-linux)
13
+ * [Native LinuxⓇ platform releases ("x86_64-linux", "arm64-linux", "aarch64-linux", and "arm-linux")](#native-linux%E2%93%A1-platform-releases-x86_64-linux-arm64-linux-aarch64-linux-and-arm-linux)
14
14
  * [Native Darwin (macOSⓇ) platform releases ("x86_64-darwin" and "arm64-darwin")](#native-darwin-macos%E2%93%A1-platform-releases-x86_64-darwin-and-arm64-darwin)
15
15
  * [Native WindowsⓇ platform releases ("x86-mingw32" and "x64-mingw32")](#native-windows%E2%93%A1-platform-releases-x86-mingw32-and-x64-mingw32)
16
16
  * [JavaⓇ (JRuby) platform release ("java")](#java%E2%93%A1-jruby-platform-release-java)
17
17
  - [Appendix: Dependencies' License Texts](#appendix-dependencies-license-texts)
18
- * [libgumbo and nokogumbo](#libgumbo-and-nokogumbo)
18
+ * [libgumbo](#libgumbo)
19
19
  * [libxml2](#libxml2)
20
20
  * [libxslt](#libxslt)
21
21
  * [zlib](#zlib)
22
22
  * [libiconv](#libiconv)
23
- * [isorelax](#isorelax)
24
- * [jing](#jing)
25
- * [nekodtd](#nekodtd)
26
- * [nekohtml](#nekohtml)
27
- * [xalan](#xalan)
28
- * [xerces](#xerces)
29
- * [xml-apis](#xml-apis)
23
+ * [isorelax:isorelax](#isorelaxisorelax)
24
+ * [net.sf.saxon:Saxon-HE](#netsfsaxonsaxon-he)
25
+ * [net.sourceforge.htmlunit:neko-htmlunit](#netsourceforgehtmlunitneko-htmlunit)
26
+ * [nu.validator:jing](#nuvalidatorjing)
27
+ * [org.nokogiri:nekodtd](#orgnokogirinekodtd)
28
+ * [xalan:serializer and xalan:xalan](#xalanserializer-and-xalanxalan)
29
+ * [xerces:xercesImpl](#xercesxercesimpl)
30
+ * [xml-apis:xml-apis](#xml-apisxml-apis)
30
31
 
31
32
  <!-- tocstop -->
32
33
 
@@ -43,34 +44,34 @@ In particular, I'm sure somebody's lawyer, somewhere, is going to freak out that
43
44
 
44
45
  The default platform release distributes the following dependencies in source form:
45
46
 
46
- - [libxml2](#libxml2)
47
- - [libxslt](#libxslt)
48
- - [libgumbo and nokogumbo](#libgumbo-and-nokogumbo)
47
+ * [libxml2](#libxml2)
48
+ * [libxslt](#libxslt)
49
+ * [libgumbo](#libgumbo)
49
50
 
50
51
  This distribution can be identified by inspecting the included Gem::Specification, which will have the value "ruby" for its "platform" attribute.
51
52
 
52
53
 
53
- ### Native LinuxⓇ platform releases ("x86_64-linux" and "arm64-linux")
54
+ ### Native LinuxⓇ platform releases ("x86_64-linux", "arm64-linux", "aarch64-linux", and "arm-linux")
54
55
 
55
56
  The native LinuxⓇ platform release distributes the following dependencies in source form:
56
57
 
57
- - [libxml2](#libxml2)
58
- - [libxslt](#libxslt)
59
- - [libgumbo and nokogumbo](#libgumbo-and-nokogumbo)
60
- - [zlib](#zlib)
58
+ * [libxml2](#libxml2)
59
+ * [libxslt](#libxslt)
60
+ * [libgumbo](#libgumbo)
61
+ * [zlib](#zlib)
61
62
 
62
- This distribution can be identified by inspecting the included Gem::Specification, which will have a value similar to "x86_64-linux" or "x86-linux" for its "platform.cpu" attribute.
63
+ This distribution can be identified by inspecting the included Gem::Specification, which will have a value similar to "x86_64-linux" or "arm64-linux" for its "platform.cpu" attribute.
63
64
 
64
65
 
65
66
  ### Native Darwin (macOSⓇ) platform releases ("x86_64-darwin" and "arm64-darwin")
66
67
 
67
68
  The native Darwin platform release distributes the following dependencies in source form:
68
69
 
69
- - [libxml2](#libxml2)
70
- - [libxslt](#libxslt)
71
- - [libgumbo and nokogumbo](#libgumbo-and-nokogumbo)
72
- - [zlib](#zlib)
73
- - [libiconv](#libiconv)
70
+ * [libxml2](#libxml2)
71
+ * [libxslt](#libxslt)
72
+ * [libgumbo](#libgumbo)
73
+ * [zlib](#zlib)
74
+ * [libiconv](#libiconv)
74
75
 
75
76
  This distribution can be identified by inspecting the included Gem::Specification, which will have a value similar to "x86_64-darwin" or "arm64-darwin" for its "platform.cpu" attribute. Darwin is also known more familiarly as "OSX" or "macOSⓇ" and is the operating system for many AppleⓇ computers.
76
77
 
@@ -79,11 +80,11 @@ This distribution can be identified by inspecting the included Gem::Specificatio
79
80
 
80
81
  The native WindowsⓇ platform release distributes the following dependencies in source form:
81
82
 
82
- - [libxml2](#libxml2)
83
- - [libxslt](#libxslt)
84
- - [libgumbo and nokogumbo](#libgumbo-and-nokogumbo)
85
- - [zlib](#zlib)
86
- - [libiconv](#libiconv)
83
+ * [libxml2](#libxml2)
84
+ * [libxslt](#libxslt)
85
+ * [libgumbo](#libgumbo)
86
+ * [zlib](#zlib)
87
+ * [libiconv](#libiconv)
87
88
 
88
89
  This distribution can be identified by inspecting the included Gem::Specification, which will have a value similar to "x64-mingw32" or "x86-mingw32" for its "platform.cpu" attribute.
89
90
 
@@ -92,13 +93,14 @@ This distribution can be identified by inspecting the included Gem::Specificatio
92
93
 
93
94
  The Java platform release distributes the following dependencies as compiled jar files:
94
95
 
95
- - [isorelax](#isorelax)
96
- - [jing](#jing)
97
- - [nekodtd](#nekodtd)
98
- - [nekohtml](#nekohtml)
99
- - [xalan](#xalan)
100
- - [xerces](#xerces)
101
- - [xml-apis](#xml-apis)
96
+ * [isorelax:isorelax](#isorelaxisorelax)
97
+ * [net.sf.saxon:Saxon-HE](#netsfsaxonsaxon-he)
98
+ * [net.sourceforge.htmlunit:neko-htmlunit](#netsourceforgehtmlunitneko-htmlunit)
99
+ * [nu.validator:jing](#nuvalidatorjing)
100
+ * [org.nokogiri:nekodtd](#orgnokogirinekodtd)
101
+ * [xalan:serializer and xalan:xalan](#xalanserializer-and-xalanxalan)
102
+ * [xerces:xercesImpl](#xercesxercesimpl)
103
+ * [xml-apis:xml-apis](#xml-apisxml-apis)
102
104
 
103
105
  This distribution can be identified by inspecting the included Gem::Specification, which will have the value "java" for its "platform.os" attribute.
104
106
 
@@ -110,27 +112,27 @@ This section contains a subsection for each potentially-distributed dependency,
110
112
  Please see previous sections to understand which of these potential dependencies is actually distributed in the gem file you're downloading and using.
111
113
 
112
114
 
113
- ### libgumbo and nokogumbo
115
+ ### libgumbo
114
116
 
115
117
  Apache 2.0
116
118
 
117
- https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
119
+ https://github.com/sparklemotion/nokogiri/blob/main/gumbo-parser/src/README.md
118
120
 
119
121
 
120
122
  Apache License
121
123
  Version 2.0, January 2004
122
124
  http://www.apache.org/licenses/
123
-
125
+
124
126
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
125
-
127
+
126
128
  1. Definitions.
127
-
129
+
128
130
  "License" shall mean the terms and conditions for use, reproduction,
129
131
  and distribution as defined by Sections 1 through 9 of this document.
130
-
132
+
131
133
  "Licensor" shall mean the copyright owner or entity authorized by
132
134
  the copyright owner that is granting the License.
133
-
135
+
134
136
  "Legal Entity" shall mean the union of the acting entity and all
135
137
  other entities that control, are controlled by, or are under common
136
138
  control with that entity. For the purposes of this definition,
@@ -138,24 +140,24 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
138
140
  direction or management of such entity, whether by contract or
139
141
  otherwise, or (ii) ownership of fifty percent (50%) or more of the
140
142
  outstanding shares, or (iii) beneficial ownership of such entity.
141
-
143
+
142
144
  "You" (or "Your") shall mean an individual or Legal Entity
143
145
  exercising permissions granted by this License.
144
-
146
+
145
147
  "Source" form shall mean the preferred form for making modifications,
146
148
  including but not limited to software source code, documentation
147
149
  source, and configuration files.
148
-
150
+
149
151
  "Object" form shall mean any form resulting from mechanical
150
152
  transformation or translation of a Source form, including but
151
153
  not limited to compiled object code, generated documentation,
152
154
  and conversions to other media types.
153
-
155
+
154
156
  "Work" shall mean the work of authorship, whether in Source or
155
157
  Object form, made available under the License, as indicated by a
156
158
  copyright notice that is included in or attached to the work
157
159
  (an example is provided in the Appendix below).
158
-
160
+
159
161
  "Derivative Works" shall mean any work, whether in Source or Object
160
162
  form, that is based on (or derived from) the Work and for which the
161
163
  editorial revisions, annotations, elaborations, or other modifications
@@ -163,7 +165,7 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
163
165
  of this License, Derivative Works shall not include works that remain
164
166
  separable from, or merely link (or bind by name) to the interfaces of,
165
167
  the Work and Derivative Works thereof.
166
-
168
+
167
169
  "Contribution" shall mean any work of authorship, including
168
170
  the original version of the Work and any modifications or additions
169
171
  to that Work or Derivative Works thereof, that is intentionally
@@ -177,18 +179,18 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
177
179
  Licensor for the purpose of discussing and improving the Work, but
178
180
  excluding communication that is conspicuously marked or otherwise
179
181
  designated in writing by the copyright owner as "Not a Contribution."
180
-
182
+
181
183
  "Contributor" shall mean Licensor and any individual or Legal Entity
182
184
  on behalf of whom a Contribution has been received by Licensor and
183
185
  subsequently incorporated within the Work.
184
-
186
+
185
187
  2. Grant of Copyright License. Subject to the terms and conditions of
186
188
  this License, each Contributor hereby grants to You a perpetual,
187
189
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
188
190
  copyright license to reproduce, prepare Derivative Works of,
189
191
  publicly display, publicly perform, sublicense, and distribute the
190
192
  Work and such Derivative Works in Source or Object form.
191
-
193
+
192
194
  3. Grant of Patent License. Subject to the terms and conditions of
193
195
  this License, each Contributor hereby grants to You a perpetual,
194
196
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
@@ -204,24 +206,24 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
204
206
  or contributory patent infringement, then any patent licenses
205
207
  granted to You under this License for that Work shall terminate
206
208
  as of the date such litigation is filed.
207
-
209
+
208
210
  4. Redistribution. You may reproduce and distribute copies of the
209
211
  Work or Derivative Works thereof in any medium, with or without
210
212
  modifications, and in Source or Object form, provided that You
211
213
  meet the following conditions:
212
-
214
+
213
215
  (a) You must give any other recipients of the Work or
214
216
  Derivative Works a copy of this License; and
215
-
217
+
216
218
  (b) You must cause any modified files to carry prominent notices
217
219
  stating that You changed the files; and
218
-
220
+
219
221
  (c) You must retain, in the Source form of any Derivative Works
220
222
  that You distribute, all copyright, patent, trademark, and
221
223
  attribution notices from the Source form of the Work,
222
224
  excluding those notices that do not pertain to any part of
223
225
  the Derivative Works; and
224
-
226
+
225
227
  (d) If the Work includes a "NOTICE" text file as part of its
226
228
  distribution, then any Derivative Works that You distribute must
227
229
  include a readable copy of the attribution notices contained
@@ -238,14 +240,14 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
238
240
  or as an addendum to the NOTICE text from the Work, provided
239
241
  that such additional attribution notices cannot be construed
240
242
  as modifying the License.
241
-
243
+
242
244
  You may add Your own copyright statement to Your modifications and
243
245
  may provide additional or different license terms and conditions
244
246
  for use, reproduction, or distribution of Your modifications, or
245
247
  for any such Derivative Works as a whole, provided Your use,
246
248
  reproduction, and distribution of the Work otherwise complies with
247
249
  the conditions stated in this License.
248
-
250
+
249
251
  5. Submission of Contributions. Unless You explicitly state otherwise,
250
252
  any Contribution intentionally submitted for inclusion in the Work
251
253
  by You to the Licensor shall be under the terms and conditions of
@@ -253,12 +255,12 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
253
255
  Notwithstanding the above, nothing herein shall supersede or modify
254
256
  the terms of any separate license agreement you may have executed
255
257
  with Licensor regarding such Contributions.
256
-
258
+
257
259
  6. Trademarks. This License does not grant permission to use the trade
258
260
  names, trademarks, service marks, or product names of the Licensor,
259
261
  except as required for reasonable and customary use in describing the
260
262
  origin of the Work and reproducing the content of the NOTICE file.
261
-
263
+
262
264
  7. Disclaimer of Warranty. Unless required by applicable law or
263
265
  agreed to in writing, Licensor provides the Work (and each
264
266
  Contributor provides its Contributions) on an "AS IS" BASIS,
@@ -268,7 +270,7 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
268
270
  PARTICULAR PURPOSE. You are solely responsible for determining the
269
271
  appropriateness of using or redistributing the Work and assume any
270
272
  risks associated with Your exercise of permissions under this License.
271
-
273
+
272
274
  8. Limitation of Liability. In no event and under no legal theory,
273
275
  whether in tort (including negligence), contract, or otherwise,
274
276
  unless required by applicable law (such as deliberate and grossly
@@ -280,7 +282,7 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
280
282
  work stoppage, computer failure or malfunction, or any and all
281
283
  other commercial damages or losses), even if such Contributor
282
284
  has been advised of the possibility of such damages.
283
-
285
+
284
286
  9. Accepting Warranty or Additional Liability. While redistributing
285
287
  the Work or Derivative Works thereof, You may choose to offer,
286
288
  and charge a fee for, acceptance of support, warranty, indemnity,
@@ -291,34 +293,9 @@ https://github.com/rubys/nokogumbo/blob/f6a7412/LICENSE.txt
291
293
  defend, and hold each Contributor harmless for any liability
292
294
  incurred by, or claims asserted against, such Contributor by reason
293
295
  of your accepting any such warranty or additional liability.
294
-
296
+
295
297
  END OF TERMS AND CONDITIONS
296
-
297
- APPENDIX: How to apply the Apache License to your work.
298
-
299
- To apply the Apache License to your work, attach the following
300
- boilerplate notice, with the fields enclosed by brackets "[]"
301
- replaced with your own identifying information. (Don't include
302
- the brackets!) The text should be enclosed in the appropriate
303
- comment syntax for the file format. We also recommend that a
304
- file or class name and description of purpose be included on the
305
- same "printed page" as the copyright notice for easier
306
- identification within third-party archives.
307
-
308
- Copyright [yyyy] [name of copyright owner]
309
-
310
- Licensed under the Apache License, Version 2.0 (the "License");
311
- you may not use this file except in compliance with the License.
312
- You may obtain a copy of the License at
313
-
314
- http://www.apache.org/licenses/LICENSE-2.0
315
-
316
- Unless required by applicable law or agreed to in writing, software
317
- distributed under the License is distributed on an "AS IS" BASIS,
318
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
319
- See the License for the specific language governing permissions and
320
- limitations under the License.
321
-
298
+
322
299
 
323
300
  ### libxml2
324
301
 
@@ -329,19 +306,19 @@ http://xmlsoft.org/
329
306
  Except where otherwise noted in the source code (e.g. the files hash.c,
330
307
  list.c and the trio files, which are covered by a similar licence but
331
308
  with different Copyright notices) all the files are:
332
-
309
+
333
310
  Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
334
-
311
+
335
312
  Permission is hereby granted, free of charge, to any person obtaining a copy
336
313
  of this software and associated documentation files (the "Software"), to deal
337
314
  in the Software without restriction, including without limitation the rights
338
315
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
339
316
  copies of the Software, and to permit persons to whom the Software is fur-
340
317
  nished to do so, subject to the following conditions:
341
-
318
+
342
319
  The above copyright notice and this permission notice shall be included in
343
320
  all copies or substantial portions of the Software.
344
-
321
+
345
322
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
346
323
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
347
324
  NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -349,7 +326,7 @@ http://xmlsoft.org/
349
326
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
350
327
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
351
328
  THE SOFTWARE.
352
-
329
+
353
330
 
354
331
  ### libxslt
355
332
 
@@ -360,57 +337,57 @@ http://xmlsoft.org/libxslt/
360
337
  Licence for libxslt except libexslt
361
338
  ----------------------------------------------------------------------
362
339
  Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved.
363
-
340
+
364
341
  Permission is hereby granted, free of charge, to any person obtaining a copy
365
342
  of this software and associated documentation files (the "Software"), to deal
366
343
  in the Software without restriction, including without limitation the rights
367
344
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
368
345
  copies of the Software, and to permit persons to whom the Software is fur-
369
346
  nished to do so, subject to the following conditions:
370
-
347
+
371
348
  The above copyright notice and this permission notice shall be included in
372
349
  all copies or substantial portions of the Software.
373
-
350
+
374
351
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
375
352
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
376
353
  NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
377
354
  DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
378
355
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
379
356
  NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
380
-
357
+
381
358
  Except as contained in this notice, the name of Daniel Veillard shall not
382
359
  be used in advertising or otherwise to promote the sale, use or other deal-
383
360
  ings in this Software without prior written authorization from him.
384
-
361
+
385
362
  ----------------------------------------------------------------------
386
-
363
+
387
364
  Licence for libexslt
388
365
  ----------------------------------------------------------------------
389
366
  Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard.
390
367
  All Rights Reserved.
391
-
368
+
392
369
  Permission is hereby granted, free of charge, to any person obtaining a copy
393
370
  of this software and associated documentation files (the "Software"), to deal
394
371
  in the Software without restriction, including without limitation the rights
395
372
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
396
373
  copies of the Software, and to permit persons to whom the Software is fur-
397
374
  nished to do so, subject to the following conditions:
398
-
375
+
399
376
  The above copyright notice and this permission notice shall be included in
400
377
  all copies or substantial portions of the Software.
401
-
378
+
402
379
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
403
380
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
404
381
  NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
405
382
  AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
406
383
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
407
384
  NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
408
-
385
+
409
386
  Except as contained in this notice, the name of the authors shall not
410
387
  be used in advertising or otherwise to promote the sale, use or other deal-
411
388
  ings in this Software without prior written authorization from him.
412
389
  ----------------------------------------------------------------------
413
-
390
+
414
391
 
415
392
  ### zlib
416
393
 
@@ -419,15 +396,15 @@ zlib license
419
396
  http://www.zlib.net/zlib_license.html
420
397
 
421
398
  Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
422
-
399
+
423
400
  This software is provided 'as-is', without any express or implied
424
401
  warranty. In no event will the authors be held liable for any damages
425
402
  arising from the use of this software.
426
-
403
+
427
404
  Permission is granted to anyone to use this software for any purpose,
428
405
  including commercial applications, and to alter it and redistribute it
429
406
  freely, subject to the following restrictions:
430
-
407
+
431
408
  1. The origin of this software must not be misrepresented; you must not
432
409
  claim that you wrote the original software. If you use this software
433
410
  in a product, an acknowledgment in the product documentation would be
@@ -435,10 +412,10 @@ http://www.zlib.net/zlib_license.html
435
412
  2. Altered source versions must be plainly marked as such, and must not be
436
413
  misrepresented as being the original software.
437
414
  3. This notice may not be removed or altered from any source distribution.
438
-
415
+
439
416
  Jean-loup Gailly Mark Adler
440
417
  jloup@gzip.org madler@alumni.caltech.edu
441
-
418
+
442
419
 
443
420
  ### libiconv
444
421
 
@@ -446,41 +423,41 @@ LGPL
446
423
 
447
424
  https://www.gnu.org/software/libiconv/
448
425
 
449
- GNU LIBRARY GENERAL PUBLIC LICENSE
450
- Version 2, June 1991
451
-
426
+ GNU LIBRARY GENERAL PUBLIC LICENSE
427
+ Version 2, June 1991
428
+
452
429
  Copyright (C) 1991 Free Software Foundation, Inc.
453
430
  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
454
431
  Everyone is permitted to copy and distribute verbatim copies
455
432
  of this license document, but changing it is not allowed.
456
-
433
+
457
434
  [This is the first released version of the library GPL. It is
458
435
  numbered 2 because it goes with version 2 of the ordinary GPL.]
459
-
460
- Preamble
461
-
436
+
437
+ Preamble
438
+
462
439
  The licenses for most software are designed to take away your
463
440
  freedom to share and change it. By contrast, the GNU General Public
464
441
  Licenses are intended to guarantee your freedom to share and change
465
442
  free software--to make sure the software is free for all its users.
466
-
443
+
467
444
  This license, the Library General Public License, applies to some
468
445
  specially designated Free Software Foundation software, and to any
469
446
  other libraries whose authors decide to use it. You can use it for
470
447
  your libraries, too.
471
-
448
+
472
449
  When we speak of free software, we are referring to freedom, not
473
450
  price. Our General Public Licenses are designed to make sure that you
474
451
  have the freedom to distribute copies of free software (and charge for
475
452
  this service if you wish), that you receive source code or can get it
476
453
  if you want it, that you can change the software or use pieces of it
477
454
  in new free programs; and that you know you can do these things.
478
-
455
+
479
456
  To protect your rights, we need to make restrictions that forbid
480
457
  anyone to deny you these rights or to ask you to surrender the rights.
481
458
  These restrictions translate to certain responsibilities for you if
482
459
  you distribute copies of the library, or if you modify it.
483
-
460
+
484
461
  For example, if you distribute copies of the library, whether gratis
485
462
  or for a fee, you must give the recipients all the rights that we gave
486
463
  you. You must make sure that they, too, receive or can get the source
@@ -488,11 +465,11 @@ https://www.gnu.org/software/libiconv/
488
465
  complete object files to the recipients so that they can relink them
489
466
  with the library, after making changes to the library and recompiling
490
467
  it. And you must show them these terms so they know their rights.
491
-
468
+
492
469
  Our method of protecting your rights has two steps: (1) copyright
493
470
  the library, and (2) offer you this license which gives you legal
494
471
  permission to copy, distribute and/or modify the library.
495
-
472
+
496
473
  Also, for each distributor's protection, we want to make certain
497
474
  that everyone understands that there is no warranty for this free
498
475
  library. If the library is modified by someone else and passed on, we
@@ -506,14 +483,14 @@ https://www.gnu.org/software/libiconv/
506
483
  transforming the program into proprietary software. To prevent this,
507
484
  we have made it clear that any patent must be licensed for everyone's
508
485
  free use or not licensed at all.
509
-
486
+
510
487
  Most GNU software, including some libraries, is covered by the ordinary
511
488
  GNU General Public License, which was designed for utility programs. This
512
489
  license, the GNU Library General Public License, applies to certain
513
490
  designated libraries. This license is quite different from the ordinary
514
491
  one; be sure to read it in full, and don't assume that anything in it is
515
492
  the same as in the ordinary license.
516
-
493
+
517
494
  The reason we have a separate public license for some libraries is that
518
495
  they blur the distinction we usually make between modifying or adding to a
519
496
  program and simply using it. Linking a program with a library, without
@@ -522,12 +499,12 @@ https://www.gnu.org/software/libiconv/
522
499
  a textual and legal sense, the linked executable is a combined work, a
523
500
  derivative of the original library, and the ordinary General Public License
524
501
  treats it as such.
525
-
502
+
526
503
  Because of this blurred distinction, using the ordinary General
527
504
  Public License for libraries did not effectively promote software
528
505
  sharing, because most developers did not use the libraries. We
529
506
  concluded that weaker conditions might promote sharing better.
530
-
507
+
531
508
  However, unrestricted linking of non-free programs would deprive the
532
509
  users of those programs of all benefit from the free status of the
533
510
  libraries themselves. This Library General Public License is intended to
@@ -537,29 +514,29 @@ https://www.gnu.org/software/libiconv/
537
514
  this as regards changes in header files, but we have achieved it as regards
538
515
  changes in the actual functions of the Library.) The hope is that this
539
516
  will lead to faster development of free libraries.
540
-
517
+
541
518
  The precise terms and conditions for copying, distribution and
542
519
  modification follow. Pay close attention to the difference between a
543
520
  "work based on the library" and a "work that uses the library". The
544
521
  former contains code derived from the library, while the latter only
545
522
  works together with the library.
546
-
523
+
547
524
  Note that it is possible for a library to be covered by the ordinary
548
525
  General Public License rather than by this special one.
549
526
 
550
- GNU LIBRARY GENERAL PUBLIC LICENSE
527
+ GNU LIBRARY GENERAL PUBLIC LICENSE
551
528
  TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
552
-
529
+
553
530
  0. This License Agreement applies to any software library which
554
531
  contains a notice placed by the copyright holder or other authorized
555
532
  party saying it may be distributed under the terms of this Library
556
533
  General Public License (also called "this License"). Each licensee is
557
534
  addressed as "you".
558
-
535
+
559
536
  A "library" means a collection of software functions and/or data
560
537
  prepared so as to be conveniently linked with application programs
561
538
  (which use some of those functions and data) to form executables.
562
-
539
+
563
540
  The "Library", below, refers to any such software library or work
564
541
  which has been distributed under these terms. A "work based on the
565
542
  Library" means either the Library or any derivative work under
@@ -567,13 +544,13 @@ https://www.gnu.org/software/libiconv/
567
544
  portion of it, either verbatim or with modifications and/or translated
568
545
  straightforwardly into another language. (Hereinafter, translation is
569
546
  included without limitation in the term "modification".)
570
-
547
+
571
548
  "Source code" for a work means the preferred form of the work for
572
549
  making modifications to it. For a library, complete source code means
573
550
  all the source code for all modules it contains, plus any associated
574
551
  interface definition files, plus the scripts used to control compilation
575
552
  and installation of the library.
576
-
553
+
577
554
  Activities other than copying, distribution and modification are not
578
555
  covered by this License; they are outside its scope. The act of
579
556
  running a program using the Library is not restricted, and output from
@@ -581,7 +558,7 @@ https://www.gnu.org/software/libiconv/
581
558
  on the Library (independent of the use of the Library in a tool for
582
559
  writing it). Whether that is true depends on what the Library does
583
560
  and what the program that uses the Library does.
584
-
561
+
585
562
  1. You may copy and distribute verbatim copies of the Library's
586
563
  complete source code as you receive it, in any medium, provided that
587
564
  you conspicuously and appropriately publish on each copy an
@@ -589,7 +566,7 @@ https://www.gnu.org/software/libiconv/
589
566
  all the notices that refer to this License and to the absence of any
590
567
  warranty; and distribute a copy of this License along with the
591
568
  Library.
592
-
569
+
593
570
  You may charge a fee for the physical act of transferring a copy,
594
571
  and you may at your option offer warranty protection in exchange for a
595
572
  fee.
@@ -598,15 +575,15 @@ https://www.gnu.org/software/libiconv/
598
575
  of it, thus forming a work based on the Library, and copy and
599
576
  distribute such modifications or work under the terms of Section 1
600
577
  above, provided that you also meet all of these conditions:
601
-
578
+
602
579
  a) The modified work must itself be a software library.
603
-
580
+
604
581
  b) You must cause the files modified to carry prominent notices
605
582
  stating that you changed the files and the date of any change.
606
-
583
+
607
584
  c) You must cause the whole of the work to be licensed at no
608
585
  charge to all third parties under the terms of this License.
609
-
586
+
610
587
  d) If a facility in the modified Library refers to a function or a
611
588
  table of data to be supplied by an application program that uses
612
589
  the facility, other than as an argument passed when the facility
@@ -614,14 +591,14 @@ https://www.gnu.org/software/libiconv/
614
591
  in the event an application does not supply such function or
615
592
  table, the facility still operates, and performs whatever part of
616
593
  its purpose remains meaningful.
617
-
594
+
618
595
  (For example, a function in a library to compute square roots has
619
596
  a purpose that is entirely well-defined independent of the
620
597
  application. Therefore, Subsection 2d requires that any
621
598
  application-supplied function or table used by this function must
622
599
  be optional: if the application does not supply it, the square
623
600
  root function must still compute square roots.)
624
-
601
+
625
602
  These requirements apply to the modified work as a whole. If
626
603
  identifiable sections of that work are not derived from the Library,
627
604
  and can be reasonably considered independent and separate works in
@@ -632,17 +609,17 @@ https://www.gnu.org/software/libiconv/
632
609
  this License, whose permissions for other licensees extend to the
633
610
  entire whole, and thus to each and every part regardless of who wrote
634
611
  it.
635
-
612
+
636
613
  Thus, it is not the intent of this section to claim rights or contest
637
614
  your rights to work written entirely by you; rather, the intent is to
638
615
  exercise the right to control the distribution of derivative or
639
616
  collective works based on the Library.
640
-
617
+
641
618
  In addition, mere aggregation of another work not based on the Library
642
619
  with the Library (or with a work based on the Library) on a volume of
643
620
  a storage or distribution medium does not bring the other work under
644
621
  the scope of this License.
645
-
622
+
646
623
  3. You may opt to apply the terms of the ordinary GNU General Public
647
624
  License instead of this License to a given copy of the Library. To do
648
625
  this, you must alter all the notices that refer to this License, so
@@ -655,49 +632,49 @@ https://www.gnu.org/software/libiconv/
655
632
  Once this change is made in a given copy, it is irreversible for
656
633
  that copy, so the ordinary GNU General Public License applies to all
657
634
  subsequent copies and derivative works made from that copy.
658
-
635
+
659
636
  This option is useful when you wish to copy part of the code of
660
637
  the Library into a program that is not a library.
661
-
638
+
662
639
  4. You may copy and distribute the Library (or a portion or
663
640
  derivative of it, under Section 2) in object code or executable form
664
641
  under the terms of Sections 1 and 2 above provided that you accompany
665
642
  it with the complete corresponding machine-readable source code, which
666
643
  must be distributed under the terms of Sections 1 and 2 above on a
667
644
  medium customarily used for software interchange.
668
-
645
+
669
646
  If distribution of object code is made by offering access to copy
670
647
  from a designated place, then offering equivalent access to copy the
671
648
  source code from the same place satisfies the requirement to
672
649
  distribute the source code, even though third parties are not
673
650
  compelled to copy the source along with the object code.
674
-
651
+
675
652
  5. A program that contains no derivative of any portion of the
676
653
  Library, but is designed to work with the Library by being compiled or
677
654
  linked with it, is called a "work that uses the Library". Such a
678
655
  work, in isolation, is not a derivative work of the Library, and
679
656
  therefore falls outside the scope of this License.
680
-
657
+
681
658
  However, linking a "work that uses the Library" with the Library
682
659
  creates an executable that is a derivative of the Library (because it
683
660
  contains portions of the Library), rather than a "work that uses the
684
661
  library". The executable is therefore covered by this License.
685
662
  Section 6 states terms for distribution of such executables.
686
-
663
+
687
664
  When a "work that uses the Library" uses material from a header file
688
665
  that is part of the Library, the object code for the work may be a
689
666
  derivative work of the Library even though the source code is not.
690
667
  Whether this is true is especially significant if the work can be
691
668
  linked without the Library, or if the work is itself a library. The
692
669
  threshold for this to be true is not precisely defined by law.
693
-
670
+
694
671
  If such an object file uses only numerical parameters, data
695
672
  structure layouts and accessors, and small macros and small inline
696
673
  functions (ten lines or less in length), then the use of the object
697
674
  file is unrestricted, regardless of whether it is legally a derivative
698
675
  work. (Executables containing this object code plus portions of the
699
676
  Library will still fall under Section 6.)
700
-
677
+
701
678
  Otherwise, if the work is a derivative of the Library, you may
702
679
  distribute the object code for the work under the terms of Section 6.
703
680
  Any executables containing that work also fall under Section 6,
@@ -709,7 +686,7 @@ https://www.gnu.org/software/libiconv/
709
686
  under terms of your choice, provided that the terms permit
710
687
  modification of the work for the customer's own use and reverse
711
688
  engineering for debugging such modifications.
712
-
689
+
713
690
  You must give prominent notice with each copy of the work that the
714
691
  Library is used in it and that the Library and its use are covered by
715
692
  this License. You must supply a copy of this License. If the work
@@ -717,7 +694,7 @@ https://www.gnu.org/software/libiconv/
717
694
  copyright notice for the Library among them, as well as a reference
718
695
  directing the user to the copy of this License. Also, you must do one
719
696
  of these things:
720
-
697
+
721
698
  a) Accompany the work with the complete corresponding
722
699
  machine-readable source code for the Library including whatever
723
700
  changes were used in the work (which must be distributed under
@@ -729,19 +706,19 @@ https://www.gnu.org/software/libiconv/
729
706
  that the user who changes the contents of definitions files in the
730
707
  Library will not necessarily be able to recompile the application
731
708
  to use the modified definitions.)
732
-
709
+
733
710
  b) Accompany the work with a written offer, valid for at
734
711
  least three years, to give the same user the materials
735
712
  specified in Subsection 6a, above, for a charge no more
736
713
  than the cost of performing this distribution.
737
-
714
+
738
715
  c) If distribution of the work is made by offering access to copy
739
716
  from a designated place, offer equivalent access to copy the above
740
717
  specified materials from the same place.
741
-
718
+
742
719
  d) Verify that the user has already received a copy of these
743
720
  materials or that you have already sent this user a copy.
744
-
721
+
745
722
  For an executable, the required form of the "work that uses the
746
723
  Library" must include any data and utility programs needed for
747
724
  reproducing the executable from it. However, as a special exception,
@@ -750,7 +727,7 @@ https://www.gnu.org/software/libiconv/
750
727
  components (compiler, kernel, and so on) of the operating system on
751
728
  which the executable runs, unless that component itself accompanies
752
729
  the executable.
753
-
730
+
754
731
  It may happen that this requirement contradicts the license
755
732
  restrictions of other proprietary libraries that do not normally
756
733
  accompany the operating system. Such a contradiction means you cannot
@@ -763,16 +740,16 @@ https://www.gnu.org/software/libiconv/
763
740
  library, provided that the separate distribution of the work based on
764
741
  the Library and of the other library facilities is otherwise
765
742
  permitted, and provided that you do these two things:
766
-
743
+
767
744
  a) Accompany the combined library with a copy of the same work
768
745
  based on the Library, uncombined with any other library
769
746
  facilities. This must be distributed under the terms of the
770
747
  Sections above.
771
-
748
+
772
749
  b) Give prominent notice with the combined library of the fact
773
750
  that part of it is a work based on the Library, and explaining
774
751
  where to find the accompanying uncombined form of the same work.
775
-
752
+
776
753
  8. You may not copy, modify, sublicense, link with, or distribute
777
754
  the Library except as expressly provided under this License. Any
778
755
  attempt otherwise to copy, modify, sublicense, link with, or
@@ -780,7 +757,7 @@ https://www.gnu.org/software/libiconv/
780
757
  rights under this License. However, parties who have received copies,
781
758
  or rights, from you under this License will not have their licenses
782
759
  terminated so long as such parties remain in full compliance.
783
-
760
+
784
761
  9. You are not required to accept this License, since you have not
785
762
  signed it. However, nothing else grants you permission to modify or
786
763
  distribute the Library or its derivative works. These actions are
@@ -789,7 +766,7 @@ https://www.gnu.org/software/libiconv/
789
766
  Library), you indicate your acceptance of this License to do so, and
790
767
  all its terms and conditions for copying, distributing or modifying
791
768
  the Library or works based on it.
792
-
769
+
793
770
  10. Each time you redistribute the Library (or any work based on the
794
771
  Library), the recipient automatically receives a license from the
795
772
  original licensor to copy, distribute, link with or modify the Library
@@ -810,11 +787,11 @@ https://www.gnu.org/software/libiconv/
810
787
  all those who receive copies directly or indirectly through you, then
811
788
  the only way you could satisfy both it and this License would be to
812
789
  refrain entirely from distribution of the Library.
813
-
790
+
814
791
  If any portion of this section is held invalid or unenforceable under any
815
792
  particular circumstance, the balance of the section is intended to apply,
816
793
  and the section as a whole is intended to apply in other circumstances.
817
-
794
+
818
795
  It is not the purpose of this section to induce you to infringe any
819
796
  patents or other property right claims or to contest validity of any
820
797
  such claims; this section has the sole purpose of protecting the
@@ -825,10 +802,10 @@ https://www.gnu.org/software/libiconv/
825
802
  system; it is up to the author/donor to decide if he or she is willing
826
803
  to distribute software through any other system and a licensee cannot
827
804
  impose that choice.
828
-
805
+
829
806
  This section is intended to make thoroughly clear what is believed to
830
807
  be a consequence of the rest of this License.
831
-
808
+
832
809
  12. If the distribution and/or use of the Library is restricted in
833
810
  certain countries either by patents or by copyrighted interfaces, the
834
811
  original copyright holder who places the Library under this License may add
@@ -836,12 +813,12 @@ https://www.gnu.org/software/libiconv/
836
813
  so that distribution is permitted only in or among countries not thus
837
814
  excluded. In such case, this License incorporates the limitation as if
838
815
  written in the body of this License.
839
-
816
+
840
817
  13. The Free Software Foundation may publish revised and/or new
841
818
  versions of the Library General Public License from time to time.
842
819
  Such new versions will be similar in spirit to the present version,
843
820
  but may differ in detail to address new problems or concerns.
844
-
821
+
845
822
  Each version is given a distinguishing version number. If the Library
846
823
  specifies a version number of this License which applies to it and
847
824
  "any later version", you have the option of following the terms and
@@ -858,9 +835,9 @@ https://www.gnu.org/software/libiconv/
858
835
  decision will be guided by the two goals of preserving the free status
859
836
  of all derivatives of our free software and of promoting the sharing
860
837
  and reuse of software generally.
861
-
862
- NO WARRANTY
863
-
838
+
839
+ NO WARRANTY
840
+
864
841
  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
865
842
  WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
866
843
  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
@@ -870,7 +847,7 @@ https://www.gnu.org/software/libiconv/
870
847
  PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
871
848
  LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
872
849
  THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
873
-
850
+
874
851
  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
875
852
  WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
876
853
  AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
@@ -881,56 +858,11 @@ https://www.gnu.org/software/libiconv/
881
858
  FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
882
859
  SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
883
860
  DAMAGES.
884
-
885
- END OF TERMS AND CONDITIONS
886
-
887
- Appendix: How to Apply These Terms to Your New Libraries
888
-
889
- If you develop a new library, and you want it to be of the greatest
890
- possible use to the public, we recommend making it free software that
891
- everyone can redistribute and change. You can do so by permitting
892
- redistribution under these terms (or, alternatively, under the terms of the
893
- ordinary General Public License).
894
-
895
- To apply these terms, attach the following notices to the library. It is
896
- safest to attach them to the start of each source file to most effectively
897
- convey the exclusion of warranty; and each file should have at least the
898
- "copyright" line and a pointer to where the full notice is found.
899
-
900
- <one line to give the library's name and a brief idea of what it does.>
901
- Copyright (C) <year> <name of author>
902
-
903
- This library is free software; you can redistribute it and/or
904
- modify it under the terms of the GNU Library General Public
905
- License as published by the Free Software Foundation; either
906
- version 2 of the License, or (at your option) any later version.
907
-
908
- This library is distributed in the hope that it will be useful,
909
- but WITHOUT ANY WARRANTY; without even the implied warranty of
910
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
911
- Library General Public License for more details.
912
-
913
- You should have received a copy of the GNU Library General Public
914
- License along with this library; if not, write to the Free
915
- Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
916
- MA 02110-1301, USA
917
-
918
- Also add information on how to contact you by electronic and paper mail.
919
-
920
- You should also get your employer (if you work as a programmer) or your
921
- school, if any, to sign a "copyright disclaimer" for the library, if
922
- necessary. Here is a sample; alter the names:
923
-
924
- Yoyodyne, Inc., hereby disclaims all copyright interest in the
925
- library `Frob' (a library for tweaking knobs) written by James Random Hacker.
926
-
927
- <signature of Ty Coon>, 1 April 1990
928
- Ty Coon, President of Vice
929
-
930
- That's all there is to it!
931
-
932
-
933
- ### isorelax
861
+
862
+ END OF TERMS AND CONDITIONS
863
+
864
+
865
+ ### isorelax:isorelax
934
866
 
935
867
  MIT
936
868
 
@@ -938,7 +870,7 @@ http://iso-relax.sourceforge.net/
938
870
 
939
871
  Copyright (c) 2001-2002, SourceForge ISO-RELAX Project (ASAMI
940
872
  Tomoharu, Daisuke Okajima, Kohsuke Kawaguchi, and MURATA Makoto)
941
-
873
+
942
874
  Permission is hereby granted, free of charge, to any person obtaining
943
875
  a copy of this software and associated documentation files (the
944
876
  "Software"), to deal in the Software without restriction, including
@@ -946,10 +878,10 @@ http://iso-relax.sourceforge.net/
946
878
  distribute, sublicense, and/or sell copies of the Software, and to
947
879
  permit persons to whom the Software is furnished to do so, subject to
948
880
  the following conditions:
949
-
881
+
950
882
  The above copyright notice and this permission notice shall be
951
883
  included in all copies or substantial portions of the Software.
952
-
884
+
953
885
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
954
886
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
955
887
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
@@ -959,7 +891,552 @@ http://iso-relax.sourceforge.net/
959
891
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
960
892
 
961
893
 
962
- ### jing
894
+ ### net.sf.saxon:Saxon-HE
895
+
896
+ MPL 2.0
897
+
898
+ http://www.saxonica.com/
899
+
900
+ Mozilla Public License Version 2.0
901
+ ==================================
902
+
903
+ 1. Definitions
904
+ --------------
905
+
906
+ 1.1. "Contributor"
907
+ means each individual or legal entity that creates, contributes to
908
+ the creation of, or owns Covered Software.
909
+
910
+ 1.2. "Contributor Version"
911
+ means the combination of the Contributions of others (if any) used
912
+ by a Contributor and that particular Contributor's Contribution.
913
+
914
+ 1.3. "Contribution"
915
+ means Covered Software of a particular Contributor.
916
+
917
+ 1.4. "Covered Software"
918
+ means Source Code Form to which the initial Contributor has attached
919
+ the notice in Exhibit A, the Executable Form of such Source Code
920
+ Form, and Modifications of such Source Code Form, in each case
921
+ including portions thereof.
922
+
923
+ 1.5. "Incompatible With Secondary Licenses"
924
+ means
925
+
926
+ (a) that the initial Contributor has attached the notice described
927
+ in Exhibit B to the Covered Software; or
928
+
929
+ (b) that the Covered Software was made available under the terms of
930
+ version 1.1 or earlier of the License, but not also under the
931
+ terms of a Secondary License.
932
+
933
+ 1.6. "Executable Form"
934
+ means any form of the work other than Source Code Form.
935
+
936
+ 1.7. "Larger Work"
937
+ means a work that combines Covered Software with other material, in
938
+ a separate file or files, that is not Covered Software.
939
+
940
+ 1.8. "License"
941
+ means this document.
942
+
943
+ 1.9. "Licensable"
944
+ means having the right to grant, to the maximum extent possible,
945
+ whether at the time of the initial grant or subsequently, any and
946
+ all of the rights conveyed by this License.
947
+
948
+ 1.10. "Modifications"
949
+ means any of the following:
950
+
951
+ (a) any file in Source Code Form that results from an addition to,
952
+ deletion from, or modification of the contents of Covered
953
+ Software; or
954
+
955
+ (b) any new file in Source Code Form that contains any Covered
956
+ Software.
957
+
958
+ 1.11. "Patent Claims" of a Contributor
959
+ means any patent claim(s), including without limitation, method,
960
+ process, and apparatus claims, in any patent Licensable by such
961
+ Contributor that would be infringed, but for the grant of the
962
+ License, by the making, using, selling, offering for sale, having
963
+ made, import, or transfer of either its Contributions or its
964
+ Contributor Version.
965
+
966
+ 1.12. "Secondary License"
967
+ means either the GNU General Public License, Version 2.0, the GNU
968
+ Lesser General Public License, Version 2.1, the GNU Affero General
969
+ Public License, Version 3.0, or any later versions of those
970
+ licenses.
971
+
972
+ 1.13. "Source Code Form"
973
+ means the form of the work preferred for making modifications.
974
+
975
+ 1.14. "You" (or "Your")
976
+ means an individual or a legal entity exercising rights under this
977
+ License. For legal entities, "You" includes any entity that
978
+ controls, is controlled by, or is under common control with You. For
979
+ purposes of this definition, "control" means (a) the power, direct
980
+ or indirect, to cause the direction or management of such entity,
981
+ whether by contract or otherwise, or (b) ownership of more than
982
+ fifty percent (50%) of the outstanding shares or beneficial
983
+ ownership of such entity.
984
+
985
+ 2. License Grants and Conditions
986
+ --------------------------------
987
+
988
+ 2.1. Grants
989
+
990
+ Each Contributor hereby grants You a world-wide, royalty-free,
991
+ non-exclusive license:
992
+
993
+ (a) under intellectual property rights (other than patent or trademark)
994
+ Licensable by such Contributor to use, reproduce, make available,
995
+ modify, display, perform, distribute, and otherwise exploit its
996
+ Contributions, either on an unmodified basis, with Modifications, or
997
+ as part of a Larger Work; and
998
+
999
+ (b) under Patent Claims of such Contributor to make, use, sell, offer
1000
+ for sale, have made, import, and otherwise transfer either its
1001
+ Contributions or its Contributor Version.
1002
+
1003
+ 2.2. Effective Date
1004
+
1005
+ The licenses granted in Section 2.1 with respect to any Contribution
1006
+ become effective for each Contribution on the date the Contributor first
1007
+ distributes such Contribution.
1008
+
1009
+ 2.3. Limitations on Grant Scope
1010
+
1011
+ The licenses granted in this Section 2 are the only rights granted under
1012
+ this License. No additional rights or licenses will be implied from the
1013
+ distribution or licensing of Covered Software under this License.
1014
+ Notwithstanding Section 2.1(b) above, no patent license is granted by a
1015
+ Contributor:
1016
+
1017
+ (a) for any code that a Contributor has removed from Covered Software;
1018
+ or
1019
+
1020
+ (b) for infringements caused by: (i) Your and any other third party's
1021
+ modifications of Covered Software, or (ii) the combination of its
1022
+ Contributions with other software (except as part of its Contributor
1023
+ Version); or
1024
+
1025
+ (c) under Patent Claims infringed by Covered Software in the absence of
1026
+ its Contributions.
1027
+
1028
+ This License does not grant any rights in the trademarks, service marks,
1029
+ or logos of any Contributor (except as may be necessary to comply with
1030
+ the notice requirements in Section 3.4).
1031
+
1032
+ 2.4. Subsequent Licenses
1033
+
1034
+ No Contributor makes additional grants as a result of Your choice to
1035
+ distribute the Covered Software under a subsequent version of this
1036
+ License (see Section 10.2) or under the terms of a Secondary License (if
1037
+ permitted under the terms of Section 3.3).
1038
+
1039
+ 2.5. Representation
1040
+
1041
+ Each Contributor represents that the Contributor believes its
1042
+ Contributions are its original creation(s) or it has sufficient rights
1043
+ to grant the rights to its Contributions conveyed by this License.
1044
+
1045
+ 2.6. Fair Use
1046
+
1047
+ This License is not intended to limit any rights You have under
1048
+ applicable copyright doctrines of fair use, fair dealing, or other
1049
+ equivalents.
1050
+
1051
+ 2.7. Conditions
1052
+
1053
+ Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
1054
+ in Section 2.1.
1055
+
1056
+ 3. Responsibilities
1057
+ -------------------
1058
+
1059
+ 3.1. Distribution of Source Form
1060
+
1061
+ All distribution of Covered Software in Source Code Form, including any
1062
+ Modifications that You create or to which You contribute, must be under
1063
+ the terms of this License. You must inform recipients that the Source
1064
+ Code Form of the Covered Software is governed by the terms of this
1065
+ License, and how they can obtain a copy of this License. You may not
1066
+ attempt to alter or restrict the recipients' rights in the Source Code
1067
+ Form.
1068
+
1069
+ 3.2. Distribution of Executable Form
1070
+
1071
+ If You distribute Covered Software in Executable Form then:
1072
+
1073
+ (a) such Covered Software must also be made available in Source Code
1074
+ Form, as described in Section 3.1, and You must inform recipients of
1075
+ the Executable Form how they can obtain a copy of such Source Code
1076
+ Form by reasonable means in a timely manner, at a charge no more
1077
+ than the cost of distribution to the recipient; and
1078
+
1079
+ (b) You may distribute such Executable Form under the terms of this
1080
+ License, or sublicense it under different terms, provided that the
1081
+ license for the Executable Form does not attempt to limit or alter
1082
+ the recipients' rights in the Source Code Form under this License.
1083
+
1084
+ 3.3. Distribution of a Larger Work
1085
+
1086
+ You may create and distribute a Larger Work under terms of Your choice,
1087
+ provided that You also comply with the requirements of this License for
1088
+ the Covered Software. If the Larger Work is a combination of Covered
1089
+ Software with a work governed by one or more Secondary Licenses, and the
1090
+ Covered Software is not Incompatible With Secondary Licenses, this
1091
+ License permits You to additionally distribute such Covered Software
1092
+ under the terms of such Secondary License(s), so that the recipient of
1093
+ the Larger Work may, at their option, further distribute the Covered
1094
+ Software under the terms of either this License or such Secondary
1095
+ License(s).
1096
+
1097
+ 3.4. Notices
1098
+
1099
+ You may not remove or alter the substance of any license notices
1100
+ (including copyright notices, patent notices, disclaimers of warranty,
1101
+ or limitations of liability) contained within the Source Code Form of
1102
+ the Covered Software, except that You may alter any license notices to
1103
+ the extent required to remedy known factual inaccuracies.
1104
+
1105
+ 3.5. Application of Additional Terms
1106
+
1107
+ You may choose to offer, and to charge a fee for, warranty, support,
1108
+ indemnity or liability obligations to one or more recipients of Covered
1109
+ Software. However, You may do so only on Your own behalf, and not on
1110
+ behalf of any Contributor. You must make it absolutely clear that any
1111
+ such warranty, support, indemnity, or liability obligation is offered by
1112
+ You alone, and You hereby agree to indemnify every Contributor for any
1113
+ liability incurred by such Contributor as a result of warranty, support,
1114
+ indemnity or liability terms You offer. You may include additional
1115
+ disclaimers of warranty and limitations of liability specific to any
1116
+ jurisdiction.
1117
+
1118
+ 4. Inability to Comply Due to Statute or Regulation
1119
+ ---------------------------------------------------
1120
+
1121
+ If it is impossible for You to comply with any of the terms of this
1122
+ License with respect to some or all of the Covered Software due to
1123
+ statute, judicial order, or regulation then You must: (a) comply with
1124
+ the terms of this License to the maximum extent possible; and (b)
1125
+ describe the limitations and the code they affect. Such description must
1126
+ be placed in a text file included with all distributions of the Covered
1127
+ Software under this License. Except to the extent prohibited by statute
1128
+ or regulation, such description must be sufficiently detailed for a
1129
+ recipient of ordinary skill to be able to understand it.
1130
+
1131
+ 5. Termination
1132
+ --------------
1133
+
1134
+ 5.1. The rights granted under this License will terminate automatically
1135
+ if You fail to comply with any of its terms. However, if You become
1136
+ compliant, then the rights granted under this License from a particular
1137
+ Contributor are reinstated (a) provisionally, unless and until such
1138
+ Contributor explicitly and finally terminates Your grants, and (b) on an
1139
+ ongoing basis, if such Contributor fails to notify You of the
1140
+ non-compliance by some reasonable means prior to 60 days after You have
1141
+ come back into compliance. Moreover, Your grants from a particular
1142
+ Contributor are reinstated on an ongoing basis if such Contributor
1143
+ notifies You of the non-compliance by some reasonable means, this is the
1144
+ first time You have received notice of non-compliance with this License
1145
+ from such Contributor, and You become compliant prior to 30 days after
1146
+ Your receipt of the notice.
1147
+
1148
+ 5.2. If You initiate litigation against any entity by asserting a patent
1149
+ infringement claim (excluding declaratory judgment actions,
1150
+ counter-claims, and cross-claims) alleging that a Contributor Version
1151
+ directly or indirectly infringes any patent, then the rights granted to
1152
+ You by any and all Contributors for the Covered Software under Section
1153
+ 2.1 of this License shall terminate.
1154
+
1155
+ 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
1156
+ end user license agreements (excluding distributors and resellers) which
1157
+ have been validly granted by You or Your distributors under this License
1158
+ prior to termination shall survive termination.
1159
+
1160
+ ************************************************************************
1161
+ * *
1162
+ * 6. Disclaimer of Warranty *
1163
+ * ------------------------- *
1164
+ * *
1165
+ * Covered Software is provided under this License on an "as is" *
1166
+ * basis, without warranty of any kind, either expressed, implied, or *
1167
+ * statutory, including, without limitation, warranties that the *
1168
+ * Covered Software is free of defects, merchantable, fit for a *
1169
+ * particular purpose or non-infringing. The entire risk as to the *
1170
+ * quality and performance of the Covered Software is with You. *
1171
+ * Should any Covered Software prove defective in any respect, You *
1172
+ * (not any Contributor) assume the cost of any necessary servicing, *
1173
+ * repair, or correction. This disclaimer of warranty constitutes an *
1174
+ * essential part of this License. No use of any Covered Software is *
1175
+ * authorized under this License except under this disclaimer. *
1176
+ * *
1177
+ ************************************************************************
1178
+
1179
+ ************************************************************************
1180
+ * *
1181
+ * 7. Limitation of Liability *
1182
+ * -------------------------- *
1183
+ * *
1184
+ * Under no circumstances and under no legal theory, whether tort *
1185
+ * (including negligence), contract, or otherwise, shall any *
1186
+ * Contributor, or anyone who distributes Covered Software as *
1187
+ * permitted above, be liable to You for any direct, indirect, *
1188
+ * special, incidental, or consequential damages of any character *
1189
+ * including, without limitation, damages for lost profits, loss of *
1190
+ * goodwill, work stoppage, computer failure or malfunction, or any *
1191
+ * and all other commercial damages or losses, even if such party *
1192
+ * shall have been informed of the possibility of such damages. This *
1193
+ * limitation of liability shall not apply to liability for death or *
1194
+ * personal injury resulting from such party's negligence to the *
1195
+ * extent applicable law prohibits such limitation. Some *
1196
+ * jurisdictions do not allow the exclusion or limitation of *
1197
+ * incidental or consequential damages, so this exclusion and *
1198
+ * limitation may not apply to You. *
1199
+ * *
1200
+ ************************************************************************
1201
+
1202
+ 8. Litigation
1203
+ -------------
1204
+
1205
+ Any litigation relating to this License may be brought only in the
1206
+ courts of a jurisdiction where the defendant maintains its principal
1207
+ place of business and such litigation shall be governed by laws of that
1208
+ jurisdiction, without reference to its conflict-of-law provisions.
1209
+ Nothing in this Section shall prevent a party's ability to bring
1210
+ cross-claims or counter-claims.
1211
+
1212
+ 9. Miscellaneous
1213
+ ----------------
1214
+
1215
+ This License represents the complete agreement concerning the subject
1216
+ matter hereof. If any provision of this License is held to be
1217
+ unenforceable, such provision shall be reformed only to the extent
1218
+ necessary to make it enforceable. Any law or regulation which provides
1219
+ that the language of a contract shall be construed against the drafter
1220
+ shall not be used to construe this License against a Contributor.
1221
+
1222
+ 10. Versions of the License
1223
+ ---------------------------
1224
+
1225
+ 10.1. New Versions
1226
+
1227
+ Mozilla Foundation is the license steward. Except as provided in Section
1228
+ 10.3, no one other than the license steward has the right to modify or
1229
+ publish new versions of this License. Each version will be given a
1230
+ distinguishing version number.
1231
+
1232
+ 10.2. Effect of New Versions
1233
+
1234
+ You may distribute the Covered Software under the terms of the version
1235
+ of the License under which You originally received the Covered Software,
1236
+ or under the terms of any subsequent version published by the license
1237
+ steward.
1238
+
1239
+ 10.3. Modified Versions
1240
+
1241
+ If you create software not governed by this License, and you want to
1242
+ create a new license for such software, you may create and use a
1243
+ modified version of this License if you rename the license and remove
1244
+ any references to the name of the license steward (except to note that
1245
+ such modified license differs from this License).
1246
+
1247
+ 10.4. Distributing Source Code Form that is Incompatible With Secondary
1248
+ Licenses
1249
+
1250
+ If You choose to distribute Source Code Form that is Incompatible With
1251
+ Secondary Licenses under the terms of this version of the License, the
1252
+ notice described in Exhibit B of this License must be attached.
1253
+
1254
+
1255
+ ### net.sourceforge.htmlunit:neko-htmlunit
1256
+
1257
+ Apache 2.0
1258
+
1259
+ https://github.com/HtmlUnit/htmlunit-neko
1260
+
1261
+ Apache License
1262
+ Version 2.0, January 2004
1263
+ http://www.apache.org/licenses/
1264
+
1265
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1266
+
1267
+ 1. Definitions.
1268
+
1269
+ "License" shall mean the terms and conditions for use, reproduction,
1270
+ and distribution as defined by Sections 1 through 9 of this document.
1271
+
1272
+ "Licensor" shall mean the copyright owner or entity authorized by
1273
+ the copyright owner that is granting the License.
1274
+
1275
+ "Legal Entity" shall mean the union of the acting entity and all
1276
+ other entities that control, are controlled by, or are under common
1277
+ control with that entity. For the purposes of this definition,
1278
+ "control" means (i) the power, direct or indirect, to cause the
1279
+ direction or management of such entity, whether by contract or
1280
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1281
+ outstanding shares, or (iii) beneficial ownership of such entity.
1282
+
1283
+ "You" (or "Your") shall mean an individual or Legal Entity
1284
+ exercising permissions granted by this License.
1285
+
1286
+ "Source" form shall mean the preferred form for making modifications,
1287
+ including but not limited to software source code, documentation
1288
+ source, and configuration files.
1289
+
1290
+ "Object" form shall mean any form resulting from mechanical
1291
+ transformation or translation of a Source form, including but
1292
+ not limited to compiled object code, generated documentation,
1293
+ and conversions to other media types.
1294
+
1295
+ "Work" shall mean the work of authorship, whether in Source or
1296
+ Object form, made available under the License, as indicated by a
1297
+ copyright notice that is included in or attached to the work
1298
+ (an example is provided in the Appendix below).
1299
+
1300
+ "Derivative Works" shall mean any work, whether in Source or Object
1301
+ form, that is based on (or derived from) the Work and for which the
1302
+ editorial revisions, annotations, elaborations, or other modifications
1303
+ represent, as a whole, an original work of authorship. For the purposes
1304
+ of this License, Derivative Works shall not include works that remain
1305
+ separable from, or merely link (or bind by name) to the interfaces of,
1306
+ the Work and Derivative Works thereof.
1307
+
1308
+ "Contribution" shall mean any work of authorship, including
1309
+ the original version of the Work and any modifications or additions
1310
+ to that Work or Derivative Works thereof, that is intentionally
1311
+ submitted to Licensor for inclusion in the Work by the copyright owner
1312
+ or by an individual or Legal Entity authorized to submit on behalf of
1313
+ the copyright owner. For the purposes of this definition, "submitted"
1314
+ means any form of electronic, verbal, or written communication sent
1315
+ to the Licensor or its representatives, including but not limited to
1316
+ communication on electronic mailing lists, source code control systems,
1317
+ and issue tracking systems that are managed by, or on behalf of, the
1318
+ Licensor for the purpose of discussing and improving the Work, but
1319
+ excluding communication that is conspicuously marked or otherwise
1320
+ designated in writing by the copyright owner as "Not a Contribution."
1321
+
1322
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1323
+ on behalf of whom a Contribution has been received by Licensor and
1324
+ subsequently incorporated within the Work.
1325
+
1326
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1327
+ this License, each Contributor hereby grants to You a perpetual,
1328
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1329
+ copyright license to reproduce, prepare Derivative Works of,
1330
+ publicly display, publicly perform, sublicense, and distribute the
1331
+ Work and such Derivative Works in Source or Object form.
1332
+
1333
+ 3. Grant of Patent License. Subject to the terms and conditions of
1334
+ this License, each Contributor hereby grants to You a perpetual,
1335
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1336
+ (except as stated in this section) patent license to make, have made,
1337
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1338
+ where such license applies only to those patent claims licensable
1339
+ by such Contributor that are necessarily infringed by their
1340
+ Contribution(s) alone or by combination of their Contribution(s)
1341
+ with the Work to which such Contribution(s) was submitted. If You
1342
+ institute patent litigation against any entity (including a
1343
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1344
+ or a Contribution incorporated within the Work constitutes direct
1345
+ or contributory patent infringement, then any patent licenses
1346
+ granted to You under this License for that Work shall terminate
1347
+ as of the date such litigation is filed.
1348
+
1349
+ 4. Redistribution. You may reproduce and distribute copies of the
1350
+ Work or Derivative Works thereof in any medium, with or without
1351
+ modifications, and in Source or Object form, provided that You
1352
+ meet the following conditions:
1353
+
1354
+ (a) You must give any other recipients of the Work or
1355
+ Derivative Works a copy of this License; and
1356
+
1357
+ (b) You must cause any modified files to carry prominent notices
1358
+ stating that You changed the files; and
1359
+
1360
+ (c) You must retain, in the Source form of any Derivative Works
1361
+ that You distribute, all copyright, patent, trademark, and
1362
+ attribution notices from the Source form of the Work,
1363
+ excluding those notices that do not pertain to any part of
1364
+ the Derivative Works; and
1365
+
1366
+ (d) If the Work includes a "NOTICE" text file as part of its
1367
+ distribution, then any Derivative Works that You distribute must
1368
+ include a readable copy of the attribution notices contained
1369
+ within such NOTICE file, excluding those notices that do not
1370
+ pertain to any part of the Derivative Works, in at least one
1371
+ of the following places: within a NOTICE text file distributed
1372
+ as part of the Derivative Works; within the Source form or
1373
+ documentation, if provided along with the Derivative Works; or,
1374
+ within a display generated by the Derivative Works, if and
1375
+ wherever such third-party notices normally appear. The contents
1376
+ of the NOTICE file are for informational purposes only and
1377
+ do not modify the License. You may add Your own attribution
1378
+ notices within Derivative Works that You distribute, alongside
1379
+ or as an addendum to the NOTICE text from the Work, provided
1380
+ that such additional attribution notices cannot be construed
1381
+ as modifying the License.
1382
+
1383
+ You may add Your own copyright statement to Your modifications and
1384
+ may provide additional or different license terms and conditions
1385
+ for use, reproduction, or distribution of Your modifications, or
1386
+ for any such Derivative Works as a whole, provided Your use,
1387
+ reproduction, and distribution of the Work otherwise complies with
1388
+ the conditions stated in this License.
1389
+
1390
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1391
+ any Contribution intentionally submitted for inclusion in the Work
1392
+ by You to the Licensor shall be under the terms and conditions of
1393
+ this License, without any additional terms or conditions.
1394
+ Notwithstanding the above, nothing herein shall supersede or modify
1395
+ the terms of any separate license agreement you may have executed
1396
+ with Licensor regarding such Contributions.
1397
+
1398
+ 6. Trademarks. This License does not grant permission to use the trade
1399
+ names, trademarks, service marks, or product names of the Licensor,
1400
+ except as required for reasonable and customary use in describing the
1401
+ origin of the Work and reproducing the content of the NOTICE file.
1402
+
1403
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1404
+ agreed to in writing, Licensor provides the Work (and each
1405
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1406
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1407
+ implied, including, without limitation, any warranties or conditions
1408
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1409
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1410
+ appropriateness of using or redistributing the Work and assume any
1411
+ risks associated with Your exercise of permissions under this License.
1412
+
1413
+ 8. Limitation of Liability. In no event and under no legal theory,
1414
+ whether in tort (including negligence), contract, or otherwise,
1415
+ unless required by applicable law (such as deliberate and grossly
1416
+ negligent acts) or agreed to in writing, shall any Contributor be
1417
+ liable to You for damages, including any direct, indirect, special,
1418
+ incidental, or consequential damages of any character arising as a
1419
+ result of this License or out of the use or inability to use the
1420
+ Work (including but not limited to damages for loss of goodwill,
1421
+ work stoppage, computer failure or malfunction, or any and all
1422
+ other commercial damages or losses), even if such Contributor
1423
+ has been advised of the possibility of such damages.
1424
+
1425
+ 9. Accepting Warranty or Additional Liability. While redistributing
1426
+ the Work or Derivative Works thereof, You may choose to offer,
1427
+ and charge a fee for, acceptance of support, warranty, indemnity,
1428
+ or other liability obligations and/or rights consistent with this
1429
+ License. However, in accepting such obligations, You may act only
1430
+ on Your own behalf and on Your sole responsibility, not on behalf
1431
+ of any other Contributor, and only if You agree to indemnify,
1432
+ defend, and hold each Contributor harmless for any liability
1433
+ incurred by, or claims asserted against, such Contributor by reason
1434
+ of your accepting any such warranty or additional liability.
1435
+
1436
+ END OF TERMS AND CONDITIONS
1437
+
1438
+
1439
+ ### nu.validator:jing
963
1440
 
964
1441
  BSD-3-Clause
965
1442
 
@@ -967,24 +1444,24 @@ http://www.thaiopensource.com/relaxng/jing.html
967
1444
 
968
1445
  Copyright (c) 2001-2003 Thai Open Source Software Center Ltd
969
1446
  All rights reserved.
970
-
1447
+
971
1448
  Redistribution and use in source and binary forms, with or without
972
1449
  modification, are permitted provided that the following conditions
973
1450
  are met:
974
-
1451
+
975
1452
  * Redistributions of source code must retain the above copyright
976
1453
  notice, this list of conditions and the following disclaimer.
977
-
1454
+
978
1455
  * Redistributions in binary form must reproduce the above
979
1456
  copyright notice, this list of conditions and the following
980
1457
  disclaimer in the documentation and/or other materials provided
981
1458
  with the distribution.
982
-
1459
+
983
1460
  * Neither the name of the Thai Open Source Software Center Ltd nor
984
1461
  the names of its contributors may be used to endorse or promote
985
1462
  products derived from this software without specific prior
986
1463
  written permission.
987
-
1464
+
988
1465
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
989
1466
  CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
990
1467
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
@@ -999,81 +1476,27 @@ http://www.thaiopensource.com/relaxng/jing.html
999
1476
  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1000
1477
  SUCH DAMAGE.
1001
1478
 
1002
-
1003
- ### nekodtd
1004
-
1005
- Apache 1.0-derived
1006
-
1007
- https://people.apache.org/~andyc/neko/doc/dtd/
1008
1479
 
1009
- The CyberNeko Software License, Version 1.0
1010
-
1011
- (C) Copyright 2002-2005, Andy Clark. All rights reserved.
1012
-
1013
- Redistribution and use in source and binary forms, with or without
1014
- modification, are permitted provided that the following conditions
1015
- are met:
1016
-
1017
- 1. Redistributions of source code must retain the above copyright
1018
- notice, this list of conditions and the following disclaimer.
1019
-
1020
- 2. Redistributions in binary form must reproduce the above copyright
1021
- notice, this list of conditions and the following disclaimer in
1022
- the documentation and/or other materials provided with the
1023
- distribution.
1024
-
1025
- 3. The end-user documentation included with the redistribution,
1026
- if any, must include the following acknowledgment:
1027
- "This product includes software developed by Andy Clark."
1028
- Alternately, this acknowledgment may appear in the software itself,
1029
- if and wherever such third-party acknowledgments normally appear.
1030
-
1031
- 4. The names "CyberNeko" and "NekoHTML" must not be used to endorse
1032
- or promote products derived from this software without prior
1033
- written permission. For written permission, please contact
1034
- andyc@cyberneko.net.
1035
-
1036
- 5. Products derived from this software may not be called "CyberNeko",
1037
- nor may "CyberNeko" appear in their name, without prior written
1038
- permission of the author.
1039
-
1040
- THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
1041
- WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1042
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1043
- DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS
1044
- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
1045
- OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
1046
- OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
1047
- BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
1048
- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
1049
- OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
1050
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1051
-
1052
- ====================================================================
1053
-
1054
- This license is based on the Apache Software License, version 1.1.
1055
-
1056
- ### nekohtml
1480
+ ### org.nokogiri:nekodtd
1057
1481
 
1058
1482
  Apache 2.0
1059
1483
 
1060
- http://nekohtml.sourceforge.net/
1484
+ https://github.com/sparklemotion/nekodtd
1061
1485
 
1062
-
1063
1486
  Apache License
1064
1487
  Version 2.0, January 2004
1065
1488
  http://www.apache.org/licenses/
1066
-
1489
+
1067
1490
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1068
-
1491
+
1069
1492
  1. Definitions.
1070
-
1493
+
1071
1494
  "License" shall mean the terms and conditions for use, reproduction,
1072
1495
  and distribution as defined by Sections 1 through 9 of this document.
1073
-
1496
+
1074
1497
  "Licensor" shall mean the copyright owner or entity authorized by
1075
1498
  the copyright owner that is granting the License.
1076
-
1499
+
1077
1500
  "Legal Entity" shall mean the union of the acting entity and all
1078
1501
  other entities that control, are controlled by, or are under common
1079
1502
  control with that entity. For the purposes of this definition,
@@ -1081,24 +1504,24 @@ http://nekohtml.sourceforge.net/
1081
1504
  direction or management of such entity, whether by contract or
1082
1505
  otherwise, or (ii) ownership of fifty percent (50%) or more of the
1083
1506
  outstanding shares, or (iii) beneficial ownership of such entity.
1084
-
1507
+
1085
1508
  "You" (or "Your") shall mean an individual or Legal Entity
1086
1509
  exercising permissions granted by this License.
1087
-
1510
+
1088
1511
  "Source" form shall mean the preferred form for making modifications,
1089
1512
  including but not limited to software source code, documentation
1090
1513
  source, and configuration files.
1091
-
1514
+
1092
1515
  "Object" form shall mean any form resulting from mechanical
1093
1516
  transformation or translation of a Source form, including but
1094
1517
  not limited to compiled object code, generated documentation,
1095
1518
  and conversions to other media types.
1096
-
1519
+
1097
1520
  "Work" shall mean the work of authorship, whether in Source or
1098
1521
  Object form, made available under the License, as indicated by a
1099
1522
  copyright notice that is included in or attached to the work
1100
1523
  (an example is provided in the Appendix below).
1101
-
1524
+
1102
1525
  "Derivative Works" shall mean any work, whether in Source or Object
1103
1526
  form, that is based on (or derived from) the Work and for which the
1104
1527
  editorial revisions, annotations, elaborations, or other modifications
@@ -1106,7 +1529,7 @@ http://nekohtml.sourceforge.net/
1106
1529
  of this License, Derivative Works shall not include works that remain
1107
1530
  separable from, or merely link (or bind by name) to the interfaces of,
1108
1531
  the Work and Derivative Works thereof.
1109
-
1532
+
1110
1533
  "Contribution" shall mean any work of authorship, including
1111
1534
  the original version of the Work and any modifications or additions
1112
1535
  to that Work or Derivative Works thereof, that is intentionally
@@ -1120,18 +1543,18 @@ http://nekohtml.sourceforge.net/
1120
1543
  Licensor for the purpose of discussing and improving the Work, but
1121
1544
  excluding communication that is conspicuously marked or otherwise
1122
1545
  designated in writing by the copyright owner as "Not a Contribution."
1123
-
1546
+
1124
1547
  "Contributor" shall mean Licensor and any individual or Legal Entity
1125
1548
  on behalf of whom a Contribution has been received by Licensor and
1126
1549
  subsequently incorporated within the Work.
1127
-
1550
+
1128
1551
  2. Grant of Copyright License. Subject to the terms and conditions of
1129
1552
  this License, each Contributor hereby grants to You a perpetual,
1130
1553
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1131
1554
  copyright license to reproduce, prepare Derivative Works of,
1132
1555
  publicly display, publicly perform, sublicense, and distribute the
1133
1556
  Work and such Derivative Works in Source or Object form.
1134
-
1557
+
1135
1558
  3. Grant of Patent License. Subject to the terms and conditions of
1136
1559
  this License, each Contributor hereby grants to You a perpetual,
1137
1560
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
@@ -1147,24 +1570,24 @@ http://nekohtml.sourceforge.net/
1147
1570
  or contributory patent infringement, then any patent licenses
1148
1571
  granted to You under this License for that Work shall terminate
1149
1572
  as of the date such litigation is filed.
1150
-
1573
+
1151
1574
  4. Redistribution. You may reproduce and distribute copies of the
1152
1575
  Work or Derivative Works thereof in any medium, with or without
1153
1576
  modifications, and in Source or Object form, provided that You
1154
1577
  meet the following conditions:
1155
-
1578
+
1156
1579
  (a) You must give any other recipients of the Work or
1157
1580
  Derivative Works a copy of this License; and
1158
-
1581
+
1159
1582
  (b) You must cause any modified files to carry prominent notices
1160
1583
  stating that You changed the files; and
1161
-
1584
+
1162
1585
  (c) You must retain, in the Source form of any Derivative Works
1163
1586
  that You distribute, all copyright, patent, trademark, and
1164
1587
  attribution notices from the Source form of the Work,
1165
1588
  excluding those notices that do not pertain to any part of
1166
1589
  the Derivative Works; and
1167
-
1590
+
1168
1591
  (d) If the Work includes a "NOTICE" text file as part of its
1169
1592
  distribution, then any Derivative Works that You distribute must
1170
1593
  include a readable copy of the attribution notices contained
@@ -1181,14 +1604,14 @@ http://nekohtml.sourceforge.net/
1181
1604
  or as an addendum to the NOTICE text from the Work, provided
1182
1605
  that such additional attribution notices cannot be construed
1183
1606
  as modifying the License.
1184
-
1607
+
1185
1608
  You may add Your own copyright statement to Your modifications and
1186
1609
  may provide additional or different license terms and conditions
1187
1610
  for use, reproduction, or distribution of Your modifications, or
1188
1611
  for any such Derivative Works as a whole, provided Your use,
1189
1612
  reproduction, and distribution of the Work otherwise complies with
1190
1613
  the conditions stated in this License.
1191
-
1614
+
1192
1615
  5. Submission of Contributions. Unless You explicitly state otherwise,
1193
1616
  any Contribution intentionally submitted for inclusion in the Work
1194
1617
  by You to the Licensor shall be under the terms and conditions of
@@ -1196,12 +1619,12 @@ http://nekohtml.sourceforge.net/
1196
1619
  Notwithstanding the above, nothing herein shall supersede or modify
1197
1620
  the terms of any separate license agreement you may have executed
1198
1621
  with Licensor regarding such Contributions.
1199
-
1622
+
1200
1623
  6. Trademarks. This License does not grant permission to use the trade
1201
1624
  names, trademarks, service marks, or product names of the Licensor,
1202
1625
  except as required for reasonable and customary use in describing the
1203
1626
  origin of the Work and reproducing the content of the NOTICE file.
1204
-
1627
+
1205
1628
  7. Disclaimer of Warranty. Unless required by applicable law or
1206
1629
  agreed to in writing, Licensor provides the Work (and each
1207
1630
  Contributor provides its Contributions) on an "AS IS" BASIS,
@@ -1211,7 +1634,7 @@ http://nekohtml.sourceforge.net/
1211
1634
  PARTICULAR PURPOSE. You are solely responsible for determining the
1212
1635
  appropriateness of using or redistributing the Work and assume any
1213
1636
  risks associated with Your exercise of permissions under this License.
1214
-
1637
+
1215
1638
  8. Limitation of Liability. In no event and under no legal theory,
1216
1639
  whether in tort (including negligence), contract, or otherwise,
1217
1640
  unless required by applicable law (such as deliberate and grossly
@@ -1223,7 +1646,7 @@ http://nekohtml.sourceforge.net/
1223
1646
  work stoppage, computer failure or malfunction, or any and all
1224
1647
  other commercial damages or losses), even if such Contributor
1225
1648
  has been advised of the possibility of such damages.
1226
-
1649
+
1227
1650
  9. Accepting Warranty or Additional Liability. While redistributing
1228
1651
  the Work or Derivative Works thereof, You may choose to offer,
1229
1652
  and charge a fee for, acceptance of support, warranty, indemnity,
@@ -1234,56 +1657,30 @@ http://nekohtml.sourceforge.net/
1234
1657
  defend, and hold each Contributor harmless for any liability
1235
1658
  incurred by, or claims asserted against, such Contributor by reason
1236
1659
  of your accepting any such warranty or additional liability.
1237
-
1660
+
1238
1661
  END OF TERMS AND CONDITIONS
1239
-
1240
- APPENDIX: How to apply the Apache License to your work.
1241
-
1242
- To apply the Apache License to your work, attach the following
1243
- boilerplate notice, with the fields enclosed by brackets "[]"
1244
- replaced with your own identifying information. (Don't include
1245
- the brackets!) The text should be enclosed in the appropriate
1246
- comment syntax for the file format. We also recommend that a
1247
- file or class name and description of purpose be included on the
1248
- same "printed page" as the copyright notice for easier
1249
- identification within third-party archives.
1250
-
1251
- Copyright [yyyy] [name of copyright owner]
1252
-
1253
- Licensed under the Apache License, Version 2.0 (the "License");
1254
- you may not use this file except in compliance with the License.
1255
- You may obtain a copy of the License at
1256
-
1257
- http://www.apache.org/licenses/LICENSE-2.0
1258
-
1259
- Unless required by applicable law or agreed to in writing, software
1260
- distributed under the License is distributed on an "AS IS" BASIS,
1261
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1262
- See the License for the specific language governing permissions and
1263
- limitations under the License.
1264
-
1265
- ### xalan
1662
+
1663
+
1664
+ ### xalan:serializer and xalan:xalan
1266
1665
 
1267
1666
  Apache 2.0
1268
1667
 
1269
1668
  https://xml.apache.org/xalan-j/
1270
1669
 
1271
- covers xalan.jar and serializer.jar
1272
-
1273
1670
  Apache License
1274
1671
  Version 2.0, January 2004
1275
1672
  http://www.apache.org/licenses/
1276
-
1673
+
1277
1674
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1278
-
1675
+
1279
1676
  1. Definitions.
1280
-
1677
+
1281
1678
  "License" shall mean the terms and conditions for use, reproduction,
1282
1679
  and distribution as defined by Sections 1 through 9 of this document.
1283
-
1680
+
1284
1681
  "Licensor" shall mean the copyright owner or entity authorized by
1285
1682
  the copyright owner that is granting the License.
1286
-
1683
+
1287
1684
  "Legal Entity" shall mean the union of the acting entity and all
1288
1685
  other entities that control, are controlled by, or are under common
1289
1686
  control with that entity. For the purposes of this definition,
@@ -1291,24 +1688,24 @@ covers xalan.jar and serializer.jar
1291
1688
  direction or management of such entity, whether by contract or
1292
1689
  otherwise, or (ii) ownership of fifty percent (50%) or more of the
1293
1690
  outstanding shares, or (iii) beneficial ownership of such entity.
1294
-
1691
+
1295
1692
  "You" (or "Your") shall mean an individual or Legal Entity
1296
1693
  exercising permissions granted by this License.
1297
-
1694
+
1298
1695
  "Source" form shall mean the preferred form for making modifications,
1299
1696
  including but not limited to software source code, documentation
1300
1697
  source, and configuration files.
1301
-
1698
+
1302
1699
  "Object" form shall mean any form resulting from mechanical
1303
1700
  transformation or translation of a Source form, including but
1304
1701
  not limited to compiled object code, generated documentation,
1305
1702
  and conversions to other media types.
1306
-
1703
+
1307
1704
  "Work" shall mean the work of authorship, whether in Source or
1308
1705
  Object form, made available under the License, as indicated by a
1309
1706
  copyright notice that is included in or attached to the work
1310
1707
  (an example is provided in the Appendix below).
1311
-
1708
+
1312
1709
  "Derivative Works" shall mean any work, whether in Source or Object
1313
1710
  form, that is based on (or derived from) the Work and for which the
1314
1711
  editorial revisions, annotations, elaborations, or other modifications
@@ -1316,7 +1713,7 @@ covers xalan.jar and serializer.jar
1316
1713
  of this License, Derivative Works shall not include works that remain
1317
1714
  separable from, or merely link (or bind by name) to the interfaces of,
1318
1715
  the Work and Derivative Works thereof.
1319
-
1716
+
1320
1717
  "Contribution" shall mean any work of authorship, including
1321
1718
  the original version of the Work and any modifications or additions
1322
1719
  to that Work or Derivative Works thereof, that is intentionally
@@ -1330,18 +1727,18 @@ covers xalan.jar and serializer.jar
1330
1727
  Licensor for the purpose of discussing and improving the Work, but
1331
1728
  excluding communication that is conspicuously marked or otherwise
1332
1729
  designated in writing by the copyright owner as "Not a Contribution."
1333
-
1730
+
1334
1731
  "Contributor" shall mean Licensor and any individual or Legal Entity
1335
1732
  on behalf of whom a Contribution has been received by Licensor and
1336
1733
  subsequently incorporated within the Work.
1337
-
1734
+
1338
1735
  2. Grant of Copyright License. Subject to the terms and conditions of
1339
1736
  this License, each Contributor hereby grants to You a perpetual,
1340
1737
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1341
1738
  copyright license to reproduce, prepare Derivative Works of,
1342
1739
  publicly display, publicly perform, sublicense, and distribute the
1343
1740
  Work and such Derivative Works in Source or Object form.
1344
-
1741
+
1345
1742
  3. Grant of Patent License. Subject to the terms and conditions of
1346
1743
  this License, each Contributor hereby grants to You a perpetual,
1347
1744
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
@@ -1357,24 +1754,24 @@ covers xalan.jar and serializer.jar
1357
1754
  or contributory patent infringement, then any patent licenses
1358
1755
  granted to You under this License for that Work shall terminate
1359
1756
  as of the date such litigation is filed.
1360
-
1757
+
1361
1758
  4. Redistribution. You may reproduce and distribute copies of the
1362
1759
  Work or Derivative Works thereof in any medium, with or without
1363
1760
  modifications, and in Source or Object form, provided that You
1364
1761
  meet the following conditions:
1365
-
1762
+
1366
1763
  (a) You must give any other recipients of the Work or
1367
1764
  Derivative Works a copy of this License; and
1368
-
1765
+
1369
1766
  (b) You must cause any modified files to carry prominent notices
1370
1767
  stating that You changed the files; and
1371
-
1768
+
1372
1769
  (c) You must retain, in the Source form of any Derivative Works
1373
1770
  that You distribute, all copyright, patent, trademark, and
1374
1771
  attribution notices from the Source form of the Work,
1375
1772
  excluding those notices that do not pertain to any part of
1376
1773
  the Derivative Works; and
1377
-
1774
+
1378
1775
  (d) If the Work includes a "NOTICE" text file as part of its
1379
1776
  distribution, then any Derivative Works that You distribute must
1380
1777
  include a readable copy of the attribution notices contained
@@ -1391,14 +1788,14 @@ covers xalan.jar and serializer.jar
1391
1788
  or as an addendum to the NOTICE text from the Work, provided
1392
1789
  that such additional attribution notices cannot be construed
1393
1790
  as modifying the License.
1394
-
1791
+
1395
1792
  You may add Your own copyright statement to Your modifications and
1396
1793
  may provide additional or different license terms and conditions
1397
1794
  for use, reproduction, or distribution of Your modifications, or
1398
1795
  for any such Derivative Works as a whole, provided Your use,
1399
1796
  reproduction, and distribution of the Work otherwise complies with
1400
1797
  the conditions stated in this License.
1401
-
1798
+
1402
1799
  5. Submission of Contributions. Unless You explicitly state otherwise,
1403
1800
  any Contribution intentionally submitted for inclusion in the Work
1404
1801
  by You to the Licensor shall be under the terms and conditions of
@@ -1406,12 +1803,12 @@ covers xalan.jar and serializer.jar
1406
1803
  Notwithstanding the above, nothing herein shall supersede or modify
1407
1804
  the terms of any separate license agreement you may have executed
1408
1805
  with Licensor regarding such Contributions.
1409
-
1806
+
1410
1807
  6. Trademarks. This License does not grant permission to use the trade
1411
1808
  names, trademarks, service marks, or product names of the Licensor,
1412
1809
  except as required for reasonable and customary use in describing the
1413
1810
  origin of the Work and reproducing the content of the NOTICE file.
1414
-
1811
+
1415
1812
  7. Disclaimer of Warranty. Unless required by applicable law or
1416
1813
  agreed to in writing, Licensor provides the Work (and each
1417
1814
  Contributor provides its Contributions) on an "AS IS" BASIS,
@@ -1421,7 +1818,7 @@ covers xalan.jar and serializer.jar
1421
1818
  PARTICULAR PURPOSE. You are solely responsible for determining the
1422
1819
  appropriateness of using or redistributing the Work and assume any
1423
1820
  risks associated with Your exercise of permissions under this License.
1424
-
1821
+
1425
1822
  8. Limitation of Liability. In no event and under no legal theory,
1426
1823
  whether in tort (including negligence), contract, or otherwise,
1427
1824
  unless required by applicable law (such as deliberate and grossly
@@ -1433,7 +1830,7 @@ covers xalan.jar and serializer.jar
1433
1830
  work stoppage, computer failure or malfunction, or any and all
1434
1831
  other commercial damages or losses), even if such Contributor
1435
1832
  has been advised of the possibility of such damages.
1436
-
1833
+
1437
1834
  9. Accepting Warranty or Additional Liability. While redistributing
1438
1835
  the Work or Derivative Works thereof, You may choose to offer,
1439
1836
  and charge a fee for, acceptance of support, warranty, indemnity,
@@ -1444,56 +1841,30 @@ covers xalan.jar and serializer.jar
1444
1841
  defend, and hold each Contributor harmless for any liability
1445
1842
  incurred by, or claims asserted against, such Contributor by reason
1446
1843
  of your accepting any such warranty or additional liability.
1447
-
1844
+
1448
1845
  END OF TERMS AND CONDITIONS
1449
-
1450
- APPENDIX: How to apply the Apache License to your work.
1451
-
1452
- To apply the Apache License to your work, attach the following
1453
- boilerplate notice, with the fields enclosed by brackets "[]"
1454
- replaced with your own identifying information. (Don't include
1455
- the brackets!) The text should be enclosed in the appropriate
1456
- comment syntax for the file format. We also recommend that a
1457
- file or class name and description of purpose be included on the
1458
- same "printed page" as the copyright notice for easier
1459
- identification within third-party archives.
1460
-
1461
- Copyright [yyyy] [name of copyright owner]
1462
-
1463
- Licensed under the Apache License, Version 2.0 (the "License");
1464
- you may not use this file except in compliance with the License.
1465
- You may obtain a copy of the License at
1466
-
1467
- http://www.apache.org/licenses/LICENSE-2.0
1468
-
1469
- Unless required by applicable law or agreed to in writing, software
1470
- distributed under the License is distributed on an "AS IS" BASIS,
1471
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1472
- See the License for the specific language governing permissions and
1473
- limitations under the License.
1474
-
1475
-
1476
- ### xerces
1846
+
1847
+
1848
+ ### xerces:xercesImpl
1477
1849
 
1478
1850
  Apache 2.0
1479
1851
 
1480
1852
  https://xerces.apache.org/xerces2-j/
1481
1853
 
1482
-
1483
1854
  Apache License
1484
1855
  Version 2.0, January 2004
1485
1856
  http://www.apache.org/licenses/
1486
-
1857
+
1487
1858
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1488
-
1859
+
1489
1860
  1. Definitions.
1490
-
1861
+
1491
1862
  "License" shall mean the terms and conditions for use, reproduction,
1492
1863
  and distribution as defined by Sections 1 through 9 of this document.
1493
-
1864
+
1494
1865
  "Licensor" shall mean the copyright owner or entity authorized by
1495
1866
  the copyright owner that is granting the License.
1496
-
1867
+
1497
1868
  "Legal Entity" shall mean the union of the acting entity and all
1498
1869
  other entities that control, are controlled by, or are under common
1499
1870
  control with that entity. For the purposes of this definition,
@@ -1501,24 +1872,24 @@ https://xerces.apache.org/xerces2-j/
1501
1872
  direction or management of such entity, whether by contract or
1502
1873
  otherwise, or (ii) ownership of fifty percent (50%) or more of the
1503
1874
  outstanding shares, or (iii) beneficial ownership of such entity.
1504
-
1875
+
1505
1876
  "You" (or "Your") shall mean an individual or Legal Entity
1506
1877
  exercising permissions granted by this License.
1507
-
1878
+
1508
1879
  "Source" form shall mean the preferred form for making modifications,
1509
1880
  including but not limited to software source code, documentation
1510
1881
  source, and configuration files.
1511
-
1882
+
1512
1883
  "Object" form shall mean any form resulting from mechanical
1513
1884
  transformation or translation of a Source form, including but
1514
1885
  not limited to compiled object code, generated documentation,
1515
1886
  and conversions to other media types.
1516
-
1887
+
1517
1888
  "Work" shall mean the work of authorship, whether in Source or
1518
1889
  Object form, made available under the License, as indicated by a
1519
1890
  copyright notice that is included in or attached to the work
1520
1891
  (an example is provided in the Appendix below).
1521
-
1892
+
1522
1893
  "Derivative Works" shall mean any work, whether in Source or Object
1523
1894
  form, that is based on (or derived from) the Work and for which the
1524
1895
  editorial revisions, annotations, elaborations, or other modifications
@@ -1526,7 +1897,7 @@ https://xerces.apache.org/xerces2-j/
1526
1897
  of this License, Derivative Works shall not include works that remain
1527
1898
  separable from, or merely link (or bind by name) to the interfaces of,
1528
1899
  the Work and Derivative Works thereof.
1529
-
1900
+
1530
1901
  "Contribution" shall mean any work of authorship, including
1531
1902
  the original version of the Work and any modifications or additions
1532
1903
  to that Work or Derivative Works thereof, that is intentionally
@@ -1540,18 +1911,18 @@ https://xerces.apache.org/xerces2-j/
1540
1911
  Licensor for the purpose of discussing and improving the Work, but
1541
1912
  excluding communication that is conspicuously marked or otherwise
1542
1913
  designated in writing by the copyright owner as "Not a Contribution."
1543
-
1914
+
1544
1915
  "Contributor" shall mean Licensor and any individual or Legal Entity
1545
1916
  on behalf of whom a Contribution has been received by Licensor and
1546
1917
  subsequently incorporated within the Work.
1547
-
1918
+
1548
1919
  2. Grant of Copyright License. Subject to the terms and conditions of
1549
1920
  this License, each Contributor hereby grants to You a perpetual,
1550
1921
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1551
1922
  copyright license to reproduce, prepare Derivative Works of,
1552
1923
  publicly display, publicly perform, sublicense, and distribute the
1553
1924
  Work and such Derivative Works in Source or Object form.
1554
-
1925
+
1555
1926
  3. Grant of Patent License. Subject to the terms and conditions of
1556
1927
  this License, each Contributor hereby grants to You a perpetual,
1557
1928
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
@@ -1567,24 +1938,24 @@ https://xerces.apache.org/xerces2-j/
1567
1938
  or contributory patent infringement, then any patent licenses
1568
1939
  granted to You under this License for that Work shall terminate
1569
1940
  as of the date such litigation is filed.
1570
-
1941
+
1571
1942
  4. Redistribution. You may reproduce and distribute copies of the
1572
1943
  Work or Derivative Works thereof in any medium, with or without
1573
1944
  modifications, and in Source or Object form, provided that You
1574
1945
  meet the following conditions:
1575
-
1946
+
1576
1947
  (a) You must give any other recipients of the Work or
1577
1948
  Derivative Works a copy of this License; and
1578
-
1949
+
1579
1950
  (b) You must cause any modified files to carry prominent notices
1580
1951
  stating that You changed the files; and
1581
-
1952
+
1582
1953
  (c) You must retain, in the Source form of any Derivative Works
1583
1954
  that You distribute, all copyright, patent, trademark, and
1584
1955
  attribution notices from the Source form of the Work,
1585
1956
  excluding those notices that do not pertain to any part of
1586
1957
  the Derivative Works; and
1587
-
1958
+
1588
1959
  (d) If the Work includes a "NOTICE" text file as part of its
1589
1960
  distribution, then any Derivative Works that You distribute must
1590
1961
  include a readable copy of the attribution notices contained
@@ -1601,14 +1972,14 @@ https://xerces.apache.org/xerces2-j/
1601
1972
  or as an addendum to the NOTICE text from the Work, provided
1602
1973
  that such additional attribution notices cannot be construed
1603
1974
  as modifying the License.
1604
-
1975
+
1605
1976
  You may add Your own copyright statement to Your modifications and
1606
1977
  may provide additional or different license terms and conditions
1607
1978
  for use, reproduction, or distribution of Your modifications, or
1608
1979
  for any such Derivative Works as a whole, provided Your use,
1609
1980
  reproduction, and distribution of the Work otherwise complies with
1610
1981
  the conditions stated in this License.
1611
-
1982
+
1612
1983
  5. Submission of Contributions. Unless You explicitly state otherwise,
1613
1984
  any Contribution intentionally submitted for inclusion in the Work
1614
1985
  by You to the Licensor shall be under the terms and conditions of
@@ -1616,12 +1987,12 @@ https://xerces.apache.org/xerces2-j/
1616
1987
  Notwithstanding the above, nothing herein shall supersede or modify
1617
1988
  the terms of any separate license agreement you may have executed
1618
1989
  with Licensor regarding such Contributions.
1619
-
1990
+
1620
1991
  6. Trademarks. This License does not grant permission to use the trade
1621
1992
  names, trademarks, service marks, or product names of the Licensor,
1622
1993
  except as required for reasonable and customary use in describing the
1623
1994
  origin of the Work and reproducing the content of the NOTICE file.
1624
-
1995
+
1625
1996
  7. Disclaimer of Warranty. Unless required by applicable law or
1626
1997
  agreed to in writing, Licensor provides the Work (and each
1627
1998
  Contributor provides its Contributions) on an "AS IS" BASIS,
@@ -1631,7 +2002,7 @@ https://xerces.apache.org/xerces2-j/
1631
2002
  PARTICULAR PURPOSE. You are solely responsible for determining the
1632
2003
  appropriateness of using or redistributing the Work and assume any
1633
2004
  risks associated with Your exercise of permissions under this License.
1634
-
2005
+
1635
2006
  8. Limitation of Liability. In no event and under no legal theory,
1636
2007
  whether in tort (including negligence), contract, or otherwise,
1637
2008
  unless required by applicable law (such as deliberate and grossly
@@ -1643,7 +2014,7 @@ https://xerces.apache.org/xerces2-j/
1643
2014
  work stoppage, computer failure or malfunction, or any and all
1644
2015
  other commercial damages or losses), even if such Contributor
1645
2016
  has been advised of the possibility of such damages.
1646
-
2017
+
1647
2018
  9. Accepting Warranty or Additional Liability. While redistributing
1648
2019
  the Work or Derivative Works thereof, You may choose to offer,
1649
2020
  and charge a fee for, acceptance of support, warranty, indemnity,
@@ -1654,36 +2025,11 @@ https://xerces.apache.org/xerces2-j/
1654
2025
  defend, and hold each Contributor harmless for any liability
1655
2026
  incurred by, or claims asserted against, such Contributor by reason
1656
2027
  of your accepting any such warranty or additional liability.
1657
-
2028
+
1658
2029
  END OF TERMS AND CONDITIONS
1659
-
1660
- APPENDIX: How to apply the Apache License to your work.
1661
-
1662
- To apply the Apache License to your work, attach the following
1663
- boilerplate notice, with the fields enclosed by brackets "[]"
1664
- replaced with your own identifying information. (Don't include
1665
- the brackets!) The text should be enclosed in the appropriate
1666
- comment syntax for the file format. We also recommend that a
1667
- file or class name and description of purpose be included on the
1668
- same "printed page" as the copyright notice for easier
1669
- identification within third-party archives.
1670
-
1671
- Copyright [yyyy] [name of copyright owner]
1672
-
1673
- Licensed under the Apache License, Version 2.0 (the "License");
1674
- you may not use this file except in compliance with the License.
1675
- You may obtain a copy of the License at
1676
-
1677
- http://www.apache.org/licenses/LICENSE-2.0
1678
-
1679
- Unless required by applicable law or agreed to in writing, software
1680
- distributed under the License is distributed on an "AS IS" BASIS,
1681
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1682
- See the License for the specific language governing permissions and
1683
- limitations under the License.
1684
-
1685
-
1686
- ### xml-apis
2030
+
2031
+
2032
+ ### xml-apis:xml-apis
1687
2033
 
1688
2034
  Apache 2.0
1689
2035
 
@@ -1691,7 +2037,7 @@ https://xerces.apache.org/xml-commons/
1691
2037
 
1692
2038
  Unless otherwise noted all files in XML Commons are covered under the
1693
2039
  Apache License Version 2.0. Please read the LICENSE and NOTICE files.
1694
-
2040
+
1695
2041
  XML Commons contains some software and documentation that is covered
1696
2042
  under a number of different licenses. This applies particularly to the
1697
2043
  xml-commons/java/external/ directory. Most files under
@@ -1699,21 +2045,21 @@ https://xerces.apache.org/xml-commons/
1699
2045
  LICENSE.*.txt files; see the matching README.*.txt files for
1700
2046
  descriptions.
1701
2047
 
1702
-
2048
+
1703
2049
  Apache License
1704
2050
  Version 2.0, January 2004
1705
2051
  http://www.apache.org/licenses/
1706
-
2052
+
1707
2053
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1708
-
2054
+
1709
2055
  1. Definitions.
1710
-
2056
+
1711
2057
  "License" shall mean the terms and conditions for use, reproduction,
1712
2058
  and distribution as defined by Sections 1 through 9 of this document.
1713
-
2059
+
1714
2060
  "Licensor" shall mean the copyright owner or entity authorized by
1715
2061
  the copyright owner that is granting the License.
1716
-
2062
+
1717
2063
  "Legal Entity" shall mean the union of the acting entity and all
1718
2064
  other entities that control, are controlled by, or are under common
1719
2065
  control with that entity. For the purposes of this definition,
@@ -1721,24 +2067,24 @@ https://xerces.apache.org/xml-commons/
1721
2067
  direction or management of such entity, whether by contract or
1722
2068
  otherwise, or (ii) ownership of fifty percent (50%) or more of the
1723
2069
  outstanding shares, or (iii) beneficial ownership of such entity.
1724
-
2070
+
1725
2071
  "You" (or "Your") shall mean an individual or Legal Entity
1726
2072
  exercising permissions granted by this License.
1727
-
2073
+
1728
2074
  "Source" form shall mean the preferred form for making modifications,
1729
2075
  including but not limited to software source code, documentation
1730
2076
  source, and configuration files.
1731
-
2077
+
1732
2078
  "Object" form shall mean any form resulting from mechanical
1733
2079
  transformation or translation of a Source form, including but
1734
2080
  not limited to compiled object code, generated documentation,
1735
2081
  and conversions to other media types.
1736
-
2082
+
1737
2083
  "Work" shall mean the work of authorship, whether in Source or
1738
2084
  Object form, made available under the License, as indicated by a
1739
2085
  copyright notice that is included in or attached to the work
1740
2086
  (an example is provided in the Appendix below).
1741
-
2087
+
1742
2088
  "Derivative Works" shall mean any work, whether in Source or Object
1743
2089
  form, that is based on (or derived from) the Work and for which the
1744
2090
  editorial revisions, annotations, elaborations, or other modifications
@@ -1746,7 +2092,7 @@ https://xerces.apache.org/xml-commons/
1746
2092
  of this License, Derivative Works shall not include works that remain
1747
2093
  separable from, or merely link (or bind by name) to the interfaces of,
1748
2094
  the Work and Derivative Works thereof.
1749
-
2095
+
1750
2096
  "Contribution" shall mean any work of authorship, including
1751
2097
  the original version of the Work and any modifications or additions
1752
2098
  to that Work or Derivative Works thereof, that is intentionally
@@ -1760,18 +2106,18 @@ https://xerces.apache.org/xml-commons/
1760
2106
  Licensor for the purpose of discussing and improving the Work, but
1761
2107
  excluding communication that is conspicuously marked or otherwise
1762
2108
  designated in writing by the copyright owner as "Not a Contribution."
1763
-
2109
+
1764
2110
  "Contributor" shall mean Licensor and any individual or Legal Entity
1765
2111
  on behalf of whom a Contribution has been received by Licensor and
1766
2112
  subsequently incorporated within the Work.
1767
-
2113
+
1768
2114
  2. Grant of Copyright License. Subject to the terms and conditions of
1769
2115
  this License, each Contributor hereby grants to You a perpetual,
1770
2116
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1771
2117
  copyright license to reproduce, prepare Derivative Works of,
1772
2118
  publicly display, publicly perform, sublicense, and distribute the
1773
2119
  Work and such Derivative Works in Source or Object form.
1774
-
2120
+
1775
2121
  3. Grant of Patent License. Subject to the terms and conditions of
1776
2122
  this License, each Contributor hereby grants to You a perpetual,
1777
2123
  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
@@ -1787,24 +2133,24 @@ https://xerces.apache.org/xml-commons/
1787
2133
  or contributory patent infringement, then any patent licenses
1788
2134
  granted to You under this License for that Work shall terminate
1789
2135
  as of the date such litigation is filed.
1790
-
2136
+
1791
2137
  4. Redistribution. You may reproduce and distribute copies of the
1792
2138
  Work or Derivative Works thereof in any medium, with or without
1793
2139
  modifications, and in Source or Object form, provided that You
1794
2140
  meet the following conditions:
1795
-
2141
+
1796
2142
  (a) You must give any other recipients of the Work or
1797
2143
  Derivative Works a copy of this License; and
1798
-
2144
+
1799
2145
  (b) You must cause any modified files to carry prominent notices
1800
2146
  stating that You changed the files; and
1801
-
2147
+
1802
2148
  (c) You must retain, in the Source form of any Derivative Works
1803
2149
  that You distribute, all copyright, patent, trademark, and
1804
2150
  attribution notices from the Source form of the Work,
1805
2151
  excluding those notices that do not pertain to any part of
1806
2152
  the Derivative Works; and
1807
-
2153
+
1808
2154
  (d) If the Work includes a "NOTICE" text file as part of its
1809
2155
  distribution, then any Derivative Works that You distribute must
1810
2156
  include a readable copy of the attribution notices contained
@@ -1821,14 +2167,14 @@ https://xerces.apache.org/xml-commons/
1821
2167
  or as an addendum to the NOTICE text from the Work, provided
1822
2168
  that such additional attribution notices cannot be construed
1823
2169
  as modifying the License.
1824
-
2170
+
1825
2171
  You may add Your own copyright statement to Your modifications and
1826
2172
  may provide additional or different license terms and conditions
1827
2173
  for use, reproduction, or distribution of Your modifications, or
1828
2174
  for any such Derivative Works as a whole, provided Your use,
1829
2175
  reproduction, and distribution of the Work otherwise complies with
1830
2176
  the conditions stated in this License.
1831
-
2177
+
1832
2178
  5. Submission of Contributions. Unless You explicitly state otherwise,
1833
2179
  any Contribution intentionally submitted for inclusion in the Work
1834
2180
  by You to the Licensor shall be under the terms and conditions of
@@ -1836,12 +2182,12 @@ https://xerces.apache.org/xml-commons/
1836
2182
  Notwithstanding the above, nothing herein shall supersede or modify
1837
2183
  the terms of any separate license agreement you may have executed
1838
2184
  with Licensor regarding such Contributions.
1839
-
2185
+
1840
2186
  6. Trademarks. This License does not grant permission to use the trade
1841
2187
  names, trademarks, service marks, or product names of the Licensor,
1842
2188
  except as required for reasonable and customary use in describing the
1843
2189
  origin of the Work and reproducing the content of the NOTICE file.
1844
-
2190
+
1845
2191
  7. Disclaimer of Warranty. Unless required by applicable law or
1846
2192
  agreed to in writing, Licensor provides the Work (and each
1847
2193
  Contributor provides its Contributions) on an "AS IS" BASIS,
@@ -1851,7 +2197,7 @@ https://xerces.apache.org/xml-commons/
1851
2197
  PARTICULAR PURPOSE. You are solely responsible for determining the
1852
2198
  appropriateness of using or redistributing the Work and assume any
1853
2199
  risks associated with Your exercise of permissions under this License.
1854
-
2200
+
1855
2201
  8. Limitation of Liability. In no event and under no legal theory,
1856
2202
  whether in tort (including negligence), contract, or otherwise,
1857
2203
  unless required by applicable law (such as deliberate and grossly
@@ -1863,7 +2209,7 @@ https://xerces.apache.org/xml-commons/
1863
2209
  work stoppage, computer failure or malfunction, or any and all
1864
2210
  other commercial damages or losses), even if such Contributor
1865
2211
  has been advised of the possibility of such damages.
1866
-
2212
+
1867
2213
  9. Accepting Warranty or Additional Liability. While redistributing
1868
2214
  the Work or Derivative Works thereof, You may choose to offer,
1869
2215
  and charge a fee for, acceptance of support, warranty, indemnity,
@@ -1874,30 +2220,5 @@ https://xerces.apache.org/xml-commons/
1874
2220
  defend, and hold each Contributor harmless for any liability
1875
2221
  incurred by, or claims asserted against, such Contributor by reason
1876
2222
  of your accepting any such warranty or additional liability.
1877
-
2223
+
1878
2224
  END OF TERMS AND CONDITIONS
1879
-
1880
- APPENDIX: How to apply the Apache License to your work.
1881
-
1882
- To apply the Apache License to your work, attach the following
1883
- boilerplate notice, with the fields enclosed by brackets "[]"
1884
- replaced with your own identifying information. (Don't include
1885
- the brackets!) The text should be enclosed in the appropriate
1886
- comment syntax for the file format. We also recommend that a
1887
- file or class name and description of purpose be included on the
1888
- same "printed page" as the copyright notice for easier
1889
- identification within third-party archives.
1890
-
1891
- Copyright [yyyy] [name of copyright owner]
1892
-
1893
- Licensed under the Apache License, Version 2.0 (the "License");
1894
- you may not use this file except in compliance with the License.
1895
- You may obtain a copy of the License at
1896
-
1897
- http://www.apache.org/licenses/LICENSE-2.0
1898
-
1899
- Unless required by applicable law or agreed to in writing, software
1900
- distributed under the License is distributed on an "AS IS" BASIS,
1901
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1902
- See the License for the specific language governing permissions and
1903
- limitations under the License.