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