mirror of
https://github.com/github/choosealicense.com
synced 2024-12-22 04:40:09 +01:00
CSS refactoring
- Replace IDs with classes - Overall specificity reduction - Use .js- prefix for JS hooks
This commit is contained in:
parent
61f43db622
commit
3c14329ea7
@ -12,9 +12,9 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<body class='license'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../../">Home</a>
|
||||
</li>
|
||||
@ -40,7 +40,7 @@
|
||||
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>
|
||||
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
About
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -48,7 +48,7 @@
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -71,7 +71,7 @@ a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a.button {
|
||||
.button {
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-ms-border-radius: 3px;
|
||||
@ -103,7 +103,7 @@ a.button {
|
||||
padding: 5px 10px;
|
||||
text-align: center;
|
||||
}
|
||||
a.button:hover {
|
||||
.button:hover {
|
||||
text-decoration: none;
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7e5e0), color-stop(100%, #d0ceca));
|
||||
background-image: -webkit-linear-gradient(#e7e5e0, #d0ceca);
|
||||
@ -149,21 +149,21 @@ strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#container {
|
||||
.container {
|
||||
margin: 40px auto;
|
||||
width: 900px;
|
||||
}
|
||||
|
||||
#home {
|
||||
.home {
|
||||
padding-top: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
#home h1 {
|
||||
.home h1 {
|
||||
font-size: 63px;
|
||||
line-height: 1.1;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
#home h2 {
|
||||
.home h2 {
|
||||
color: #149ad4;
|
||||
font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
|
||||
font-size: 27px;
|
||||
@ -172,7 +172,7 @@ strong {
|
||||
margin-bottom: 45px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#home h2 span {
|
||||
.home h2 span {
|
||||
color: #e9e6e2;
|
||||
font-size: 70px;
|
||||
padding: 0 5px;
|
||||
@ -180,29 +180,29 @@ strong {
|
||||
top: 10px;
|
||||
}
|
||||
|
||||
ul#situations {
|
||||
.situations {
|
||||
width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
ul#situations li {
|
||||
.situations li {
|
||||
width: 240px;
|
||||
float: left;
|
||||
margin-left: 27px;
|
||||
text-align: center;
|
||||
}
|
||||
ul#situations li.whatever {
|
||||
.situations .whatever {
|
||||
margin-left: 0;
|
||||
margin-top: 16px;
|
||||
}
|
||||
ul#situations li.reciprocity {
|
||||
.situations .reciprocity {
|
||||
margin-top: 3px;
|
||||
}
|
||||
ul#situations li h3 {
|
||||
.situations h3 {
|
||||
margin: 0 auto 20px auto;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
ul#situations li h3 a {
|
||||
.situations h3 a {
|
||||
text-decoration: none;
|
||||
color: #443a33;
|
||||
font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
|
||||
@ -211,8 +211,11 @@ ul#situations li h3 a {
|
||||
line-height: 1.1;
|
||||
}
|
||||
|
||||
.see-more {
|
||||
.situations .button {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.callout {
|
||||
background-color: rgba(255, 255, 255, 0.33);
|
||||
border: solid 1px #e9e6e1;
|
||||
-webkit-border-radius: 3px;
|
||||
@ -223,41 +226,40 @@ ul#situations li h3 a {
|
||||
color: #7e7974;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
ul#situations li a.button {
|
||||
.see-more {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
table.license {
|
||||
.license-grid {
|
||||
font-size: 13px;
|
||||
line-height: 1.3;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
table.license th {
|
||||
.license-grid th {
|
||||
border-bottom: solid 1px #d9d7d2;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
table.license th.name {
|
||||
.license-grid .name {
|
||||
border-right: solid 1px #d9d7d2;
|
||||
width: 150px;
|
||||
}
|
||||
table.license th.name a {
|
||||
.license-grid .name a {
|
||||
font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
|
||||
font-size: 28px;
|
||||
font-weight: 900;
|
||||
}
|
||||
table.license th.summary {
|
||||
.license-grid .summary {
|
||||
color: #7e7974;
|
||||
}
|
||||
table.license td {
|
||||
.license-grid td {
|
||||
border-bottom: solid 1px #e9e6e2;
|
||||
padding: 4px 10px;
|
||||
}
|
||||
table.license td.label {
|
||||
.license-grid .label {
|
||||
border-right: solid 1px #d9d7d2;
|
||||
font-weight: bold;
|
||||
}
|
||||
table.license td ul li {
|
||||
.license-grid li {
|
||||
background-position: 0 1px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 12px 12px;
|
||||
@ -271,79 +273,70 @@ table.license td ul li {
|
||||
margin-right: 15px;
|
||||
padding-left: 16px;
|
||||
}
|
||||
table.license td ul li:hover {
|
||||
.license-grid li:hover {
|
||||
color: #443a33;
|
||||
}
|
||||
table.license td ul.required li {
|
||||
.license-grid .required li {
|
||||
background-image: url(../images/blue-dot@2x.png);
|
||||
}
|
||||
table.license td ul.permitted li {
|
||||
.license-grid .permitted li {
|
||||
background-image: url(../images/green-dot@2x.png);
|
||||
}
|
||||
table.license td ul.forbidden li {
|
||||
.license-grid .forbidden li {
|
||||
background-image: url(../images/red-dot@2x.png);
|
||||
}
|
||||
table.license tr:nth-child(2n) td {
|
||||
.license-grid tr:nth-child(2n) td {
|
||||
background-color: rgba(0, 0, 0, 0.02);
|
||||
}
|
||||
|
||||
div.license {
|
||||
.license-body {
|
||||
font-size: 15px;
|
||||
float: left;
|
||||
width: 660px;
|
||||
}
|
||||
|
||||
div.license pre {
|
||||
.license-body pre {
|
||||
font-family: Consolas, Monaco, Courier, monospace;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
div.sidebar {
|
||||
.sidebar {
|
||||
float: right;
|
||||
width: 220px;
|
||||
}
|
||||
|
||||
div.sidebar a.button {
|
||||
.sidebar a.button {
|
||||
margin-top: -110px;
|
||||
width: 100%;
|
||||
}
|
||||
div.sidebar .how-to-apply {
|
||||
background-color: rgba(255, 255, 255, 0.33);
|
||||
border: solid 1px #e9e6e1;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-ms-border-radius: 3px;
|
||||
-o-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
color: #7e7974;
|
||||
.sidebar .how-to-apply {
|
||||
font-size: 12px;
|
||||
margin-top: -15px;
|
||||
padding: 16px;
|
||||
}
|
||||
div.sidebar .how-to-apply p {
|
||||
.sidebar .how-to-apply p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
div.sidebar .how-to-apply p:last-child {
|
||||
.sidebar .how-to-apply p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
div.sidebar div.source {
|
||||
.sidebar .source {
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
div.sidebar div.source a {
|
||||
.sidebar .source a {
|
||||
padding-left: 20px;
|
||||
background: transparent url(../images/source@2x.png) 0 1px no-repeat;
|
||||
background-size: 16px 12px;
|
||||
}
|
||||
|
||||
div.sidebar div.boilerplate {
|
||||
.sidebar .boilerplate {
|
||||
font-family: 'courier new', courier;
|
||||
font-size: 0.7em;
|
||||
}
|
||||
|
||||
#footer {
|
||||
.site-footer {
|
||||
border-top: 1px solid #e9e6e1;
|
||||
margin-top: 30px;
|
||||
padding-top: 20px;
|
||||
@ -352,17 +345,17 @@ div.sidebar div.boilerplate {
|
||||
text-align: left;
|
||||
line-height: 1.5;
|
||||
}
|
||||
#footer a {
|
||||
.site-footer a {
|
||||
color: #443a33;
|
||||
font-weight: normal;
|
||||
}
|
||||
#footer p {
|
||||
.site-footer p {
|
||||
float: left;
|
||||
}
|
||||
#footer nav {
|
||||
.site-footer nav {
|
||||
float: right;
|
||||
}
|
||||
#footer nav a {
|
||||
.site-footer nav a {
|
||||
display: inline-block;
|
||||
margin-left: 20px;
|
||||
}
|
||||
@ -422,4 +415,3 @@ div.sidebar div.boilerplate {
|
||||
.cf {
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
|
14
index.html
14
index.html
@ -12,8 +12,8 @@
|
||||
<script src='javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='home'>
|
||||
<div id='container'>
|
||||
<body class='home'>
|
||||
<div class='container'>
|
||||
<div id='home'>
|
||||
<h1>Choosing an OSS license doesn’t need to be scary.</h1>
|
||||
<h2>
|
||||
@ -21,7 +21,7 @@
|
||||
Which of the following best describes your situation?
|
||||
<span>}</span>
|
||||
</h2>
|
||||
<ul id='situations' class="cf">
|
||||
<ul class="situations cf">
|
||||
<li class='whatever'>
|
||||
<a href="licenses/mit"><img height='57' src='images/three-arrows@2x.png' width='72'></a>
|
||||
<h3><a href="licenses/mit">Do what you like with my code.</a></h3>
|
||||
@ -56,19 +56,19 @@
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p class="see-more">
|
||||
<p class="see-more callout">
|
||||
None of these work for me. <a href="licenses">Show me more licenses »</a>
|
||||
</p>
|
||||
</div>
|
||||
<div id="footer" class="cf">
|
||||
<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>.
|
||||
</div>
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -14,7 +14,7 @@ var annotations = {
|
||||
'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.',
|
||||
@ -24,7 +24,6 @@ var annotations = {
|
||||
'rename' : 'You must change the name of the software if you modify it.'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
var qtip_position = {
|
||||
my: 'top center',
|
||||
@ -37,9 +36,9 @@ $(document).ready(function() {
|
||||
for (var annotation in categoryAnnotations) {
|
||||
$('table.license ul.' + category + ' li.' + annotation).attr('title', categoryAnnotations[annotation]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$('table.license ul.required li').qtip({
|
||||
$('.license .required li').qtip({
|
||||
content: {
|
||||
text: false,
|
||||
title: {
|
||||
@ -52,7 +51,7 @@ $(document).ready(function() {
|
||||
}
|
||||
});
|
||||
|
||||
$('table.license ul.permitted li').qtip({
|
||||
$('.license .permitted li').qtip({
|
||||
content: {
|
||||
text: false,
|
||||
title: {
|
||||
@ -65,7 +64,7 @@ $(document).ready(function() {
|
||||
}
|
||||
});
|
||||
|
||||
$('table.license ul.forbidden li').qtip({
|
||||
$('.license .forbidden li').qtip({
|
||||
content: {
|
||||
text: false,
|
||||
title: {
|
||||
|
@ -1,20 +1,20 @@
|
||||
$(document).ready(function() {
|
||||
|
||||
// Backup the clipboard button's original text.
|
||||
$("#clipboard-button").data('clipboard-prompt', $('#clipboard-button').text());
|
||||
|
||||
// Hook up copy to clipboard buttons
|
||||
var clip = new ZeroClipboard( $("#clipboard-button"), {
|
||||
moviePath: "../../javascripts/ZeroClipboard.swf"
|
||||
} );
|
||||
$(".js-clipboard-button").data('clipboard-prompt', $('.js-clipboard-button').text());
|
||||
|
||||
clip.on( 'mouseover', function(client, args) {
|
||||
// Hook up copy to clipboard buttons
|
||||
var clip = new ZeroClipboard($(".js-clipboard-button"), {
|
||||
moviePath: "../../javascripts/ZeroClipboard.swf"
|
||||
});
|
||||
|
||||
clip.on('mouseover', function(client, args) {
|
||||
// Restore the clipboard button's original text.
|
||||
this.innerText = $(this).data('clipboard-prompt');
|
||||
} );
|
||||
});
|
||||
|
||||
clip.on( 'complete', function(client, args) {
|
||||
clip.on('complete', function(client, args) {
|
||||
this.innerText = 'Copied!';
|
||||
} );
|
||||
});
|
||||
|
||||
});
|
@ -15,16 +15,16 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
@ -34,27 +34,27 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction, and
|
||||
"License" shall mean the terms and conditions for use, reproduction, and
|
||||
distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
||||
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
||||
owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all other entities
|
||||
that control, are controlled by, or are under common control with that entity.
|
||||
For the purposes of this definition, "control" means (i) the power, direct or
|
||||
indirect, to cause the direction or management of such entity, whether by
|
||||
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
"Legal Entity" shall mean the union of the acting entity and all other entities
|
||||
that control, are controlled by, or are under common control with that entity.
|
||||
For the purposes of this definition, "control" means (i) the power, direct or
|
||||
indirect, to cause the direction or management of such entity, whether by
|
||||
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
||||
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
||||
permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications, including
|
||||
"Source" form shall mean the preferred form for making modifications, including
|
||||
but not limited to software source code, documentation source, and configuration
|
||||
files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical transformation or
|
||||
"Object" form shall mean any form resulting from mechanical transformation or
|
||||
translation of a Source form, including but not limited to compiled object code,
|
||||
generated documentation, and conversions to other media types.
|
||||
|
||||
@ -62,145 +62,145 @@ generated documentation, and conversions to other media types.
|
||||
available under the License, as indicated by a copyright notice that is included
|
||||
in or attached to the work (an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
||||
is based on (or derived from) the Work and for which the editorial revisions,
|
||||
annotations, elaborations, or other modifications represent, as a whole, an
|
||||
original work of authorship. For the purposes of this License, Derivative Works
|
||||
shall not include works that remain separable from, or merely link (or bind by
|
||||
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
||||
is based on (or derived from) the Work and for which the editorial revisions,
|
||||
annotations, elaborations, or other modifications represent, as a whole, an
|
||||
original work of authorship. For the purposes of this License, Derivative Works
|
||||
shall not include works that remain separable from, or merely link (or bind by
|
||||
name) to the interfaces of, the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including the original version
|
||||
of the Work and any modifications or additions to that Work or Derivative Works
|
||||
thereof, that is intentionally submitted to Licensor for inclusion in the Work
|
||||
by the copyright owner or by an individual or Legal Entity authorized to submit
|
||||
on behalf of the copyright owner. For the purposes of this definition,
|
||||
"submitted" means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems, and
|
||||
issue tracking systems that are managed by, or on behalf of, the Licensor for
|
||||
the purpose of discussing and improving the Work, but excluding communication
|
||||
of the Work and any modifications or additions to that Work or Derivative Works
|
||||
thereof, that is intentionally submitted to Licensor for inclusion in the Work
|
||||
by the copyright owner or by an individual or Legal Entity authorized to submit
|
||||
on behalf of the copyright owner. For the purposes of this definition,
|
||||
"submitted" means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems, and
|
||||
issue tracking systems that are managed by, or on behalf of, the Licensor for
|
||||
the purpose of discussing and improving the Work, but excluding communication
|
||||
that is conspicuously marked or otherwise designated in writing by the copyright
|
||||
owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
||||
of whom a Contribution has been received by Licensor and subsequently
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
||||
of whom a Contribution has been received by Licensor and subsequently
|
||||
incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License.
|
||||
|
||||
Subject to the terms and conditions of this License, each Contributor hereby
|
||||
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||
irrevocable copyright license to reproduce, prepare Derivative Works of,
|
||||
Subject to the terms and conditions of this License, each Contributor hereby
|
||||
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||
irrevocable copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the Work and such
|
||||
Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License.
|
||||
|
||||
Subject to the terms and conditions of this License, each Contributor hereby
|
||||
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||
irrevocable (except as stated in this section) patent license to make, have
|
||||
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
|
||||
such license applies only to those patent claims licensable by such Contributor
|
||||
that are necessarily infringed by their Contribution(s) alone or by combination
|
||||
of their Contribution(s) with the Work to which such Contribution(s) was
|
||||
submitted. If You institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
||||
Contribution incorporated within the Work constitutes direct or contributory
|
||||
patent infringement, then any patent licenses granted to You under this License
|
||||
Subject to the terms and conditions of this License, each Contributor hereby
|
||||
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||
irrevocable (except as stated in this section) patent license to make, have
|
||||
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
|
||||
such license applies only to those patent claims licensable by such Contributor
|
||||
that are necessarily infringed by their Contribution(s) alone or by combination
|
||||
of their Contribution(s) with the Work to which such Contribution(s) was
|
||||
submitted. If You institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
||||
Contribution incorporated within the Work constitutes direct or contributory
|
||||
patent infringement, then any patent licenses granted to You under this License
|
||||
for that Work shall terminate as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution.
|
||||
|
||||
You may reproduce and distribute copies of the Work or Derivative Works thereof
|
||||
in any medium, with or without modifications, and in Source or Object form,
|
||||
You may reproduce and distribute copies of the Work or Derivative Works thereof
|
||||
in any medium, with or without modifications, and in Source or Object form,
|
||||
provided that You meet the following conditions:
|
||||
|
||||
You must give any other recipients of the Work or Derivative Works a copy of
|
||||
You must give any other recipients of the Work or Derivative Works a copy of
|
||||
this License; and
|
||||
You must cause any modified files to carry prominent notices stating that You
|
||||
You must cause any modified files to carry prominent notices stating that You
|
||||
changed the files; and
|
||||
You must retain, in the Source form of any Derivative Works that You distribute,
|
||||
all copyright, patent, trademark, and attribution notices from the Source form
|
||||
of the Work, excluding those notices that do not pertain to any part of the
|
||||
all copyright, patent, trademark, and attribution notices from the Source form
|
||||
of the Work, excluding those notices that do not pertain to any part of the
|
||||
Derivative Works; and
|
||||
If the Work includes a "NOTICE" text file as part of its distribution, then any
|
||||
Derivative Works that You distribute must include a readable copy of the
|
||||
attribution notices contained within such NOTICE file, excluding those notices
|
||||
that do not pertain to any part of the Derivative Works, in at least one of the
|
||||
following places: within a NOTICE text file distributed as part of the
|
||||
Derivative Works; within the Source form or documentation, if provided along
|
||||
with the Derivative Works; or, within a display generated by the Derivative
|
||||
If the Work includes a "NOTICE" text file as part of its distribution, then any
|
||||
Derivative Works that You distribute must include a readable copy of the
|
||||
attribution notices contained within such NOTICE file, excluding those notices
|
||||
that do not pertain to any part of the Derivative Works, in at least one of the
|
||||
following places: within a NOTICE text file distributed as part of the
|
||||
Derivative Works; within the Source form or documentation, if provided along
|
||||
with the Derivative Works; or, within a display generated by the Derivative
|
||||
Works, if and wherever such third-party notices normally appear. The contents of
|
||||
the NOTICE file are for informational purposes only and do not modify the
|
||||
License. You may add Your own attribution notices within Derivative Works that
|
||||
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
||||
provided that such additional attribution notices cannot be construed as
|
||||
the NOTICE file are for informational purposes only and do not modify the
|
||||
License. You may add Your own attribution notices within Derivative Works that
|
||||
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
||||
provided that such additional attribution notices cannot be construed as
|
||||
modifying the License.
|
||||
You may add Your own copyright statement to Your modifications and may provide
|
||||
additional or different license terms and conditions for use, reproduction, or
|
||||
You may add Your own copyright statement to Your modifications and may provide
|
||||
additional or different license terms and conditions for use, reproduction, or
|
||||
distribution of Your modifications, or for any such Derivative Works as a whole,
|
||||
provided Your use, reproduction, and distribution of the Work otherwise complies
|
||||
with the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions.
|
||||
|
||||
Unless You explicitly state otherwise, any Contribution intentionally submitted
|
||||
for inclusion in the Work by You to the Licensor shall be under the terms and
|
||||
conditions of this License, without any additional terms or conditions.
|
||||
Unless You explicitly state otherwise, any Contribution intentionally submitted
|
||||
for inclusion in the Work by You to the Licensor shall be under the terms and
|
||||
conditions of this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify the terms of
|
||||
any separate license agreement you may have executed with Licensor regarding
|
||||
any separate license agreement you may have executed with Licensor regarding
|
||||
such Contributions.
|
||||
|
||||
6. Trademarks.
|
||||
|
||||
This License does not grant permission to use the trade names, trademarks,
|
||||
service marks, or product names of the Licensor, except as required for
|
||||
reasonable and customary use in describing the origin of the Work and
|
||||
This License does not grant permission to use the trade names, trademarks,
|
||||
service marks, or product names of the Licensor, except as required for
|
||||
reasonable and customary use in describing the origin of the Work and
|
||||
reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty.
|
||||
|
||||
Unless required by applicable law or agreed to in writing, Licensor provides the
|
||||
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
|
||||
including, without limitation, any warranties or conditions of TITLE,
|
||||
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
|
||||
solely responsible for determining the appropriateness of using or
|
||||
redistributing the Work and assume any risks associated with Your exercise of
|
||||
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
|
||||
including, without limitation, any warranties or conditions of TITLE,
|
||||
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
|
||||
solely responsible for determining the appropriateness of using or
|
||||
redistributing the Work and assume any risks associated with Your exercise of
|
||||
permissions under this License.
|
||||
|
||||
8. Limitation of Liability.
|
||||
|
||||
In no event and under no legal theory, whether in tort (including negligence),
|
||||
contract, or otherwise, unless required by applicable law (such as deliberate
|
||||
and grossly negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special, incidental,
|
||||
In no event and under no legal theory, whether in tort (including negligence),
|
||||
contract, or otherwise, unless required by applicable law (such as deliberate
|
||||
and grossly negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special, incidental,
|
||||
or consequential damages of any character arising as a result of this License or
|
||||
out of the use or inability to use the Work (including but not limited to
|
||||
out of the use or inability to use the Work (including but not limited to
|
||||
damages for loss of goodwill, work stoppage, computer failure or malfunction, or
|
||||
any and all other commercial damages or losses), even if such Contributor has
|
||||
any and all other commercial damages or losses), even if such Contributor has
|
||||
been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability.
|
||||
|
||||
While redistributing the Work or Derivative Works thereof, You may choose to
|
||||
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
|
||||
While redistributing the Work or Derivative Works thereof, You may choose to
|
||||
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
|
||||
other liability obligations and/or rights consistent with this License. However,
|
||||
in accepting such obligations, You may act only on Your own behalf and on Your
|
||||
sole responsibility, not on behalf of any other Contributor, and only if You
|
||||
in accepting such obligations, You may act only on Your own behalf and on Your
|
||||
sole responsibility, not on behalf of any other Contributor, and only if You
|
||||
agree to indemnify, defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason of your
|
||||
incurred by, or claims asserted against, such Contributor by reason of your
|
||||
accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work
|
||||
|
||||
To apply the Apache License to your work, attach the following boilerplate
|
||||
notice, with the fields enclosed by brackets "[]" replaced with your own
|
||||
identifying information. (Don't include the brackets!) The text should be
|
||||
enclosed in the appropriate comment syntax for the file format. We also
|
||||
recommend that a file or class name and description of purpose be included on
|
||||
To apply the Apache License to your work, attach the following boilerplate
|
||||
notice, with the fields enclosed by brackets "[]" replaced with your own
|
||||
identifying information. (Don't include the brackets!) The text should be
|
||||
enclosed in the appropriate comment syntax for the file format. We also
|
||||
recommend that a file or class name and description of purpose be included on
|
||||
the same "printed page" as the copyright notice for easier identification within
|
||||
third-party archives.
|
||||
|
||||
@ -220,8 +220,8 @@ third-party archives.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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.
|
||||
@ -235,7 +235,7 @@ third-party archives.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="../../about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -243,7 +243,7 @@ third-party archives.
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,184 +15,184 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Artistic License 2.0
|
||||
Copyright (c) 2000-2006, The Perl Foundation.
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license
|
||||
document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
This license establishes the terms under which a given free software Package may
|
||||
be copied, modified, distributed, and/or redistributed. The intent is that the
|
||||
Copyright Holder maintains some artistic control over the development of that
|
||||
Package while still keeping the Package available as open source and free
|
||||
be copied, modified, distributed, and/or redistributed. The intent is that the
|
||||
Copyright Holder maintains some artistic control over the development of that
|
||||
Package while still keeping the Package available as open source and free
|
||||
software.
|
||||
|
||||
You are always permitted to make arrangements wholly outside of this license
|
||||
directly with the Copyright Holder of a given Package. If the terms of this
|
||||
license do not permit the full use that you propose to make of the Package, you
|
||||
You are always permitted to make arrangements wholly outside of this license
|
||||
directly with the Copyright Holder of a given Package. If the terms of this
|
||||
license do not permit the full use that you propose to make of the Package, you
|
||||
should contact the Copyright Holder and seek a different licensing arrangement.
|
||||
|
||||
Definitions
|
||||
"Copyright Holder" means the individual(s) or organization(s) named in the
|
||||
"Copyright Holder" means the individual(s) or organization(s) named in the
|
||||
copyright notice for the entire Package.
|
||||
|
||||
"Contributor" means any party that has contributed code or other material to the
|
||||
Package, in accordance with the Copyright Holder's procedures.
|
||||
|
||||
"You" and "your" means any person who would like to copy, distribute, or modify
|
||||
"You" and "your" means any person who would like to copy, distribute, or modify
|
||||
the Package.
|
||||
|
||||
"Package" means the collection of files distributed by the Copyright Holder, and
|
||||
derivatives of that collection and/or of those files. A given Package may
|
||||
derivatives of that collection and/or of those files. A given Package may
|
||||
consist of either the Standard Version, or a Modified Version.
|
||||
|
||||
"Distribute" means providing a copy of the Package or making it accessible to
|
||||
anyone else, or in the case of a company or organization, to others outside of
|
||||
"Distribute" means providing a copy of the Package or making it accessible to
|
||||
anyone else, or in the case of a company or organization, to others outside of
|
||||
your company or organization.
|
||||
|
||||
"Distributor Fee" means any fee that you charge for Distributing this Package or
|
||||
providing support for this Package to another party. It does not mean licensing
|
||||
providing support for this Package to another party. It does not mean licensing
|
||||
fees.
|
||||
|
||||
"Standard Version" refers to the Package if it has not been modified, or has
|
||||
"Standard Version" refers to the Package if it has not been modified, or has
|
||||
been modified only in ways explicitly requested by the Copyright Holder.
|
||||
|
||||
"Modified Version" means the Package, if it has been changed, and such changes
|
||||
"Modified Version" means the Package, if it has been changed, and such changes
|
||||
were not explicitly requested by the Copyright Holder.
|
||||
|
||||
"Original License" means this Artistic License as Distributed with the Standard
|
||||
Version of the Package, in its current version or as it may be modified by The
|
||||
"Original License" means this Artistic License as Distributed with the Standard
|
||||
Version of the Package, in its current version or as it may be modified by The
|
||||
Perl Foundation in the future.
|
||||
|
||||
"Source" form means the source code, documentation source, and configuration
|
||||
"Source" form means the source code, documentation source, and configuration
|
||||
files for the Package.
|
||||
|
||||
"Compiled" form means the compiled bytecode, object code, binary, or any other
|
||||
"Compiled" form means the compiled bytecode, object code, binary, or any other
|
||||
form resulting from mechanical transformation or translation of the Source form.
|
||||
|
||||
Permission for Use and Modification Without Distribution
|
||||
(1) You are permitted to use the Standard Version and create and use Modified
|
||||
Versions for any purpose without restriction, provided that you do not
|
||||
(1) You are permitted to use the Standard Version and create and use Modified
|
||||
Versions for any purpose without restriction, provided that you do not
|
||||
Distribute the Modified Version.
|
||||
|
||||
Permissions for Redistribution of the Standard Version
|
||||
(2) You may Distribute verbatim copies of the Source form of the Standard
|
||||
Version of this Package in any medium without restriction, either gratis or for
|
||||
a Distributor Fee, provided that you duplicate all of the original copyright
|
||||
(2) You may Distribute verbatim copies of the Source form of the Standard
|
||||
Version of this Package in any medium without restriction, either gratis or for
|
||||
a Distributor Fee, provided that you duplicate all of the original copyright
|
||||
notices and associated disclaimers. At your discretion, such verbatim copies may
|
||||
or may not include a Compiled form of the Package.
|
||||
|
||||
(3) You may apply any bug fixes, portability changes, and other modifications
|
||||
made available from the Copyright Holder. The resulting Package will still be
|
||||
considered the Standard Version, and as such will be subject to the Original
|
||||
(3) You may apply any bug fixes, portability changes, and other modifications
|
||||
made available from the Copyright Holder. The resulting Package will still be
|
||||
considered the Standard Version, and as such will be subject to the Original
|
||||
License.
|
||||
|
||||
Distribution of Modified Versions of the Package as Source
|
||||
(4) You may Distribute your Modified Version as Source (either gratis or for a
|
||||
Distributor Fee, and with or without a Compiled form of the Modified Version)
|
||||
provided that you clearly document how it differs from the Standard Version,
|
||||
including, but not limited to, documenting any non-standard features,
|
||||
(4) You may Distribute your Modified Version as Source (either gratis or for a
|
||||
Distributor Fee, and with or without a Compiled form of the Modified Version)
|
||||
provided that you clearly document how it differs from the Standard Version,
|
||||
including, but not limited to, documenting any non-standard features,
|
||||
executables, or modules, and provided that you do at least ONE of the following:
|
||||
|
||||
(a) make the Modified Version available to the Copyright Holder of the Standard
|
||||
Version, under the Original License, so that the Copyright Holder may include
|
||||
(a) make the Modified Version available to the Copyright Holder of the Standard
|
||||
Version, under the Original License, so that the Copyright Holder may include
|
||||
your modifications in the Standard Version.
|
||||
(b) ensure that installation of your Modified Version does not prevent the user
|
||||
installing or running the Standard Version. In addition, the Modified Version
|
||||
(b) ensure that installation of your Modified Version does not prevent the user
|
||||
installing or running the Standard Version. In addition, the Modified Version
|
||||
must bear a name that is different from the name of the Standard Version.
|
||||
(c) allow anyone who receives a copy of the Modified Version to make the Source
|
||||
(c) allow anyone who receives a copy of the Modified Version to make the Source
|
||||
form of the Modified Version available to others under
|
||||
(i) the Original License or
|
||||
(ii) a license that permits the licensee to freely copy, modify and redistribute
|
||||
the Modified Version using the same licensing terms that apply to the copy that
|
||||
the licensee received, and requires that the Source form of the Modified
|
||||
Version, and of any works derived from it, be made freely available in that
|
||||
the Modified Version using the same licensing terms that apply to the copy that
|
||||
the licensee received, and requires that the Source form of the Modified
|
||||
Version, and of any works derived from it, be made freely available in that
|
||||
license fees are prohibited but Distributor Fees are allowed.
|
||||
|
||||
Distribution of Compiled Forms of the Standard Version or Modified Versions
|
||||
Distribution of Compiled Forms of the Standard Version or Modified Versions
|
||||
without the Source
|
||||
(5) You may Distribute Compiled forms of the Standard Version without the
|
||||
(5) You may Distribute Compiled forms of the Standard Version without the
|
||||
Source, provided that you include complete instructions on how to get the Source
|
||||
of the Standard Version. Such instructions must be valid at the time of your
|
||||
of the Standard Version. Such instructions must be valid at the time of your
|
||||
distribution. If these instructions, at any time while you are carrying out such
|
||||
distribution, become invalid, you must provide new instructions on demand or
|
||||
cease further distribution. If you provide valid instructions or cease
|
||||
distribution, become invalid, you must provide new instructions on demand or
|
||||
cease further distribution. If you provide valid instructions or cease
|
||||
distribution within thirty days after you become aware that the instructions are
|
||||
invalid, then you do not forfeit any of your rights under this license.
|
||||
|
||||
(6) You may Distribute a Modified Version in Compiled form without the Source,
|
||||
provided that you comply with Section 4 with respect to the Source of the
|
||||
(6) You may Distribute a Modified Version in Compiled form without the Source,
|
||||
provided that you comply with Section 4 with respect to the Source of the
|
||||
Modified Version.
|
||||
|
||||
Aggregating or Linking the Package
|
||||
(7) You may aggregate the Package (either the Standard Version or Modified
|
||||
Version) with other packages and Distribute the resulting aggregation provided
|
||||
that you do not charge a licensing fee for the Package. Distributor Fees are
|
||||
permitted, and licensing fees for other components in the aggregation are
|
||||
permitted. The terms of this license apply to the use and Distribution of the
|
||||
(7) You may aggregate the Package (either the Standard Version or Modified
|
||||
Version) with other packages and Distribute the resulting aggregation provided
|
||||
that you do not charge a licensing fee for the Package. Distributor Fees are
|
||||
permitted, and licensing fees for other components in the aggregation are
|
||||
permitted. The terms of this license apply to the use and Distribution of the
|
||||
Standard or Modified Versions as included in the aggregation.
|
||||
|
||||
(8) You are permitted to link Modified and Standard Versions with other works,
|
||||
to embed the Package in a larger work of your own, or to build stand-alone
|
||||
binary or bytecode versions of applications that include the Package, and
|
||||
(8) You are permitted to link Modified and Standard Versions with other works,
|
||||
to embed the Package in a larger work of your own, or to build stand-alone
|
||||
binary or bytecode versions of applications that include the Package, and
|
||||
Distribute the result without restriction, provided the result does not expose a
|
||||
direct interface to the Package.
|
||||
|
||||
Items That are Not Considered Part of a Modified Version
|
||||
|
||||
(9) Works (including, but not limited to, modules and scripts) that merely
|
||||
extend or make use of the Package, do not, by themselves, cause the Package to
|
||||
be a Modified Version. In addition, such works are not considered parts of the
|
||||
(9) Works (including, but not limited to, modules and scripts) that merely
|
||||
extend or make use of the Package, do not, by themselves, cause the Package to
|
||||
be a Modified Version. In addition, such works are not considered parts of the
|
||||
Package itself, and are not subject to the terms of this license.
|
||||
|
||||
General Provisions
|
||||
|
||||
(10) Any use, modification, and distribution of the Standard or Modified
|
||||
Versions is governed by this Artistic License. By using, modifying or
|
||||
distributing the Package, you accept this license. Do not use, modify, or
|
||||
(10) Any use, modification, and distribution of the Standard or Modified
|
||||
Versions is governed by this Artistic License. By using, modifying or
|
||||
distributing the Package, you accept this license. Do not use, modify, or
|
||||
distribute the Package, if you do not accept this license.
|
||||
|
||||
(11) If your Modified Version has been derived from a Modified Version made by
|
||||
someone other than you, you are nevertheless required to ensure that your
|
||||
(11) If your Modified Version has been derived from a Modified Version made by
|
||||
someone other than you, you are nevertheless required to ensure that your
|
||||
Modified Version complies with the requirements of this license.
|
||||
|
||||
(12) This license does not grant you the right to use any trademark, service
|
||||
(12) This license does not grant you the right to use any trademark, service
|
||||
mark, tradename, or logo of the Copyright Holder.
|
||||
|
||||
(13) This license includes the non-exclusive, worldwide, free-of-charge patent
|
||||
license to make, have made, use, offer to sell, sell, import and otherwise
|
||||
transfer the Package with respect to any patent claims licensable by the
|
||||
(13) This license includes the non-exclusive, worldwide, free-of-charge patent
|
||||
license to make, have made, use, offer to sell, sell, import and otherwise
|
||||
transfer the Package with respect to any patent claims licensable by the
|
||||
Copyright Holder that are necessarily infringed by the Package. If you institute
|
||||
patent litigation (including a cross-claim or counterclaim) against any party
|
||||
alleging that the Package constitutes direct or contributory patent
|
||||
patent litigation (including a cross-claim or counterclaim) against any party
|
||||
alleging that the Package constitutes direct or contributory patent
|
||||
infringement, then this Artistic License to you shall terminate on the date that
|
||||
such litigation is filed.
|
||||
|
||||
(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
|
||||
CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
|
||||
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW.
|
||||
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
|
||||
CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
|
||||
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW.
|
||||
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="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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.
|
||||
@ -204,7 +204,7 @@ DAMAGE.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="../../about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -212,7 +212,7 @@ DAMAGE.
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,16 +15,16 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Copyright (c) {year}, {copyright holder}
|
||||
All rights reserved.
|
||||
@ -38,8 +38,8 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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.
|
||||
@ -51,7 +51,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -59,7 +59,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,16 +15,16 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Copyright (c) {year}, {copyright holder}
|
||||
All rights reserved.
|
||||
@ -34,28 +34,28 @@ 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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.
|
||||
@ -67,7 +67,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="../../about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -75,7 +75,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,60 +15,60 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Eclipse Public License - v 1.0
|
||||
|
||||
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
|
||||
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
|
||||
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
|
||||
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
|
||||
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
|
||||
|
||||
1. DEFINITIONS
|
||||
|
||||
"Contribution" means:
|
||||
|
||||
a) in the case of the initial Contributor, the initial code and documentation
|
||||
a) in the case of the initial Contributor, the initial code and documentation
|
||||
distributed under this Agreement, and
|
||||
b) in the case of each subsequent Contributor:
|
||||
i) changes to the Program, and
|
||||
ii) additions to the Program;
|
||||
|
||||
where such changes and/or additions to the Program originate from and are
|
||||
|
||||
where such changes and/or additions to the Program originate from and are
|
||||
distributed by that particular Contributor. A Contribution 'originates' from
|
||||
a Contributor if it was added to the Program by such Contributor itself or
|
||||
anyone acting on such Contributor's behalf. Contributions do not include
|
||||
additions to the Program which: (i) are separate modules of software
|
||||
distributed in conjunction with the Program under their own license
|
||||
a Contributor if it was added to the Program by such Contributor itself or
|
||||
anyone acting on such Contributor's behalf. Contributions do not include
|
||||
additions to the Program which: (i) are separate modules of software
|
||||
distributed in conjunction with the Program under their own license
|
||||
agreement, and (ii) are not derivative works of the Program.
|
||||
|
||||
"Contributor" means any person or entity that distributes the Program.
|
||||
|
||||
"Licensed Patents" mean patent claims licensable by a Contributor which are
|
||||
necessarily infringed by the use or sale of its Contribution alone or when
|
||||
"Licensed Patents" mean patent claims licensable by a Contributor which are
|
||||
necessarily infringed by the use or sale of its Contribution alone or when
|
||||
combined with the Program.
|
||||
|
||||
"Program" means the Contributions distributed in accordance with this Agreement.
|
||||
|
||||
"Recipient" means anyone who receives the Program under this Agreement,
|
||||
"Recipient" means anyone who receives the Program under this Agreement,
|
||||
including all Contributors.
|
||||
|
||||
2. GRANT OF RIGHTS
|
||||
a) Subject to the terms of this Agreement, each Contributor hereby grants
|
||||
Recipient a non-exclusive, worldwide, royalty-free copyright license to
|
||||
reproduce, prepare derivative works of, publicly display, publicly perform,
|
||||
a) Subject to the terms of this Agreement, each Contributor hereby grants
|
||||
Recipient a non-exclusive, worldwide, royalty-free copyright license to
|
||||
reproduce, prepare derivative works of, publicly display, publicly perform,
|
||||
distribute and sublicense the Contribution of such Contributor, if any, and
|
||||
such derivative works, in source code and object code form.
|
||||
b) Subject to the terms of this Agreement, each Contributor hereby grants
|
||||
Recipient a non-exclusive, worldwide, royalty-free patent license under
|
||||
b) Subject to the terms of this Agreement, each Contributor hereby grants
|
||||
Recipient a non-exclusive, worldwide, royalty-free patent license under
|
||||
Licensed Patents to make, use, sell, offer to sell, import and otherwise
|
||||
transfer the Contribution of such Contributor, if any, in source code and
|
||||
object code form. This patent license shall apply to the combination of the
|
||||
@ -77,8 +77,8 @@ including all Contributors.
|
||||
to be covered by the Licensed Patents. The patent license shall not apply
|
||||
to any other combinations which include the Contribution. No hardware per
|
||||
se is licensed hereunder.
|
||||
c) Recipient understands that although each Contributor grants the licenses to
|
||||
its Contributions set forth herein, no assurances are provided by any
|
||||
c) Recipient understands that although each Contributor grants the licenses to
|
||||
its Contributions set forth herein, no assurances are provided by any
|
||||
Contributor that the Program does not infringe the patent or other
|
||||
intellectual property rights of any other entity. Each Contributor
|
||||
disclaims any liability to Recipient for claims brought by any other entity
|
||||
@ -92,7 +92,7 @@ including all Contributors.
|
||||
d) Each Contributor represents that to its knowledge it has sufficient
|
||||
copyright rights in its Contribution, if any, to grant the copyright
|
||||
license set forth in this Agreement.
|
||||
|
||||
|
||||
3. REQUIREMENTS
|
||||
|
||||
A Contributor may choose to distribute the Program in object code form under its
|
||||
@ -100,19 +100,19 @@ own license agreement, provided that:
|
||||
|
||||
a) it complies with the terms and conditions of this Agreement; and
|
||||
b) its license agreement:
|
||||
i) effectively disclaims on behalf of all Contributors all warranties and
|
||||
i) effectively disclaims on behalf of all Contributors all warranties and
|
||||
conditions, express and implied, including warranties or conditions of
|
||||
title and non-infringement, and implied warranties or conditions of
|
||||
title and non-infringement, and implied warranties or conditions of
|
||||
merchantability and fitness for a particular purpose;
|
||||
ii) effectively excludes on behalf of all Contributors all liability for
|
||||
damages, including direct, indirect, special, incidental and
|
||||
ii) effectively excludes on behalf of all Contributors all liability for
|
||||
damages, including direct, indirect, special, incidental and
|
||||
consequential damages, such as lost profits;
|
||||
iii) states that any provisions which differ from this Agreement are offered
|
||||
by that Contributor alone and not by any other party; and
|
||||
iv) states that source code for the Program is available from such
|
||||
Contributor, and informs licensees how to obtain it in a reasonable
|
||||
iv) states that source code for the Program is available from such
|
||||
Contributor, and informs licensees how to obtain it in a reasonable
|
||||
manner on or through a medium customarily used for software exchange.
|
||||
|
||||
|
||||
When the Program is made available in source code form:
|
||||
|
||||
a) it must be made available under this Agreement; and
|
||||
@ -120,115 +120,115 @@ When the Program is made available in source code form:
|
||||
Contributors may not remove or alter any copyright notices contained within
|
||||
the Program.
|
||||
|
||||
Each Contributor must identify itself as the originator of its Contribution, if
|
||||
any, in a manner that reasonably allows subsequent Recipients to identify the
|
||||
Each Contributor must identify itself as the originator of its Contribution, if
|
||||
any, in a manner that reasonably allows subsequent Recipients to identify the
|
||||
originator of the Contribution.
|
||||
|
||||
4. COMMERCIAL DISTRIBUTION
|
||||
|
||||
Commercial distributors of software may accept certain responsibilities with
|
||||
respect to end users, business partners and the like. While this license is
|
||||
intended to facilitate the commercial use of the Program, the Contributor who
|
||||
includes the Program in a commercial product offering should do so in a manner
|
||||
which does not create potential liability for other Contributors. Therefore, if
|
||||
a Contributor includes the Program in a commercial product offering, such
|
||||
Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
|
||||
every other Contributor ("Indemnified Contributor") against any losses, damages
|
||||
and costs (collectively "Losses") arising from claims, lawsuits and other legal
|
||||
actions brought by a third party against the Indemnified Contributor to the
|
||||
extent caused by the acts or omissions of such Commercial Contributor in
|
||||
connection with its distribution of the Program in a commercial product
|
||||
offering. The obligations in this section do not apply to any claims or Losses
|
||||
relating to any actual or alleged intellectual property infringement. In order
|
||||
to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
|
||||
Commercial distributors of software may accept certain responsibilities with
|
||||
respect to end users, business partners and the like. While this license is
|
||||
intended to facilitate the commercial use of the Program, the Contributor who
|
||||
includes the Program in a commercial product offering should do so in a manner
|
||||
which does not create potential liability for other Contributors. Therefore, if
|
||||
a Contributor includes the Program in a commercial product offering, such
|
||||
Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
|
||||
every other Contributor ("Indemnified Contributor") against any losses, damages
|
||||
and costs (collectively "Losses") arising from claims, lawsuits and other legal
|
||||
actions brought by a third party against the Indemnified Contributor to the
|
||||
extent caused by the acts or omissions of such Commercial Contributor in
|
||||
connection with its distribution of the Program in a commercial product
|
||||
offering. The obligations in this section do not apply to any claims or Losses
|
||||
relating to any actual or alleged intellectual property infringement. In order
|
||||
to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
|
||||
Contributor in writing of such claim, and b) allow the Commercial Contributor to
|
||||
control, and cooperate with the Commercial Contributor in, the defense and any
|
||||
related settlement negotiations. The Indemnified Contributor may participate in
|
||||
control, and cooperate with the Commercial Contributor in, the defense and any
|
||||
related settlement negotiations. The Indemnified Contributor may participate in
|
||||
any such claim at its own expense.
|
||||
|
||||
For example, a Contributor might include the Program in a commercial product
|
||||
offering, Product X. That Contributor is then a Commercial Contributor. If that
|
||||
Commercial Contributor then makes performance claims, or offers warranties
|
||||
related to Product X, those performance claims and warranties are such
|
||||
Commercial Contributor's responsibility alone. Under this section, the
|
||||
Commercial Contributor would have to defend claims against the other
|
||||
Contributors related to those performance claims and warranties, and if a court
|
||||
requires any other Contributor to pay any damages as a result, the Commercial
|
||||
For example, a Contributor might include the Program in a commercial product
|
||||
offering, Product X. That Contributor is then a Commercial Contributor. If that
|
||||
Commercial Contributor then makes performance claims, or offers warranties
|
||||
related to Product X, those performance claims and warranties are such
|
||||
Commercial Contributor's responsibility alone. Under this section, the
|
||||
Commercial Contributor would have to defend claims against the other
|
||||
Contributors related to those performance claims and warranties, and if a court
|
||||
requires any other Contributor to pay any damages as a result, the Commercial
|
||||
Contributor must pay those damages.
|
||||
|
||||
5. NO WARRANTY
|
||||
|
||||
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
|
||||
IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
|
||||
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
|
||||
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
|
||||
IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
|
||||
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
|
||||
Recipient is solely responsible for determining the appropriateness of using and
|
||||
distributing the Program and assumes all risks associated with its exercise of
|
||||
rights under this Agreement , including but not limited to the risks and costs
|
||||
of program errors, compliance with applicable laws, damage to or loss of data,
|
||||
distributing the Program and assumes all risks associated with its exercise of
|
||||
rights under this Agreement , including but not limited to the risks and costs
|
||||
of program errors, compliance with applicable laws, damage to or loss of data,
|
||||
programs or equipment, and unavailability or interruption of operations.
|
||||
|
||||
6. DISCLAIMER OF LIABILITY
|
||||
|
||||
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
|
||||
CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
|
||||
PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
|
||||
CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
|
||||
PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
|
||||
OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
|
||||
GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
7. GENERAL
|
||||
|
||||
If any provision of this Agreement is invalid or unenforceable under applicable
|
||||
law, it shall not affect the validity or enforceability of the remainder of the
|
||||
terms of this Agreement, and without further action by the parties hereto, such
|
||||
provision shall be reformed to the minimum extent necessary to make such
|
||||
If any provision of this Agreement is invalid or unenforceable under applicable
|
||||
law, it shall not affect the validity or enforceability of the remainder of the
|
||||
terms of this Agreement, and without further action by the parties hereto, such
|
||||
provision shall be reformed to the minimum extent necessary to make such
|
||||
provision valid and enforceable.
|
||||
|
||||
If Recipient institutes patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Program itself
|
||||
(excluding combinations of the Program with other software or hardware)
|
||||
If Recipient institutes patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Program itself
|
||||
(excluding combinations of the Program with other software or hardware)
|
||||
infringes such Recipient's patent(s), then such Recipient's rights granted under
|
||||
Section 2(b) shall terminate as of the date such litigation is filed.
|
||||
|
||||
All Recipient's rights under this Agreement shall terminate if it fails to
|
||||
comply with any of the material terms or conditions of this Agreement and does
|
||||
not cure such failure in a reasonable period of time after becoming aware of
|
||||
such noncompliance. If all Recipient's rights under this Agreement terminate,
|
||||
Recipient agrees to cease use and distribution of the Program as soon as
|
||||
reasonably practicable. However, Recipient's obligations under this Agreement
|
||||
All Recipient's rights under this Agreement shall terminate if it fails to
|
||||
comply with any of the material terms or conditions of this Agreement and does
|
||||
not cure such failure in a reasonable period of time after becoming aware of
|
||||
such noncompliance. If all Recipient's rights under this Agreement terminate,
|
||||
Recipient agrees to cease use and distribution of the Program as soon as
|
||||
reasonably practicable. However, Recipient's obligations under this Agreement
|
||||
and any licenses granted by Recipient relating to the Program shall continue and
|
||||
survive.
|
||||
|
||||
Everyone is permitted to copy and distribute copies of this Agreement, but in
|
||||
order to avoid inconsistency the Agreement is copyrighted and may only be
|
||||
modified in the following manner. The Agreement Steward reserves the right to
|
||||
publish new versions (including revisions) of this Agreement from time to time.
|
||||
No one other than the Agreement Steward has the right to modify this Agreement.
|
||||
The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation
|
||||
may assign the responsibility to serve as the Agreement Steward to a suitable
|
||||
separate entity. Each new version of the Agreement will be given a
|
||||
distinguishing version number. The Program (including Contributions) may always
|
||||
be distributed subject to the version of the Agreement under which it was
|
||||
received. In addition, after a new version of the Agreement is published,
|
||||
Contributor may elect to distribute the Program (including its Contributions)
|
||||
under the new version. Except as expressly stated in Sections 2(a) and 2(b)
|
||||
above, Recipient receives no rights or licenses to the intellectual property of
|
||||
any Contributor under this Agreement, whether expressly, by implication,
|
||||
estoppel or otherwise. All rights in the Program not expressly granted under
|
||||
Everyone is permitted to copy and distribute copies of this Agreement, but in
|
||||
order to avoid inconsistency the Agreement is copyrighted and may only be
|
||||
modified in the following manner. The Agreement Steward reserves the right to
|
||||
publish new versions (including revisions) of this Agreement from time to time.
|
||||
No one other than the Agreement Steward has the right to modify this Agreement.
|
||||
The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation
|
||||
may assign the responsibility to serve as the Agreement Steward to a suitable
|
||||
separate entity. Each new version of the Agreement will be given a
|
||||
distinguishing version number. The Program (including Contributions) may always
|
||||
be distributed subject to the version of the Agreement under which it was
|
||||
received. In addition, after a new version of the Agreement is published,
|
||||
Contributor may elect to distribute the Program (including its Contributions)
|
||||
under the new version. Except as expressly stated in Sections 2(a) and 2(b)
|
||||
above, Recipient receives no rights or licenses to the intellectual property of
|
||||
any Contributor under this Agreement, whether expressly, by implication,
|
||||
estoppel or otherwise. All rights in the Program not expressly granted under
|
||||
this Agreement are reserved.
|
||||
|
||||
This Agreement is governed by the laws of the State of New York and the
|
||||
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
|
||||
This Agreement is governed by the laws of the State of New York and the
|
||||
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="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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.
|
||||
@ -239,7 +239,7 @@ any resulting litigation.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -247,7 +247,7 @@ any resulting litigation.
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,16 +15,16 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
@ -368,15 +368,15 @@ Public License instead of this License.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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>
|
||||
<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
|
||||
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>
|
||||
@ -385,7 +385,7 @@ Public License instead of this License.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -393,7 +393,7 @@ Public License instead of this License.
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,16 +15,16 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
@ -703,15 +703,15 @@ Public License instead of this License. But first, please read
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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>
|
||||
<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
|
||||
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>
|
||||
@ -720,7 +720,7 @@ Public License instead of this License. But first, please read
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -728,7 +728,7 @@ Public License instead of this License. But first, please read
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -16,9 +16,9 @@
|
||||
<script src='../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license-types'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<body class='license-types'>
|
||||
<div class='container'>
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
@ -148,7 +148,7 @@
|
||||
|
||||
<h1>Other licenses</h1>
|
||||
<p>
|
||||
Some communities tend to have specific licenses preferred by the
|
||||
Some communities tend to have specific licenses preferred by the
|
||||
community. For example, PERL developers often choose the artistic license.
|
||||
</p>
|
||||
<table class='license'>
|
||||
@ -193,7 +193,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<table class='license'>
|
||||
<tr>
|
||||
<th class='name'>
|
||||
@ -398,14 +398,14 @@
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div id="footer" class="cf">
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -15,16 +15,16 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
@ -531,15 +531,15 @@ That's all there is to it!
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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>
|
||||
<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
|
||||
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>
|
||||
@ -548,7 +548,7 @@ That's all there is to it!
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -556,7 +556,7 @@ That's all there is to it!
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,16 +15,16 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
@ -194,8 +194,8 @@ Library.
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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>
|
||||
@ -209,7 +209,7 @@ Library.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -217,7 +217,7 @@ Library.
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,40 +15,40 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<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
|
||||
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,
|
||||
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
|
||||
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
|
||||
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
|
||||
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="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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.
|
||||
@ -60,7 +60,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -68,7 +68,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -15,16 +15,16 @@
|
||||
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body id='license'>
|
||||
<div id='container'>
|
||||
<ol id='breadcrumbs'>
|
||||
<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'>
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
Mozilla Public License, version 2.0
|
||||
|
||||
@ -37,7 +37,7 @@ Mozilla Public License, version 2.0
|
||||
|
||||
1.2. “Contributor Version”
|
||||
|
||||
means the combination of the Contributions of others (if any) used by a
|
||||
means the combination of the Contributions of others (if any) used by a
|
||||
Contributor and that particular Contributor’s Contribution.
|
||||
|
||||
1.3. “Contribution”
|
||||
@ -54,29 +54,29 @@ Mozilla Public License, version 2.0
|
||||
1.5. “Incompatible With Secondary Licenses”
|
||||
means
|
||||
|
||||
a. that the initial Contributor has attached the notice described in
|
||||
a. that the initial Contributor has attached the notice described in
|
||||
Exhibit B to the Covered Software; or
|
||||
|
||||
|
||||
b. that the Covered Software was made available under the terms of version
|
||||
1.1 or earlier of the License, but not also under the terms of a
|
||||
Secondary License.
|
||||
|
||||
1.6. “Executable Form”
|
||||
|
||||
|
||||
means any form of the work other than Source Code Form.
|
||||
|
||||
1.7. “Larger Work”
|
||||
|
||||
means a work that combines Covered Software with other material, in a separate
|
||||
means a work that combines Covered Software with other material, in a separate
|
||||
file or files, that is not Covered Software.
|
||||
|
||||
1.8. “License”
|
||||
|
||||
|
||||
means this document.
|
||||
|
||||
1.9. “Licensable”
|
||||
|
||||
means having the right to grant, to the maximum extent possible, whether at the
|
||||
means having the right to grant, to the maximum extent possible, whether at the
|
||||
time of the initial grant or subsequently, any and all of the rights conveyed by
|
||||
this License.
|
||||
|
||||
@ -93,14 +93,14 @@ Mozilla Public License, version 2.0
|
||||
|
||||
means any patent claim(s), including without limitation, method, process,
|
||||
and apparatus claims, in any patent Licensable by such Contributor that
|
||||
would be infringed, but for the grant of the License, by the making,
|
||||
would be infringed, but for the grant of the License, by the making,
|
||||
using, selling, offering for sale, having made, import, or transfer of
|
||||
either its Contributions or its Contributor Version.
|
||||
|
||||
1.12. “Secondary License”
|
||||
|
||||
means either the GNU General Public License, Version 2.0, the GNU Lesser
|
||||
General Public License, Version 2.1, the GNU Affero General Public
|
||||
General Public License, Version 2.1, the GNU Affero General Public
|
||||
License, Version 3.0, or any later versions of those licenses.
|
||||
|
||||
1.13. “Source Code Form”
|
||||
@ -109,12 +109,12 @@ Mozilla Public License, version 2.0
|
||||
|
||||
1.14. “You” (or “Your”)
|
||||
|
||||
means an individual or a legal entity exercising rights under this
|
||||
means an individual or a legal entity exercising rights under this
|
||||
License. For legal entities, “You” includes any entity that controls, is
|
||||
controlled by, or is under common control with You. For purposes of this
|
||||
definition, “control” means (a) the power, direct or indirect, to cause
|
||||
the direction or management of such entity, whether by contract or
|
||||
otherwise, or (b) ownership of more than fifty percent (50%) of the
|
||||
definition, “control” means (a) the power, direct or indirect, to cause
|
||||
the direction or management of such entity, whether by contract or
|
||||
otherwise, or (b) ownership of more than fifty percent (50%) of the
|
||||
outstanding shares or beneficial ownership of such entity.
|
||||
|
||||
|
||||
@ -125,7 +125,7 @@ Mozilla Public License, version 2.0
|
||||
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license:
|
||||
|
||||
a. under intellectual property rights (other than patent or trademark)
|
||||
a. under intellectual property rights (other than patent or trademark)
|
||||
Licensable by such Contributor to use, reproduce, make available,
|
||||
modify, display, perform, distribute, and otherwise exploit its
|
||||
Contributions, either on an unmodified basis, with Modifications, or as
|
||||
@ -137,15 +137,15 @@ Mozilla Public License, version 2.0
|
||||
|
||||
2.2. Effective Date
|
||||
|
||||
The licenses granted in Section 2.1 with respect to any Contribution become
|
||||
effective for each Contribution on the date the Contributor first distributes
|
||||
The licenses granted in Section 2.1 with respect to any Contribution become
|
||||
effective for each Contribution on the date the Contributor first distributes
|
||||
such Contribution.
|
||||
|
||||
2.3. Limitations on Grant Scope
|
||||
|
||||
The licenses granted in this Section 2 are the only rights granted under this
|
||||
License. No additional rights or licenses will be implied from the distribution
|
||||
or licensing of Covered Software under this License. Notwithstanding Section
|
||||
The licenses granted in this Section 2 are the only rights granted under this
|
||||
License. No additional rights or licenses will be implied from the distribution
|
||||
or licensing of Covered Software under this License. Notwithstanding Section
|
||||
2.1(b) above, no patent license is granted by a Contributor:
|
||||
|
||||
a. for any code that a Contributor has removed from Covered Software; or
|
||||
@ -155,10 +155,10 @@ Mozilla Public License, version 2.0
|
||||
Contributions with other software (except as part of its Contributor
|
||||
Version); or
|
||||
|
||||
c. under Patent Claims infringed by Covered Software in the absence of its
|
||||
c. under Patent Claims infringed by Covered Software in the absence of its
|
||||
Contributions.
|
||||
|
||||
This License does not grant any rights in the trademarks, service marks, or
|
||||
This License does not grant any rights in the trademarks, service marks, or
|
||||
logos of any Contributor (except as may be necessary to comply with the
|
||||
notice requirements in Section 3.4).
|
||||
|
||||
@ -177,12 +177,12 @@ Mozilla Public License, version 2.0
|
||||
|
||||
2.6. Fair Use
|
||||
|
||||
This License is not intended to limit any rights You have under applicable
|
||||
This License is not intended to limit any rights You have under applicable
|
||||
copyright doctrines of fair use, fair dealing, or other equivalents.
|
||||
|
||||
2.7. Conditions
|
||||
|
||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
|
||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
|
||||
Section 2.1.
|
||||
|
||||
|
||||
@ -190,8 +190,8 @@ Mozilla Public License, version 2.0
|
||||
|
||||
3.1. Distribution of Source Form
|
||||
|
||||
All distribution of Covered Software in Source Code Form, including any
|
||||
Modifications that You create or to which You contribute, must be under the
|
||||
All distribution of Covered Software in Source Code Form, including any
|
||||
Modifications that You create or to which You contribute, must be under the
|
||||
terms of this License. You must inform recipients that the Source Code Form
|
||||
of the Covered Software is governed by the terms of this License, and how
|
||||
they can obtain a copy of this License. You may not attempt to alter or
|
||||
@ -226,7 +226,7 @@ Mozilla Public License, version 2.0
|
||||
|
||||
3.4. Notices
|
||||
|
||||
You may not remove or alter the substance of any license notices (including
|
||||
You may not remove or alter the substance of any license notices (including
|
||||
copyright notices, patent notices, disclaimers of warranty, or limitations
|
||||
of liability) contained within the Source Code Form of the Covered
|
||||
Software, except that You may alter any license notices to the extent
|
||||
@ -242,7 +242,7 @@ Mozilla Public License, version 2.0
|
||||
alone, and You hereby agree to indemnify every Contributor for any
|
||||
liability incurred by such Contributor as a result of warranty, support,
|
||||
indemnity or liability terms You offer. You may include additional
|
||||
disclaimers of warranty and limitations of liability specific to any
|
||||
disclaimers of warranty and limitations of liability specific to any
|
||||
jurisdiction.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation
|
||||
@ -251,7 +251,7 @@ Mozilla Public License, version 2.0
|
||||
with respect to some or all of the Covered Software due to statute, judicial
|
||||
order, or regulation then You must: (a) comply with the terms of this License
|
||||
to the maximum extent possible; and (b) describe the limitations and the code
|
||||
they affect. Such description must be placed in a text file included with all
|
||||
they affect. Such description must be placed in a text file included with all
|
||||
distributions of the Covered Software under this License. Except to the
|
||||
extent prohibited by statute or regulation, such description must be
|
||||
sufficiently detailed for a recipient of ordinary skill to be able to
|
||||
@ -259,7 +259,7 @@ Mozilla Public License, version 2.0
|
||||
|
||||
5. Termination
|
||||
|
||||
5.1. The rights granted under this License will terminate automatically if You
|
||||
5.1. The rights granted under this License will terminate automatically if You
|
||||
fail to comply with any of its terms. However, if You become compliant,
|
||||
then the rights granted under this License from a particular Contributor
|
||||
are reinstated (a) provisionally, unless and until such Contributor
|
||||
@ -272,23 +272,23 @@ Mozilla Public License, version 2.0
|
||||
non-compliance with this License from such Contributor, and You become
|
||||
compliant prior to 30 days after Your receipt of the notice.
|
||||
|
||||
5.2. If You initiate litigation against any entity by asserting a patent
|
||||
5.2. If You initiate litigation against any entity by asserting a patent
|
||||
infringement claim (excluding declaratory judgment actions, counter-claims,
|
||||
and cross-claims) alleging that a Contributor Version directly or
|
||||
indirectly infringes any patent, then the rights granted to You by any and
|
||||
all Contributors for the Covered Software under Section 2.1 of this License
|
||||
shall terminate.
|
||||
|
||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user
|
||||
license agreements (excluding distributors and resellers) which have been
|
||||
validly granted by You or Your distributors under this License prior to
|
||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user
|
||||
license agreements (excluding distributors and resellers) which have been
|
||||
validly granted by You or Your distributors under this License prior to
|
||||
termination shall survive termination.
|
||||
|
||||
6. Disclaimer of Warranty
|
||||
|
||||
Covered Software is provided under this License on an “as is” basis, without
|
||||
warranty of any kind, either expressed, implied, or statutory, including,
|
||||
without limitation, warranties that the Covered Software is free of defects,
|
||||
Covered Software is provided under this License on an “as is” basis, without
|
||||
warranty of any kind, either expressed, implied, or statutory, including,
|
||||
without limitation, warranties that the Covered Software is free of defects,
|
||||
merchantable, fit for a particular purpose or non-infringing. The entire
|
||||
risk as to the quality and performance of the Covered Software is with You.
|
||||
Should any Covered Software prove defective in any respect, You (not any
|
||||
@ -299,9 +299,9 @@ Mozilla Public License, version 2.0
|
||||
|
||||
7. Limitation of Liability
|
||||
|
||||
Under no circumstances and under no legal theory, whether tort (including
|
||||
negligence), contract, or otherwise, shall any Contributor, or anyone who
|
||||
distributes Covered Software as permitted above, be liable to You for any
|
||||
Under no circumstances and under no legal theory, whether tort (including
|
||||
negligence), contract, or otherwise, shall any Contributor, or anyone who
|
||||
distributes Covered Software as permitted above, be liable to You for any
|
||||
direct, indirect, special, incidental, or consequential damages of any
|
||||
character including, without limitation, damages for lost profits, loss of
|
||||
goodwill, work stoppage, computer failure or malfunction, or any and all
|
||||
@ -316,14 +316,14 @@ Mozilla Public License, version 2.0
|
||||
|
||||
Any litigation relating to this License may be brought only in the courts of
|
||||
a jurisdiction where the defendant maintains its principal place of business
|
||||
and such litigation shall be governed by laws of that jurisdiction, without
|
||||
reference to its conflict-of-law provisions. Nothing in this Section shall
|
||||
and such litigation shall be governed by laws of that jurisdiction, without
|
||||
reference to its conflict-of-law provisions. Nothing in this Section shall
|
||||
prevent a party’s ability to bring cross-claims or counter-claims.
|
||||
|
||||
9. Miscellaneous
|
||||
|
||||
This License represents the complete agreement concerning the subject matter
|
||||
hereof. If any provision of this License is held to be unenforceable, such
|
||||
This License represents the complete agreement concerning the subject matter
|
||||
hereof. If any provision of this License is held to be unenforceable, such
|
||||
provision shall be reformed only to the extent necessary to make it
|
||||
enforceable. Any law or regulation which provides that the language of a
|
||||
contract shall be construed against the drafter shall not be used to construe
|
||||
@ -368,8 +368,8 @@ Exhibit A - Source Code Form License Notice
|
||||
obtain one at
|
||||
http://mozilla.org/MPL/2.0/.
|
||||
|
||||
If it is not possible or desirable to put the notice in a particular file, then
|
||||
You may include the notice in a location (such as a LICENSE file in a relevant
|
||||
If it is not possible or desirable to put the notice in a particular file, then
|
||||
You may include the notice in a location (such as a LICENSE file in a relevant
|
||||
directory) where a recipient would be likely to look for such a notice.
|
||||
|
||||
You may add additional accurate notices of copyright ownership.
|
||||
@ -382,8 +382,8 @@ Exhibit B - “Incompatible With Secondary Licenses” Notice
|
||||
</pre>
|
||||
</div>
|
||||
<div class='sidebar'>
|
||||
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a>
|
||||
<div class='how-to-apply'>
|
||||
<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.
|
||||
@ -395,7 +395,7 @@ Exhibit B - “Incompatible With Secondary Licenses” Notice
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" class="cf">
|
||||
<footer class="site-footer cf">
|
||||
<nav>
|
||||
<a href="/about">About</a>
|
||||
<a href="#">Terms of Service</a>
|
||||
@ -403,7 +403,7 @@ Exhibit B - “Incompatible With Secondary Licenses” Notice
|
||||
<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>.
|
||||
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user