saxon-xslt 0.7.1-java → 0.7.2-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5440f81db23a8f872a0a6ffc6bb0b2d6ba4b74cf
4
- data.tar.gz: d2562c17af1af887f9e4626402a08b1b422cd9ba
3
+ metadata.gz: b43d1eba44ae26eaaecc09511faf7f8a58757050
4
+ data.tar.gz: 98acb0f7f566717fc7a679db0464a4225a4c0612
5
5
  SHA512:
6
- metadata.gz: fa3ca1a106024bbcaf239f54b8b9619954b0b50685a9596acd418e8974fc30fc66726a2178fd762405db3fada9db7fa80ea3aa6ae7713247abf8d17e51fd1f5a
7
- data.tar.gz: df75a39327517d290e0d3f43a605e4f2fd89c13df71da7b501b0a656ae2accb7805d2532ce847a89aa1b86142d708a87a9e343cb71c65e13648f23ce7cac47fd
6
+ metadata.gz: 64d1f73432ff4d33ddae7a642bd6ec415edc5bbb0510f470eb432bbd0d648cdcdf0483182b9d0f1967481e34d9e233f8a26c76c1a6e7f337f78eb2fc7ca6f9f9
7
+ data.tar.gz: aaa4784e59f4202f27f1ec69a33c3b319dadf87f6e000a35b5fb761961d7b596375f3e3f8e8fc5f64ae50ae6d6c0ebb229d4a6dd840dc22176875124a5b97a6b
@@ -1,5 +1,5 @@
1
1
  module Saxon
2
2
  module XSLT
3
- VERSION = "0.7.1"
3
+ VERSION = "0.7.2"
4
4
  end
5
5
  end
