propane 2.7.2-java → 2.8.0.pre-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +10 -0
  3. data/CHANGELOG.md +1 -1
  4. data/README.md +10 -8
  5. data/Rakefile +1 -1
  6. data/lib/propane/app.rb +3 -3
  7. data/lib/propane/version.rb +1 -1
  8. data/lib/{processing-core.jar → propane-2.8.0.jar} +0 -0
  9. data/library/control_panel/control_panel.rb +3 -2
  10. data/pom.rb +89 -88
  11. data/pom.xml +75 -46
  12. data/propane.gemspec +1 -2
  13. data/src/main/java/japplemenubar/JAppleMenuBar.java +88 -0
  14. data/src/main/java/japplemenubar/libjAppleMenuBar.jnilib +0 -0
  15. data/src/{monkstone → main/java/monkstone}/ColorUtil.java +0 -0
  16. data/src/{monkstone → main/java/monkstone}/MathToolModule.java +0 -0
  17. data/src/{monkstone → main/java/monkstone}/PropaneLibrary.java +0 -0
  18. data/src/{monkstone → main/java/monkstone}/core/LibraryProxy.java +0 -0
  19. data/src/{monkstone → main/java/monkstone}/fastmath/Deglut.java +0 -0
  20. data/src/{monkstone → main/java/monkstone}/fastmath/package-info.java +0 -0
  21. data/src/{monkstone → main/java/monkstone}/filechooser/Chooser.java +0 -0
  22. data/src/{monkstone → main/java/monkstone}/noise/SimplexNoise.java +0 -0
  23. data/src/{monkstone → main/java/monkstone}/slider/CustomHorizontalSlider.java +0 -0
  24. data/src/{monkstone → main/java/monkstone}/slider/CustomVerticalSlider.java +0 -0
  25. data/src/{monkstone → main/java/monkstone}/slider/SimpleHorizontalSlider.java +0 -0
  26. data/src/{monkstone → main/java/monkstone}/slider/SimpleSlider.java +0 -0
  27. data/src/{monkstone → main/java/monkstone}/slider/SimpleVerticalSlider.java +0 -0
  28. data/src/{monkstone → main/java/monkstone}/slider/Slider.java +0 -0
  29. data/src/{monkstone → main/java/monkstone}/slider/SliderBar.java +0 -0
  30. data/src/{monkstone → main/java/monkstone}/slider/SliderGroup.java +0 -0
  31. data/src/{monkstone → main/java/monkstone}/slider/WheelHandler.java +0 -0
  32. data/src/{monkstone → main/java/monkstone}/vecmath/AppRender.java +0 -0
  33. data/src/{monkstone → main/java/monkstone}/vecmath/JRender.java +0 -0
  34. data/src/{monkstone → main/java/monkstone}/vecmath/ShapeRender.java +0 -0
  35. data/src/{monkstone → main/java/monkstone}/vecmath/package-info.java +0 -0
  36. data/src/{monkstone → main/java/monkstone}/vecmath/vec2/Vec2.java +0 -0
  37. data/src/{monkstone → main/java/monkstone}/vecmath/vec2/package-info.java +0 -0
  38. data/src/{monkstone → main/java/monkstone}/vecmath/vec3/Vec3.java +0 -0
  39. data/src/{monkstone → main/java/monkstone}/vecmath/vec3/package-info.java +0 -0
  40. data/src/{monkstone → main/java/monkstone}/videoevent/VideoInterface.java +0 -0
  41. data/src/{monkstone → main/java/monkstone}/videoevent/package-info.java +0 -0
  42. data/src/main/java/processing/awt/PGraphicsJava2D.java +3029 -0
  43. data/src/main/java/processing/awt/PShapeJava2D.java +377 -0
  44. data/src/main/java/processing/awt/PSurfaceAWT.java +1567 -0
  45. data/src/main/java/processing/core/PApplet.java +15709 -0
  46. data/src/main/java/processing/core/PConstants.java +527 -0
  47. data/src/main/java/processing/core/PFont.java +1098 -0
  48. data/src/main/java/processing/core/PGraphics.java +8467 -0
  49. data/src/main/java/processing/core/PImage.java +3438 -0
  50. data/src/main/java/processing/core/PMatrix.java +208 -0
  51. data/src/main/java/processing/core/PMatrix2D.java +534 -0
  52. data/src/main/java/processing/core/PMatrix3D.java +877 -0
  53. data/src/main/java/processing/core/PShape.java +3445 -0
  54. data/src/main/java/processing/core/PShapeOBJ.java +469 -0
  55. data/src/main/java/processing/core/PShapeSVG.java +1787 -0
  56. data/src/main/java/processing/core/PStyle.java +63 -0
  57. data/src/main/java/processing/core/PSurface.java +161 -0
  58. data/src/main/java/processing/core/PSurfaceNone.java +374 -0
  59. data/src/main/java/processing/core/PVector.java +1063 -0
  60. data/src/main/java/processing/data/FloatDict.java +829 -0
  61. data/src/main/java/processing/data/FloatList.java +912 -0
  62. data/src/main/java/processing/data/IntDict.java +796 -0
  63. data/src/main/java/processing/data/IntList.java +913 -0
  64. data/src/main/java/processing/data/JSONArray.java +1260 -0
  65. data/src/main/java/processing/data/JSONObject.java +2282 -0
  66. data/src/main/java/processing/data/JSONTokener.java +435 -0
  67. data/src/main/java/processing/data/Sort.java +46 -0
  68. data/src/main/java/processing/data/StringDict.java +601 -0
  69. data/src/main/java/processing/data/StringList.java +775 -0
  70. data/src/main/java/processing/data/Table.java +4923 -0
  71. data/src/main/java/processing/data/TableRow.java +198 -0
  72. data/src/main/java/processing/data/XML.java +1149 -0
  73. data/src/main/java/processing/event/Event.java +125 -0
  74. data/src/main/java/processing/event/KeyEvent.java +70 -0
  75. data/src/main/java/processing/event/MouseEvent.java +149 -0
  76. data/src/main/java/processing/event/TouchEvent.java +57 -0
  77. data/src/main/java/processing/opengl/FontTexture.java +379 -0
  78. data/src/main/java/processing/opengl/FrameBuffer.java +503 -0
  79. data/src/main/java/processing/opengl/LinePath.java +623 -0
  80. data/src/main/java/processing/opengl/LineStroker.java +685 -0
  81. data/src/main/java/processing/opengl/PGL.java +3366 -0
  82. data/src/main/java/processing/opengl/PGraphics2D.java +615 -0
  83. data/src/main/java/processing/opengl/PGraphics3D.java +281 -0
  84. data/src/main/java/processing/opengl/PGraphicsOpenGL.java +13634 -0
  85. data/src/main/java/processing/opengl/PJOGL.java +1966 -0
  86. data/src/main/java/processing/opengl/PShader.java +1478 -0
  87. data/src/main/java/processing/opengl/PShapeOpenGL.java +5234 -0
  88. data/src/main/java/processing/opengl/PSurfaceJOGL.java +1315 -0
  89. data/src/main/java/processing/opengl/Texture.java +1670 -0
  90. data/src/main/java/processing/opengl/VertexBuffer.java +88 -0
  91. data/src/main/java/processing/opengl/cursors/arrow.png +0 -0
  92. data/src/main/java/processing/opengl/cursors/cross.png +0 -0
  93. data/src/main/java/processing/opengl/cursors/hand.png +0 -0
  94. data/src/main/java/processing/opengl/cursors/license.txt +27 -0
  95. data/src/main/java/processing/opengl/cursors/move.png +0 -0
  96. data/src/main/java/processing/opengl/cursors/text.png +0 -0
  97. data/src/main/java/processing/opengl/cursors/wait.png +0 -0
  98. data/src/main/java/processing/opengl/shaders/ColorFrag.glsl +32 -0
  99. data/src/main/java/processing/opengl/shaders/ColorVert.glsl +34 -0
  100. data/src/main/java/processing/opengl/shaders/LightFrag.glsl +33 -0
  101. data/src/main/java/processing/opengl/shaders/LightVert-vc4.glsl +154 -0
  102. data/src/main/java/processing/opengl/shaders/LightVert.glsl +151 -0
  103. data/src/main/java/processing/opengl/shaders/LineFrag.glsl +32 -0
  104. data/src/main/java/processing/opengl/shaders/LineVert.glsl +100 -0
  105. data/src/main/java/processing/opengl/shaders/MaskFrag.glsl +40 -0
  106. data/src/main/java/processing/opengl/shaders/PointFrag.glsl +32 -0
  107. data/src/main/java/processing/opengl/shaders/PointVert.glsl +56 -0
  108. data/src/main/java/processing/opengl/shaders/TexFrag.glsl +37 -0
  109. data/src/main/java/processing/opengl/shaders/TexLightFrag.glsl +37 -0
  110. data/src/main/java/processing/opengl/shaders/TexLightVert-vc4.glsl +160 -0
  111. data/src/main/java/processing/opengl/shaders/TexLightVert.glsl +157 -0
  112. data/src/main/java/processing/opengl/shaders/TexVert.glsl +38 -0
  113. data/src/main/resources/icon/icon-1024.png +0 -0
  114. data/src/main/resources/icon/icon-128.png +0 -0
  115. data/src/main/resources/icon/icon-16.png +0 -0
  116. data/src/main/resources/icon/icon-256.png +0 -0
  117. data/src/main/resources/icon/icon-32.png +0 -0
  118. data/src/main/resources/icon/icon-48.png +0 -0
  119. data/src/main/resources/icon/icon-512.png +0 -0
  120. data/src/main/resources/icon/icon-64.png +0 -0
  121. data/src/main/resources/license.txt +508 -0
  122. data/vendors/Rakefile +5 -20
  123. metadata +115 -33
  124. data/lib/propane.jar +0 -0
