mama_search 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/.gitignore +5 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +119 -0
  4. data/LICENSE +20 -0
  5. data/README.md +46 -0
  6. data/Rakefile +7 -0
  7. data/cucumber.yml +8 -0
  8. data/features/rails_generator.feature +10 -0
  9. data/features/rake_tasks.feature +12 -0
  10. data/features/step_definitions/elasticsearch_steps.rb +5 -0
  11. data/features/step_definitions/rails_steps.rb +38 -0
  12. data/features/support/aruba.rb +1 -0
  13. data/features/support/hooks.rb +3 -0
  14. data/lib/mama_search.rb +5 -0
  15. data/lib/mama_search/generators/USAGE +12 -0
  16. data/lib/mama_search/generators/install_generator.rb +32 -0
  17. data/lib/mama_search/generators/templates/elasticsearch.app.yml +5 -0
  18. data/lib/mama_search/generators/templates/elasticsearch.in.sh +41 -0
  19. data/lib/mama_search/generators/templates/elasticsearch.rb +5 -0
  20. data/lib/mama_search/generators/templates/elasticsearch.yml +0 -0
  21. data/lib/mama_search/generators/templates/logging.yml +29 -0
  22. data/lib/mama_search/tasks.rb +8 -0
  23. data/lib/mama_search/version.rb +3 -0
  24. data/mama_search.gemspec +28 -0
  25. data/vendor/elasticsearch-0.14.2/LICENSE.txt +537 -0
  26. data/vendor/elasticsearch-0.14.2/NOTICE.txt +12 -0
  27. data/vendor/elasticsearch-0.14.2/README.textile +219 -0
  28. data/vendor/elasticsearch-0.14.2/bin/elasticsearch +180 -0
  29. data/vendor/elasticsearch-0.14.2/bin/elasticsearch.bat +37 -0
  30. data/vendor/elasticsearch-0.14.2/bin/elasticsearch.in.sh +41 -0
  31. data/vendor/elasticsearch-0.14.2/bin/plugin +33 -0
  32. data/vendor/elasticsearch-0.14.2/bin/plugin.bat +25 -0
  33. data/vendor/elasticsearch-0.14.2/config/elasticsearch.yml +0 -0
  34. data/vendor/elasticsearch-0.14.2/config/logging.yml +29 -0
  35. data/vendor/elasticsearch-0.14.2/lib/elasticsearch-0.14.2.jar +0 -0
  36. data/vendor/elasticsearch-0.14.2/lib/jline-0.9.94.jar +0 -0
  37. data/vendor/elasticsearch-0.14.2/lib/jna-3.2.7.jar +0 -0
  38. data/vendor/elasticsearch-0.14.2/lib/log4j-1.2.15.jar +0 -0
  39. data/vendor/elasticsearch-0.14.2/lib/lucene-analyzers-3.0.3.jar +0 -0
  40. data/vendor/elasticsearch-0.14.2/lib/lucene-core-3.0.3.jar +0 -0
  41. data/vendor/elasticsearch-0.14.2/lib/lucene-fast-vector-highlighter-3.0.3.jar +0 -0
  42. data/vendor/elasticsearch-0.14.2/lib/lucene-highlighter-3.0.3.jar +0 -0
  43. data/vendor/elasticsearch-0.14.2/lib/lucene-memory-3.0.3.jar +0 -0
  44. data/vendor/elasticsearch-0.14.2/lib/lucene-queries-3.0.3.jar +0 -0
  45. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-amd64-linux.so +0 -0
  46. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-amd64-solaris.so +0 -0
  47. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-sparc-solaris.so +0 -0
  48. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-sparc64-solaris.so +0 -0
  49. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-universal-macosx.dylib +0 -0
  50. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-universal64-macosx.dylib +0 -0
  51. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-x86-freebsd-5.so +0 -0
  52. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-x86-freebsd-6.so +0 -0
  53. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-x86-linux.so +0 -0
  54. data/vendor/elasticsearch-0.14.2/lib/sigar/libsigar-x86-solaris.so +0 -0
  55. data/vendor/elasticsearch-0.14.2/lib/sigar/sigar-1.6.3.jar +0 -0
  56. data/vendor/elasticsearch-0.14.2/lib/sigar/sigar-amd64-winnt.dll +0 -0
  57. data/vendor/elasticsearch-0.14.2/lib/sigar/sigar-x86-winnt.dll +0 -0
  58. data/vendor/elasticsearch-0.14.2/lib/sigar/sigar-x86-winnt.lib +0 -0
  59. metadata +218 -0
