zyps 0.2.1 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. data/README.txt +0 -14
  2. data/bin/zyps +240 -28
  3. data/bin/zyps_demo +18 -2
  4. data/doc/classes/Behavior.html +205 -0
  5. data/doc/classes/Behavior.src/M000003.html +18 -0
  6. data/doc/classes/Behavior.src/M000004.html +19 -0
  7. data/doc/classes/Clock.html +165 -0
  8. data/doc/classes/Clock.src/M000026.html +18 -0
  9. data/doc/classes/Clock.src/M000027.html +21 -0
  10. data/doc/classes/Color.html +299 -0
  11. data/doc/classes/Color.src/M000015.html +18 -0
  12. data/doc/classes/Color.src/M000016.html +16 -0
  13. data/doc/classes/Color.src/M000017.html +16 -0
  14. data/doc/classes/Color.src/M000018.html +16 -0
  15. data/doc/classes/Color.src/M000019.html +18 -0
  16. data/doc/classes/Color.src/M000020.html +22 -0
  17. data/doc/classes/Creature.html +176 -0
  18. data/doc/classes/Creature.src/M000005.html +19 -0
  19. data/doc/classes/Environment.html +203 -0
  20. data/doc/classes/Environment.src/M000028.html +19 -0
  21. data/doc/classes/Environment.src/M000029.html +45 -0
  22. data/doc/classes/EnvironmentalFactor.html +167 -0
  23. data/doc/classes/EnvironmentalFactor.src/M000021.html +18 -0
  24. data/doc/classes/GameObject.html +256 -0
  25. data/doc/classes/GameObject.src/M000022.html +20 -0
  26. data/doc/classes/GameObject.src/M000023.html +19 -0
  27. data/doc/classes/GameObject.src/M000024.html +16 -0
  28. data/doc/classes/GameObject.src/M000025.html +16 -0
  29. data/doc/classes/Location.html +167 -0
  30. data/doc/classes/Location.src/M000014.html +18 -0
  31. data/doc/classes/Responsive.html +143 -0
  32. data/doc/classes/Responsive.src/M000030.html +18 -0
  33. data/doc/classes/TrailsView.html +217 -0
  34. data/doc/classes/TrailsView.src/M000001.html +40 -0
  35. data/doc/classes/TrailsView.src/M000002.html +76 -0
  36. data/doc/classes/Utility.html +264 -0
  37. data/doc/classes/Utility.src/M000031.html +26 -0
  38. data/doc/classes/Utility.src/M000032.html +22 -0
  39. data/doc/classes/Utility.src/M000033.html +18 -0
  40. data/doc/classes/Utility.src/M000034.html +21 -0
  41. data/doc/classes/Utility.src/M000035.html +25 -0
  42. data/doc/classes/Utility.src/M000036.html +21 -0
  43. data/doc/classes/Utility.src/M000037.html +22 -0
  44. data/doc/classes/Vector.html +281 -0
  45. data/doc/classes/Vector.src/M000006.html +19 -0
  46. data/doc/classes/Vector.src/M000007.html +16 -0
  47. data/doc/classes/Vector.src/M000008.html +21 -0
  48. data/doc/classes/Vector.src/M000009.html +16 -0
  49. data/doc/classes/Vector.src/M000010.html +18 -0
  50. data/doc/classes/Vector.src/M000011.html +16 -0
  51. data/doc/classes/Vector.src/M000012.html +18 -0
  52. data/doc/classes/Vector.src/M000013.html +25 -0
  53. data/doc/created.rid +1 -0
  54. data/doc/files/COPYING_LESSER_txt.html +311 -0
  55. data/doc/files/COPYING_txt.html +1003 -0
  56. data/doc/files/README_txt.html +214 -0
  57. data/doc/files/lib/zyps/views/trails_rb.html +134 -0
  58. data/doc/files/lib/zyps_rb.html +134 -0
  59. data/doc/fr_class_index.html +38 -0
  60. data/doc/fr_file_index.html +31 -0
  61. data/doc/fr_method_index.html +63 -0
  62. data/doc/index.html +24 -0
  63. data/doc/rdoc-style.css +208 -0
  64. data/lib/zyps/views/trails.rb +3 -3
  65. metadata +81 -6
  66. data/bin/zyps_server +0 -178