@@ -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
data/vendors/Rakefile CHANGED
@@ -10,12 +10,10 @@ SOUND_VERSION = 'v1.3.2' # version 1.3.2
10
10
  GLVIDEO = 'processing-glvideo.zip'
11
11
  VIDEO = 'video-2.zip'
12
12
  VIDEO_VERSION = '2' # version 1.0.1
13
- EXAMPLES = '2.3'.freeze
13
+ EXAMPLES = '2.1'.freeze
14
14
  HOME_DIR = ENV['HOME']
15
15
  MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
16
16
 
17
- CLOBBER.include(EXAMPLES, SOUND, GLVIDEO, VIDEO)
18
-
19
17
  desc 'download, and copy propane examples'
20
18
  task default: [:download_and_copy_samples]
21
19
 
@@ -35,13 +33,13 @@ file file_name do
35
33
  end
36
34
 
37
35
  desc 'download and copy sound library to ~/.propane'
38
- task download_and_copy_sound: [:init_dir, :download_sound, :copy_sound, :clobber]
36
+ task download_and_copy_sound: [:download_sound, :copy_sound]
39
37
 
40
38
  desc 'download and copy video library to ~/.propane'
41
- task download_and_copy_video: [:init_dir, :download_video, :copy_video, :clobber]
39
+ task download_and_copy_video: [:download_video, :copy_video]
42
40
 
