rjack-solr 3.6.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. data/History.rdoc +2 -0
  2. data/Manifest.txt +62 -0
  3. data/NOTICE.txt +7 -0
  4. data/README.rdoc +71 -0
  5. data/Rakefile +12 -0
  6. data/assembly.xml +20 -0
  7. data/bin/rjack-solr-fg +53 -0
  8. data/config/config.rb +9 -0
  9. data/init/rjack-solr +44 -0
  10. data/lib/rjack-solr.rb +30 -0
  11. data/lib/rjack-solr/base.rb +28 -0
  12. data/lib/rjack-solr/commons-fileupload-1.2.1.jar +0 -0
  13. data/lib/rjack-solr/commons-io-2.1.jar +0 -0
  14. data/lib/rjack-solr/commons-lang-2.6.jar +0 -0
  15. data/lib/rjack-solr/config.rb +24 -0
  16. data/lib/rjack-solr/server.rb +70 -0
  17. data/lib/rjack-solr/solr-core-3.6.0.jar +0 -0
  18. data/lib/rjack-solr/solr-solrj-3.6.0.jar +0 -0
  19. data/pom.xml +96 -0
  20. data/test/test_solr.rb +43 -0
  21. data/webapp/META-INF/LICENSE.txt +1166 -0
  22. data/webapp/META-INF/MANIFEST.MF +13 -0
  23. data/webapp/META-INF/NOTICE.txt +438 -0
  24. data/webapp/WEB-INF/web.xml +153 -0
  25. data/webapp/WEB-INF/weblogic.xml +12 -0
  26. data/webapp/admin/_info.jsp +120 -0
  27. data/webapp/admin/action.jsp +94 -0
  28. data/webapp/admin/analysis.jsp +496 -0
  29. data/webapp/admin/analysis.xsl +179 -0
  30. data/webapp/admin/dataimport.jsp +53 -0
  31. data/webapp/admin/debug.jsp +103 -0
  32. data/webapp/admin/distributiondump.jsp +160 -0
  33. data/webapp/admin/favicon.ico +0 -0
  34. data/webapp/admin/form.jsp +152 -0
  35. data/webapp/admin/get-file.jsp +72 -0
  36. data/webapp/admin/get-properties.jsp +24 -0
  37. data/webapp/admin/header.jsp +44 -0
  38. data/webapp/admin/index.jsp +162 -0
  39. data/webapp/admin/jquery-1.4.3.min.js +166 -0
  40. data/webapp/admin/meta.xsl +34 -0
  41. data/webapp/admin/ping.jsp +52 -0
  42. data/webapp/admin/ping.xsl +71 -0
  43. data/webapp/admin/raw-schema.jsp +38 -0
  44. data/webapp/admin/registry.jsp +107 -0
  45. data/webapp/admin/registry.xsl +321 -0
  46. data/webapp/admin/replication/header.jsp +89 -0
  47. data/webapp/admin/replication/index.jsp +378 -0
  48. data/webapp/admin/schema.jsp +690 -0
  49. data/webapp/admin/solr-admin.css +215 -0
  50. data/webapp/admin/solr_small.png +0 -0
  51. data/webapp/admin/stats.jsp +92 -0
  52. data/webapp/admin/stats.xsl +220 -0
  53. data/webapp/admin/tabular.xsl +141 -0
  54. data/webapp/admin/threaddump.jsp +110 -0
  55. data/webapp/admin/threaddump.xsl +103 -0
  56. data/webapp/favicon.ico +0 -0
  57. data/webapp/index.jsp +49 -0
  58. metadata +217 -0
