|
|
(5 intermediate revisions by one user not shown) |
Line 1: |
Line 1: |
| + | |
| + | |
| = Why should you pick a license? = | | = Why should you pick a license? = |
| | | |
− | In other words, why not just put code online without a license? A license clarifies the conditions under which your code can be reused. In the absence of a license, the author still retains propietary copyright, and the conditions under which the code can be used are unclear.<ref name="morin-etal-2012"> | + | In other words, why not just put code online without a license? A license clarifies the conditions under which your code can be reused. In the absence of a license, the author still retains proprietary copyright, and the conditions under which the code can be used are unclear.<ref name="morin-etal-2012"> |
| <!-- website URL: http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1002598 --> | | <!-- website URL: http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1002598 --> |
− | {{cite journal | + | {{cite journal | last1 = Morin | first1 = Andrew | last2 = Urban | first2 = Jennifer | last3 = Sliz | first3 = Piotr | title = A quick guide to software licensing for the scientist-programmer | date = 26 July 2012 | journal = PLOS Computational Biology | volume = 8 | issue = 7 | pages = e1002598 | doi = 10.1371/journal.pcbi.1002598 | issn = 1553-7358 | url = http://journals.plos.org/ploscompbiol/article/file?id=10.1371/journal.pcbi.1002598&type=printable | access-date = 2016-12-10}} {{open access}}</ref> A sentence like "feel free to use this code" does not improve the situation, because it does not clarify to what extent any possible user should "feel free" to use the code. Standard licenses provide pre-defined sets of standard conditions, which both providers and users only have to understand once, and can then later easily recognise and categorise. |
− | | last1 = Morin | first1 = Andrew
| + | |
− | | last2 = Urban | first2 = Jennifer
| + | Also see "Why is an open-source license useful?" on the Software Sustainability's [http://www.software.ac.uk/resources/guides/adopting-open-source-licence Choosing an open-source license page] article. |
− | | last3 = Sliz | first3 = Piotr
| + | |
− | | title = A quick guide to software licensing for the scientist-programmer
| + | |
− | | date = 26 July 2012
| + | |
− | | journal = PLOS Computational Biology
| + | |
− | | volume = 8
| + | |
− | | issue = 7
| + | |
− | | pages = e1002598
| + | |
− | | doi = 10.1371/journal.pcbi.1002598
| + | |
− | | issn = 1553-7358
| + | |
− | | url = http://journals.plos.org/ploscompbiol/article/file?id=10.1371/journal.pcbi.1002598&type=printable
| + | |
− | | access-date = 2016-12-10}} {{open access}}
| + | |
− | </ref>{{rp|1}} A sentence like "feel free to use this code" does not improve the situation, because it does not clarify to what extent any possible user should "feel free" to use the code. Standard licenses provide pre-defined sets of standard conditions, which both providers and users only have to understand once, and can then later easily recognise and categorise. | + | |
| | | |
− | Also see "Why is an open-source licence useful?" on the Software Sustainability's [http://www.software.ac.uk/resources/guides/adopting-open-source-licence Choosing an open-source licence page] article.
| |
| | | |
| = Selecting a license = | | = Selecting a license = |
Line 31: |
Line 22: |
| {| class="wikitable" | | {| class="wikitable" |
| |- | | |- |
− | ! | + | ! <br/> |
| ! Code | | ! Code |
| ! Data | | ! Data |
Line 43: |
Line 34: |
| ! style="text-align: left" | Permissive {{pad|1em}} | | ! style="text-align: left" | Permissive {{pad|1em}} |
| | ISC, MIT, BSD, Apache{{nnbsp}}<sup>1</sup>{{pad|1em}} | | | ISC, MIT, BSD, Apache{{nnbsp}}<sup>1</sup>{{pad|1em}} |
− | | {{nowrap|CC BY}}
| + | | CC BY, ODC-By |
| | {{nowrap|CC BY}} | | | {{nowrap|CC BY}} |
| |- | | |- |
| ! style="text-align: left" | Public domain {{pad|1em}} | | ! style="text-align: left" | Public domain {{pad|1em}} |
| | not recommended{{pad|1em}} | | | not recommended{{pad|1em}} |
− | | PDDL / CC0 | + | | PDDL, CC0 |
| | CC0 | | | CC0 |
| |- | | |- |
Line 62: |
Line 53: |
| The following minimal questions can give a guideline on whether one should choose a copyleft or a permissive license for a project. The Wikipedia article on [https://en.wikipedia.org/wiki/Free_software_license Free software licenses] gives an in-depth overview on both types and their properties. | | The following minimal questions can give a guideline on whether one should choose a copyleft or a permissive license for a project. The Wikipedia article on [https://en.wikipedia.org/wiki/Free_software_license Free software licenses] gives an in-depth overview on both types and their properties. |
| | | |
− | *Are you ok with your code becoming part of a '''closed-source''' commercial software product? | + | *Are you okay with your code becoming part of a '''closed-source''' commercial software product? |
| **No: GPL | | **No: GPL |
| **Yes: permissive licenses (MIT/BSD/Apache) | | **Yes: permissive licenses (MIT/BSD/Apache) |
| | | |
− | *Do you want to '''force '''users to publish their improvements to your software, or to software they develop based on your software, under the same licence? | + | *Do you want to '''force '''users to publish their improvements to your software, or to software they develop based on your software, under the same license? |
| **No: permissive licenses (MIT/BSD/Apache). This makes the code more broadly usable, but also allows people to take the code without sharing their improvements. | | **No: permissive licenses (MIT/BSD/Apache). This makes the code more broadly usable, but also allows people to take the code without sharing their improvements. |
| **Yes: GPL. This ensures that any future changes and improvements to the code remain free and open | | **Yes: GPL. This ensures that any future changes and improvements to the code remain free and open |
Line 84: |
Line 75: |
| The article [https://www.freebsd.org/doc/en/articles/bsdl-gpl/article.html Why you should use a BSD style license for your Open Source Project] on [https://www.freebsd.org/ freebsd.org] is recommended. The permissive licenses allow code to be re-used without restrictions, including the possibility of building commercial software whereby the new code is not made public. | | The article [https://www.freebsd.org/doc/en/articles/bsdl-gpl/article.html Why you should use a BSD style license for your Open Source Project] on [https://www.freebsd.org/ freebsd.org] is recommended. The permissive licenses allow code to be re-used without restrictions, including the possibility of building commercial software whereby the new code is not made public. |
| | | |
− | The site [http://choosealicense.com/ choosealicense.com] has a great three-column summary of the differences between the major open source licenses. Summarizing their explanations (with links to their license description pages): | + | The site [https://choosealicense.com/ choosealicense.com] has a great three-column summary of the differences between the major open source licenses. Summarizing their explanations (with links to their license description pages): |
| | | |
− | *The [http://choosealicense.com/licenses/mit MIT] license is a simple permissive license | + | *The [https://choosealicense.com/licenses/mit MIT] license is a simple permissive license |
− | *The [http://choosealicense.com/licenses/apache-2.0/ Apache License] adds an additional term explicitly granting the patent rights of code contributors to the users of such code | + | *The [https://choosealicense.com/licenses/apache-2.0/ Apache License] adds an additional term explicitly granting the patent rights of code contributors to the users of such code |
− | *The [http://choosealicense.com/licenses/bsd-2-clause/ BSD] license, or its newer even shorter successor [http://choosealicense.com/licenses/isc/ ISC] is virtually identical to MIT, but more succinctly worded | + | *The [https://choosealicense.com/licenses/bsd-2-clause/ BSD] license, or its newer even shorter successor [https://choosealicense.com/licenses/isc/ ISC] is virtually identical to MIT, but more succinctly worded |
| | | |
| One important aspect of all these licenses is the liability clause. This clause prohibits any code user from holding the code producers liable for damages arising from the use of the software code. | | One important aspect of all these licenses is the liability clause. This clause prohibits any code user from holding the code producers liable for damages arising from the use of the software code. |
Line 96: |
Line 87: |
| Data in this context includes organized databases holding datasets. Special copyright rules may apply to databases, which, under European law, are protected in their own right, irrespective of the status of the data they contain. | | Data in this context includes organized databases holding datasets. Special copyright rules may apply to databases, which, under European law, are protected in their own right, irrespective of the status of the data they contain. |
| | | |
− | The go-to solution for data licenses comes from the [http://opendatacommons.org/ Open Data Commons] that have created the following three licenses, and a nice [http://opendatacommons.org/guide/ 2-minute guide] on the how and why of data licensing: | + | The go-to solution for data licenses comes from the [https://opendatacommons.org/ Open Data Commons] that have created the following three licenses, and a nice [http://opendatacommons.org/guide/ 2-minute guide] on the how and why of data licensing: |
| | | |
− | *[http://opendatacommons.org/licenses/odbl/ Open Data Commons Open Database License (ODbL)]: this license is used by OpenStretMap | + | *[https://opendatacommons.org/licenses/odbl/ Open Data Commons Open Database License (ODbL)]: this license is used by OpenStreetMap |
− | *The [http://opendatacommons.org/licenses/by/1.0/ Open Data Attribution License (ODC-BY)] (analogous to CC BY) differs from the ODbL mainly due to a missing copyleft clause. ODC-BY basically requires that the contributors to the original database be listed. | + | *The [https://opendatacommons.org/licenses/by/1.0/ Open Data Attribution License (ODC-By)] (analogous to CC BY) differs from the ODbL mainly due to a missing copyleft clause. ODC-By basically requires that the contributors to the original database be listed. |
− | *[http://opendatacommons.org/licenses/pddl/summary/ Public Domain Dedication and License (PDDL)] is even more permissive and does not require attribution or force derived works to adopt specific license conditions | + | *[https://opendatacommons.org/licenses/pddl/summary/ Public Domain Dedication and License (PDDL)] is even more permissive and does not require attribution or force derived works to adopt specific license conditions |
− | *Only version{{nbsp}}4.0 [http://creativecommons.org/ Creative Commons] licenses should be used for data. This version has improved provisions for datasets and databases. Please refer to the section [https://wiki.openmod-initiative.org/index.php?title=Choosing_a_license&action=edit&mode=wysiwyg§ion=6#Other Other] for their properties. Recommended licenses are Public Domain (CC0) and CC-BY 4.0. Please note that CC-BY-SA is not recommended for data. See also the related question [http://opendata.stackexchange.com/questions/5995/are-creative-commons-licenses-suitable-for-data are CC licenses suitable for data?] on StackExchange. | + | *Only version{{nbsp}}4.0 [https://creativecommons.org/ Creative Commons] licenses should be used for data. This version has improved provisions for datasets and databases. Please refer to the section [https://wiki.openmod-initiative.org/index.php?title=Choosing_a_license&action=edit&mode=wysiwyg§ion=6#Other Other] for their properties. Recommended licenses are Public Domain (CC0) and CC-BY 4.0. Please note that CC-BY-SA is not recommended for data. See also the related question [https://opendata.stackexchange.com/questions/5995/are-creative-commons-licenses-suitable-for-data are CC licenses suitable for data?] on StackExchange. |
| | | |
| In December 2017, individuals in the openmod community made a written submission on the re-use of public sector information in Europe.<ref name="morrison-etal-2017">{{cite book | last1 = Morrison | first1 = Robbie | last2 = Brown | first2 = Tom | last3 = De Felice | first3 = Matteo | title = Submission on the re-use of public sector information: with an emphasis on energy system datasets — Release 09 | date = 10 December 2017 | location = Berlin, Germany | url = https://forum.openmod-initiative.org/uploads/default/original/1X/d659fda325438884e6e78b372772ed7069633f97.pdf | access-date = 2017-12-13}} Creative Commons CC BY 4.0 license. {{open access}}</ref> The openmod forum has a dedicated [https://forum.openmod-initiative.org/t/re-use-of-public-sector-information/476 thread]. | | In December 2017, individuals in the openmod community made a written submission on the re-use of public sector information in Europe.<ref name="morrison-etal-2017">{{cite book | last1 = Morrison | first1 = Robbie | last2 = Brown | first2 = Tom | last3 = De Felice | first3 = Matteo | title = Submission on the re-use of public sector information: with an emphasis on energy system datasets — Release 09 | date = 10 December 2017 | location = Berlin, Germany | url = https://forum.openmod-initiative.org/uploads/default/original/1X/d659fda325438884e6e78b372772ed7069633f97.pdf | access-date = 2017-12-13}} Creative Commons CC BY 4.0 license. {{open access}}</ref> The openmod forum has a dedicated [https://forum.openmod-initiative.org/t/re-use-of-public-sector-information/476 thread]. |
Line 116: |
Line 107: |
| The [https://www.gnu.org/copyleft/fdl.html GNU Free Documentation License 1.3] (FDLv1.3) is the GNU alternative to a Creative Commons license. | | The [https://www.gnu.org/copyleft/fdl.html GNU Free Documentation License 1.3] (FDLv1.3) is the GNU alternative to a Creative Commons license. |
| | | |
− | [http://www.gnu.org GNU] also recommends '''not''' using the following licenses for free documentation: | + | [https://www.gnu.org GNU] also recommends '''not''' using the following licenses for free documentation: |
| | | |
| *CC-NC (non-commercial) license of any form | | *CC-NC (non-commercial) license of any form |
| *CC-ND (no derivatives) license of any form | | *CC-ND (no derivatives) license of any form |
| | | |
− | For more information, please see [https://www.gnu.org/licenses/license-list.html#NonFreeDocumentationLicenses GNU page on nonfree documentation licenses]. | + | For more information, please see [https://www.gnu.org/licenses/license-list.html#NonFreeDocumentationLicenses GNU page on non-free documentation licenses]. |
| | | |
| == Other == | | == Other == |
Line 127: |
Line 118: |
| The Creative Commons family of licenses are probably the most widely known. As of December 2016, the fourth version of these licenses is current. First, the two "free licenses" are presented: | | The Creative Commons family of licenses are probably the most widely known. As of December 2016, the fourth version of these licenses is current. First, the two "free licenses" are presented: |
| | | |
− | *[http://creativecommons.org/licenses/by/4.0/ CC BY] (short for attributions, the "by" refers to authoring): requires that the source be named when sharing the original work or any derived work | + | *[https://creativecommons.org/licenses/by/4.0/ CC BY] (short for attributions, the "by" refers to authoring): requires that the source be named when sharing the original work or any derived work |
− | *[http://creativecommons.org/licenses/by-sa/4.0/ CC BY-SA]: similar to the GPL in that it requires any derived works to be published under a "compatible" (easiest is the same) license. It is the license used by Wikipedia for artikles. Version 4.0 is fully compatible with the GPLv3 (software) license. This license is not recommended for Open Data <span class="tlid-translation translation"><span title="">because there is an incompatibility with the much used OSM data (ODbL) and other copyleft data!</span></span> | + | *[https://creativecommons.org/licenses/by-sa/4.0/ CC BY-SA]: similar to the GPL in that it requires any derived works to be published under a "compatible" (easiest is the same) license. It is the license used by Wikipedia for articles. Version 4.0 is fully compatible with the GPLv3 (software) license. This license is not recommended for Open Data <span class="tlid-translation translation"><span title="">because there is an incompatibility with the much used OSM data (ODbL) and other copyleft data!</span></span> |
| | | |
| Only the two previous CC licenses qualify as "free" licenses, as they do not restrict what a user may do with the licensed work. Two "non-free" license components are presented: | | Only the two previous CC licenses qualify as "free" licenses, as they do not restrict what a user may do with the licensed work. Two "non-free" license components are presented: |
| | | |
− | *CC NC: the non-commercial option allows one to prohibit any "commercial" usage of their work. However, it is notoriously hard to define ''exactly what constitutes'' a commercial activity. This issue is explained in detail in the brochure [http://openglam.org/files/2013/01/iRights_CC-NC_Guide_English.pdf Consequences, risks and side-effects of the license module "non-commercial use only"]. In any case, the two licenses which result from this component are [http://creativecommons.org/licenses/by-nc/4.0/ CC BY-NC] and, with the share-alike option, [http://creativecommons.org/licenses/by-nc-sa/4.0/ CC BY-NC-SA]. | + | *CC NC: the non-commercial option allows one to prohibit any "commercial" usage of their work. However, it is notoriously hard to define ''exactly what constitutes'' a commercial activity. This issue is explained in detail in the brochure [https://openglam.org/files/2013/01/iRights_CC-NC_Guide_English.pdf Consequences, risks and side-effects of the license module "non-commercial use only"]. In any case, the two licenses which result from this component are [https://creativecommons.org/licenses/by-nc/4.0/ CC BY-NC] and, with the share-alike option, [https://creativecommons.org/licenses/by-nc-sa/4.0/ CC BY-NC-SA]. |
− | *CC ND (short for no derivitives): this option is available If you do not want changes or improvements to your work to be shared or redistributed. Its main use is by musicians who want to share their music with listeners, but do not wish to allow remixes or cover versions. The resulting licenses are [http://creativecommons.org/licenses/by-nd/4.0/ CC BY-ND] or, by combining it with the NC option, [http://creativecommons.org/licenses/by-nc-nd/4.0/ CC BY-NC-ND]. | + | *CC ND (short for no derivatives): this option is available If you do not want changes or improvements to your work to be shared or redistributed. Its main use is by musicians who want to share their music with listeners, but do not wish to allow remixes or cover versions. The resulting licenses are [https://creativecommons.org/licenses/by-nd/4.0/ CC BY-ND] or, by combining it with the NC option, [https://creativecommons.org/licenses/by-nc-nd/4.0/ CC BY-NC-ND]. |
| | | |
| For inspiration, the Creative Commons homepage lists [https://creativecommons.org/examples a host of example projects licensed under all different licenses] to give an impression of the contexts that triggered various individuals to select a particular license. | | For inspiration, the Creative Commons homepage lists [https://creativecommons.org/examples a host of example projects licensed under all different licenses] to give an impression of the contexts that triggered various individuals to select a particular license. |
| + | |
| | | |
| = FAQ = | | = FAQ = |
Line 143: |
Line 135: |
| The long answer is given in [http://opensource.stackexchange.com/questions/1717/why-is-cc-by-sa-discouraged-for-code Why is CC BY-SA discouraged for code?] on StackExchange. | | The long answer is given in [http://opensource.stackexchange.com/questions/1717/why-is-cc-by-sa-discouraged-for-code Why is CC BY-SA discouraged for code?] on StackExchange. |
| | | |
− | The short answer is that the CC licenses are written for creative works (music, film, texts), not software code. Therefore, a CC license leaves many important details (what consitutes a "derived" work, is linking allowed, what about patents?) unspecified. The conclusion: don not use CC licenses for code. | + | The short answer is that the CC licenses are written for creative works (music, film, texts), not software code. Therefore, a CC license leaves many important details (what constitutes a "derived" work, is linking allowed, what about patents?) unspecified. The conclusion: don not use CC licenses for code. |
| | | |
| == At what point should I choose or change a license? == | | == At what point should I choose or change a license? == |
| | | |
− | You should determine and add a licence '''prior''' to the '''first''' release of your project. Ideally that would include “small” releases within your research institute or organization. | + | You should determine and add a license '''prior''' to the '''first''' release of your project. Ideally that would include “small” releases within your research institute or organization. |
| | | |
− | Can I change the licence? The important thing is that, when you receive a copy of the source code with a particular license, you have been granted that license. So as long as the license does not have a revocation clause, it is permanent. See the related question on StackOverflow: [http://stackoverflow.com/questions/3498237/what-happens-when-an-open-source-project-changes-its-license What happens when an open source project changes its license?] | + | Can I change the license? The important thing is that, when you receive a copy of the source code with a particular license, you have been granted that license. So as long as the license does not have a revocation clause, it is permanent. See the related question on StackOverflow: [http://stackoverflow.com/questions/3498237/what-happens-when-an-open-source-project-changes-its-license What happens when an open source project changes its license?] |
| | | |
− | A license can be changed. You can swap the licence for the next version or release if '''all''' contributors (meaning copyright holders) agree or have previously agreed to the possibility of doing so, usually via a contributor agreement. Search for "contributor (license/assignment) agreement" online, for pointers on how to enable this up front. See also the [http://opensource.org/faq#contributor-agreements FAQ on contributor agreements on opensource.org], [http://wiki.civiccommons.org/Contributor_Agreements Civic Commons article on contributor agreements]. | + | A license can be changed. You can swap the license for the next version or release if '''all''' contributors (meaning copyright holders) agree or have previously agreed to the possibility of doing so, usually via a contributor agreement. Search for "contributor (license/assignment) agreement" online, for pointers on how to enable this up front. See also the [http://opensource.org/faq#contributor-agreements FAQ on contributor agreements on opensource.org], [http://wiki.civiccommons.org/Contributor_Agreements Civic Commons article on contributor agreements]. |
| | | |
| == What does sublicensing mean? == | | == What does sublicensing mean? == |
Line 158: |
Line 150: |
| | | |
| "The basic idea ... is that if this is granted, a licensee can become a licensor of some of the rights of the grant they received regardless of any other claim they may have to copyright control over what they distribute." Source: [https://programmers.stackexchange.com/questions/189633/what-sublicense-actually-means https://programmers.stackexchange.com/questions/189633/what-sublicense-actually-means] | | "The basic idea ... is that if this is granted, a licensee can become a licensor of some of the rights of the grant they received regardless of any other claim they may have to copyright control over what they distribute." Source: [https://programmers.stackexchange.com/questions/189633/what-sublicense-actually-means https://programmers.stackexchange.com/questions/189633/what-sublicense-actually-means] |
| + | |
| | | |
| = Seeking advice = | | = Seeking advice = |
In other words, why not just put code online without a license? A license clarifies the conditions under which your code can be reused. In the absence of a license, the author still retains proprietary copyright, and the conditions under which the code can be used are unclear.[1] A sentence like "feel free to use this code" does not improve the situation, because it does not clarify to what extent any possible user should "feel free" to use the code. Standard licenses provide pre-defined sets of standard conditions, which both providers and users only have to understand once, and can then later easily recognise and categorise.
The most common licenses for a given artifact can be determined by its type: code, data, documentation, or other generic digital "creative work" (reports and figures). For any given project, these components can and should be licensed independently by type.
At the most basic level, one must decide on whether to use a copyleft license or a more permissive license. While copyleft assures that code changes by any future contributors must stay public, permissive licenses only require attribution in derived works.
With these two distinctions (type of work, type of license), the following decision matrix can be drawn:
The following sections elaborate on both options for each type of work: code, data, documentation, and other.
The following minimal questions can give a guideline on whether one should choose a copyleft or a permissive license for a project. The Wikipedia article on Free software licenses gives an in-depth overview on both types and their properties.
Developers who use a GPL license must make the source code available if they share or sell an application built upon it. In this case, the source code must also contain any changes the developers may have made. If GPL code is used but not shared or sold, the code need not be published and any improvements may remain private. This has the important consequence that software written under such a license cannot be included in "non-free" software. The GPL family of licenses comprise:
One important aspect of all these licenses is the liability clause. This clause prohibits any code user from holding the code producers liable for damages arising from the use of the software code.
Data in this context includes organized databases holding datasets. Special copyright rules may apply to databases, which, under European law, are protected in their own right, irrespective of the status of the data they contain.
In December 2017, individuals in the openmod community made a written submission on the re-use of public sector information in Europe.[3] The openmod forum has a dedicated thread.
If you would like your model documentation to be used verbatim on Wikipedia, you need to use one of these Creative Commons licenses:
The Creative Commons family of licenses are probably the most widely known. As of December 2016, the fourth version of these licenses is current. First, the two "free licenses" are presented:
Only the two previous CC licenses qualify as "free" licenses, as they do not restrict what a user may do with the licensed work. Two "non-free" license components are presented:
The short answer is that the CC licenses are written for creative works (music, film, texts), not software code. Therefore, a CC license leaves many important details (what constitutes a "derived" work, is linking allowed, what about patents?) unspecified. The conclusion: don not use CC licenses for code.
Can I change the license? The important thing is that, when you receive a copy of the source code with a particular license, you have been granted that license. So as long as the license does not have a revocation clause, it is permanent. See the related question on StackOverflow: What happens when an open source project changes its license?
A license can be changed. You can swap the license for the next version or release if all contributors (meaning copyright holders) agree or have previously agreed to the possibility of doing so, usually via a contributor agreement. Search for "contributor (license/assignment) agreement" online, for pointers on how to enable this up front. See also the FAQ on contributor agreements on opensource.org, Civic Commons article on contributor agreements.
Sublicensing allows somebody to relicense all or part of the licensed software, for example, to use BSD-licensed code in a closed-source commercial application.
Questions related to the selection and use of open source licenses can be posted to our mailing list. But remember that the list is public and its traffic is indexed by search engines.