What is the difference between the Affero General Public License and the GNU General Public License (GPL)?
|
closed as off topic by Luksprog, dgw, RB., oers, Binyamin Sharet Oct 12 '12 at 9:43
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Assume the following: You are developing a server side application in GPL. Now this application serves HTML and not an executable which is directly executed on your machine. That means that another guy could take the GPL code, adapt it and does not necessarily publish it. Ie. he can create the identical service without violating the GPL! (Although he cannot sell the software itself but it does not matter if the idea + implementation are genius) Not so with the AGPL. This hole in the GPL is often called "Application Service Provider" hole. Search for "Why AGPL" or "AGPL vs. GPL" or just read this for some real projects who have problems with GPL. The MongoDB tries another interesing thing. They want that people do not fork the core DB (thatwhy AGPL) but the driver which has to be linked with the main programm is apache 2.0 licensed so that the mongoDB could be used within commercial application. Public web application that uses the AGPL are listed at wikipedia. |
||||
|
|
|
See http://www.fsf.org/licensing/licenses/index_html#GPLCompatibleLicenses
|
|||
|
|