@@ -0,0 +1,13 @@
1
+ Manifest-Version: 1.0
2
+ Ant-Version: Apache Ant 1.7.1
3
+ Created-By: 1.5.0_22-b03 (Sun Microsystems Inc.)
4
+ Extension-Name: org.apache.solr
5
+ Specification-Title: Apache Solr Search Server
6
+ Specification-Version: 3.6.0.2012.04.06.11.34.52
7
+ Specification-Vendor: The Apache Software Foundation
8
+ Implementation-Title: org.apache.solr
9
+ Implementation-Version: 3.6.0 1310449 - rmuir - 2012-04-06 11:34:52
10
+ Implementation-Vendor: The Apache Software Foundation
11
+ X-Compile-Source-JDK: 1.5
12
+ X-Compile-Target-JDK: 1.5
13
+
@@ -0,0 +1,438 @@
1
+ ==============================================================
2
+ Apache Solr
3
+ Copyright 2006-2012 The Apache Software Foundation
4
+ ==============================================================
5
+
6
+ This product includes software developed by
7
+ The Apache Software Foundation (http://www.apache.org/).
8
+
9
+ Includes software from other Apache Software Foundation projects,
10
+ including, but not limited to:
11
+ - Apache Lucene Java
12
+ - Apache Tomcat (servlet-api-2.4)
13
+ - Apache Commons
14
+ - Apache Geronimo (stax API)
15
+
16
+ This product includes tests written with EasyMock Copyright 2001-2007
17
+ Tammo Freese (http://www.easymock.org/)
18
+
19
+ This product includes the JQuery JavaScript library created by John Resig.
20
+ Copyright (c) 2010 John Resig, http://jquery.com/
21
+
22
+ stax-utils library: https://stax-utils.dev.java.net/
23
+ Copyright (c) 2004, Christian Niles, unit12.net
24
+ Copyright (c) 2004, Sun Microsystems, Inc.
25
+ Copyright (c) 2006, John Kristian
26
+ License: The BSD License (http://www.opensource.org/licenses/bsd-license.php)
27
+
28
+ JavaMail API 1.4.1: https://glassfish.dev.java.net/javaee5/mail/
29
+ License: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html)
30
+
31
+ JavaBeans Activation Framework (JAF): http://java.sun.com/products/javabeans/jaf/index.jsp
32
+ License: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html)
33
+
34
+ HSQL Database (HSQLDB): http://hsqldb.org/
35
+ License: http://hsqldb.org/web/hsqlLicense.html
36
+
37
+ This product includes code (JaspellTernarySearchTrie) from Java Spelling Checking Package (jaspell): http://jaspell.sourceforge.net/
38
+ License: The BSD License (http://www.opensource.org/licenses/bsd-license.php)
39
+
40
+ =========================================================================
41
+ == Apache Lucene Notice ==
42
+ =========================================================================
43
+
44
+ Apache Lucene
45
+ Copyright 2012 The Apache Software Foundation
46
+
47
+ This product includes software developed by
48
+ The Apache Software Foundation (http://www.apache.org/).
49
+
50
+ The snowball stemmers in
51
+ contrib/analyzers/common/src/java/net/sf/snowball
52
+ were developed by Martin Porter and Richard Boulton.
53
+ The snowball stopword lists in
54
+ contrib/analyzers/common/src/resources/org/apache/lucene/analysis/snowball
55
+ were developed by Martin Porter and Richard Boulton.
56
+ The full snowball package is available from
57
+ http://snowball.tartarus.org/
58
+
59
+ The KStem stemmer in
60
+ common/src/org/apache/lucene/analysis/en
61
+ was developed by Bob Krovetz and Sergio Guzman-Lara (CIIR-UMass Amherst)
62
+ under the BSD-license.
63
+
64
+ The Arabic,Persian,Romanian,Bulgarian, and Hindi analyzers (contrib/analyzers) come with a default
65
+ stopword list that is BSD-licensed created by Jacques Savoy. These files reside in:
66
+ contrib/analyzers/common/src/resources/org/apache/lucene/analysis/ar/stopwords.txt,
67
+ contrib/analyzers/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt,
68
+ contrib/analyzers/common/src/resources/org/apache/lucene/analysis/ro/stopwords.txt,
69
+ contrib/analyzers/common/src/resources/org/apache/lucene/analysis/bg/stopwords.txt,
70
+ contrib/analyzers/common/src/resources/org/apache/lucene/analysis/hi/stopwords.txt
71
+ See http://members.unine.ch/jacques.savoy/clef/index.html.
72
+
73
+ The German,Spanish,Finnish,French,Hungarian,Italian,Portuguese,Russian and Swedish light stemmers
74
+ (common) are based on BSD-licensed reference implementations created by Jacques Savoy and
75
+ Ljiljana Dolamic. These files reside in:
76
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/de/GermanLightStemmer.java
77
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/de/GermanMinimalStemmer.java
78
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/es/SpanishLightStemmer.java
79
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/fi/FinnishLightStemmer.java
80
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/fr/FrenchLightStemmer.java
81
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/fr/FrenchMinimalStemmer.java
82
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/hu/HungarianLightStemmer.java
83
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/it/ItalianLightStemmer.java
84
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/pt/PortugueseLightStemmer.java
85
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/ru/RussianLightStemmer.java
86
+ contrib/analyzers/common/src/java/org/apache/lucene/analysis/sv/SwedishLightStemmer.java
87
+
88
+ The Stempel analyzer (contrib/analyzers) includes BSD-licensed software developed
89
+ by the Egothor project http://egothor.sf.net/, created by Leo Galambos, Martin Kvapil,
90
+ and Edmond Nolan.
91
+
92
+ The Polish analyzer (contrib/analyzers) comes with a default
93
+ stopword list that is BSD-licensed created by the Carrot2 project. The file resides
94
+ in contrib/analyzers/stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.
95
+ See http://project.carrot2.org/license.html.
96
+
97
+ Includes software from other Apache Software Foundation projects,
98
+ including, but not limited to:
99
+ - Apache Ant
100
+ - Apache Jakarta Regexp
101
+ - Commons Compress
102
+ - Xerces
103
+
104
+ The SmartChineseAnalyzer source code (under contrib/analyzers) was
105
+ provided by Xiaoping Gao and copyright 2009 by www.imdict.net.
106
+
107
+ ICU4J, (under contrib/icu) is licensed under an MIT styles license
108
+ (contrib/icu/lib/ICU-LICENSE.txt) and Copyright (c) 1995-2008
109
+ International Business Machines Corporation and others
110
+
111
+ Some files (contrib/analyzers/common/src/test/.../WordBreakTestUnicode_*.java
112
+ and data files under contrib/icu/src/data/) are derived from Unicode data such
113
+ as the Unicode Character Database. See http://unicode.org/copyright.html for more
114
+ details.
115
+
116
+ The class org.apache.lucene.SorterTemplate was inspired by CGLIB's class with
117
+ the same name. The implementation part is mainly done using pre-existing
118
+ Lucene sorting code. In-place stable mergesort was borrowed from CGLIB,
119
+ which is Apache-licensed.
120
+
121
+ The class org.apache.lucene.util.WeakIdentityMap was derived from
122
+ the Apache CXF project and is Apache License 2.0.
123
+
124
+ The Google Code Prettify is Apache License 2.0.
125
+ See http://code.google.com/p/google-code-prettify/
126
+
127
+ JUnit (junit-4.10) is licensed under the Common Public License v. 1.0
128
+ See http://junit.sourceforge.net/cpl-v10.html
129
+
130
+ This product includes code (JaspellTernarySearchTrie) from Java Spelling Checking Package (jaspell): http://jaspell.sourceforge.net/
131
+ License: The BSD License (http://www.opensource.org/licenses/bsd-license.php)
132
+
133
+ ===========================================================================
134
+ Kuromoji Japanese Morphological Analyzer - Apache Lucene Integration
135
+ ===========================================================================
136
+
137
+ This software includes a binary and/or source version of data from
138
+
139
+ mecab-ipadic-2.7.0-20070801
140
+
141
+ which can be obtained from
142
+
143
+ http://atilika.com/releases/mecab-ipadic/mecab-ipadic-2.7.0-20070801.tar.gz
144
+
145
+ or
146
+
147
+ http://jaist.dl.sourceforge.net/project/mecab/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz
148
+
149
+ ===========================================================================
150
+ mecab-ipadic-2.7.0-20070801 Notice
151
+ ===========================================================================
152
+
153
+ Nara Institute of Science and Technology (NAIST),
154
+ the copyright holders, disclaims all warranties with regard to this
155
+ software, including all implied warranties of merchantability and
156
+ fitness, in no event shall NAIST be liable for
157
+ any special, indirect or consequential damages or any damages
158
+ whatsoever resulting from loss of use, data or profits, whether in an
159
+ action of contract, negligence or other tortuous action, arising out
160
+ of or in connection with the use or performance of this software.
161
+
162
+ A large portion of the dictionary entries
163
+ originate from ICOT Free Software. The following conditions for ICOT
164
+ Free Software applies to the current dictionary as well.
165
+
166
+ Each User may also freely distribute the Program, whether in its
167
+ original form or modified, to any third party or parties, PROVIDED
168
+ that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
169
+ on, or be attached to, the Program, which is distributed substantially
170
+ in the same form as set out herein and that such intended
171
+ distribution, if actually made, will neither violate or otherwise
172
+ contravene any of the laws and regulations of the countries having
173
+ jurisdiction over the User or the intended distribution itself.
174
+
175
+ NO WARRANTY
176
+
177
+ The program was produced on an experimental basis in the course of the
178
+ research and development conducted during the project and is provided
179
+ to users as so produced on an experimental basis. Accordingly, the
180
+ program is provided without any warranty whatsoever, whether express,
181
+ implied, statutory or otherwise. The term "warranty" used herein
182
+ includes, but is not limited to, any warranty of the quality,
183
+ performance, merchantability and fitness for a particular purpose of
184
+ the program and the nonexistence of any infringement or violation of
185
+ any right of any third party.
186
+
187
+ Each user of the program will agree and understand, and be deemed to
188
+ have agreed and understood, that there is no warranty whatsoever for
189
+ the program and, accordingly, the entire risk arising from or
190
+ otherwise connected with the program is assumed by the user.
191
+
192
+ Therefore, neither ICOT, the copyright holder, or any other
193
+ organization that participated in or was otherwise related to the
194
+ development of the program and their respective officials, directors,
195
+ officers and other employees shall be held liable for any and all
196
+ damages, including, without limitation, general, special, incidental
197
+ and consequential damages, arising out of or otherwise in connection
198
+ with the use or inability to use the program or any product, material
199
+ or result produced or otherwise obtained by using the program,
200
+ regardless of whether they have been advised of, or otherwise had
201
+ knowledge of, the possibility of such damages at any time during the
202
+ project or thereafter. Each user will be deemed to have agreed to the
203
+ foregoing by his or her commencement of use of the program. The term
204
+ "use" as used herein includes, but is not limited to, the use,
205
+ modification, copying and distribution of the program and the
206
+ production of secondary products from the program.
207
+
208
+ In the case where the program, whether in its original form or
209
+ modified, was distributed or delivered to or received by a user from
210
+ any person, organization or entity other than ICOT, unless it makes or
211
+ grants independently of ICOT any specific warranty to the user in
212
+ writing, such person, organization or entity, will also be exempted
213
+ from and not be held liable to the user for any such damages as noted
214
+ above as far as the program is concerned.
215
+ ---
216
+
217
+ This product includes/uses software, Woodstox (http://woodstox.codehaus.org),
218
+ developed by Codehaus (http://www.codehaus.org/)
219
+ License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt)
220
+ =========================================================================
221
+ == Woodstox Notice ==
222
+ =========================================================================
223
+ This product currently only contains code developed by authors
224
+ of specific components, as identified by the source code files.
225
+
226
+ Since product implements StAX API, it has dependencies to StAX API
227
+ classes.
228
+
229
+ For additional credits (generally to people who reported problems)
230
+ see CREDITS file.
231
+ ---
232
+
233
+ This product includes software developed by Mort Bay Consulting
234
+ (specifically, Jetty 6.1.3, the bundled servlet container in example)
235
+ The jboss integration module is not included.
236
+ =========================================================================
237
+ == Jetty Notice ==
238
+ =========================================================================
239
+ ==============================================================
240
+ Jetty Web Container
241
+ Copyright 1995-2006 Mort Bay Consulting Pty Ltd
242
+ ==============================================================
243
+
244
+ This product includes some software developed at The Apache Software
245
+ Foundation (http://www.apache.org/).
246
+
247
+ The javax.servlet package used by Jetty is copyright
248
+ Sun Microsystems, Inc and Apache Software Foundation. It is
249
+ distributed under the Common Development and Distribution License.
250
+ You can obtain a copy of the license at
251
+ https://glassfish.dev.java.net/public/CDDLv1.0.html.
252
+
253
+ The UnixCrypt.java code ~Implements the one way cryptography used by
254
+ Unix systems for simple password protection. Copyright 1996 Aki Yoshida,
255
+ modified April 2001 by Iris Van den Broeke, Daniel Deville.
256
+
257
+ The default JSP implementation is provided by the Glassfish JSP engine
258
+ from project Glassfish http://glassfish.dev.java.net. Copyright 2005
259
+ Sun Microsystems, Inc. and portions Copyright Apache Software Foundation.
260
+
261
+ Some portions of the code are Copyright:
262
+ 2006 Tim Vernum
263
+ 1999 Jason Gilbert.
264
+
265
+ The jboss integration module contains some LGPL code.
266
+
267
+ =========================================================================
268
+ == SLF4J Notice -- http://www.slf4j.org/license.html ==
269
+ =========================================================================
270
+
271
+ Copyright (c) 2004-2008 QOS.ch
272
+ All rights reserved.
273
+
274
+ Permission is hereby granted, free of charge, to any person obtaining
275
+ a copy of this software and associated documentation files (the
276
+ "Software"), to deal in the Software without restriction, including
277
+ without limitation the rights to use, copy, modify, merge, publish,
278
+ distribute, sublicense, and/or sell copies of the Software, and to
279
+ permit persons to whom the Software is furnished to do so, subject to
280
+ the following conditions:
281
+
282
+ The above copyright notice and this permission notice shall be
283
+ included in all copies or substantial portions of the Software.
284
+
285
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
286
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
287
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
288
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
289
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
290
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
291
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
292
+
293
+ =========================================================================
294
+ == Apache Tika Notices ==
295
+ =========================================================================
296
+
297
+ The following notices apply to contrib/extraction:
298
+
299
+ This product includes software developed by the following copyright owners:
300
+
301
+ Copyright (c) 2000-2006 The Legion Of The Bouncy Castle
302
+ (http://www.bouncycastle.org)
303
+
304
+ Copyright (c) 2003-2005, www.pdfbox.org
305
+
306
+ Copyright (c) 2003-2005, www.fontbox.org
307
+
308
+ Copyright (c) 1995-2005 International Business Machines Corporation and others
309
+
310
+ Copyright (c) 2000-2005 INRIA, France Telecom
311
+
312
+ Copyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.
313
+
314
+ Copyright 2004 Sun Microsystems, Inc. (Rome JAR)
315
+
316
+ Copyright 2002-2008 by John Cowan (TagSoup -- http://ccil.org/~cowan/XML/tagsoup/)
317
+
318
+ =========================================================================
319
+ == Language Detection Notices ==
320
+ =========================================================================
321
+
322
+ The following notices apply to contrib/langid:
323
+
324
+ This product includes software developed by Cybozu Labs, Inc.
325
+ (c)2010 All rights reserved by Cybozu Labs, Inc.
326
+ http://code.google.com/p/language-detection/
327
+
328
+ This product includes software developed by the Jsonic project:
329
+ http://sourceforge.jp/projects/jsonic/
330
+
331
+ =========================================================================
332
+ == Carrot2 Notice ==
333
+ =========================================================================
334
+ Copyright (C) 2002-2010, Dawid Weiss, Stanislaw Osinski.
335
+ Portions (C) Contributors listed in "carrot2.CONTRIBUTORS" file.
336
+ All rights reserved.
337
+
338
+ This product includes software developed by the Carrot2 Project.
339
+
340
+ See http://project.carrot2.org/
341
+
342
+ =========================================================================
343
+ == Guava Notice ==
344
+ =========================================================================
345
+
346
+ Copyright (C) 2009 Google Inc.
347
+
348
+ This product includes software developed by the Google Guava project.
349
+
350
+ See http://code.google.com/p/guava-libraries/
351
+
352
+ =========================================================================
353
+ == Prettify Notice ==
354
+ =========================================================================
355
+
356
+ Copyright (C) 2009 Google Inc.
357
+
358
+ This product includes software developed by the Google Prettify project.
359
+
360
+ See http://code.google.com/p/google-code-prettify/
361
+
362
+ =========================================================================
363
+ == Jackson Notice ==
364
+ =========================================================================
365
+ Copyright 2010 FasterXML, LLC
366
+
367
+ This product includes software developed by the Jackson project.
368
+
369
+ See http://jackson.codehaus.org/
370
+
371
+ =========================================================================
372
+ == HSQLDB Notice ==
373
+ =========================================================================
374
+
375
+ For content, code, and products originally developed by Thomas Mueller and the Hypersonic SQL Group:
376
+
377
+ Copyright (c) 1995-2000 by the Hypersonic SQL Group.
378
+ All rights reserved.
379
+
380
+ Redistribution and use in source and binary forms, with or without
381
+ modification, are permitted provided that the following conditions are met:
382
+
383
+ Redistributions of source code must retain the above copyright notice, this
384
+ list of conditions and the following disclaimer.
385
+
386
+ Redistributions in binary form must reproduce the above copyright notice,
387
+ this list of conditions and the following disclaimer in the documentation
388
+ and/or other materials provided with the distribution.
389
+
390
+ Neither the name of the Hypersonic SQL Group nor the names of its
391
+ contributors may be used to endorse or promote products derived from this
392
+ software without specific prior written permission.
393
+
394
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
395
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
396
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
397
+ ARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL GROUP,
398
+ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
399
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
400
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
401
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
402
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
403
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
404
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
405
+
406
+ This software consists of voluntary contributions made by many individuals on behalf of the
407
+ Hypersonic SQL Group.
408
+
409
+ For work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt):
410
+
411
+ Copyright (c) 2001-2005, The HSQL Development Group
412
+ All rights reserved.
413
+
414
+ Redistribution and use in source and binary forms, with or without
415
+ modification, are permitted provided that the following conditions are met:
416
+
417
+ Redistributions of source code must retain the above copyright notice, this
418
+ list of conditions and the following disclaimer.
419
+
420
+ Redistributions in binary form must reproduce the above copyright notice,
421
+ this list of conditions and the following disclaimer in the documentation
422
+ and/or other materials provided with the distribution.
423
+
424
+ Neither the name of the HSQL Development Group nor the names of its
425
+ contributors may be used to endorse or promote products derived from this
426
+ software without specific prior written permission.
427
+
428
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
429
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
430
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
431
+ ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,
432
+ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
433
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
434
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
435
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
436
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
437
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
438
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.