@@ -0,0 +1,3 @@
1
+ module MamaSearch
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,28 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "mama_search/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "mama_search"
7
+ s.version = MamaSearch::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Grant Rodgers"]
10
+ s.email = ["grantr@gmail.com"]
11
+ s.homepage = "http://github.com/grantr/mama_search"
12
+ s.summary = %q{Rails 3 generator and rake tasks to install, start and interact with elasticsearch}
13
+ s.description = %q{Rails 3 generator and rake tasks to install, start and interact with elasticsearch}
14
+
15
+ s.rubyforge_project = "mama_search"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ s.add_dependency 'rails', '~> 3.0'
22
+ s.add_dependency 'rake'
23
+ s.add_dependency 'rubberband'
24
+ s.add_development_dependency 'cucumber'
25
+ s.add_development_dependency 'aruba'
26
+ s.add_development_dependency 'rspec'
27
+ s.add_development_dependency 'sqlite3-ruby'
28
+ end
@@ -0,0 +1,537 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
203
+
204
+
205
+ APACHE CASSANDRA THIRD-PARTY DEPENDENCIES
206
+
207
+ Apache Cassandra includes convenience copies of a number of third-party
208
+ dependencies that have separate copyright notices and license terms. Your
209
+ use of these libraries is subject to the terms and conditions of the
210
+ following licenses.
211
+
212
+ For lib/flexjson-1.7.jar and lib/google-collect-1.0-rc1.jar:
213
+
214
+ While developed outside the ASF, these projects are also licensed under
215
+ the Apache License 2.0. The full text of the Apache License 2.0 can be
216
+ found at top of this file.
217
+
218
+ See NOTICE.txt for the respective copyright notices of these libraries.
219
+
220
+
221
+ For lib/antlr-3.1.3.jar:
222
+ ------------------------
223
+
224
+ [The "BSD licence"]
225
+ Copyright (c) 2003-2006 Terence Parr
226
+ All rights reserved.
227
+
228
+ Redistribution and use in source and binary forms, with or without
229
+ modification, are permitted provided that the following conditions
230
+ are met:
231
+
232
+ 1. Redistributions of source code must retain the above copyright
233
+ notice, this list of conditions and the following disclaimer.
234
+ 2. Redistributions in binary form must reproduce the above copyright
235
+ notice, this list of conditions and the following disclaimer in the
236
+ documentation and/or other materials provided with the distribution.
237
+ 3. The name of the author may not be used to endorse or promote products
238
+ derived from this software without specific prior written permission.
239
+
240
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
241
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
242
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
243
+ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
244
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
245
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
247
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
248
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
249
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
250
+
251
+
252
+ For lib/high-scale-lib.jar:
253
+ ---------------------------
254
+
255
+ The person or persons who have associated work with this document (the
256
+ "Dedicator" or "Certifier") hereby either (a) certifies that, to the best
257
+ of his knowledge, the work of authorship identified is in the public
258
+ domain of the country from which the work is published, or (b) hereby
259
+ dedicates whatever copyright the dedicators holds in the work of
260
+ authorship identified below (the "Work") to the public domain. A
261
+ certifier, moreover, dedicates any copyright interest he may have in the
262
+ associated work, and for these purposes, is described as a "dedicator"
263
+ below.
264
+
265
+ A certifier has taken reasonable steps to verify the copyright status of
266
+ this work. Certifier recognizes that his good faith efforts may not
267
+ shield him from liability if in fact the work certified is not in the
268
+ public domain.
269
+
270
+ Dedicator makes this dedication for the benefit of the public at large and
271
+ to the detriment of the Dedicator's heirs and successors. Dedicator
272
+ intends this dedication to be an overt act of relinquishment in perpetuity
273
+ of all present and future rights under copyright law, whether vested or
274
+ contingent, in the Work. Dedicator understands that such relinquishment of
275
+ all rights includes the relinquishment of all rights to enforce (by
276
+ lawsuit or otherwise) those copyrights in the Work.
277
+
278
+ Dedicator recognizes that, once placed in the public domain, the Work may
279
+ be freely reproduced, distributed, transmitted, used, modified, built
280
+ upon, or otherwise exploited by anyone for any purpose, commercial or
281
+ non-commercial, and in any way, including by methods that have not yet
282
+ been invented or conceived.
283
+
284
+
285
+ For lib/jline-0.9.94.jar:
286
+ -------------------------
287
+
288
+ Copyright (c) 2002-2006, Marc Prud'hommeaux <mwp1@cornell.edu>
289
+ All rights reserved.
290
+
291
+ Redistribution and use in source and binary forms, with or
292
+ without modification, are permitted provided that the following
293
+ conditions are met:
294
+
295
+ Redistributions of source code must retain the above copyright
296
+ notice, this list of conditions and the following disclaimer.
297
+
298
+ Redistributions in binary form must reproduce the above copyright
299
+ notice, this list of conditions and the following disclaimer
300
+ in the documentation and/or other materials provided with
301
+ the distribution.
302
+
303
+ Neither the name of JLine nor the names of its contributors
304
+ may be used to endorse or promote products derived from this
305
+ software without specific prior written permission.
306
+
307
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
308
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
309
+ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
310
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
311
+ EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
312
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
313
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
314
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
315
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
316
+ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
317
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
318
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
319
+ OF THE POSSIBILITY OF SUCH DAMAGE.
320
+
321
+
322
+ For lib/junit-4.6.jar:
323
+ ----------------------
324
+
325
+ Common Public License Version 1.0
326
+
327
+ THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC
328
+ LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
329
+ CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
330
+
331
+ 1. DEFINITIONS
332
+
333
+ "Contribution" means:
334
+
335
+ a) in the case of the initial Contributor, the initial code and
336
+ documentation distributed under this Agreement, and
337
+
338
+ b) in the case of each subsequent Contributor:
339
+
340
+ i) changes to the Program, and
341
+
342
+ ii) additions to the Program;
343
+
344
+ where such changes and/or additions to the Program originate from and are
345
+ distributed by that particular Contributor. A Contribution 'originates' from a
346
+ Contributor if it was added to the Program by such Contributor itself or anyone
347
+ acting on such Contributor's behalf. Contributions do not include additions to
348
+ the Program which: (i) are separate modules of software distributed in
349
+ conjunction with the Program under their own license agreement, and (ii) are not
350
+ derivative works of the Program.
351
+
352
+ "Contributor" means any person or entity that distributes the Program.
353
+
354
+ "Licensed Patents " mean patent claims licensable by a Contributor which are
355
+ necessarily infringed by the use or sale of its Contribution alone or when
356
+ combined with the Program.
357
+
358
+ "Program" means the Contributions distributed in accordance with this Agreement.
359
+
360
+ "Recipient" means anyone who receives the Program under this Agreement,
361
+ including all Contributors.
362
+
363
+ 2. GRANT OF RIGHTS
364
+
365
+ a) Subject to the terms of this Agreement, each Contributor hereby grants
366
+ Recipient a non-exclusive, worldwide, royalty-free copyright license to
367
+ reproduce, prepare derivative works of, publicly display, publicly perform,
368
+ distribute and sublicense the Contribution of such Contributor, if any, and such
369
+ derivative works, in source code and object code form.
370
+
371
+ b) Subject to the terms of this Agreement, each Contributor hereby grants
372
+ Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed
373
+ Patents to make, use, sell, offer to sell, import and otherwise transfer the
374
+ Contribution of such Contributor, if any, in source code and object code form.
375
+ This patent license shall apply to the combination of the Contribution and the
376
+ Program if, at the time the Contribution is added by the Contributor, such
377
+ addition of the Contribution causes such combination to be covered by the
378
+ Licensed Patents. The patent license shall not apply to any other combinations
379
+ which include the Contribution. No hardware per se is licensed hereunder.
380
+
381
+ c) Recipient understands that although each Contributor grants the licenses
382
+ to its Contributions set forth herein, no assurances are provided by any
383
+ Contributor that the Program does not infringe the patent or other intellectual
384
+ property rights of any other entity. Each Contributor disclaims any liability to
385
+ Recipient for claims brought by any other entity based on infringement of
386
+ intellectual property rights or otherwise. As a condition to exercising the
387
+ rights and licenses granted hereunder, each Recipient hereby assumes sole
388
+ responsibility to secure any other intellectual property rights needed, if any.
389
+ For example, if a third party patent license is required to allow Recipient to
390
+ distribute the Program, it is Recipient's responsibility to acquire that license
391
+ before distributing the Program.
392
+
393
+ d) Each Contributor represents that to its knowledge it has sufficient
394
+ copyright rights in its Contribution, if any, to grant the copyright license set
395
+ forth in this Agreement.
396
+
397
+ 3. REQUIREMENTS
398
+
399
+ A Contributor may choose to distribute the Program in object code form under its
400
+ own license agreement, provided that:
401
+
402
+ a) it complies with the terms and conditions of this Agreement; and
403
+
404
+ b) its license agreement:
405
+
406
+ i) effectively disclaims on behalf of all Contributors all warranties and
407
+ conditions, express and implied, including warranties or conditions of title and
408
+ non-infringement, and implied warranties or conditions of merchantability and
409
+ fitness for a particular purpose;
410
+
411
+ ii) effectively excludes on behalf of all Contributors all liability for
412
+ damages, including direct, indirect, special, incidental and consequential
413
+ damages, such as lost profits;
414
+
415
+ iii) states that any provisions which differ from this Agreement are offered
416
+ by that Contributor alone and not by any other party; and
417
+
418
+ iv) states that source code for the Program is available from such
419
+ Contributor, and informs licensees how to obtain it in a reasonable manner on or
420
+ through a medium customarily used for software exchange.
421
+
422
+ When the Program is made available in source code form:
423
+
424
+ a) it must be made available under this Agreement; and
425
+
426
+ b) a copy of this Agreement must be included with each copy of the Program.
427
+
428
+ Contributors may not remove or alter any copyright notices contained within the
429
+ Program.
430
+
431
+ Each Contributor must identify itself as the originator of its Contribution, if
432
+ any, in a manner that reasonably allows subsequent Recipients to identify the
433
+ originator of the Contribution.
434
+
435
+ 4. COMMERCIAL DISTRIBUTION
436
+
437
+ Commercial distributors of software may accept certain responsibilities with
438
+ respect to end users, business partners and the like. While this license is
439
+ intended to facilitate the commercial use of the Program, the Contributor who
440
+ includes the Program in a commercial product offering should do so in a manner
441
+ which does not create potential liability for other Contributors. Therefore, if
442
+ a Contributor includes the Program in a commercial product offering, such
443
+ Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
444
+ every other Contributor ("Indemnified Contributor") against any losses, damages
445
+ and costs (collectively "Losses") arising from claims, lawsuits and other legal
446
+ actions brought by a third party against the Indemnified Contributor to the
447
+ extent caused by the acts or omissions of such Commercial Contributor in
448
+ connection with its distribution of the Program in a commercial product
449
+ offering. The obligations in this section do not apply to any claims or Losses
450
+ relating to any actual or alleged intellectual property infringement. In order
451
+ to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
452
+ Contributor in writing of such claim, and b) allow the Commercial Contributor to
453
+ control, and cooperate with the Commercial Contributor in, the defense and any
454
+ related settlement negotiations. The Indemnified Contributor may participate in
455
+ any such claim at its own expense.
456
+
457
+ For example, a Contributor might include the Program in a commercial product
458
+ offering, Product X. That Contributor is then a Commercial Contributor. If that
459
+ Commercial Contributor then makes performance claims, or offers warranties
460
+ related to Product X, those performance claims and warranties are such
461
+ Commercial Contributor's responsibility alone. Under this section, the
462
+ Commercial Contributor would have to defend claims against the other
463
+ Contributors related to those performance claims and warranties, and if a court
464
+ requires any other Contributor to pay any damages as a result, the Commercial
465
+ Contributor must pay those damages.
466
+
467
+ 5. NO WARRANTY
468
+
469
+ EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
470
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
471
+ IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
472
+ NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
473
+ Recipient is solely responsible for determining the appropriateness of using and
474
+ distributing the Program and assumes all risks associated with its exercise of
475
+ rights under this Agreement, including but not limited to the risks and costs of
476
+ program errors, compliance with applicable laws, damage to or loss of data,
477
+ programs or equipment, and unavailability or interruption of operations.
478
+
479
+ 6. DISCLAIMER OF LIABILITY
480
+
481
+ EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
482
+ CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
483
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
484
+ PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
485
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
486
+ OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
487
+ GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
488
+
489
+ 7. GENERAL
490
+
491
+ If any provision of this Agreement is invalid or unenforceable under applicable
492
+ law, it shall not affect the validity or enforceability of the remainder of the
493
+ terms of this Agreement, and without further action by the parties hereto, such
494
+ provision shall be reformed to the minimum extent necessary to make such
495
+ provision valid and enforceable.
496
+
497
+ If Recipient institutes patent litigation against a Contributor with respect to
498
+ a patent applicable to software (including a cross-claim or counterclaim in a
499
+ lawsuit), then any patent licenses granted by that Contributor to such Recipient
500
+ under this Agreement shall terminate as of the date such litigation is filed. In
501
+ addition, if Recipient institutes patent litigation against any entity
502
+ (including a cross-claim or counterclaim in a lawsuit) alleging that the Program
503
+ itself (excluding combinations of the Program with other software or hardware)
504
+ infringes such Recipient's patent(s), then such Recipient's rights granted under
505
+ Section 2(b) shall terminate as of the date such litigation is filed.
506
+
507
+ All Recipient's rights under this Agreement shall terminate if it fails to
508
+ comply with any of the material terms or conditions of this Agreement and does
509
+ not cure such failure in a reasonable period of time after becoming aware of
510
+ such noncompliance. If all Recipient's rights under this Agreement terminate,
511
+ Recipient agrees to cease use and distribution of the Program as soon as
512
+ reasonably practicable. However, Recipient's obligations under this Agreement
513
+ and any licenses granted by Recipient relating to the Program shall continue and
514
+ survive.
515
+
516
+ Everyone is permitted to copy and distribute copies of this Agreement, but in
517
+ order to avoid inconsistency the Agreement is copyrighted and may only be
518
+ modified in the following manner. The Agreement Steward reserves the right to
519
+ publish new versions (including revisions) of this Agreement from time to time.
520
+ No one other than the Agreement Steward has the right to modify this Agreement.
521
+ IBM is the initial Agreement Steward. IBM may assign the responsibility to serve
522
+ as the Agreement Steward to a suitable separate entity. Each new version of the
523
+ Agreement will be given a distinguishing version number. The Program (including
524
+ Contributions) may always be distributed subject to the version of the Agreement
525
+ under which it was received. In addition, after a new version of the Agreement
526
+ is published, Contributor may elect to distribute the Program (including its
527
+ Contributions) under the new version. Except as expressly stated in Sections
528
+ 2(a) and 2(b) above, Recipient receives no rights or licenses to the
529
+ intellectual property of any Contributor under this Agreement, whether
530
+ expressly, by implication, estoppel or otherwise. All rights in the Program not
531
+ expressly granted under this Agreement are reserved.
532
+
533
+ This Agreement is governed by the laws of the State of New York and the
534
+ intellectual property laws of the United States of America. No party to this
535
+ Agreement will bring a legal action under this Agreement more than one year
536
+ after the cause of action arose. Each party waives its rights to a jury trial in
537
+ any resulting litigation.