picrate 0.0.2-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +47 -0
- data/.mvn/extensions.xml +9 -0
- data/.mvn/wrapper/maven-wrapper.properties +1 -0
- data/.travis.yml +10 -0
- data/CHANGELOG.md +4 -0
- data/LICENSE.md +165 -0
- data/README.md +51 -0
- data/Rakefile +59 -0
- data/bin/picrate +8 -0
- data/docs/.gitignore +6 -0
- data/docs/_config.yml +30 -0
- data/docs/_includes/footer.html +38 -0
- data/docs/_includes/head.html +16 -0
- data/docs/_includes/header.html +27 -0
- data/docs/_includes/icon-github.html +1 -0
- data/docs/_includes/icon-github.svg +1 -0
- data/docs/_includes/icon-twitter.html +1 -0
- data/docs/_includes/icon-twitter.svg +1 -0
- data/docs/_includes/navigation.html +24 -0
- data/docs/_layouts/default.html +20 -0
- data/docs/_layouts/page.html +14 -0
- data/docs/_layouts/post.html +15 -0
- data/docs/_posts/2018-05-06-getting_started.md +8 -0
- data/docs/_posts/2018-05-06-install_jruby.md +35 -0
- data/docs/_sass/_base.scss +206 -0
- data/docs/_sass/_layout.scss +242 -0
- data/docs/_sass/_syntax-highlighting.scss +71 -0
- data/docs/about.md +10 -0
- data/docs/css/main.scss +38 -0
- data/docs/favicon.ico +0 -0
- data/docs/feed.xml +30 -0
- data/docs/index.html +38 -0
- data/lib/picrate.rb +10 -0
- data/lib/picrate/app.rb +187 -0
- data/lib/picrate/creators/sketch_class.rb +57 -0
- data/lib/picrate/creators/sketch_factory.rb +12 -0
- data/lib/picrate/creators/sketch_writer.rb +21 -0
- data/lib/picrate/helper_methods.rb +214 -0
- data/lib/picrate/helpers/numeric.rb +9 -0
- data/lib/picrate/library.rb +69 -0
- data/lib/picrate/library_loader.rb +53 -0
- data/lib/picrate/native_folder.rb +35 -0
- data/lib/picrate/native_loader.rb +27 -0
- data/lib/picrate/runner.rb +81 -0
- data/lib/picrate/version.rb +4 -0
- data/library/boids/boids.rb +209 -0
- data/library/chooser/chooser.rb +19 -0
- data/library/control_panel/control_panel.rb +182 -0
- data/library/library_proxy/README.md +99 -0
- data/library/library_proxy/library_proxy.rb +14 -0
- data/library/slider/slider.rb +42 -0
- data/library/vector_utils/vector_utils.rb +69 -0
- data/library/video_event/video_event.rb +3 -0
- data/license.txt +508 -0
- data/picrate.gemspec +35 -0
- data/pom.rb +122 -0
- data/pom.xml +214 -0
- data/src/main/java/japplemenubar/JAppleMenuBar.java +88 -0
- data/src/main/java/japplemenubar/libjAppleMenuBar.jnilib +0 -0
- data/src/main/java/monkstone/ColorUtil.java +115 -0
- data/src/main/java/monkstone/MathToolModule.java +236 -0
- data/src/main/java/monkstone/PicrateLibrary.java +47 -0
- data/src/main/java/monkstone/core/LibraryProxy.java +127 -0
- data/src/main/java/monkstone/fastmath/Deglut.java +122 -0
- data/src/main/java/monkstone/fastmath/package-info.java +6 -0
- data/src/main/java/monkstone/filechooser/Chooser.java +48 -0
- data/src/main/java/monkstone/noise/SimplexNoise.java +465 -0
- data/src/main/java/monkstone/slider/CustomHorizontalSlider.java +168 -0
- data/src/main/java/monkstone/slider/CustomVerticalSlider.java +182 -0
- data/src/main/java/monkstone/slider/SimpleHorizontalSlider.java +149 -0
- data/src/main/java/monkstone/slider/SimpleSlider.java +196 -0
- data/src/main/java/monkstone/slider/SimpleVerticalSlider.java +163 -0
- data/src/main/java/monkstone/slider/Slider.java +67 -0
- data/src/main/java/monkstone/slider/SliderBar.java +277 -0
- data/src/main/java/monkstone/slider/SliderGroup.java +78 -0
- data/src/main/java/monkstone/slider/WheelHandler.java +35 -0
- data/src/main/java/monkstone/vecmath/AppRender.java +87 -0
- data/src/main/java/monkstone/vecmath/JRender.java +56 -0
- data/src/main/java/monkstone/vecmath/ShapeRender.java +87 -0
- data/src/main/java/monkstone/vecmath/package-info.java +20 -0
- data/src/main/java/monkstone/vecmath/vec2/Vec2.java +757 -0
- data/src/main/java/monkstone/vecmath/vec2/package-info.java +6 -0
- data/src/main/java/monkstone/vecmath/vec3/Vec3.java +727 -0
- data/src/main/java/monkstone/vecmath/vec3/package-info.java +6 -0
- data/src/main/java/monkstone/videoevent/VideoInterface.java +42 -0
- data/src/main/java/monkstone/videoevent/package-info.java +20 -0
- data/src/main/java/processing/awt/PGraphicsJava2D.java +3098 -0
- data/src/main/java/processing/awt/PShapeJava2D.java +401 -0
- data/src/main/java/processing/awt/PSurfaceAWT.java +1660 -0
- data/src/main/java/processing/core/PApplet.java +17647 -0
- data/src/main/java/processing/core/PConstants.java +1033 -0
- data/src/main/java/processing/core/PFont.java +1250 -0
- data/src/main/java/processing/core/PGraphics.java +9614 -0
- data/src/main/java/processing/core/PImage.java +3608 -0
- data/src/main/java/processing/core/PMatrix.java +347 -0
- data/src/main/java/processing/core/PMatrix2D.java +694 -0
- data/src/main/java/processing/core/PMatrix3D.java +1153 -0
- data/src/main/java/processing/core/PShape.java +4332 -0
- data/src/main/java/processing/core/PShapeOBJ.java +544 -0
- data/src/main/java/processing/core/PShapeSVG.java +1987 -0
- data/src/main/java/processing/core/PStyle.java +208 -0
- data/src/main/java/processing/core/PSurface.java +242 -0
- data/src/main/java/processing/core/PSurfaceNone.java +479 -0
- data/src/main/java/processing/core/PVector.java +1140 -0
- data/src/main/java/processing/data/FloatDict.java +829 -0
- data/src/main/java/processing/data/FloatList.java +912 -0
- data/src/main/java/processing/data/IntDict.java +796 -0
- data/src/main/java/processing/data/IntList.java +913 -0
- data/src/main/java/processing/data/JSONArray.java +1260 -0
- data/src/main/java/processing/data/JSONObject.java +2282 -0
- data/src/main/java/processing/data/JSONTokener.java +435 -0
- data/src/main/java/processing/data/Sort.java +46 -0
- data/src/main/java/processing/data/StringDict.java +601 -0
- data/src/main/java/processing/data/StringList.java +775 -0
- data/src/main/java/processing/data/Table.java +4923 -0
- data/src/main/java/processing/data/TableRow.java +198 -0
- data/src/main/java/processing/data/XML.java +1149 -0
- data/src/main/java/processing/event/Event.java +108 -0
- data/src/main/java/processing/event/KeyEvent.java +70 -0
- data/src/main/java/processing/event/MouseEvent.java +149 -0
- data/src/main/java/processing/event/TouchEvent.java +57 -0
- data/src/main/java/processing/javafx/PGraphicsFX2D.java +354 -0
- data/src/main/java/processing/opengl/FontTexture.java +379 -0
- data/src/main/java/processing/opengl/FrameBuffer.java +503 -0
- data/src/main/java/processing/opengl/LinePath.java +623 -0
- data/src/main/java/processing/opengl/LineStroker.java +685 -0
- data/src/main/java/processing/opengl/PGL.java +3366 -0
- data/src/main/java/processing/opengl/PGraphics2D.java +615 -0
- data/src/main/java/processing/opengl/PGraphics3D.java +281 -0
- data/src/main/java/processing/opengl/PGraphicsOpenGL.java +13634 -0
- data/src/main/java/processing/opengl/PJOGL.java +1966 -0
- data/src/main/java/processing/opengl/PShader.java +1478 -0
- data/src/main/java/processing/opengl/PShapeOpenGL.java +5234 -0
- data/src/main/java/processing/opengl/PSurfaceJOGL.java +1315 -0
- data/src/main/java/processing/opengl/Texture.java +1670 -0
- data/src/main/java/processing/opengl/VertexBuffer.java +88 -0
- data/src/main/java/processing/opengl/cursors/arrow.png +0 -0
- data/src/main/java/processing/opengl/cursors/cross.png +0 -0
- data/src/main/java/processing/opengl/cursors/hand.png +0 -0
- data/src/main/java/processing/opengl/cursors/license.txt +27 -0
- data/src/main/java/processing/opengl/cursors/move.png +0 -0
- data/src/main/java/processing/opengl/cursors/text.png +0 -0
- data/src/main/java/processing/opengl/cursors/wait.png +0 -0
- data/src/main/java/processing/opengl/shaders/ColorFrag.glsl +32 -0
- data/src/main/java/processing/opengl/shaders/ColorVert.glsl +34 -0
- data/src/main/java/processing/opengl/shaders/LightFrag.glsl +33 -0
- data/src/main/java/processing/opengl/shaders/LightVert-vc4.glsl +154 -0
- data/src/main/java/processing/opengl/shaders/LightVert.glsl +151 -0
- data/src/main/java/processing/opengl/shaders/LineFrag.glsl +32 -0
- data/src/main/java/processing/opengl/shaders/LineVert.glsl +100 -0
- data/src/main/java/processing/opengl/shaders/MaskFrag.glsl +40 -0
- data/src/main/java/processing/opengl/shaders/PointFrag.glsl +32 -0
- data/src/main/java/processing/opengl/shaders/PointVert.glsl +56 -0
- data/src/main/java/processing/opengl/shaders/TexFrag.glsl +37 -0
- data/src/main/java/processing/opengl/shaders/TexLightFrag.glsl +37 -0
- data/src/main/java/processing/opengl/shaders/TexLightVert-vc4.glsl +160 -0
- data/src/main/java/processing/opengl/shaders/TexLightVert.glsl +157 -0
- data/src/main/java/processing/opengl/shaders/TexVert.glsl +38 -0
- data/src/main/resources/icon/icon-1024.png +0 -0
- data/src/main/resources/icon/icon-128.png +0 -0
- data/src/main/resources/icon/icon-16.png +0 -0
- data/src/main/resources/icon/icon-256.png +0 -0
- data/src/main/resources/icon/icon-32.png +0 -0
- data/src/main/resources/icon/icon-48.png +0 -0
- data/src/main/resources/icon/icon-512.png +0 -0
- data/src/main/resources/icon/icon-64.png +0 -0
- data/src/main/resources/license.txt +508 -0
- data/test/create_test.rb +68 -0
- data/test/deglut_spec_test.rb +24 -0
- data/test/helper_methods_test.rb +58 -0
- data/test/math_tool_test.rb +75 -0
- data/test/respond_to_test.rb +215 -0
- data/test/sketches/key_event.rb +37 -0
- data/test/sketches/library/my_library/my_library.rb +32 -0
- data/test/test_helper.rb +3 -0
- data/test/vecmath_spec_test.rb +522 -0
- data/vendors/Rakefile +127 -0
- metadata +289 -0
@@ -0,0 +1,99 @@
|
|
1
|
+
### Using the LibraryProxy in your sketches
|
2
|
+
LibraryProxy is a [abstract java class](https://github.com/ruby-processing/JRubyArt/blob/master/src/monkstone/core/LibraryProxy.java) so that you can acccess vanilla processing library reflection methods in your sketches using ruby.
|
3
|
+
|
4
|
+
In the sketch you should `load_library :library_proxy` and your library class should inherit
|
5
|
+
from LibraryProxy and implement pre(), draw() and post() methods (can be empty method if not
|
6
|
+
required). For simplicity initialize your `processing library` in the sketch `setup`.
|
7
|
+
|
8
|
+
### Example library
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
require 'forwardable'
|
12
|
+
|
13
|
+
# A custom Array created using forwardable (that can also access the PApplet pre,
|
14
|
+
# post and draw loops by extending our new LibraryProxy class. Also has access
|
15
|
+
# to custom background(int), fill(int) and stroke(int) methods.
|
16
|
+
class CustomArray < LibraryProxy
|
17
|
+
extend Forwardable
|
18
|
+
def_delegators(:@objs, :each, :<<)
|
19
|
+
include Enumerable
|
20
|
+
|
21
|
+
attr_reader :app
|
22
|
+
|
23
|
+
# We must initialize class with the PApplet instance
|
24
|
+
def initialize(app)
|
25
|
+
@app = app
|
26
|
+
@objs = []
|
27
|
+
end
|
28
|
+
|
29
|
+
def add_object(mx, my, x, y, speed)
|
30
|
+
self << Particle.new(x.to_i, y.to_i, mx, my, Sketch::UNIT, speed, 1, 1)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Access the processing post loop (gets called after draw)
|
34
|
+
def post
|
35
|
+
each do |obj|
|
36
|
+
update_x obj
|
37
|
+
next unless obj.y >= Sketch::UNIT || obj.x <= 0
|
38
|
+
obj.ydir *= -1
|
39
|
+
obj.y += obj.ydir
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def update_x(obj)
|
44
|
+
obj.x += obj.speed * obj.xdir
|
45
|
+
return if (0..Sketch::UNIT).cover? obj.x
|
46
|
+
obj.xdir *= -1
|
47
|
+
obj.x += obj.xdir
|
48
|
+
obj.y += obj.ydir
|
49
|
+
end
|
50
|
+
|
51
|
+
# We need this to fulfill the contract of implementing abstract methods of
|
52
|
+
# LibraryProxy which is an alias for Java::ProcessingCore::AbstractLibrary
|
53
|
+
def pre
|
54
|
+
end
|
55
|
+
|
56
|
+
# Access the processing draw loop here, using our custom background and fill
|
57
|
+
# note: use of 'app' to access ellipse functionality as would otherwise be
|
58
|
+
# required for background and fill
|
59
|
+
def draw
|
60
|
+
background(0)
|
61
|
+
fill(255)
|
62
|
+
each do |obj|
|
63
|
+
app.ellipse(obj.mx + obj.x, obj.my + obj.y, 6, 6)
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
# The Particle object
|
69
|
+
|
70
|
+
Particle = Struct.new(:x, :y, :mx, :my, :size, :speed, :xdir, :ydir)
|
71
|
+
```
|
72
|
+
### Example sketch
|
73
|
+
|
74
|
+
```ruby
|
75
|
+
# A minimalist sketch that demonstrates a possible approach to creating a custom
|
76
|
+
# array of objects using forwardable. Also demonstrates how to use LibraryProxy.
|
77
|
+
|
78
|
+
load_library :library_proxy # loads the JRubyArt LibraryProxy abstract class
|
79
|
+
require_relative 'custom_array' # loads our custom 'library' class
|
80
|
+
|
81
|
+
UNIT = 40
|
82
|
+
|
83
|
+
def setup
|
84
|
+
size 640, 360
|
85
|
+
wide_count = width / UNIT
|
86
|
+
height_count = height / UNIT
|
87
|
+
custom_array = CustomArray.new(self)
|
88
|
+
height_count.times do |i|
|
89
|
+
wide_count.times do |j|
|
90
|
+
custom_array.add_object(j * UNIT, i * UNIT, UNIT / 2, UNIT / 2, rand(0.05..0.8))
|
91
|
+
end
|
92
|
+
end
|
93
|
+
no_stroke
|
94
|
+
end
|
95
|
+
|
96
|
+
# does nothing here see custom_array.rb
|
97
|
+
def draw
|
98
|
+
end
|
99
|
+
```
|
@@ -0,0 +1,14 @@
|
|
1
|
+
java_import Java::MonkstoneCore::LibraryProxy
|
2
|
+
java_import Java::ProcessingEvent::KeyEvent
|
3
|
+
java_import Java::ProcessingEvent::MouseEvent
|
4
|
+
|
5
|
+
# classes that inherit from LibraryProxy are expected to implement
|
6
|
+
# the abstract draw method of monkstone.core.LibraryProxy the other methods are
|
7
|
+
# registered with PApplet instance in constructor ImplementingClass.new(app)
|
8
|
+
#
|
9
|
+
# def pre... NOOP can be overridden
|
10
|
+
# def draw... Abstract Method should be implemented NOOP is OK
|
11
|
+
# def post... NOOP can be overridden
|
12
|
+
# def keyEvent(e)... NOOP can be overridden
|
13
|
+
# def mouseEvent(e)... NOOP can be overridden
|
14
|
+
# `app` can be called to get PApplet instance
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Here's a little library for quickly hooking up in sketch sliders.
|
3
|
+
# Copyright (c) 2016-18 Martin Prout.
|
4
|
+
|
5
|
+
java_import 'monkstone.slider.CustomHorizontalSlider'
|
6
|
+
java_import 'monkstone.slider.CustomVerticalSlider'
|
7
|
+
|
8
|
+
module Slider
|
9
|
+
def self.slider(app:, x:, y:, name:, **opts)
|
10
|
+
options = default.merge opts
|
11
|
+
if options[:vertical]
|
12
|
+
slider = CustomVerticalSlider.new(
|
13
|
+
app,
|
14
|
+
x,
|
15
|
+
y,
|
16
|
+
options[:length],
|
17
|
+
options[:range].first,
|
18
|
+
options[:range].last,
|
19
|
+
name
|
20
|
+
)
|
21
|
+
else
|
22
|
+
slider = CustomHorizontalSlider.new(
|
23
|
+
app,
|
24
|
+
x,
|
25
|
+
y,
|
26
|
+
options[:length],
|
27
|
+
options[:range].first,
|
28
|
+
options[:range].last,
|
29
|
+
name
|
30
|
+
)
|
31
|
+
end
|
32
|
+
unless opts.empty?
|
33
|
+
slider.bar_width(opts.fetch(:bar_width, 10))
|
34
|
+
slider.set_value(opts.fetch(:initial_value, 0))
|
35
|
+
end
|
36
|
+
slider
|
37
|
+
end
|
38
|
+
|
39
|
+
def self.default
|
40
|
+
{ length: 100, range: (0..100) }
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
PHI ||= (1 + Math.sqrt(5)) / 2 # golden ratio
|
2
|
+
GA = PHI * 2 * Math::PI # golden angle
|
3
|
+
|
4
|
+
# Useful Vector Utiliies
|
5
|
+
module VectorUtil
|
6
|
+
def self.rotate_vec2d(vectors: [], angle: 0)
|
7
|
+
vectors.map { |vector| vector.rotate(angle) }
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.vogel_layout(number:, node_size:)
|
11
|
+
(0..number).map do |i|
|
12
|
+
r = Math.sqrt(i)
|
13
|
+
theta = i * ((2 * Math::PI) / (PHI * PHI))
|
14
|
+
x = Math.cos(theta) * r * node_size
|
15
|
+
y = Math.sin(theta) * r * node_size
|
16
|
+
Vec2D.new(x, y)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.fibonacci_sphere(number:, radius:)
|
21
|
+
(0..number).map do |i|
|
22
|
+
lon = GA * i
|
23
|
+
lon /= 2 * Math::PI
|
24
|
+
lon -= lon.floor
|
25
|
+
lon *= 2 * Math::PI
|
26
|
+
lon -= 2 * Math::PI if lon > Math::PI
|
27
|
+
lat = Math.asin(-1 + 2 * i / number.to_f)
|
28
|
+
x = radius * Math.cos(lat) * Math.cos(lon)
|
29
|
+
y = radius * Math.cos(lat) * Math.sin(lon)
|
30
|
+
z = radius * Math.sin(lat)
|
31
|
+
Vec3D.new(x, y, z)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.spiral_layout(number:, radius:, resolution:, spacing:, inc:)
|
36
|
+
n = 0
|
37
|
+
angle = nil
|
38
|
+
(0..number).map do
|
39
|
+
angle = n * resolution
|
40
|
+
n += inc
|
41
|
+
radius -= angle * spacing
|
42
|
+
x = Math.cos(angle) * radius
|
43
|
+
y = Math.sin(angle) * radius
|
44
|
+
Vec2D.new(x, y)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.cartesian_to_polar(vec:)
|
49
|
+
res = Vec3D.new(vec.mag, 0, 0)
|
50
|
+
return Vec3D.new unless res.x > 0
|
51
|
+
res.y = -Math.atan2(vec.z, vec.x)
|
52
|
+
res.z = Math.asin(vec.y / res.x)
|
53
|
+
res
|
54
|
+
end
|
55
|
+
|
56
|
+
def self.to_cartesian(lat:, long:, radius:)
|
57
|
+
latitude = lat
|
58
|
+
longitude = long
|
59
|
+
x = radius * Math.cos(latitude) * Math.cos(longitude)
|
60
|
+
y = radius * Math.cos(latitude) * Math.sin(longitude)
|
61
|
+
z = radius * Math.sin(latitude)
|
62
|
+
Vec3D.new(x, y, z)
|
63
|
+
end
|
64
|
+
|
65
|
+
def self.polar_to_cartesian(vec:)
|
66
|
+
return Vec3D.new if vec.mag <= 0
|
67
|
+
Vec3D.new(Math.asin(vec.y / vec.mag), vec.mag, -Math.atan2(vec.z, vec.x))
|
68
|
+
end
|
69
|
+
end
|
data/license.txt
ADDED
@@ -0,0 +1,508 @@
|
|
1
|
+
We use GPL v2 for the parts of the project that we've developed ourselves.
|
2
|
+
For the 'core' library, it's LGPL, for everything else, it's GPL.
|
3
|
+
|
4
|
+
Over the course of many years of development, files being moved around,
|
5
|
+
and other code being added and removed, the license information has become
|
6
|
+
quite a mess. Please help us clean this up so that others are properly
|
7
|
+
credited and licenses are consistently/correctly noted:
|
8
|
+
https://github.com/processing/processing/issues/224
|
9
|
+
|
10
|
+
|
11
|
+
.....................................................................
|
12
|
+
|
13
|
+
|
14
|
+
GNU GENERAL PUBLIC LICENSE
|
15
|
+
Version 2, June 1991
|
16
|
+
|
17
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
18
|
+
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
|
+
Everyone is permitted to copy and distribute verbatim copies
|
20
|
+
of this license document, but changing it is not allowed.
|
21
|
+
|
22
|
+
Preamble
|
23
|
+
|
24
|
+
The licenses for most software are designed to take away your
|
25
|
+
freedom to share and change it. By contrast, the GNU General Public
|
26
|
+
License is intended to guarantee your freedom to share and change free
|
27
|
+
software--to make sure the software is free for all its users. This
|
28
|
+
General Public License applies to most of the Free Software
|
29
|
+
Foundation's software and to any other program whose authors commit to
|
30
|
+
using it. (Some other Free Software Foundation software is covered by
|
31
|
+
the GNU Library General Public License instead.) You can apply it to
|
32
|
+
your programs, too.
|
33
|
+
|
34
|
+
When we speak of free software, we are referring to freedom, not
|
35
|
+
price. Our General Public Licenses are designed to make sure that you
|
36
|
+
have the freedom to distribute copies of free software (and charge for
|
37
|
+
this service if you wish), that you receive source code or can get it
|
38
|
+
if you want it, that you can change the software or use pieces of it
|
39
|
+
in new free programs; and that you know you can do these things.
|
40
|
+
|
41
|
+
To protect your rights, we need to make restrictions that forbid
|
42
|
+
anyone to deny you these rights or to ask you to surrender the rights.
|
43
|
+
These restrictions translate to certain responsibilities for you if you
|
44
|
+
distribute copies of the software, or if you modify it.
|
45
|
+
|
46
|
+
For example, if you distribute copies of such a program, whether
|
47
|
+
gratis or for a fee, you must give the recipients all the rights that
|
48
|
+
you have. You must make sure that they, too, receive or can get the
|
49
|
+
source code. And you must show them these terms so they know their
|
50
|
+
rights.
|
51
|
+
|
52
|
+
We protect your rights with two steps: (1) copyright the software, and
|
53
|
+
(2) offer you this license which gives you legal permission to copy,
|
54
|
+
distribute and/or modify the software.
|
55
|
+
|
56
|
+
Also, for each author's protection and ours, we want to make certain
|
57
|
+
that everyone understands that there is no warranty for this free
|
58
|
+
software. If the software is modified by someone else and passed on, we
|
59
|
+
want its recipients to know that what they have is not the original, so
|
60
|
+
that any problems introduced by others will not reflect on the original
|
61
|
+
authors' reputations.
|
62
|
+
|
63
|
+
Finally, any free program is threatened constantly by software
|
64
|
+
patents. We wish to avoid the danger that redistributors of a free
|
65
|
+
program will individually obtain patent licenses, in effect making the
|
66
|
+
program proprietary. To prevent this, we have made it clear that any
|
67
|
+
patent must be licensed for everyone's free use or not licensed at all.
|
68
|
+
|
69
|
+
The precise terms and conditions for copying, distribution and
|
70
|
+
modification follow.
|
71
|
+
|
72
|
+
GNU GENERAL PUBLIC LICENSE
|
73
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
74
|
+
|
75
|
+
0. This License applies to any program or other work which contains
|
76
|
+
a notice placed by the copyright holder saying it may be distributed
|
77
|
+
under the terms of this General Public License. The "Program", below,
|
78
|
+
refers to any such program or work, and a "work based on the Program"
|
79
|
+
means either the Program or any derivative work under copyright law:
|
80
|
+
that is to say, a work containing the Program or a portion of it,
|
81
|
+
either verbatim or with modifications and/or translated into another
|
82
|
+
language. (Hereinafter, translation is included without limitation in
|
83
|
+
the term "modification".) Each licensee is addressed as "you".
|
84
|
+
|
85
|
+
Activities other than copying, distribution and modification are not
|
86
|
+
covered by this License; they are outside its scope. The act of
|
87
|
+
running the Program is not restricted, and the output from the Program
|
88
|
+
is covered only if its contents constitute a work based on the
|
89
|
+
Program (independent of having been made by running the Program).
|
90
|
+
Whether that is true depends on what the Program does.
|
91
|
+
|
92
|
+
1. You may copy and distribute verbatim copies of the Program's
|
93
|
+
source code as you receive it, in any medium, provided that you
|
94
|
+
conspicuously and appropriately publish on each copy an appropriate
|
95
|
+
copyright notice and disclaimer of warranty; keep intact all the
|
96
|
+
notices that refer to this License and to the absence of any warranty;
|
97
|
+
and give any other recipients of the Program a copy of this License
|
98
|
+
along with the Program.
|
99
|
+
|
100
|
+
You may charge a fee for the physical act of transferring a copy, and
|
101
|
+
you may at your option offer warranty protection in exchange for a fee.
|
102
|
+
|
103
|
+
2. You may modify your copy or copies of the Program or any portion
|
104
|
+
of it, thus forming a work based on the Program, and copy and
|
105
|
+
distribute such modifications or work under the terms of Section 1
|
106
|
+
above, provided that you also meet all of these conditions:
|
107
|
+
|
108
|
+
a) You must cause the modified files to carry prominent notices
|
109
|
+
stating that you changed the files and the date of any change.
|
110
|
+
|
111
|
+
b) You must cause any work that you distribute or publish, that in
|
112
|
+
whole or in part contains or is derived from the Program or any
|
113
|
+
part thereof, to be licensed as a whole at no charge to all third
|
114
|
+
parties under the terms of this License.
|
115
|
+
|
116
|
+
c) If the modified program normally reads commands interactively
|
117
|
+
when run, you must cause it, when started running for such
|
118
|
+
interactive use in the most ordinary way, to print or display an
|
119
|
+
announcement including an appropriate copyright notice and a
|
120
|
+
notice that there is no warranty (or else, saying that you provide
|
121
|
+
a warranty) and that users may redistribute the program under
|
122
|
+
these conditions, and telling the user how to view a copy of this
|
123
|
+
License. (Exception: if the Program itself is interactive but
|
124
|
+
does not normally print such an announcement, your work based on
|
125
|
+
the Program is not required to print an announcement.)
|
126
|
+
|
127
|
+
These requirements apply to the modified work as a whole. If
|
128
|
+
identifiable sections of that work are not derived from the Program,
|
129
|
+
and can be reasonably considered independent and separate works in
|
130
|
+
themselves, then this License, and its terms, do not apply to those
|
131
|
+
sections when you distribute them as separate works. But when you
|
132
|
+
distribute the same sections as part of a whole which is a work based
|
133
|
+
on the Program, the distribution of the whole must be on the terms of
|
134
|
+
this License, whose permissions for other licensees extend to the
|
135
|
+
entire whole, and thus to each and every part regardless of who wrote it.
|
136
|
+
|
137
|
+
Thus, it is not the intent of this section to claim rights or contest
|
138
|
+
your rights to work written entirely by you; rather, the intent is to
|
139
|
+
exercise the right to control the distribution of derivative or
|
140
|
+
collective works based on the Program.
|
141
|
+
|
142
|
+
In addition, mere aggregation of another work not based on the Program
|
143
|
+
with the Program (or with a work based on the Program) on a volume of
|
144
|
+
a storage or distribution medium does not bring the other work under
|
145
|
+
the scope of this License.
|
146
|
+
|
147
|
+
3. You may copy and distribute the Program (or a work based on it,
|
148
|
+
under Section 2) in object code or executable form under the terms of
|
149
|
+
Sections 1 and 2 above provided that you also do one of the following:
|
150
|
+
|
151
|
+
a) Accompany it with the complete corresponding machine-readable
|
152
|
+
source code, which must be distributed under the terms of Sections
|
153
|
+
1 and 2 above on a medium customarily used for software interchange; or,
|
154
|
+
|
155
|
+
b) Accompany it with a written offer, valid for at least three
|
156
|
+
years, to give any third party, for a charge no more than your
|
157
|
+
cost of physically performing source distribution, a complete
|
158
|
+
machine-readable copy of the corresponding source code, to be
|
159
|
+
distributed under the terms of Sections 1 and 2 above on a medium
|
160
|
+
customarily used for software interchange; or,
|
161
|
+
|
162
|
+
c) Accompany it with the information you received as to the offer
|
163
|
+
to distribute corresponding source code. (This alternative is
|
164
|
+
allowed only for noncommercial distribution and only if you
|
165
|
+
received the program in object code or executable form with such
|
166
|
+
an offer, in accord with Subsection b above.)
|
167
|
+
|
168
|
+
The source code for a work means the preferred form of the work for
|
169
|
+
making modifications to it. For an executable work, complete source
|
170
|
+
code means all the source code for all modules it contains, plus any
|
171
|
+
associated interface definition files, plus the scripts used to
|
172
|
+
control compilation and installation of the executable. However, as a
|
173
|
+
special exception, the source code distributed need not include
|
174
|
+
anything that is normally distributed (in either source or binary
|
175
|
+
form) with the major components (compiler, kernel, and so on) of the
|
176
|
+
operating system on which the executable runs, unless that component
|
177
|
+
itself accompanies the executable.
|
178
|
+
|
179
|
+
If distribution of executable or object code is made by offering
|
180
|
+
access to copy from a designated place, then offering equivalent
|
181
|
+
access to copy the source code from the same place counts as
|
182
|
+
distribution of the source code, even though third parties are not
|
183
|
+
compelled to copy the source along with the object code.
|
184
|
+
|
185
|
+
4. You may not copy, modify, sublicense, or distribute the Program
|
186
|
+
except as expressly provided under this License. Any attempt
|
187
|
+
otherwise to copy, modify, sublicense or distribute the Program is
|
188
|
+
void, and will automatically terminate your rights under this License.
|
189
|
+
However, parties who have received copies, or rights, from you under
|
190
|
+
this License will not have their licenses terminated so long as such
|
191
|
+
parties remain in full compliance.
|
192
|
+
|
193
|
+
5. You are not required to accept this License, since you have not
|
194
|
+
signed it. However, nothing else grants you permission to modify or
|
195
|
+
distribute the Program or its derivative works. These actions are
|
196
|
+
prohibited by law if you do not accept this License. Therefore, by
|
197
|
+
modifying or distributing the Program (or any work based on the
|
198
|
+
Program), you indicate your acceptance of this License to do so, and
|
199
|
+
all its terms and conditions for copying, distributing or modifying
|
200
|
+
the Program or works based on it.
|
201
|
+
|
202
|
+
6. Each time you redistribute the Program (or any work based on the
|
203
|
+
Program), the recipient automatically receives a license from the
|
204
|
+
original licensor to copy, distribute or modify the Program subject to
|
205
|
+
these terms and conditions. You may not impose any further
|
206
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
207
|
+
You are not responsible for enforcing compliance by third parties to
|
208
|
+
this License.
|
209
|
+
|
210
|
+
7. If, as a consequence of a court judgment or allegation of patent
|
211
|
+
infringement or for any other reason (not limited to patent issues),
|
212
|
+
conditions are imposed on you (whether by court order, agreement or
|
213
|
+
otherwise) that contradict the conditions of this License, they do not
|
214
|
+
excuse you from the conditions of this License. If you cannot
|
215
|
+
distribute so as to satisfy simultaneously your obligations under this
|
216
|
+
License and any other pertinent obligations, then as a consequence you
|
217
|
+
may not distribute the Program at all. For example, if a patent
|
218
|
+
license would not permit royalty-free redistribution of the Program by
|
219
|
+
all those who receive copies directly or indirectly through you, then
|
220
|
+
the only way you could satisfy both it and this License would be to
|
221
|
+
refrain entirely from distribution of the Program.
|
222
|
+
|
223
|
+
If any portion of this section is held invalid or unenforceable under
|
224
|
+
any particular circumstance, the balance of the section is intended to
|
225
|
+
apply and the section as a whole is intended to apply in other
|
226
|
+
circumstances.
|
227
|
+
|
228
|
+
It is not the purpose of this section to induce you to infringe any
|
229
|
+
patents or other property right claims or to contest validity of any
|
230
|
+
such claims; this section has the sole purpose of protecting the
|
231
|
+
integrity of the free software distribution system, which is
|
232
|
+
implemented by public license practices. Many people have made
|
233
|
+
generous contributions to the wide range of software distributed
|
234
|
+
through that system in reliance on consistent application of that
|
235
|
+
system; it is up to the author/donor to decide if he or she is willing
|
236
|
+
to distribute software through any other system and a licensee cannot
|
237
|
+
impose that choice.
|
238
|
+
|
239
|
+
This section is intended to make thoroughly clear what is believed to
|
240
|
+
be a consequence of the rest of this License.
|
241
|
+
|
242
|
+
8. If the distribution and/or use of the Program is restricted in
|
243
|
+
certain countries either by patents or by copyrighted interfaces, the
|
244
|
+
original copyright holder who places the Program under this License
|
245
|
+
may add an explicit geographical distribution limitation excluding
|
246
|
+
those countries, so that distribution is permitted only in or among
|
247
|
+
countries not thus excluded. In such case, this License incorporates
|
248
|
+
the limitation as if written in the body of this License.
|
249
|
+
|
250
|
+
9. The Free Software Foundation may publish revised and/or new versions
|
251
|
+
of the General Public License from time to time. Such new versions will
|
252
|
+
be similar in spirit to the present version, but may differ in detail to
|
253
|
+
address new problems or concerns.
|
254
|
+
|
255
|
+
Each version is given a distinguishing version number. If the Program
|
256
|
+
specifies a version number of this License which applies to it and "any
|
257
|
+
later version", you have the option of following the terms and conditions
|
258
|
+
either of that version or of any later version published by the Free
|
259
|
+
Software Foundation. If the Program does not specify a version number of
|
260
|
+
this License, you may choose any version ever published by the Free Software
|
261
|
+
Foundation.
|
262
|
+
|
263
|
+
10. If you wish to incorporate parts of the Program into other free
|
264
|
+
programs whose distribution conditions are different, write to the author
|
265
|
+
to ask for permission. For software which is copyrighted by the Free
|
266
|
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
267
|
+
make exceptions for this. Our decision will be guided by the two goals
|
268
|
+
of preserving the free status of all derivatives of our free software and
|
269
|
+
of promoting the sharing and reuse of software generally.
|
270
|
+
|
271
|
+
NO WARRANTY
|
272
|
+
|
273
|
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
274
|
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
275
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
276
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
277
|
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
278
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
279
|
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
280
|
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
281
|
+
REPAIR OR CORRECTION.
|
282
|
+
|
283
|
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
284
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
285
|
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
286
|
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
287
|
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
288
|
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
289
|
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
290
|
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
291
|
+
POSSIBILITY OF SUCH DAMAGES.
|
292
|
+
|
293
|
+
|
294
|
+
.....................................................................
|
295
|
+
|
296
|
+
|
297
|
+
the original document can be found at:
|
298
|
+
http://oss.software.ibm.com/developerworks/opensource/license10.html
|
299
|
+
|
300
|
+
|
301
|
+
IBM Public License Version 1.0
|
302
|
+
|
303
|
+
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM
|
304
|
+
PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF
|
305
|
+
THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
|
306
|
+
|
307
|
+
|
308
|
+
1. DEFINITIONS
|
309
|
+
|
310
|
+
"Contribution" means:
|
311
|
+
|
312
|
+
a) in the case of International Business Machines Corporation ("IBM"),
|
313
|
+
the Original Program, and
|
314
|
+
|
315
|
+
b) in the case of each Contributor,
|
316
|
+
|
317
|
+
i) changes to the Program, and
|
318
|
+
|
319
|
+
ii) additions to the Program;
|
320
|
+
where such changes and/or additions to the Program originate from and
|
321
|
+
are distributed by that particular Contributor. A Contribution
|
322
|
+
'originates' from a Contributor if it was added to the Program by such
|
323
|
+
Contributor itself or anyone acting on such Contributor's
|
324
|
+
behalf. Contributions do not include additions to the Program which:
|
325
|
+
(i) are separate modules of software distributed in conjunction with
|
326
|
+
the Program under their own license agreement, and (ii) are not
|
327
|
+
derivative works of the Program.
|
328
|
+
|
329
|
+
"Contributor" means IBM and any other entity that distributes the
|
330
|
+
Program.
|
331
|
+
|
332
|
+
"Licensed Patents " mean patent claims licensable by a Contributor
|
333
|
+
which are necessarily infringed by the use or sale of its Contribution
|
334
|
+
alone or when combined with the Program.
|
335
|
+
|
336
|
+
|
337
|
+
"Original Program" means the original version of the software
|
338
|
+
accompanying this Agreement as released by IBM, including source code,
|
339
|
+
object code and documentation, if any.
|
340
|
+
|
341
|
+
"Program" means the Original Program and Contributions.
|
342
|
+
|
343
|
+
"Recipient" means anyone who receives the Program under this
|
344
|
+
Agreement, including all Contributors.
|
345
|
+
|
346
|
+
|
347
|
+
2. GRANT OF RIGHTS
|
348
|
+
|
349
|
+
a) Subject to the terms of this Agreement, each Contributor hereby
|
350
|
+
grants Recipient a non-exclusive, worldwide, royalty-free copyright
|
351
|
+
license to reproduce, prepare derivative works of, publicly display,
|
352
|
+
publicly perform, distribute and sublicense the Contribution of such
|
353
|
+
Contributor, if any, and such derivative works, in source code and
|
354
|
+
object code form.
|
355
|
+
|
356
|
+
b) Subject to the terms of this Agreement, each Contributor hereby
|
357
|
+
grants Recipient a non-exclusive, worldwide, royalty-free patent
|
358
|
+
license under Licensed Patents to make, use, sell, offer to sell,
|
359
|
+
import and otherwise transfer the Contribution of such Contributor, if
|
360
|
+
any, in source code and object code form. This patent license shall
|
361
|
+
apply to the combination of the Contribution and the Program if, at
|
362
|
+
the time the Contribution is added by the Contributor, such addition
|
363
|
+
of the Contribution causes such combination to be covered by the
|
364
|
+
Licensed Patents. The patent license shall not apply to any other
|
365
|
+
combinations which include the Contribution. No hardware per se is
|
366
|
+
licensed hereunder.
|
367
|
+
|
368
|
+
c) Recipient understands that although each Contributor grants the
|
369
|
+
licenses to its Contributions set forth herein, no assurances are
|
370
|
+
provided by any Contributor that the Program does not infringe the
|
371
|
+
patent or other intellectual property rights of any other entity. Each
|
372
|
+
Contributor disclaims any liability to Recipient for claims brought by
|
373
|
+
any other entity based on infringement of intellectual property rights
|
374
|
+
or otherwise. As a condition to exercising the rights and licenses
|
375
|
+
granted hereunder, each Recipient hereby assumes sole responsibility
|
376
|
+
to secure any other intellectual property rights needed, if any. For
|
377
|
+
example, if a third party patent license is required to allow
|
378
|
+
Recipient to distribute the Program, it is Recipient's responsibility
|
379
|
+
to acquire that license before distributing the Program.
|
380
|
+
|
381
|
+
d) Each Contributor represents that to its knowledge it has sufficient
|
382
|
+
copyright rights in its Contribution, if any, to grant the copyright
|
383
|
+
license set forth in this Agreement.
|
384
|
+
|
385
|
+
|
386
|
+
3. REQUIREMENTS
|
387
|
+
|
388
|
+
A Contributor may choose to distribute the Program in object code form
|
389
|
+
under its own license agreement, provided that:
|
390
|
+
|
391
|
+
a) it complies with the terms and conditions of this Agreement; and
|
392
|
+
|
393
|
+
b) its license agreement:
|
394
|
+
|
395
|
+
i) effectively disclaims on behalf of all Contributors all warranties
|
396
|
+
and conditions, express and implied, including warranties or
|
397
|
+
conditions of title and non-infringement, and implied warranties or
|
398
|
+
conditions of merchantability and fitness for a particular purpose;
|
399
|
+
|
400
|
+
ii) effectively excludes on behalf of all Contributors all liability
|
401
|
+
for damages, including direct, indirect, special, incidental and
|
402
|
+
consequential damages, such as lost profits;
|
403
|
+
|
404
|
+
iii) states that any provisions which differ from this Agreement are
|
405
|
+
offered by that Contributor alone and not by any other party; and
|
406
|
+
|
407
|
+
iv) states that source code for the Program is available from such
|
408
|
+
Contributor, and informs licensees how to obtain it in a reasonable
|
409
|
+
manner on or through a medium customarily used for software exchange.
|
410
|
+
|
411
|
+
When the Program is made available in source code form:
|
412
|
+
a) it must be made available under this Agreement; and
|
413
|
+
b) a copy of this Agreement must be included with each copy of the
|
414
|
+
Program.
|
415
|
+
|
416
|
+
Each Contributor must include the following in a conspicuous location
|
417
|
+
in the Program:
|
418
|
+
|
419
|
+
Copyright 2003, International Business Machines Corporation and
|
420
|
+
others. All Rights Reserved.
|
421
|
+
|
422
|
+
In addition, each Contributor must identify itself as the originator
|
423
|
+
of its Contribution, if any, in a manner that reasonably allows
|
424
|
+
subsequent Recipients to identify the originator of the Contribution.
|
425
|
+
|
426
|
+
|
427
|
+
4. COMMERCIAL DISTRIBUTION
|
428
|
+
|
429
|
+
Commercial distributors of software may accept certain
|
430
|
+
responsibilities with respect to end users, business partners and the
|
431
|
+
like. While this license is intended to facilitate the commercial use
|
432
|
+
of the Program, the Contributor who includes the Program in a
|
433
|
+
commercial product offering should do so in a manner which does not
|
434
|
+
create potential liability for other Contributors. Therefore, if a
|
435
|
+
Contributor includes the Program in a commercial product offering,
|
436
|
+
such Contributor ("Commercial Contributor") hereby agrees to defend
|
437
|
+
and indemnify every other Contributor ("Indemnified Contributor")
|
438
|
+
against any losses, damages and costs (collectively "Losses") arising
|
439
|
+
from claims, lawsuits and other legal actions brought by a third party
|
440
|
+
against the Indemnified Contributor to the extent caused by the acts
|
441
|
+
or omissions of such Commercial Contributor in connection with its
|
442
|
+
distribution of the Program in a commercial product offering. The
|
443
|
+
obligations in this section do not apply to any claims or Losses
|
444
|
+
relating to any actual or alleged intellectual property
|
445
|
+
infringement. In order to qualify, an Indemnified Contributor must: a)
|
446
|
+
promptly notify the Commercial Contributor in writing of such claim,
|
447
|
+
and b) allow the Commercial Contributor to control, and cooperate with
|
448
|
+
the Commercial Contributor in, the defense and any related settlement
|
449
|
+
negotiations. The Indemnified Contributor may participate in any such
|
450
|
+
claim at its own expense.
|
451
|
+
|
452
|
+
For example, a Contributor might include the Program in a commercial
|
453
|
+
product offering, Product X. That Contributor is then a Commercial
|
454
|
+
Contributor. If that Commercial Contributor then makes performance
|
455
|
+
claims, or offers warranties related to Product X, those performance
|
456
|
+
claims and warranties are such Commercial Contributor's responsibility
|
457
|
+
alone. Under this section, the Commercial Contributor would have to
|
458
|
+
defend claims against the other Contributors related to those
|
459
|
+
performance claims and warranties, and if a court requires any other
|
460
|
+
Contributor to pay any damages as a result, the Commercial Contributor
|
461
|
+
must pay those damages.
|
462
|
+
|
463
|
+
|
464
|
+
5. NO WARRANTY
|
465
|
+
|
466
|
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
|
467
|
+
PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
468
|
+
KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
|
469
|
+
WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
|
470
|
+
OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
|
471
|
+
responsible for determining the appropriateness of using and
|
472
|
+
distributing the Program and assumes all risks associated with its
|
473
|
+
exercise of rights under this Agreement, including but not limited to
|
474
|
+
the risks and costs of program errors, compliance with applicable
|
475
|
+
laws, damage to or loss of data, programs or equipment, and
|
476
|
+
unavailability or interruption of operations.
|
477
|
+
|
478
|
+
|
479
|
+
6. DISCLAIMER OF LIABILITY
|
480
|
+
|
481
|
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR
|
482
|
+
ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
|
483
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
|
484
|
+
WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
|
485
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
486
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
|
487
|
+
DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
|
488
|
+
HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
489
|
+
|
490
|
+
|
491
|
+
7. GENERAL
|
492
|
+
|
493
|
+
If any provision of this Agreement is invalid or unenforceable under
|
494
|
+
applicable law, it shall not affect the validity or enforceability of
|
495
|
+
the remainder of the terms of this Agreement, and without further
|
496
|
+
action by the parties hereto, such provision shall be reformed to the
|
497
|
+
minimum extent necessary to make such provision valid and
|
498
|
+
enforceable.
|
499
|
+
|
500
|
+
If Recipient institutes patent litigation against a Contributor with
|
501
|
+
respect to a patent applicable to software (including a cross-claim or
|
502
|
+
counterclaim in a lawsuit), then any patent licenses granted by that
|
503
|
+
Contributor to such Recipient under this Agreement shall terminate as
|
504
|
+
of the date such litigation is filed. In addition, If Recipient
|
505
|
+
institutes patent litigation against any entity (including a
|
506
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Program
|
507
|
+
itself (excluding combinations of the Program with other software or
|
508
|
+
hardware
|