@@ -0,0 +1,13 @@
1
+
2
+ (This notice is included in the Saxon distribution because Saxon includes a QuickSort
3
+ module that was originally developed by Wolfgang Hoschek at CERN, and which was licensed
4
+ for use under the conditions specified here.)
5
+
6
+
7
+ Copyright � 1999 CERN - European Organization for Nuclear Research.
8
+
9
+ Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose
10
+ is hereby granted without fee, provided that the above copyright notice appear in all copies and
11
+ that both that copyright notice and this permission notice appear in supporting documentation.
12
+ CERN makes no representations about the suitability of this software for any purpose.
13
+ It is provided "as is" without expressed or implied warranty.
@@ -0,0 +1,31 @@
1
+
2
+ (This notice is included in the Saxon distribution because Saxon's XPath parser
3
+ was originally derived from an XPath parser written by James Clark and made available
4
+ under this license. The Saxon XPath parser has since diverged very substantially, but
5
+ there are traces of the original code still present.)
6
+
7
+ Copyright (c) 1998, 1999 James Clark
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining
10
+ a copy of this software and associated documentation files (the
11
+ "Software"), to deal in the Software without restriction, including
12
+ without limitation the rights to use, copy, modify, merge, publish,
13
+ distribute, sublicense, and/or sell copies of the Software, and to
14
+ permit persons to whom the Software is furnished to do so, subject to
15
+ the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included
18
+ in all copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
21
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23
+ IN NO EVENT SHALL JAMES CLARK BE LIABLE FOR ANY CLAIM, DAMAGES OR
24
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26
+ OTHER DEALINGS IN THE SOFTWARE.
27
+
28
+ Except as contained in this notice, the name of James Clark shall
29
+ not be used in advertising or otherwise to promote the sale, use or
30
+ other dealings in this Software without prior written authorization
31
+ from James Clark.
@@ -0,0 +1,377 @@
1
+ Most of the open source code in the Saxon product is governed by the Mozilla Public
2
+ License version 2.0, which is reproduced below.
3
+
4
+
5
+ Mozilla Public License Version 2.0
6
+ ==================================
7
+
8
+ 1. Definitions
9
+ --------------
10
+
11
+ 1.1. "Contributor"
12
+ means each individual or legal entity that creates, contributes to
13
+ the creation of, or owns Covered Software.
14
+
15
+ 1.2. "Contributor Version"
16
+ means the combination of the Contributions of others (if any) used
17
+ by a Contributor and that particular Contributor's Contribution.
18
+
19
+ 1.3. "Contribution"
20
+ means Covered Software of a particular Contributor.
21
+
22
+ 1.4. "Covered Software"
23
+ means Source Code Form to which the initial Contributor has attached
24
+ the notice in Exhibit A, the Executable Form of such Source Code
25
+ Form, and Modifications of such Source Code Form, in each case
26
+ including portions thereof.
27
+
28
+ 1.5. "Incompatible With Secondary Licenses"
29
+ means
30
+
31
+ (a) that the initial Contributor has attached the notice described
32
+ in Exhibit B to the Covered Software; or
33
+
34
+ (b) that the Covered Software was made available under the terms of
35
+ version 1.1 or earlier of the License, but not also under the
36
+ terms of a Secondary License.
37
+
38
+ 1.6. "Executable Form"
39
+ means any form of the work other than Source Code Form.
40
+
41
+ 1.7. "Larger Work"
42
+ means a work that combines Covered Software with other material, in
43
+ a separate file or files, that is not Covered Software.
44
+
45
+ 1.8. "License"
46
+ means this document.
47
+
48
+ 1.9. "Licensable"
49
+ means having the right to grant, to the maximum extent possible,
50
+ whether at the time of the initial grant or subsequently, any and
51
+ all of the rights conveyed by this License.
52
+
53
+ 1.10. "Modifications"
54
+ means any of the following:
55
+
56
+ (a) any file in Source Code Form that results from an addition to,
57
+ deletion from, or modification of the contents of Covered
58
+ Software; or
59
+
60
+ (b) any new file in Source Code Form that contains any Covered
61
+ Software.
62
+
63
+ 1.11. "Patent Claims" of a Contributor
64
+ means any patent claim(s), including without limitation, method,
65
+ process, and apparatus claims, in any patent Licensable by such
66
+ Contributor that would be infringed, but for the grant of the
67
+ License, by the making, using, selling, offering for sale, having
68
+ made, import, or transfer of either its Contributions or its
69
+ Contributor Version.
70
+
71
+ 1.12. "Secondary License"
72
+ means either the GNU General Public License, Version 2.0, the GNU
73
+ Lesser General Public License, Version 2.1, the GNU Affero General
74
+ Public License, Version 3.0, or any later versions of those
75
+ licenses.
76
+
77
+ 1.13. "Source Code Form"
78
+ means the form of the work preferred for making modifications.
79
+
80
+ 1.14. "You" (or "Your")
81
+ means an individual or a legal entity exercising rights under this
82
+ License. For legal entities, "You" includes any entity that
83
+ controls, is controlled by, or is under common control with You. For
84
+ purposes of this definition, "control" means (a) the power, direct
85
+ or indirect, to cause the direction or management of such entity,
86
+ whether by contract or otherwise, or (b) ownership of more than
87
+ fifty percent (50%) of the outstanding shares or beneficial
88
+ ownership of such entity.
89
+
90
+ 2. License Grants and Conditions
91
+ --------------------------------
92
+
93
+ 2.1. Grants
94
+
95
+ Each Contributor hereby grants You a world-wide, royalty-free,
96
+ non-exclusive license:
97
+
98
+ (a) under intellectual property rights (other than patent or trademark)
99
+ Licensable by such Contributor to use, reproduce, make available,
100
+ modify, display, perform, distribute, and otherwise exploit its
101
+ Contributions, either on an unmodified basis, with Modifications, or
102
+ as part of a Larger Work; and
103
+
104
+ (b) under Patent Claims of such Contributor to make, use, sell, offer
105
+ for sale, have made, import, and otherwise transfer either its
106
+ Contributions or its Contributor Version.
107
+
108
+ 2.2. Effective Date
109
+
110
+ The licenses granted in Section 2.1 with respect to any Contribution
111
+ become effective for each Contribution on the date the Contributor first
112
+ distributes such Contribution.
113
+
114
+ 2.3. Limitations on Grant Scope
115
+
116
+ The licenses granted in this Section 2 are the only rights granted under
117
+ this License. No additional rights or licenses will be implied from the
118
+ distribution or licensing of Covered Software under this License.
119
+ Notwithstanding Section 2.1(b) above, no patent license is granted by a
120
+ Contributor:
121
+
122
+ (a) for any code that a Contributor has removed from Covered Software;
123
+ or
124
+
125
+ (b) for infringements caused by: (i) Your and any other third party's
126
+ modifications of Covered Software, or (ii) the combination of its
127
+ Contributions with other software (except as part of its Contributor
128
+ Version); or
129
+
130
+ (c) under Patent Claims infringed by Covered Software in the absence of
131
+ its Contributions.
132
+
133
+ This License does not grant any rights in the trademarks, service marks,
134
+ or logos of any Contributor (except as may be necessary to comply with
135
+ the notice requirements in Section 3.4).
136
+
137
+ 2.4. Subsequent Licenses
138
+
139
+ No Contributor makes additional grants as a result of Your choice to
140
+ distribute the Covered Software under a subsequent version of this
141
+ License (see Section 10.2) or under the terms of a Secondary License (if
142
+ permitted under the terms of Section 3.3).
143
+
144
+ 2.5. Representation
145
+
146
+ Each Contributor represents that the Contributor believes its
147
+ Contributions are its original creation(s) or it has sufficient rights
148
+ to grant the rights to its Contributions conveyed by this License.
149
+
150
+ 2.6. Fair Use
151
+
152
+ This License is not intended to limit any rights You have under
153
+ applicable copyright doctrines of fair use, fair dealing, or other
154
+ equivalents.
155
+
156
+ 2.7. Conditions
157
+
158
+ Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
159
+ in Section 2.1.
160
+
161
+ 3. Responsibilities
162
+ -------------------
163
+
164
+ 3.1. Distribution of Source Form
165
+
166
+ All distribution of Covered Software in Source Code Form, including any
167
+ Modifications that You create or to which You contribute, must be under
168
+ the terms of this License. You must inform recipients that the Source
169
+ Code Form of the Covered Software is governed by the terms of this
170
+ License, and how they can obtain a copy of this License. You may not
171
+ attempt to alter or restrict the recipients' rights in the Source Code
172
+ Form.
173
+
174
+ 3.2. Distribution of Executable Form
175
+
176
+ If You distribute Covered Software in Executable Form then:
177
+
178
+ (a) such Covered Software must also be made available in Source Code
179
+ Form, as described in Section 3.1, and You must inform recipients of
180
+ the Executable Form how they can obtain a copy of such Source Code
181
+ Form by reasonable means in a timely manner, at a charge no more
182
+ than the cost of distribution to the recipient; and
183
+
184
+ (b) You may distribute such Executable Form under the terms of this
185
+ License, or sublicense it under different terms, provided that the
186
+ license for the Executable Form does not attempt to limit or alter
187
+ the recipients' rights in the Source Code Form under this License.
188
+
189
+ 3.3. Distribution of a Larger Work
190
+
191
+ You may create and distribute a Larger Work under terms of Your choice,
192
+ provided that You also comply with the requirements of this License for
193
+ the Covered Software. If the Larger Work is a combination of Covered
194
+ Software with a work governed by one or more Secondary Licenses, and the
195
+ Covered Software is not Incompatible With Secondary Licenses, this
196
+ License permits You to additionally distribute such Covered Software
197
+ under the terms of such Secondary License(s), so that the recipient of
198
+ the Larger Work may, at their option, further distribute the Covered
199
+ Software under the terms of either this License or such Secondary
200
+ License(s).
201
+
202
+ 3.4. Notices
203
+
204
+ You may not remove or alter the substance of any license notices
205
+ (including copyright notices, patent notices, disclaimers of warranty,
206
+ or limitations of liability) contained within the Source Code Form of
207
+ the Covered Software, except that You may alter any license notices to
208
+ the extent required to remedy known factual inaccuracies.
209
+
210
+ 3.5. Application of Additional Terms
211
+
212
+ You may choose to offer, and to charge a fee for, warranty, support,
213
+ indemnity or liability obligations to one or more recipients of Covered
214
+ Software. However, You may do so only on Your own behalf, and not on
215
+ behalf of any Contributor. You must make it absolutely clear that any
216
+ such warranty, support, indemnity, or liability obligation is offered by
217
+ You alone, and You hereby agree to indemnify every Contributor for any
218
+ liability incurred by such Contributor as a result of warranty, support,
219
+ indemnity or liability terms You offer. You may include additional
220
+ disclaimers of warranty and limitations of liability specific to any
221
+ jurisdiction.
222
+
223
+ 4. Inability to Comply Due to Statute or Regulation
224
+ ---------------------------------------------------
225
+
226
+ If it is impossible for You to comply with any of the terms of this
227
+ License with respect to some or all of the Covered Software due to
228
+ statute, judicial order, or regulation then You must: (a) comply with
229
+ the terms of this License to the maximum extent possible; and (b)
230
+ describe the limitations and the code they affect. Such description must
231
+ be placed in a text file included with all distributions of the Covered
232
+ Software under this License. Except to the extent prohibited by statute
233
+ or regulation, such description must be sufficiently detailed for a
234
+ recipient of ordinary skill to be able to understand it.
235
+
236
+ 5. Termination
237
+ --------------
238
+
239
+ 5.1. The rights granted under this License will terminate automatically
240
+ if You fail to comply with any of its terms. However, if You become
241
+ compliant, then the rights granted under this License from a particular
242
+ Contributor are reinstated (a) provisionally, unless and until such
243
+ Contributor explicitly and finally terminates Your grants, and (b) on an
244
+ ongoing basis, if such Contributor fails to notify You of the
245
+ non-compliance by some reasonable means prior to 60 days after You have
246
+ come back into compliance. Moreover, Your grants from a particular
247
+ Contributor are reinstated on an ongoing basis if such Contributor
248
+ notifies You of the non-compliance by some reasonable means, this is the
249
+ first time You have received notice of non-compliance with this License
250
+ from such Contributor, and You become compliant prior to 30 days after
251
+ Your receipt of the notice.
252
+
253
+ 5.2. If You initiate litigation against any entity by asserting a patent
254
+ infringement claim (excluding declaratory judgment actions,
255
+ counter-claims, and cross-claims) alleging that a Contributor Version
256
+ directly or indirectly infringes any patent, then the rights granted to
257
+ You by any and all Contributors for the Covered Software under Section
258
+ 2.1 of this License shall terminate.
259
+
260
+ 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
261
+ end user license agreements (excluding distributors and resellers) which
262
+ have been validly granted by You or Your distributors under this License
263
+ prior to termination shall survive termination.
264
+
265
+ ************************************************************************
266
+ * *
267
+ * 6. Disclaimer of Warranty *
268
+ * ------------------------- *
269
+ * *
270
+ * Covered Software is provided under this License on an "as is" *
271
+ * basis, without warranty of any kind, either expressed, implied, or *
272
+ * statutory, including, without limitation, warranties that the *
273
+ * Covered Software is free of defects, merchantable, fit for a *
274
+ * particular purpose or non-infringing. The entire risk as to the *
275
+ * quality and performance of the Covered Software is with You. *
276
+ * Should any Covered Software prove defective in any respect, You *
277
+ * (not any Contributor) assume the cost of any necessary servicing, *
278
+ * repair, or correction. This disclaimer of warranty constitutes an *
279
+ * essential part of this License. No use of any Covered Software is *
280
+ * authorized under this License except under this disclaimer. *
281
+ * *
282
+ ************************************************************************
283
+
284
+ ************************************************************************
285
+ * *
286
+ * 7. Limitation of Liability *
287
+ * -------------------------- *
288
+ * *
289
+ * Under no circumstances and under no legal theory, whether tort *
290
+ * (including negligence), contract, or otherwise, shall any *
291
+ * Contributor, or anyone who distributes Covered Software as *
292
+ * permitted above, be liable to You for any direct, indirect, *
293
+ * special, incidental, or consequential damages of any character *
294
+ * including, without limitation, damages for lost profits, loss of *
295
+ * goodwill, work stoppage, computer failure or malfunction, or any *
296
+ * and all other commercial damages or losses, even if such party *
297
+ * shall have been informed of the possibility of such damages. This *
298
+ * limitation of liability shall not apply to liability for death or *
299
+ * personal injury resulting from such party's negligence to the *
300
+ * extent applicable law prohibits such limitation. Some *
301
+ * jurisdictions do not allow the exclusion or limitation of *
302
+ * incidental or consequential damages, so this exclusion and *
303
+ * limitation may not apply to You. *
304
+ * *
305
+ ************************************************************************
306
+
307
+ 8. Litigation
308
+ -------------
309
+
310
+ Any litigation relating to this License may be brought only in the
311
+ courts of a jurisdiction where the defendant maintains its principal
312
+ place of business and such litigation shall be governed by laws of that
313
+ jurisdiction, without reference to its conflict-of-law provisions.
314
+ Nothing in this Section shall prevent a party's ability to bring
315
+ cross-claims or counter-claims.
316
+
317
+ 9. Miscellaneous
318
+ ----------------
319
+
320
+ This License represents the complete agreement concerning the subject
321
+ matter hereof. If any provision of this License is held to be
322
+ unenforceable, such provision shall be reformed only to the extent
323
+ necessary to make it enforceable. Any law or regulation which provides
324
+ that the language of a contract shall be construed against the drafter
325
+ shall not be used to construe this License against a Contributor.
326
+
327
+ 10. Versions of the License
328
+ ---------------------------
329
+
330
+ 10.1. New Versions
331
+
332
+ Mozilla Foundation is the license steward. Except as provided in Section
333
+ 10.3, no one other than the license steward has the right to modify or
334
+ publish new versions of this License. Each version will be given a
335
+ distinguishing version number.
336
+
337
+ 10.2. Effect of New Versions
338
+
339
+ You may distribute the Covered Software under the terms of the version
340
+ of the License under which You originally received the Covered Software,
341
+ or under the terms of any subsequent version published by the license
342
+ steward.
343
+
344
+ 10.3. Modified Versions
345
+
346
+ If you create software not governed by this License, and you want to
347
+ create a new license for such software, you may create and use a
348
+ modified version of this License if you rename the license and remove
349
+ any references to the name of the license steward (except to note that
350
+ such modified license differs from this License).
351
+
352
+ 10.4. Distributing Source Code Form that is Incompatible With Secondary
353
+ Licenses
354
+
355
+ If You choose to distribute Source Code Form that is Incompatible With
356
+ Secondary Licenses under the terms of this version of the License, the
357
+ notice described in Exhibit B of this License must be attached.
358
+
359
+ Exhibit A - Source Code Form License Notice
360
+ -------------------------------------------
361
+
362
+ This Source Code Form is subject to the terms of the Mozilla Public
363
+ License, v. 2.0. If a copy of the MPL was not distributed with this
364
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
365
+
366
+ If it is not possible or desirable to put the notice in a particular
367
+ file, then You may include the notice in a location (such as a LICENSE
368
+ file in a relevant directory) where a recipient would be likely to look
369
+ for such a notice.
370
+
371
+ You may add additional accurate notices of copyright ownership.
372
+
373
+ Exhibit B - "Incompatible With Secondary Licenses" Notice
374
+ ---------------------------------------------------------
375
+
376
+ This Source Code Form is "Incompatible With Secondary Licenses", as
377
+ defined by the Mozilla Public License, v. 2.0.
@@ -0,0 +1,39 @@
1
+
2
+ (This notice is included in the Saxon distribution because Saxon
3
+ uses code for conversion of XML Schema Regular expressions to
4
+ Java/.NET regular expressions that was originally written by James
5
+ Clark and made available under this license. The Saxon version of
6
+ the code has been enhanced in various ways but is still recognizably
7
+ based on the original.)
8
+
9
+ Copyright (c) 2001-2003 Thai Open Source Software Center Ltd
10
+ All rights reserved.
11
+
12
+ Redistribution and use in source and binary forms, with or without
13
+ modification, are permitted provided that the following conditions are
14
+ met:
15
+
16
+ Redistributions of source code must retain the above copyright
17
+ notice, this list of conditions and the following disclaimer.
18
+
19
+ Redistributions in binary form must reproduce the above copyright
20
+ notice, this list of conditions and the following disclaimer in
21
+ the documentation and/or other materials provided with the
22
+ distribution.
23
+
24
+ Neither the name of the Thai Open Source Software Center Ltd nor
25
+ the names of its contributors may be used to endorse or promote
26
+ products derived from this software without specific prior written
27
+ permission.
28
+
29
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
33
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
34
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
35
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
36
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
37
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
38
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
39
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,38 @@
1
+
2
+ (This notice is included in the Saxon distribution because Saxon
3
+ uses code performing Unicode Normalization that was originally written by Mark
4
+ Davis and made available under this license. The Saxon version of the
5
+ code has been enhanced in various minor ways but is still recognizably
6
+ based on the original. For details of modifications, see the comments in
7
+ the source code.)
8
+
9
+
10
+ COPYRIGHT AND PERMISSION NOTICE
11
+ Copyright � 1991-2007 Unicode, Inc. All rights reserved. Distributed under the Terms of Use
12
+ in http://www.unicode.org/copyright.html.
13
+
14
+ Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode
15
+ data files and any associated documentation (the "Data Files") or Unicode software and any
16
+ associated documentation (the "Software") to deal in the Data Files or Software without
17
+ restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute,
18
+ and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or
19
+ Software are furnished to do so, provided that (a) the above copyright notice(s) and this
20
+ permission notice appear with all copies of the Data Files or Software, (b) both the above
21
+ copyright notice(s) and this permission notice appear in associated documentation, and
22
+ (c) there is clear notice in each modified Data File or in the Software as well as in the
23
+ documentation associated with the Data File(s) or Software that the data or software has
24
+ been modified.
25
+
26
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
29
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
30
+ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
31
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
32
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
33
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
34
+ FILES OR SOFTWARE.
35
+
36
+ Except as contained in this notice, the name of a copyright holder shall not be used
37
+ in advertising or otherwise to promote the sale, use or other dealings in these
38
+ Data Files or Software without prior written authorization of the copyright holder.
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: saxon-xslt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: java
6
6
  authors:
7
7
  - Matt Patterson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-17 00:00:00.000000000 Z
11
+ date: 2015-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -103,6 +103,11 @@ files:
103
103
  - lib/saxon/xml.rb
104
104
  - lib/saxon/xslt.rb
105
105
  - lib/saxon/xslt/version.rb
106
+ - saxon-licenses/CERN.txt
107
+ - saxon-licenses/JAMESCLARK.txt
108
+ - saxon-licenses/LICENSE.txt
109
+ - saxon-licenses/THAI.txt
110
+ - saxon-licenses/UNICODE.txt
106
111
  - saxon-xslt.gemspec
107
112
  - spec/fixtures/cassettes/Saxon_SourceHelper/returning_a_StreamSource/StreamSource_systemId/for_inputs_where_we_can_infer_the_path_or_URI/is_set_to_an_open-uri_d_URI_s_URI.yml
108
113
  - spec/fixtures/cassettes/Saxon_SourceHelper/returning_a_StreamSource/StreamSource_systemId/for_inputs_where_we_can_infer_the_path_or_URI/overrides_the_inferred_system_ID_if_set_explicitly.yml