43
41
  desc 'download and copy glvideo library to ~/.propane'
44
- task download_and_copy_glvideo: [:init_dir, :download_glvideo, :copy_glvideo, :clobber]
42
+ task download_and_copy_glvideo: [:download_glvideo, :copy_glvideo]
45
43
 
46
44
 
47
45
  desc 'download sound library'
@@ -77,15 +75,6 @@ task :download_video do
77
75
  end
78
76
  end
79
77
 
80
- desc 'initialize ~/.propane directories'
81
- task :init_dir do
82
- unless File.exist? "#{HOME_DIR}/.propane/libraries"
83
- sh "mkdir -p ~/.propane"
84
- sh "mkdir -p ~/.propane/libraries"
85
- end
86
- end
87
-
88
-
89
78
  desc 'copy examples'
90
79
  task :copy_examples => file_name do
91
80
  if MAC_OR_LINUX.nil?
@@ -100,13 +89,10 @@ end
100
89
 
101
90
  desc 'copy sound library'
102
91
  task :copy_sound => SOUND do
103
- directory "~/.propane"
104
- directory "~/.propane/libraries"
105
92
  sh "unzip #{SOUND}"
106
93
  sh "rm -r #{HOME_DIR}/.propane/libraries/sound" if File.exist? "#{HOME_DIR}/.propane/libraries/sound"
107
- sh "cp -r sound #{HOME_DIR}/.propane/libraries"
94
+ sh "cp -r sound #{HOME_DIR}/.propane/libraries/sound"
108
95
  sh 'rm -r sound'
109
- sh 'rm -r __MACOSX'
110
96
  end
111
97
 
112
98
  desc 'copy video library'
@@ -119,7 +105,6 @@ end
119
105
 
120
106
  desc 'copy glvideo library'
121
107
  task :copy_glvideo => GLVIDEO do
122
- directory "~/.propane/libraries/glvideo"
123
108
  sh "unzip #{GLVIDEO}"
124
109
  sh "rm -r #{HOME_DIR}/.propane/libraries/glvideo" if File.exist? "#{HOME_DIR}/.propane/libraries/glvideo"
125
110
  sh "cp -r glvideo #{HOME_DIR}/.propane/libraries/glvideo"