@@ -0,0 +1,1003 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>File: COPYING.txt</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="fileHeader">
50
+ <h1>COPYING.txt</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>COPYING.txt
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Mon Aug 06 20:52:08 -0700 2007</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+ <div id="description">
72
+ <pre>
73
+ GNU GENERAL PUBLIC LICENSE
74
+ Version 3, 29 June 2007
75
+
76
+ Copyright (C) 2007 Free Software Foundation, Inc. &lt;http://fsf.org/&gt;
77
+ Everyone is permitted to copy and distribute verbatim copies
78
+ of this license document, but changing it is not allowed.
79
+
80
+ Preamble
81
+
82
+ The GNU General Public License is a free, copyleft license for
83
+ </pre>
84
+ <p>
85
+ software and other kinds of works.
86
+ </p>
87
+ <pre>
88
+ The licenses for most software and other practical works are designed
89
+ </pre>
90
+ <p>
91
+ to take away your freedom to share and change the works. By contrast, the
92
+ GNU General Public License is intended to guarantee your freedom to share
93
+ and change all versions of a program&#8212;to make sure it remains free
94
+ software for all its users. We, the Free Software Foundation, use the GNU
95
+ General Public License for most of our software; it applies also to any
96
+ other work released this way by its authors. You can apply it to your
97
+ programs, too.
98
+ </p>
99
+ <pre>
100
+ When we speak of free software, we are referring to freedom, not
101
+ </pre>
102
+ <p>
103
+ price. Our General Public Licenses are designed to make sure that you have
104
+ the freedom to distribute copies of free software (and charge for them if
105
+ you wish), that you receive source code or can get it if you want it, that
106
+ you can change the software or use pieces of it in new free programs, and
107
+ that you know you can do these things.
108
+ </p>
109
+ <pre>
110
+ To protect your rights, we need to prevent others from denying you
111
+ </pre>
112
+ <p>
113
+ these rights or asking you to surrender the rights. Therefore, you have
114
+ certain responsibilities if you distribute copies of the software, or if
115
+ you modify it: responsibilities to respect the freedom of others.
116
+ </p>
117
+ <pre>
118
+ For example, if you distribute copies of such a program, whether
119
+ </pre>
120
+ <p>
121
+ gratis or for a fee, you must pass on to the recipients the same freedoms
122
+ that you received. You must make sure that they, too, receive or can get
123
+ the source code. And you must show them these terms so they know their
124
+ rights.
125
+ </p>
126
+ <pre>
127
+ Developers that use the GNU GPL protect your rights with two steps:
128
+ </pre>
129
+ <p>
130
+ (1) assert copyright on the software, and (2) offer you this License giving
131
+ you legal permission to copy, distribute and/or modify it.
132
+ </p>
133
+ <pre>
134
+ For the developers' and authors' protection, the GPL clearly explains
135
+ </pre>
136
+ <p>
137
+ that there is no warranty for this free software. For both users&#8217; and
138
+ authors&#8217; sake, the GPL requires that modified versions be marked as
139
+ changed, so that their problems will not be attributed erroneously to
140
+ authors of previous versions.
141
+ </p>
142
+ <pre>
143
+ Some devices are designed to deny users access to install or run
144
+ </pre>
145
+ <p>
146
+ modified versions of the software inside them, although the manufacturer
147
+ can do so. This is fundamentally incompatible with the aim of protecting
148
+ users&#8217; freedom to change the software. The systematic pattern of such
149
+ abuse occurs in the area of products for individuals to use, which is
150
+ precisely where it is most unacceptable. Therefore, we have designed this
151
+ version of the GPL to prohibit the practice for those products. If such
152
+ problems arise substantially in other domains, we stand ready to extend
153
+ this provision to those domains in future versions of the GPL, as needed to
154
+ protect the freedom of users.
155
+ </p>
156
+ <pre>
157
+ Finally, every program is threatened constantly by software patents.
158
+ </pre>
159
+ <p>
160
+ States should not allow patents to restrict development and use of software
161
+ on general-purpose computers, but in those that do, we wish to avoid the
162
+ special danger that patents applied to a free program could make it
163
+ effectively proprietary. To prevent this, the GPL assures that patents
164
+ cannot be used to render the program non-free.
165
+ </p>
166
+ <pre>
167
+ The precise terms and conditions for copying, distribution and
168
+ </pre>
169
+ <p>
170
+ modification follow.
171
+ </p>
172
+ <pre>
173
+ TERMS AND CONDITIONS
174
+
175
+ 0. Definitions.
176
+
177
+ &quot;This License&quot; refers to version 3 of the GNU General Public License.
178
+
179
+ &quot;Copyright&quot; also means copyright-like laws that apply to other kinds of
180
+ </pre>
181
+ <p>
182
+ works, such as semiconductor masks.
183
+ </p>
184
+ <pre>
185
+ &quot;The Program&quot; refers to any copyrightable work licensed under this
186
+ </pre>
187
+ <p>
188
+ License. Each licensee is addressed as &quot;you&quot;.
189
+ &quot;Licensees&quot; and &quot;recipients&quot; may be individuals or
190
+ organizations.
191
+ </p>
192
+ <pre>
193
+ To &quot;modify&quot; a work means to copy from or adapt all or part of the work
194
+ </pre>
195
+ <p>
196
+ in a fashion requiring copyright permission, other than the making of an
197
+ exact copy. The resulting work is called a &quot;modified version&quot; of
198
+ the earlier work or a work &quot;based on&quot; the earlier work.
199
+ </p>
200
+ <pre>
201
+ A &quot;covered work&quot; means either the unmodified Program or a work based
202
+ </pre>
203
+ <p>
204
+ on the Program.
205
+ </p>
206
+ <pre>
207
+ To &quot;propagate&quot; a work means to do anything with it that, without
208
+ </pre>
209
+ <p>
210
+ permission, would make you directly or secondarily liable for infringement
211
+ under applicable copyright law, except executing it on a computer or
212
+ modifying a private copy. Propagation includes copying, distribution (with
213
+ or without modification), making available to the public, and in some
214
+ countries other activities as well.
215
+ </p>
216
+ <pre>
217
+ To &quot;convey&quot; a work means any kind of propagation that enables other
218
+ </pre>
219
+ <p>
220
+ parties to make or receive copies. Mere interaction with a user through a
221
+ computer network, with no transfer of a copy, is not conveying.
222
+ </p>
223
+ <pre>
224
+ An interactive user interface displays &quot;Appropriate Legal Notices&quot;
225
+ </pre>
226
+ <p>
227
+ to the extent that it includes a convenient and prominently visible feature
228
+ that (1) displays an appropriate copyright notice, and (2) tells the user
229
+ that there is no warranty for the work (except to the extent that
230
+ warranties are provided), that licensees may convey the work under this
231
+ License, and how to view a copy of this License. If the interface presents
232
+ a list of user commands or options, such as a menu, a prominent item in the
233
+ list meets this criterion.
234
+ </p>
235
+ <pre>
236
+ 1. Source Code.
237
+
238
+ The &quot;source code&quot; for a work means the preferred form of the work
239
+ </pre>
240
+ <p>
241
+ for making modifications to it. &quot;Object code&quot; means any
242
+ non-source form of a work.
243
+ </p>
244
+ <pre>
245
+ A &quot;Standard Interface&quot; means an interface that either is an official
246
+ </pre>
247
+ <p>
248
+ standard defined by a recognized standards body, or, in the case of
249
+ interfaces specified for a particular programming language, one that is
250
+ widely used among developers working in that language.
251
+ </p>
252
+ <pre>
253
+ The &quot;System Libraries&quot; of an executable work include anything, other
254
+ </pre>
255
+ <p>
256
+ than the work as a whole, that (a) is included in the normal form of
257
+ packaging a Major Component, but which is not part of that Major Component,
258
+ and (b) serves only to enable use of the work with that Major Component, or
259
+ to implement a Standard Interface for which an implementation is available
260
+ to the public in source code form. A &quot;Major Component&quot;, in this
261
+ context, means a major essential component (kernel, window system, and so
262
+ on) of the specific operating system (if any) on which the executable work
263
+ runs, or a compiler used to produce the work, or an object code interpreter
264
+ used to run it.
265
+ </p>
266
+ <pre>
267
+ The &quot;Corresponding Source&quot; for a work in object code form means all
268
+ </pre>
269
+ <p>
270
+ the source code needed to generate, install, and (for an executable work)
271
+ run the object code and to modify the work, including scripts to control
272
+ those activities. However, it does not include the work&#8216;s System
273
+ Libraries, or general-purpose tools or generally available free programs
274
+ which are used unmodified in performing those activities but which are not
275
+ part of the work. For example, Corresponding Source includes interface
276
+ definition files associated with source files for the work, and the source
277
+ code for shared libraries and dynamically linked subprograms that the work
278
+ is specifically designed to require, such as by intimate data communication
279
+ or control flow between those subprograms and other parts of the work.
280
+ </p>
281
+ <pre>
282
+ The Corresponding Source need not include anything that users
283
+ </pre>
284
+ <p>
285
+ can regenerate automatically from other parts of the Corresponding Source.
286
+ </p>
287
+ <pre>
288
+ The Corresponding Source for a work in source code form is that
289
+ </pre>
290
+ <p>
291
+ same work.
292
+ </p>
293
+ <pre>
294
+ 2. Basic Permissions.
295
+
296
+ All rights granted under this License are granted for the term of
297
+ </pre>
298
+ <p>
299
+ copyright on the Program, and are irrevocable provided the stated
300
+ conditions are met. This License explicitly affirms your unlimited
301
+ permission to run the unmodified Program. The output from running a covered
302
+ work is covered by this License only if the output, given its content,
303
+ constitutes a covered work. This License acknowledges your rights of fair
304
+ use or other equivalent, as provided by copyright law.
305
+ </p>
306
+ <pre>
307
+ You may make, run and propagate covered works that you do not
308
+ </pre>
309
+ <p>
310
+ convey, without conditions so long as your license otherwise remains in
311
+ force. You may convey covered works to others for the sole purpose of
312
+ having them make modifications exclusively for you, or provide you with
313
+ facilities for running those works, provided that you comply with the terms
314
+ of this License in conveying all material for which you do not control
315
+ copyright. Those thus making or running the covered works for you must do
316
+ so exclusively on your behalf, under your direction and control, on terms
317
+ that prohibit them from making any copies of your copyrighted material
318
+ outside their relationship with you.
319
+ </p>
320
+ <pre>
321
+ Conveying under any other circumstances is permitted solely under
322
+ </pre>
323
+ <p>
324
+ the conditions stated below. Sublicensing is not allowed; section 10 makes
325
+ it unnecessary.
326
+ </p>
327
+ <pre>
328
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
329
+
330
+ No covered work shall be deemed part of an effective technological
331
+ </pre>
332
+ <p>
333
+ measure under any applicable law fulfilling obligations under article 11 of
334
+ the WIPO copyright treaty adopted on 20 December 1996, or similar laws
335
+ prohibiting or restricting circumvention of such measures.
336
+ </p>
337
+ <pre>
338
+ When you convey a covered work, you waive any legal power to forbid
339
+ </pre>
340
+ <p>
341
+ circumvention of technological measures to the extent such circumvention is
342
+ effected by exercising rights under this License with respect to the
343
+ covered work, and you disclaim any intention to limit operation or
344
+ modification of the work as a means of enforcing, against the work&#8216;s
345
+ users, your or third parties&#8217; legal rights to forbid circumvention of
346
+ technological measures.
347
+ </p>
348
+ <pre>
349
+ 4. Conveying Verbatim Copies.
350
+
351
+ You may convey verbatim copies of the Program's source code as you
352
+ </pre>
353
+ <p>
354
+ receive it, in any medium, provided that you conspicuously and
355
+ appropriately publish on each copy an appropriate copyright notice; keep
356
+ intact all notices stating that this License and any non-permissive terms
357
+ added in accord with section 7 apply to the code; keep intact all notices
358
+ of the absence of any warranty; and give all recipients a copy of this
359
+ License along with the Program.
360
+ </p>
361
+ <pre>
362
+ You may charge any price or no price for each copy that you convey,
363
+ </pre>
364
+ <p>
365
+ and you may offer support or warranty protection for a fee.
366
+ </p>
367
+ <pre>
368
+ 5. Conveying Modified Source Versions.
369
+
370
+ You may convey a work based on the Program, or the modifications to
371
+ </pre>
372
+ <p>
373
+ produce it from the Program, in the form of source code under the terms of
374
+ section 4, provided that you also meet all of these conditions:
375
+ </p>
376
+ <pre>
377
+ a) The work must carry prominent notices stating that you modified
378
+ it, and giving a relevant date.
379
+
380
+ b) The work must carry prominent notices stating that it is
381
+ released under this License and any conditions added under section
382
+ 7. This requirement modifies the requirement in section 4 to
383
+ &quot;keep intact all notices&quot;.
384
+
385
+ c) You must license the entire work, as a whole, under this
386
+ License to anyone who comes into possession of a copy. This
387
+ License will therefore apply, along with any applicable section 7
388
+ additional terms, to the whole of the work, and all its parts,
389
+ regardless of how they are packaged. This License gives no
390
+ permission to license the work in any other way, but it does not
391
+ invalidate such permission if you have separately received it.
392
+
393
+ d) If the work has interactive user interfaces, each must display
394
+ Appropriate Legal Notices; however, if the Program has interactive
395
+ interfaces that do not display Appropriate Legal Notices, your
396
+ work need not make them do so.
397
+
398
+ A compilation of a covered work with other separate and independent
399
+ </pre>
400
+ <p>
401
+ works, which are not by their nature extensions of the covered work, and
402
+ which are not combined with it such as to form a larger program, in or on a
403
+ volume of a storage or distribution medium, is called an
404
+ &quot;aggregate&quot; if the compilation and its resulting copyright are
405
+ not used to limit the access or legal rights of the compilation&#8216;s
406
+ users beyond what the individual works permit. Inclusion of a covered work
407
+ in an aggregate does not cause this License to apply to the other parts of
408
+ the aggregate.
409
+ </p>
410
+ <pre>
411
+ 6. Conveying Non-Source Forms.
412
+
413
+ You may convey a covered work in object code form under the terms
414
+ </pre>
415
+ <p>
416
+ of sections 4 and 5, provided that you also convey the machine-readable
417
+ Corresponding Source under the terms of this License, in one of these ways:
418
+ </p>
419
+ <pre>
420
+ a) Convey the object code in, or embodied in, a physical product
421
+ (including a physical distribution medium), accompanied by the
422
+ Corresponding Source fixed on a durable physical medium
423
+ customarily used for software interchange.
424
+
425
+ b) Convey the object code in, or embodied in, a physical product
426
+ (including a physical distribution medium), accompanied by a
427
+ written offer, valid for at least three years and valid for as
428
+ long as you offer spare parts or customer support for that product
429
+ model, to give anyone who possesses the object code either (1) a
430
+ copy of the Corresponding Source for all the software in the
431
+ product that is covered by this License, on a durable physical
432
+ medium customarily used for software interchange, for a price no
433
+ more than your reasonable cost of physically performing this
434
+ conveying of source, or (2) access to copy the
435
+ Corresponding Source from a network server at no charge.
436
+
437
+ c) Convey individual copies of the object code with a copy of the
438
+ written offer to provide the Corresponding Source. This
439
+ alternative is allowed only occasionally and noncommercially, and
440
+ only if you received the object code with such an offer, in accord
441
+ with subsection 6b.
442
+
443
+ d) Convey the object code by offering access from a designated
444
+ place (gratis or for a charge), and offer equivalent access to the
445
+ Corresponding Source in the same way through the same place at no
446
+ further charge. You need not require recipients to copy the
447
+ Corresponding Source along with the object code. If the place to
448
+ copy the object code is a network server, the Corresponding Source
449
+ may be on a different server (operated by you or a third party)
450
+ that supports equivalent copying facilities, provided you maintain
451
+ clear directions next to the object code saying where to find the
452
+ Corresponding Source. Regardless of what server hosts the
453
+ Corresponding Source, you remain obligated to ensure that it is
454
+ available for as long as needed to satisfy these requirements.
455
+
456
+ e) Convey the object code using peer-to-peer transmission, provided
457
+ you inform other peers where the object code and Corresponding
458
+ Source of the work are being offered to the general public at no
459
+ charge under subsection 6d.
460
+
461
+ A separable portion of the object code, whose source code is excluded
462
+ </pre>
463
+ <p>
464
+ from the Corresponding Source as a System Library, need not be included in
465
+ conveying the object code work.
466
+ </p>
467
+ <pre>
468
+ A &quot;User Product&quot; is either (1) a &quot;consumer product&quot;, which means any
469
+ </pre>
470
+ <p>
471
+ tangible personal property which is normally used for personal, family, or
472
+ household purposes, or (2) anything designed or sold for incorporation into
473
+ a dwelling. In determining whether a product is a consumer product,
474
+ doubtful cases shall be resolved in favor of coverage. For a particular
475
+ product received by a particular user, &quot;normally used&quot; refers to
476
+ a typical or common use of that class of product, regardless of the status
477
+ of the particular user or of the way in which the particular user actually
478
+ uses, or expects or is expected to use, the product. A product is a
479
+ consumer product regardless of whether the product has substantial
480
+ commercial, industrial or non-consumer uses, unless such uses represent the
481
+ only significant mode of use of the product.
482
+ </p>
483
+ <pre>
484
+ &quot;Installation Information&quot; for a User Product means any methods,
485
+ </pre>
486
+ <p>
487
+ procedures, authorization keys, or other information required to install
488
+ and execute modified versions of a covered work in that User Product from a
489
+ modified version of its Corresponding Source. The information must suffice
490
+ to ensure that the continued functioning of the modified object code is in
491
+ no case prevented or interfered with solely because modification has been
492
+ made.
493
+ </p>
494
+ <pre>
495
+ If you convey an object code work under this section in, or with, or
496
+ </pre>
497
+ <p>
498
+ specifically for use in, a User Product, and the conveying occurs as part
499
+ of a transaction in which the right of possession and use of the User
500
+ Product is transferred to the recipient in perpetuity or for a fixed term
501
+ (regardless of how the transaction is characterized), the Corresponding
502
+ Source conveyed under this section must be accompanied by the Installation
503
+ Information. But this requirement does not apply if neither you nor any
504
+ third party retains the ability to install modified object code on the User
505
+ Product (for example, the work has been installed in ROM).
506
+ </p>
507
+ <pre>
508
+ The requirement to provide Installation Information does not include a
509
+ </pre>
510
+ <p>
511
+ requirement to continue to provide support service, warranty, or updates
512
+ for a work that has been modified or installed by the recipient, or for the
513
+ User Product in which it has been modified or installed. Access to a
514
+ network may be denied when the modification itself materially and adversely
515
+ affects the operation of the network or violates the rules and protocols
516
+ for communication across the network.
517
+ </p>
518
+ <pre>
519
+ Corresponding Source conveyed, and Installation Information provided,
520
+ </pre>
521
+ <p>
522
+ in accord with this section must be in a format that is publicly documented
523
+ (and with an implementation available to the public in source code form),
524
+ and must require no special password or key for unpacking, reading or
525
+ copying.
526
+ </p>
527
+ <pre>
528
+ 7. Additional Terms.
529
+
530
+ &quot;Additional permissions&quot; are terms that supplement the terms of this
531
+ </pre>
532
+ <p>
533
+ License by making exceptions from one or more of its conditions. Additional
534
+ permissions that are applicable to the entire Program shall be treated as
535
+ though they were included in this License, to the extent that they are
536
+ valid under applicable law. If additional permissions apply only to part of
537
+ the Program, that part may be used separately under those permissions, but
538
+ the entire Program remains governed by this License without regard to the
539
+ additional permissions.
540
+ </p>
541
+ <pre>
542
+ When you convey a copy of a covered work, you may at your option
543
+ </pre>
544
+ <p>
545
+ remove any additional permissions from that copy, or from any part of it.
546
+ (Additional permissions may be written to require their own removal in
547
+ certain cases when you modify the work.) You may place additional
548
+ permissions on material, added by you to a covered work, for which you have
549
+ or can give appropriate copyright permission.
550
+ </p>
551
+ <pre>
552
+ Notwithstanding any other provision of this License, for material you
553
+ </pre>
554
+ <p>
555
+ add to a covered work, you may (if authorized by the copyright holders of
556
+ that material) supplement the terms of this License with terms:
557
+ </p>
558
+ <pre>
559
+ a) Disclaiming warranty or limiting liability differently from the
560
+ terms of sections 15 and 16 of this License; or
561
+
562
+ b) Requiring preservation of specified reasonable legal notices or
563
+ author attributions in that material or in the Appropriate Legal
564
+ Notices displayed by works containing it; or
565
+
566
+ c) Prohibiting misrepresentation of the origin of that material, or
567
+ requiring that modified versions of such material be marked in
568
+ reasonable ways as different from the original version; or
569
+
570
+ d) Limiting the use for publicity purposes of names of licensors or
571
+ authors of the material; or
572
+
573
+ e) Declining to grant rights under trademark law for use of some
574
+ trade names, trademarks, or service marks; or
575
+
576
+ f) Requiring indemnification of licensors and authors of that
577
+ material by anyone who conveys the material (or modified versions of
578
+ it) with contractual assumptions of liability to the recipient, for
579
+ any liability that these contractual assumptions directly impose on
580
+ those licensors and authors.
581
+
582
+ All other non-permissive additional terms are considered &quot;further
583
+ </pre>
584
+ <p>
585
+ restrictions&quot; within the meaning of section 10. If the Program as you
586
+ received it, or any part of it, contains a notice stating that it is
587
+ governed by this License along with a term that is a further restriction,
588
+ you may remove that term. If a license document contains a further
589
+ restriction but permits relicensing or conveying under this License, you
590
+ may add to a covered work material governed by the terms of that license
591
+ document, provided that the further restriction does not survive such
592
+ relicensing or conveying.
593
+ </p>
594
+ <pre>
595
+ If you add terms to a covered work in accord with this section, you
596
+ </pre>
597
+ <p>
598
+ must place, in the relevant source files, a statement of the additional
599
+ terms that apply to those files, or a notice indicating where to find the
600
+ applicable terms.
601
+ </p>
602
+ <pre>
603
+ Additional terms, permissive or non-permissive, may be stated in the
604
+ </pre>
605
+ <p>
606
+ form of a separately written license, or stated as exceptions; the above
607
+ requirements apply either way.
608
+ </p>
609
+ <pre>
610
+ 8. Termination.
611
+
612
+ You may not propagate or modify a covered work except as expressly
613
+ </pre>
614
+ <p>
615
+ provided under this License. Any attempt otherwise to propagate or modify
616
+ it is void, and will automatically terminate your rights under this License
617
+ (including any patent licenses granted under the third paragraph of section
618
+ 11).
619
+ </p>
620
+ <pre>
621
+ However, if you cease all violation of this License, then your
622
+ </pre>
623
+ <p>
624
+ license from a particular copyright holder is reinstated (a) provisionally,
625
+ unless and until the copyright holder explicitly and finally terminates
626
+ your license, and (b) permanently, if the copyright holder fails to notify
627
+ you of the violation by some reasonable means prior to 60 days after the
628
+ cessation.
629
+ </p>
630
+ <pre>
631
+ Moreover, your license from a particular copyright holder is
632
+ </pre>
633
+ <p>
634
+ reinstated permanently if the copyright holder notifies you of the
635
+ violation by some reasonable means, this is the first time you have
636
+ received notice of violation of this License (for any work) from that
637
+ copyright holder, and you cure the violation prior to 30 days after your
638
+ receipt of the notice.
639
+ </p>
640
+ <pre>
641
+ Termination of your rights under this section does not terminate the
642
+ </pre>
643
+ <p>
644
+ licenses of parties who have received copies or rights from you under this
645
+ License. If your rights have been terminated and not permanently
646
+ reinstated, you do not qualify to receive new licenses for the same
647
+ material under section 10.
648
+ </p>
649
+ <pre>
650
+ 9. Acceptance Not Required for Having Copies.
651
+
652
+ You are not required to accept this License in order to receive or
653
+ </pre>
654
+ <p>
655
+ run a copy of the Program. Ancillary propagation of a covered work
656
+ occurring solely as a consequence of using peer-to-peer transmission to
657
+ receive a copy likewise does not require acceptance. However, nothing other
658
+ than this License grants you permission to propagate or modify any covered
659
+ work. These actions infringe copyright if you do not accept this License.
660
+ Therefore, by modifying or propagating a covered work, you indicate your
661
+ acceptance of this License to do so.
662
+ </p>
663
+ <pre>
664
+ 10. Automatic Licensing of Downstream Recipients.
665
+
666
+ Each time you convey a covered work, the recipient automatically
667
+ </pre>
668
+ <p>
669
+ receives a license from the original licensors, to run, modify and
670
+ propagate that work, subject to this License. You are not responsible for
671
+ enforcing compliance by third parties with this License.
672
+ </p>
673
+ <pre>
674
+ An &quot;entity transaction&quot; is a transaction transferring control of an
675
+ </pre>
676
+ <p>
677
+ organization, or substantially all assets of one, or subdividing an
678
+ organization, or merging organizations. If propagation of a covered work
679
+ results from an entity transaction, each party to that transaction who
680
+ receives a copy of the work also receives whatever licenses to the work the
681
+ party&#8216;s predecessor in interest had or could give under the previous
682
+ paragraph, plus a right to possession of the Corresponding Source of the
683
+ work from the predecessor in interest, if the predecessor has it or can get
684
+ it with reasonable efforts.
685
+ </p>
686
+ <pre>
687
+ You may not impose any further restrictions on the exercise of the
688
+ </pre>
689
+ <p>
690
+ rights granted or affirmed under this License. For example, you may not
691
+ impose a license fee, royalty, or other charge for exercise of rights
692
+ granted under this License, and you may not initiate litigation (including
693
+ a cross-claim or counterclaim in a lawsuit) alleging that any patent claim
694
+ is infringed by making, using, selling, offering for sale, or importing the
695
+ Program or any portion of it.
696
+ </p>
697
+ <pre>
698
+ 11. Patents.
699
+
700
+ A &quot;contributor&quot; is a copyright holder who authorizes use under this
701
+ </pre>
702
+ <p>
703
+ License of the Program or a work on which the Program is based. The work
704
+ thus licensed is called the contributor&#8216;s &quot;contributor
705
+ version&quot;.
706
+ </p>
707
+ <pre>
708
+ A contributor's &quot;essential patent claims&quot; are all patent claims
709
+ </pre>
710
+ <p>
711
+ owned or controlled by the contributor, whether already acquired or
712
+ hereafter acquired, that would be infringed by some manner, permitted by
713
+ this License, of making, using, or selling its contributor version, but do
714
+ not include claims that would be infringed only as a consequence of further
715
+ modification of the contributor version. For purposes of this definition,
716
+ &quot;control&quot; includes the right to grant patent sublicenses in a
717
+ manner consistent with the requirements of this License.
718
+ </p>
719
+ <pre>
720
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
721
+ </pre>
722
+ <p>
723
+ patent license under the contributor&#8216;s essential patent claims, to
724
+ make, use, sell, offer for sale, import and otherwise run, modify and
725
+ propagate the contents of its contributor version.
726
+ </p>
727
+ <pre>
728
+ In the following three paragraphs, a &quot;patent license&quot; is any express
729
+ </pre>
730
+ <p>
731
+ agreement or commitment, however denominated, not to enforce a patent (such
732
+ as an express permission to practice a patent or covenant not to sue for
733
+ patent infringement). To &quot;grant&quot; such a patent license to a party
734
+ means to make such an agreement or commitment not to enforce a patent
735
+ against the party.
736
+ </p>
737
+ <pre>
738
+ If you convey a covered work, knowingly relying on a patent license,
739
+ </pre>
740
+ <p>
741
+ and the Corresponding Source of the work is not available for anyone to
742
+ copy, free of charge and under the terms of this License, through a
743
+ publicly available network server or other readily accessible means, then
744
+ you must either (1) cause the Corresponding Source to be so available, or
745
+ (2) arrange to deprive yourself of the benefit of the patent license for
746
+ this particular work, or (3) arrange, in a manner consistent with the
747
+ requirements of this License, to extend the patent license to downstream
748
+ recipients. &quot;Knowingly relying&quot; means you have actual knowledge
749
+ that, but for the patent license, your conveying the covered work in a
750
+ country, or your recipient&#8216;s use of the covered work in a country,
751
+ would infringe one or more identifiable patents in that country that you
752
+ have reason to believe are valid.
753
+ </p>
754
+ <pre>
755
+ If, pursuant to or in connection with a single transaction or
756
+ </pre>
757
+ <p>
758
+ arrangement, you convey, or propagate by procuring conveyance of, a covered
759
+ work, and grant a patent license to some of the parties receiving the
760
+ covered work authorizing them to use, propagate, modify or convey a
761
+ specific copy of the covered work, then the patent license you grant is
762
+ automatically extended to all recipients of the covered work and works
763
+ based on it.
764
+ </p>
765
+ <pre>
766
+ A patent license is &quot;discriminatory&quot; if it does not include within
767
+ </pre>
768
+ <p>
769
+ the scope of its coverage, prohibits the exercise of, or is conditioned on
770
+ the non-exercise of one or more of the rights that are specifically granted
771
+ under this License. You may not convey a covered work if you are a party to
772
+ an arrangement with a third party that is in the business of distributing
773
+ software, under which you make payment to the third party based on the
774
+ extent of your activity of conveying the work, and under which the third
775
+ party grants, to any of the parties who would receive the covered work from
776
+ you, a discriminatory patent license (a) in connection with copies of the
777
+ covered work conveyed by you (or copies made from those copies), or (b)
778
+ primarily for and in connection with specific products or compilations that
779
+ contain the covered work, unless you entered into that arrangement, or that
780
+ patent license was granted, prior to 28 March 2007.
781
+ </p>
782
+ <pre>
783
+ Nothing in this License shall be construed as excluding or limiting
784
+ </pre>
785
+ <p>
786
+ any implied license or other defenses to infringement that may otherwise be
787
+ available to you under applicable patent law.
788
+ </p>
789
+ <pre>
790
+ 12. No Surrender of Others' Freedom.
791
+
792
+ If conditions are imposed on you (whether by court order, agreement or
793
+ </pre>
794
+ <p>
795
+ otherwise) that contradict the conditions of this License, they do not
796
+ excuse you from the conditions of this License. If you cannot convey a
797
+ covered work so as to satisfy simultaneously your obligations under this
798
+ License and any other pertinent obligations, then as a consequence you may
799
+ not convey it at all. For example, if you agree to terms that obligate you
800
+ to collect a royalty for further conveying from those to whom you convey
801
+ the Program, the only way you could satisfy both those terms and this
802
+ License would be to refrain entirely from conveying the Program.
803
+ </p>
804
+ <pre>
805
+ 13. Use with the GNU Affero General Public License.
806
+
807
+ Notwithstanding any other provision of this License, you have
808
+ </pre>
809
+ <p>
810
+ permission to link or combine any covered work with a work licensed under
811
+ version 3 of the GNU Affero General Public License into a single combined
812
+ work, and to convey the resulting work. The terms of this License will
813
+ continue to apply to the part which is the covered work, but the special
814
+ requirements of the GNU Affero General Public License, section 13,
815
+ concerning interaction through a network will apply to the combination as
816
+ such.
817
+ </p>
818
+ <pre>
819
+ 14. Revised Versions of this License.
820
+
821
+ The Free Software Foundation may publish revised and/or new versions of
822
+ </pre>
823
+ <p>
824
+ the GNU General Public License from time to time. Such new versions will be
825
+ similar in spirit to the present version, but may differ in detail to
826
+ address new problems or concerns.
827
+ </p>
828
+ <pre>
829
+ Each version is given a distinguishing version number. If the
830
+ </pre>
831
+ <p>
832
+ Program specifies that a certain numbered version of the GNU General Public
833
+ License &quot;or any later version&quot; applies to it, you have the option
834
+ of following the terms and conditions either of that numbered version or of
835
+ any later version published by the Free Software Foundation. If the Program
836
+ does not specify a version number of the GNU General Public License, you
837
+ may choose any version ever published by the Free Software Foundation.
838
+ </p>
839
+ <pre>
840
+ If the Program specifies that a proxy can decide which future
841
+ </pre>
842
+ <p>
843
+ versions of the GNU General Public License can be used, that proxy&#8216;s
844
+ public statement of acceptance of a version permanently authorizes you to
845
+ choose that version for the Program.
846
+ </p>
847
+ <pre>
848
+ Later license versions may give you additional or different
849
+ </pre>
850
+ <p>
851
+ permissions. However, no additional obligations are imposed on any author
852
+ or copyright holder as a result of your choosing to follow a later version.
853
+ </p>
854
+ <pre>
855
+ 15. Disclaimer of Warranty.
856
+
857
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
858
+ </pre>
859
+ <p>
860
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
861
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM &quot;AS IS&quot; WITHOUT
862
+ WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
863
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
864
+ PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF
865
+ THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE
866
+ COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
867
+ </p>
868
+ <pre>
869
+ 16. Limitation of Liability.
870
+
871
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
872
+ </pre>
873
+ <p>
874
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
875
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
876
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
877
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
878
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
879
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
880
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
881
+ SUCH DAMAGES.
882
+ </p>
883
+ <pre>
884
+ 17. Interpretation of Sections 15 and 16.
885
+
886
+ If the disclaimer of warranty and limitation of liability provided
887
+ </pre>
888
+ <p>
889
+ above cannot be given local legal effect according to their terms,
890
+ reviewing courts shall apply local law that most closely approximates an
891
+ absolute waiver of all civil liability in connection with the Program,
892
+ unless a warranty or assumption of liability accompanies a copy of the
893
+ Program in return for a fee.
894
+ </p>
895
+ <pre>
896
+ END OF TERMS AND CONDITIONS
897
+
898
+ How to Apply These Terms to Your New Programs
899
+
900
+ If you develop a new program, and you want it to be of the greatest
901
+ </pre>
902
+ <p>
903
+ possible use to the public, the best way to achieve this is to make it free
904
+ software which everyone can redistribute and change under these terms.
905
+ </p>
906
+ <pre>
907
+ To do so, attach the following notices to the program. It is safest
908
+ </pre>
909
+ <p>
910
+ to attach them to the start of each source file to most effectively state
911
+ the exclusion of warranty; and each file should have at least the
912
+ &quot;copyright&quot; line and a pointer to where the full notice is found.
913
+ </p>
914
+ <pre>
915
+ &lt;one line to give the program's name and a brief idea of what it does.&gt;
916
+ Copyright (C) &lt;year&gt; &lt;name of author&gt;
917
+
918
+ This program is free software: you can redistribute it and/or modify
919
+ it under the terms of the GNU General Public License as published by
920
+ the Free Software Foundation, either version 3 of the License, or
921
+ (at your option) any later version.
922
+
923
+ This program is distributed in the hope that it will be useful,
924
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
925
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
926
+ GNU General Public License for more details.
927
+
928
+ You should have received a copy of the GNU General Public License
929
+ along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;.
930
+ </pre>
931
+ <p>
932
+ Also add information on how to contact you by electronic and paper mail.
933
+ </p>
934
+ <pre>
935
+ If the program does terminal interaction, make it output a short
936
+ </pre>
937
+ <p>
938
+ notice like this when it starts in an interactive mode:
939
+ </p>
940
+ <pre>
941
+ &lt;program&gt; Copyright (C) &lt;year&gt; &lt;name of author&gt;
942
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
943
+ This is free software, and you are welcome to redistribute it
944
+ under certain conditions; type `show c' for details.
945
+ </pre>
946
+ <p>
947
+ The hypothetical commands `show w&#8217; and `show c&#8217; should show the
948
+ appropriate parts of the General Public License. Of course, your
949
+ program&#8216;s commands might be different; for a GUI interface, you would
950
+ use an &quot;about box&quot;.
951
+ </p>
952
+ <pre>
953
+ You should also get your employer (if you work as a programmer) or school,
954
+ </pre>
955
+ <p>
956
+ if any, to sign a &quot;copyright disclaimer&quot; for the program, if
957
+ necessary. For more information on this, and how to apply and follow the
958
+ GNU GPL, see &lt;<a
959
+ href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/&gt;.
960
+ </p>
961
+ <pre>
962
+ The GNU General Public License does not permit incorporating your program
963
+ </pre>
964
+ <p>
965
+ into proprietary programs. If your program is a subroutine library, you may
966
+ consider it more useful to permit linking proprietary applications with the
967
+ library. If this is what you want to do, use the GNU Lesser General Public
968
+ License instead of this License. But first, please read &lt;<a
969
+ href="http://www.gnu.org/philosophy/why-not-lgpl.html">www.gnu.org/philosophy/why-not-lgpl.html</a>&gt;.
970
+ </p>
971
+
972
+ </div>
973
+
974
+
975
+ </div>
976
+
977
+
978
+ </div>
979
+
980
+
981
+ <!-- if includes -->
982
+
983
+ <div id="section">
984
+
985
+
986
+
987
+
988
+
989
+
990
+
991
+
992
+ <!-- if method_list -->
993
+
994
+
995
+ </div>
996
+
997
+
998
+ <div id="validator-badges">
999
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
1000
+ </div>
1001
+
1002
+ </body>
1003
+ </html>