First pass at Jekylification
* Move licenses to license template * Move home / about to page template * Move annotations to config file, included via annotations.js * Move license metadata to YML Front matter * Automate the presentation of license metadata * Move sidebar to include * Add _site to gitignore
This commit is contained in:
Родитель
92888c215a
Коммит
caa47fb00c
|
@ -163,4 +163,7 @@ pip-log.txt
|
|||
.DS_Store
|
||||
|
||||
# .NET crap
|
||||
.config
|
||||
.config
|
||||
|
||||
#jekyll
|
||||
_site
|
|
@ -0,0 +1,57 @@
|
|||
title: ChooseALicense.com
|
||||
|
||||
rules:
|
||||
|
||||
required:
|
||||
include-copyright:
|
||||
description: Include the original copyright with the code.
|
||||
label: Copyright inclusion
|
||||
include-license:
|
||||
description: Include the full text of the license with the code.
|
||||
label: License inclusion
|
||||
document-changes:
|
||||
description: Indicate significant changes made to the code.
|
||||
label: State Changes
|
||||
disclose-source:
|
||||
description: Source code must be made available when distributing the software.
|
||||
label: Disclose Source
|
||||
nonstatic-linkage:
|
||||
description: The library must be linked in a way that allows it to be replaced with a similar library
|
||||
label: Nonstatic Linkage
|
||||
rename:
|
||||
description: You must change the name of the software if you modify it.
|
||||
label: Rename
|
||||
|
||||
permitted:
|
||||
commercial-use:
|
||||
description: This software and derivatives may be used for commercial purposes.
|
||||
label: Commercial Use
|
||||
modifications:
|
||||
description: This software may be modified.
|
||||
label: Modification
|
||||
distribution:
|
||||
description: You may distribute this software.
|
||||
label: Distribution
|
||||
sublicense:
|
||||
description: You may grant a sublicense to modify and distribute this software to third parties not included in the license.
|
||||
label: Sublicensing
|
||||
warranty:
|
||||
description: You may place a warranty on the software.
|
||||
label: Warranty
|
||||
private-use:
|
||||
description: You may use and modify the software without distributing it.
|
||||
label: Private Use
|
||||
|
||||
forbidden:
|
||||
no-warranty:
|
||||
description: Software is released without warranty and the software/license owner cannot be charged for damages.
|
||||
label: Liability
|
||||
trademark-use:
|
||||
description: "You may NOT use the names, logos, or trademarks of contributors."
|
||||
label: Use Trademark
|
||||
no-liability:
|
||||
description: Software is provided without warranty and the software author/license owner cannot be held liable for damages.
|
||||
label: Liability
|
||||
no-sublicense:
|
||||
description: You may not grant a sublicense to modify and distribute this software to third parties not included in the license.
|
||||
label: Sublicensing
|
|
@ -0,0 +1,44 @@
|
|||
<div class='sidebar'>
|
||||
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
{{ page.how }}
|
||||
</p>
|
||||
{% if page.note %}
|
||||
<p class="note">
|
||||
<strong>Note: </strong> {{ page.note }}
|
||||
</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="{{ page.source}}">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
|
||||
{% assign types = "required|permitted|forbidden" | split: "|" %}
|
||||
{% for type in types %}
|
||||
<h3>{{ type | capitalize }}</h3>
|
||||
<ul class="license-{{ type }}">
|
||||
{% for req in page[type] %}
|
||||
<li class="{{ req }}">{{ site.rules[type][req].label }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
{% if page.using %}
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
{% for using_hash in page.using %}
|
||||
<li><a href="{{ using_hash[1] }}">{{ using_hash[0] }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
</div><!-- /sidebar -->
|
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title}}</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/annotations.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class="{{ page.layout }} {{ page.class }}">
|
||||
<div class='container'>
|
||||
|
||||
{{ content }}
|
||||
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about/">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,60 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title}}</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/annotations.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class="{{ page.layout }}">
|
||||
<div class='container'>
|
||||
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
<h1>{{ page.title }}</h1>
|
||||
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
|
||||
{{ content }}
|
||||
|
||||
</pre><!-- /license-text -->
|
||||
</div><!-- /license-body -->
|
||||
|
||||
{% include sidebar.html %}
|
||||
|
||||
</div><!-- /cf -->
|
||||
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
About
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
</div><!-- /container -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
title: About
|
||||
layout: default
|
||||
permalink: /about/
|
||||
---
|
||||
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
# What’s this about?
|
||||
|
||||
We want to help developers choose a license for their source code.
|
||||
|
||||
If you already know what you’re doing and have a license you prefer to use, that’s great! We’re not here to change your mind. But if you are bewildered by the large number of OSS license choices, maybe we can help.
|
||||
|
||||
## Not comprehensive
|
||||
|
||||
This site is not a comprehensive directory of open source licenses. If you’re looking for a comprehensive list, we recommend the <a href="http://opensource.org/licenses/">Open Source Initiative</a> website.
|
||||
|
||||
We think there are too many options, which adds to the confusion. On the homepage, we break it down into just three licenses. For the vast majority of projects, these are probably the only three you will need to choose from. Just in case you have specific needs not covered by those three, we also highlight a few other licenses to consider.
|
||||
|
||||
## Disclaimer
|
||||
|
||||
We are not lawyers. Well most of us anyways. It is not the goal of this site to provide legal advice. The goal of this site is to provide a starting point to help you make an informed choice by providing information on popular open source licenses. If you have any questions regarding the right license for your code or any other legal issues relating to it, it’s always best to consult with a professional.
|
|
@ -1,56 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>About - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../../css/application.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>What’s this about?</h1>
|
||||
<p>
|
||||
We want to help developers choose a license for their source code.
|
||||
</p>
|
||||
<p>
|
||||
If you already know what you’re doing and have a license you prefer to use, that’s great! We’re not here to change your mind. But if you are bewildered by the large number of OSS license choices, maybe we can help.
|
||||
</p>
|
||||
|
||||
<h2>Not comprehensive</h2>
|
||||
<p>
|
||||
This site is not a comprehensive directory of open source licenses. If you’re looking for a comprehensive list, we recommend the <a href="http://opensource.org/licenses/">Open Source Initiative</a> website.
|
||||
</p>
|
||||
<p>
|
||||
We think there are too many options, which adds to the confusion. On the homepage, we break it down into just three licenses. For the vast majority of projects, these are probably the only three you will need to choose from. Just in case you have specific needs not covered by those three, we also highlight a few other licenses to consider.
|
||||
</a>
|
||||
|
||||
<h2>Disclaimer</h2>
|
||||
<p>
|
||||
We are not lawyers. Well most of us anyways. It is not the goal of this site to provide legal advice. The goal of this site is to provide a starting point to help you make an informed choice by providing information on popular open source licenses. If you have any questions regarding the right license for your code or any other legal issues relating to it, it’s always best to consult with a professional.
|
||||
</p>
|
||||
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
About
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
36
index.html
36
index.html
|
@ -1,20 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="css/application.css" media="screen" rel="stylesheet" />
|
||||
<script type="text/javascript" src="javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='home'>
|
||||
<div class='container'>
|
||||
<div id='home'>
|
||||
---
|
||||
layout: default
|
||||
class: home
|
||||
---
|
||||
<div id='home'>
|
||||
<h1>Choosing an OSS license doesn’t need to be scary.</h1>
|
||||
<h2>
|
||||
<span>{</span>
|
||||
|
@ -59,16 +47,4 @@
|
|||
<p class="see-more callout">
|
||||
None of these work for me. <a href="licenses">Show me more licenses »</a>
|
||||
</p>
|
||||
</div>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</div>
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
---
|
||||
var annotations = {
|
||||
{% for type_hash in site.rules %}
|
||||
"{{ type_hash[0] }}": {
|
||||
{% for rule_hash in type_hash[1] %}
|
||||
"{{ rule_hash[0] }}" : "{{ rule_hash[1].description }}"{% if forloop.rindex0 > 0 %},{% endif %}
|
||||
{% endfor %}
|
||||
}{% if forloop.rindex0 > 0 %},{% endif %}
|
||||
{% endfor %}
|
||||
}
|
|
@ -1,30 +1,3 @@
|
|||
var annotations = {
|
||||
permitted: {
|
||||
'commercial-use' : 'This software and derivatives may be used for commercial purposes.',
|
||||
'modifications' : 'This software may be modified.',
|
||||
'distribution' : 'You may distribute this software.',
|
||||
'sublicense' : 'You may grant a sublicense to modify and distribute this software to third parties not included in the license.',
|
||||
'warranty' : 'You may place a warranty on the software.',
|
||||
'private-use' : 'You may use and modify the software without distributing it.'
|
||||
},
|
||||
|
||||
forbidden: {
|
||||
'no-warranty' : 'Software is released without warranty and the software/license owner cannot be charged for damages.',
|
||||
'trademark-use' : 'You may NOT use the names, logos, or trademarks of contributors.',
|
||||
'no-liability' : 'Software is provided without warranty and the software author/license owner cannot be held liable for damages.',
|
||||
'no-sublicense' : 'You may not grant a sublicense to modify and distribute this software to third parties not included in the license.',
|
||||
},
|
||||
|
||||
required: {
|
||||
'include-copyright' : 'Include the original copyright with the code.',
|
||||
'include-license' : 'Include the full text of the license with the code.',
|
||||
'document-changes' : 'Indicate significant changes made to the code.',
|
||||
'disclose-source' : 'Source code must be made available when distributing the software.',
|
||||
'nonstatic-linkage' : 'The library must be linked in a way that allows it to be replaced with a similar library.',
|
||||
'rename' : 'You must change the name of the software if you modify it.'
|
||||
}
|
||||
}
|
||||
|
||||
var qtip_position = {
|
||||
my: 'top center',
|
||||
at: 'bottom center'
|
||||
|
|
|
@ -0,0 +1,73 @@
|
|||
---
|
||||
layout: default
|
||||
permalink: licenses/
|
||||
class: license-types
|
||||
---
|
||||
|
||||
<h1>Featured</h1>
|
||||
|
||||
{% for page in site.pages %}
|
||||
{% if page.layout == "license" %}
|
||||
{% if page.featured %}
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
{{ page.description }} <a href="{{ page.permalink }}">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
{% assign types = "required|permitted|forbidden" | split: "|" %}
|
||||
{% for type in types %}
|
||||
<tr>
|
||||
<td class="label">{{ type | capitalize }}</td>
|
||||
<td>
|
||||
<ul class="license-{{ type }}">
|
||||
{% for req in page[type] %}
|
||||
<li class="{{ req }}">{{ site.rules[type][req].label }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
<h2>Other licenses</h2>
|
||||
<p>
|
||||
Some communities tend to have specific licenses preferred by the
|
||||
community. For example, PERL developers often choose the artistic license.
|
||||
</p>
|
||||
|
||||
{% for page in site.pages %}
|
||||
{% if page.layout == "license" %}
|
||||
{% if page.featured != true %}
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
{{ page.description }} <a href="{{ page.permalink }}">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
{% assign types = "required|permitted|forbidden" | split: "|" %}
|
||||
{% for type in types %}
|
||||
<tr>
|
||||
<td class="label">{{ type | capitalize }}</td>
|
||||
<td>
|
||||
<ul class="license-{{ type }}">
|
||||
{% for req in page[type] %}
|
||||
<li class="{{ req }}">{{ site.rules[type][req].label }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
|
@ -1,34 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>Affero GPL - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>Affero GPL</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
title: Affero GPL
|
||||
layout: license
|
||||
permalink: agpl/
|
||||
source: http://www.gnu.org/licenses/gpl-3.0-standalone.html
|
||||
|
||||
note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
- document-changes
|
||||
- disclose-source
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- warranty
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
- no-sublicense
|
||||
|
||||
using:
|
||||
Some Project: "#"
|
||||
|
||||
---
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
|
@ -703,71 +702,3 @@ may consider it more useful to permit linking proprietary applications with
|
|||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
{http://www.gnu.org/philosophy/why-not-lgpl.html}.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
</p>
|
||||
<p class="note">
|
||||
<strong>Note:</strong> The Free Software Foundation recommends taking the additional
|
||||
step of adding a boilerplate notice to the top of each file. The boilerplate can
|
||||
be found at the end of the license.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://www.gnu.org/licenses/gpl-3.0-standalone.html">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="document-changes">State changes</li>
|
||||
<li class="disclose-source">Disclose Source</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="no-sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,34 +1,35 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>Apache License Version 2 - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>Apache v2 License</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
title: Apache v2 License
|
||||
layout: license
|
||||
permalink: apache/
|
||||
|
||||
featured: true
|
||||
|
||||
description: A permissive license that also grants a license to patent claims from contributors that are necessarily infringed by the software.
|
||||
|
||||
note: The Apache Foundation recommends taking the additional step of adding a boilerplate notice to the header of each source file. You can find the notice at the very end of the license in the appendix.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
|
||||
source: http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
- include-license
|
||||
- document-changes
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- sublicense
|
||||
- warranty
|
||||
|
||||
forbidden:
|
||||
- no-warranty
|
||||
- trademark-use
|
||||
---
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
@ -220,70 +221,3 @@ third-party archives.
|
|||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
</p>
|
||||
<p class="note">
|
||||
<strong>Note:</strong> The Apache Foundation recommends taking the additional step of adding a boilerplate notice to the header of each source file. You can find the notice at the very end of the license in the appendix.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://www.apache.org/licenses/LICENSE-2.0.html">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required cf">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="include-license">License inclusion</li>
|
||||
<li class="document-changes">State Changes</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted cf">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden cf">
|
||||
<li class="no-warranty">Liability</li>
|
||||
<li class="trademark-use">Use Trademark</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="http://httpd.apache.org/">Apache HTTP Server</a></li>
|
||||
<li><a href="http://www.openstack.org/">OpenStack</a></li>
|
||||
<li><a href="http://maven.apache.org/">Maven</a></li>
|
||||
<li><a href="http://openoffice.apache.org/">Open Office</a></li>
|
||||
<li><a href="http://nuget.org/">NuGet</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="../../about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,34 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>Artistic License 2.0 - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>Artistic License 2.0</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
layout: license
|
||||
title: Artistic License 2.0
|
||||
permalink: /artistic/
|
||||
|
||||
source: http://opensource.org/licenses/Artistic-2.0
|
||||
|
||||
description: A license that’s heavily favored by the PERL community.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace {year} with the current year and {copyright holders} with the name (or names) of the copyright holders.
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
- document-changes
|
||||
- disclose-source
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- sublicense
|
||||
- private-use
|
||||
forbidden:
|
||||
- no-liability
|
||||
- trademark-use
|
||||
---
|
||||
|
||||
Artistic License 2.0
|
||||
Copyright (c) 2000-2006, The Perl Foundation.
|
||||
|
||||
|
@ -191,69 +186,3 @@ UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR
|
|||
ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGE.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace {year} with the current year and {copyright holders} with the name (or names) of the copyright holders.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://opensource.org/licenses/Artistic-2.0">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="document-changes">State changes</li>
|
||||
<li class="disclose-source">Disclose source</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="private-use">Private Use</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="../../about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
layout: license
|
||||
title: BSD (3-Clause) License
|
||||
permalink: bsd-3-clause/
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace {year} with the current year and {copyright holders} with the name (or names) of the copyright holders. Replace {organization} with the organization, if any, that sponsors this work.
|
||||
|
||||
source: http://opensource.org/licenses/BSD-3-Clause
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- sublicense
|
||||
- warranty
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
- trademark-use
|
||||
|
||||
---
|
||||
|
||||
Copyright (c) {year}, {copyright holder}
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
Neither the name of the {organization} nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@ -1,103 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>BSD 3-Clause License - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>BSD (3-Clause) License</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Copyright (c) {year}, {copyright holder}
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
Neither the name of the {organization} nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace {year} with the current year and {copyright holders} with the name (or names) of the copyright holders. Replace {organization} with the organization, if any, that sponsors this work.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://opensource.org/licenses/BSD-3-Clause">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark (3-clause)</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,52 @@
|
|||
---
|
||||
layout: license
|
||||
title: BSD 2-Clause license
|
||||
permalink: /bsd/
|
||||
|
||||
description: A permissive license that comes in two variants, the <a href="bsd">BSD 2-Clause</a> and <a href="bsd-3-clause">BSD 3-Clause</a>. Both have very minute differences to the MIT license.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace {year} with the current year and {copyright holders} with the name (or names) of the copyright holders.
|
||||
|
||||
source: http://opensource.org/licenses/BSD-2-Clause
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modification
|
||||
- distribution
|
||||
- sublicense
|
||||
- warranty
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
- trademark-use
|
||||
|
||||
---
|
||||
|
||||
Copyright (c) {year}, {copyright holder}
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice, this list
|
||||
of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice, this
|
||||
list of conditions and the following disclaimer in the documentation and/or
|
||||
other materials provided with the distribution.
|
||||
Neither the name of the {organization} nor the names of its contributors may be
|
||||
used to endorse or promote products derived from this software without specific
|
||||
prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@ -1,119 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>BSD 2-Clause license - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>BSD (2-Clause) License</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Copyright (c) {year}, {copyright holder}
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice, this list
|
||||
of conditions and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice, this
|
||||
list of conditions and the following disclaimer in the documentation and/or
|
||||
other materials provided with the distribution.
|
||||
Neither the name of the {organization} nor the names of its contributors may be
|
||||
used to endorse or promote products derived from this software without specific
|
||||
prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace {year} with the current year and {copyright holders} with the name (or names) of the copyright holders.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://opensource.org/licenses/BSD-2-Clause">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark (3-clause)</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="../../about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,34 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>Eclipse Public License v1.0 - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>Eclipse Public License v1.0</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
layout: license
|
||||
title: Eclipse Public License v1.0
|
||||
permalink: eclipse/
|
||||
|
||||
description: Used by the Eclipse foundation for its software, this license includes reciprocal requirements in some cases.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
|
||||
source: http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
required:
|
||||
- disclose-source
|
||||
- include-license
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- distribution
|
||||
- modifications
|
||||
- sublicense
|
||||
- warranty
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
- trademark-use
|
||||
|
||||
---
|
||||
Eclipse Public License - v 1.0
|
||||
|
||||
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
|
||||
|
@ -227,66 +223,3 @@ intellectual property laws of the United States of America. No party to this
|
|||
Agreement will bring a legal action under this Agreement more than one year
|
||||
after the cause of action arose. Each party waives its rights to a jury trial in
|
||||
any resulting litigation.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://www.eclipse.org/legal/epl-v10.html">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="disclose-source">Disclose source</li>
|
||||
<li class="include-license">License inclusion</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,34 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>GPL v2 - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>GPL v2</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
title: GPL v2
|
||||
layout: license
|
||||
permalink: gpl-v2/
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
|
||||
note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
- document-changes
|
||||
- disclose-source
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- warranty
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
- no-sublicense
|
||||
|
||||
---
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
|
@ -368,71 +363,3 @@ proprietary programs. If your program is a subroutine library, you may
|
|||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
</p>
|
||||
<p class="note">
|
||||
<strong>Note:</strong> The Free Software Foundation recommends taking the additional
|
||||
step of adding a boilerplate notice to the top of each file. The boilerplate can
|
||||
be found at the end of the license.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://www.gnu.org/licenses/gpl-2.0-standalone.html">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="document-changes">State changes</li>
|
||||
<li class="disclose-source">Disclose Source</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="no-sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="http://www.linux.org/">Linux Kernel</a></li>
|
||||
<li><a href="http://git-scm.com/">Git</a></li>
|
||||
<li><a href="http://www.mysql.com/">MySQL</a></li>
|
||||
<li><a href="https://github.com/id-Software/Quake-III-Arena">Quake 3 Arena</a></li>
|
||||
<li><a href="http://www.blender.org/">Blender</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,34 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>GPL v3 - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>GPL v3</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
title: GPL v3
|
||||
layout: license
|
||||
permalink: gpl-v3/
|
||||
|
||||
featured: true
|
||||
|
||||
description: GPL is the most widely used free software license and is fully reciprocal. Derived works must be distributed under the same license.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
|
||||
note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
- document-changes
|
||||
- disclose-source
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- warranty
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
- no-sublicense
|
||||
|
||||
---
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
|
@ -703,71 +701,3 @@ may consider it more useful to permit linking proprietary applications with
|
|||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
{http://www.gnu.org/philosophy/why-not-lgpl.html}.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
</p>
|
||||
<p class="note">
|
||||
<strong>Note:</strong> The Free Software Foundation recommends taking the additional
|
||||
step of adding a boilerplate notice to the top of each file. The boilerplate can
|
||||
be found at the end of the license.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://www.gnu.org/licenses/gpl-3.0-standalone.html">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="document-changes">State changes</li>
|
||||
<li class="disclose-source">Disclose Source</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="no-sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="http://gcc.gnu.org/">GCC</a></li>
|
||||
<li><a href="http://www.samba.org/">Samba</a></li>
|
||||
<li><a href="http://calibre-ebook.com/">Calibre</a></li>
|
||||
<li><a href="http://macromates.com/">Textmate</a></li>
|
||||
<li><a href="http://notepad-plus-plus.org/">Notepad++</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,412 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>More Licenses - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license-types'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>Featured</h1>
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="mit">MIT</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty. <a href="mit">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="apache">Apache</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
A permissive license that also grants a license to patent claims from contributors
|
||||
that are necessarily infringed by the software. <a href="apache">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="include-license">License inclusion</li>
|
||||
<li class="document-changes">State Changes</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-warranty">Liability</li>
|
||||
<li class="trademark-use">Use Trademark</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="gpl.html">GPL</a> <small><a href="gpl-v2">v2</a> / <a href="gpl-v3">v3</a> / <a href="agpl">Affero</a></small>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
GPL is the most widely used free software license and is fully reciprocal. Derived
|
||||
works must be distributed under the same license.
|
||||
<a href="gpl-v2">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="document-changes">State changes</li>
|
||||
<li class="disclose-source">Disclose Source</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="no-sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Other licenses</h2>
|
||||
<p>
|
||||
Some communities tend to have specific licenses preferred by the
|
||||
community. For example, PERL developers often choose the artistic license.
|
||||
</p>
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="artistic">Artistic</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
A license that’s heavily favored by the PERL community.
|
||||
<a href="artistic">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="document-changes">State changes</li>
|
||||
<li class="disclose-source">Disclose source</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="private-use">Private Use</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="bsd">BSD</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
A permissive license that comes in two variants, the <a href="bsd">BSD 2-Clause</a> and <a href="bsd-3-clause">BSD 3-Clause</a>. Both have very minute differences to the MIT license.
|
||||
<a href="bsd">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark (3-clause)</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="eclipse">Eclipse</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
Used by the Eclipse foundation for its software, this license includes reciprocal requirements in
|
||||
some cases. <a href="eclipse">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="disclose-source">Disclose source</li>
|
||||
<li class="include-license">License inclusion</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="mozilla">Mozilla</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
The Mozilla Public License (MPL 2.0) is maintained by the Mozilla foundation. This license attempts to be a compromise between the permissive BSD license and the reciprocal GPL license.
|
||||
<a href="mozilla">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="disclose-source">Disclose source</li>
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="include-license">License inclusion</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="lgpl-v2.1">LGPL v2.1</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
Primarily used for software libraries, LGPL requires that derived works be licensed under the same license, but
|
||||
works that only link to it do not fall under this restriction.
|
||||
<a href="lgpl-v2.1">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="nonstatic-linkage">Nonstatic linkage</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class='license-rules'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
<a href="lgpl-v3">LGPL v3</a>
|
||||
</th>
|
||||
<th class='summary'>
|
||||
Version 3 of the LGPL is an additional set of permissions to the <a href="gpl-v3">GPL v3 license</a>
|
||||
that requires that derived works be licensed under the same license, but works that only link to
|
||||
it do not fall under this restriction.
|
||||
<a href="lgpl-v3">View full license »</a>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Required</td>
|
||||
<td>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="nonstatic-linkage">Nonstatic linkage</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Permitted</td>
|
||||
<td>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='label'>Forbidden</td>
|
||||
<td>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="../about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,34 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>LGPL v2.1 - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>LGPL v2.1</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
layout: license
|
||||
title: LGPL v2.1
|
||||
permalink: lgpl-v2.1/
|
||||
|
||||
description: Primarily used for software libraries, LGPL requires that derived works be licensed under the same license, but works that only link to it do not fall under this restriction.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
|
||||
note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
- nonstatic-linkage
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- sublicense
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
|
||||
---
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
|
@ -531,69 +526,3 @@ necessary. Here is a sample; alter the names:
|
|||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
</p>
|
||||
<p class="note">
|
||||
<strong>Note:</strong> The Free Software Foundation recommends taking the additional
|
||||
step of adding a boilerplate notice to the top of each file. The boilerplate can
|
||||
be found at the end of the license.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://www.gnu.org/licenses/gpl-3.0-standalone.html">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="nonstatic-linkage">Nonstatic linkage</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,34 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>GPL v3 - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>LGPL v3</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
layout: license
|
||||
title: LGPL v3
|
||||
permalink: lgpl-v3/
|
||||
|
||||
description: Version 3 of the LGPL is an additional set of permissions to the <a href="gpl-v3">GPL v3 license</a> that requires that derived works be licensed under the same license, but works that only link to it do not fall under this restriction.
|
||||
|
||||
how: This license is an additional set of permissions to the <a href="../gpl-v3">GPL v3</a> license. Follow the instructions to apply the GPL v3 license. Then either paste this text to the bottom of that file OR add a separate file (typically named COPYING.lesser or LICENSE.lesser) in the root of your source code and copy the text.
|
||||
|
||||
note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
- nonstatic-linkage
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- sublicense
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
|
||||
---
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
|
@ -194,67 +188,3 @@ whether future versions of the GNU Lesser General Public License shall
|
|||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
This license is an additional set of permissions to the <a href="../gpl-v3">GPL v3</a>
|
||||
license. Follow the instructions to apply the GPL v3 license. Then either paste this text
|
||||
to the bottom of that file OR add a separate file (typically named COPYING.lesser or LICENSE.lesser)
|
||||
in the root of your source code and copy the text.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://www.gnu.org/licenses/gpl-3.0-standalone.html">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="nonstatic-linkage">Nonstatic linkage</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
layout: license
|
||||
title: MIT License
|
||||
permalink: mit/
|
||||
|
||||
featured: true
|
||||
|
||||
description: A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace {year} with the current year and {copyright holders} with the name (or names) of the copyright holders.
|
||||
|
||||
required:
|
||||
- include-copyright
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- sublicense
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
|
||||
---
|
||||
|
||||
Copyright (c) {year} {copyright holders}
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -1,110 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>MIT License - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>MIT License</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Copyright (c) {year} {copyright holders}
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace {year} with the current year and {copyright holders} with the name (or names) of the copyright holders.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://opensource.org/licenses/BSD-3-Clause">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="http://jquery.org/">jQuery</a></li>
|
||||
<li><a href="http://rubyonrails.org/">Ruby on Rails</a></li>
|
||||
<li><a href="http://nodejs.org/">Node.js</a></li>
|
||||
<li><a href="https://www.virtualbox.org/">VirtualBox</a></li>
|
||||
<li><a href="http://james.newtonking.com/projects/json-net.aspx">Json.NET</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,34 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<title>Mozilla Public License Version 2.0 - ChooseALicense.com</title>
|
||||
<meta charset='utf-8'>
|
||||
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
||||
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
||||
<link type="text/css" href="../../css/application.css" media="screen" rel="stylesheet">
|
||||
<link type="text/css" href="../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
||||
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/clipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/ZeroClipboard.js"></script>
|
||||
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
||||
<!--[if (gte IE 6)&(lte IE 8)]>
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a> / <a href="../">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h1>Mozilla Public License<br />Version 2.0</h1>
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
---
|
||||
layout: license
|
||||
title: Mozilla Public License Version 2.0
|
||||
permalink: mozilla/
|
||||
|
||||
description: The Mozilla Public License (MPL 2.0) is maintained by the Mozilla foundation. This license attempts to be a compromise between the permissive BSD license and the reciprocal GPL license.
|
||||
|
||||
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
|
||||
required:
|
||||
- disclose-source
|
||||
- include-copyright
|
||||
- include-license
|
||||
|
||||
permitted:
|
||||
- commercial-use
|
||||
- modifications
|
||||
- distribution
|
||||
- sublicense
|
||||
- warranty
|
||||
|
||||
forbidden:
|
||||
- no-liability
|
||||
- trademark-use
|
||||
|
||||
---
|
||||
Mozilla Public License, version 2.0
|
||||
|
||||
1. Definitions
|
||||
|
@ -382,68 +377,4 @@ Exhibit B - “Incompatible With Secondary Licenses” Notice
|
|||
This Source Code Form is “Incompatible
|
||||
With Secondary Licenses”, as defined by
|
||||
the Mozilla Public License, v. 2.0.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply callout'>
|
||||
<h5>How to apply this license</h5>
|
||||
<p>
|
||||
Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
|
||||
</p>
|
||||
</div>
|
||||
<div class="source">
|
||||
<a href="http://www.mozilla.org/MPL/2.0/">Source</a>
|
||||
</div>
|
||||
|
||||
<div class="license-rules license-rules-sidebar">
|
||||
<h3>Required</h3>
|
||||
<ul class="license-required">
|
||||
<li class="disclose-source">Disclose source</li>
|
||||
<li class="include-copyright">Copyright inclusion</li>
|
||||
<li class="include-license">License inclusion</li>
|
||||
</ul>
|
||||
|
||||
<h3>Permitted</h3>
|
||||
<ul class="license-permitted">
|
||||
<li class="commercial-use">Commercial use</li>
|
||||
<li class="modifications">Modification</li>
|
||||
<li class="distribution">Distribution</li>
|
||||
<li class="sublicense">Sublicensing</li>
|
||||
<li class="warranty">Warranty</li>
|
||||
</ul>
|
||||
|
||||
<h3>Forbidden</h3>
|
||||
<ul class="license-forbidden">
|
||||
<li class="no-liability">Liability</li>
|
||||
<li class="trademark-use">Use Trademark</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="projects-with-license">
|
||||
<h3>Who's using this license?</h3>
|
||||
<ul>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
<li><a href="#">Some Project</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
</nav>
|
||||
<p>
|
||||
Please consult a legal expert before adopting a software license for your project.<br>
|
||||
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче