1
0
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:
Jason Long 2013-01-21 19:45:45 -05:00 committed by Haacked
parent 61f43db622
commit 3c14329ea7
17 changed files with 497 additions and 506 deletions

View File

@ -12,9 +12,9 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> <a href="../../../">Home</a>
</li> </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&#8217;s always best to consult with a professional. 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&#8217;s always best to consult with a professional.
</p> </p>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
About About
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -48,7 +48,7 @@
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -71,7 +71,7 @@ a:hover {
text-decoration: underline; text-decoration: underline;
} }
a.button { .button {
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
-moz-border-radius: 3px; -moz-border-radius: 3px;
-ms-border-radius: 3px; -ms-border-radius: 3px;
@ -103,7 +103,7 @@ a.button {
padding: 5px 10px; padding: 5px 10px;
text-align: center; text-align: center;
} }
a.button:hover { .button:hover {
text-decoration: none; text-decoration: none;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7e5e0), color-stop(100%, #d0ceca)); background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7e5e0), color-stop(100%, #d0ceca));
background-image: -webkit-linear-gradient(#e7e5e0, #d0ceca); background-image: -webkit-linear-gradient(#e7e5e0, #d0ceca);
@ -149,21 +149,21 @@ strong {
font-weight: bold; font-weight: bold;
} }
#container { .container {
margin: 40px auto; margin: 40px auto;
width: 900px; width: 900px;
} }
#home { .home {
padding-top: 20px; padding-top: 20px;
text-align: center; text-align: center;
} }
#home h1 { .home h1 {
font-size: 63px; font-size: 63px;
line-height: 1.1; line-height: 1.1;
margin-bottom: 25px; margin-bottom: 25px;
} }
#home h2 { .home h2 {
color: #149ad4; color: #149ad4;
font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif; font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
font-size: 27px; font-size: 27px;
@ -172,7 +172,7 @@ strong {
margin-bottom: 45px; margin-bottom: 45px;
vertical-align: middle; vertical-align: middle;
} }
#home h2 span { .home h2 span {
color: #e9e6e2; color: #e9e6e2;
font-size: 70px; font-size: 70px;
padding: 0 5px; padding: 0 5px;
@ -180,29 +180,29 @@ strong {
top: 10px; top: 10px;
} }
ul#situations { .situations {
width: 800px; width: 800px;
margin: 0 auto; margin: 0 auto;
} }
ul#situations li { .situations li {
width: 240px; width: 240px;
float: left; float: left;
margin-left: 27px; margin-left: 27px;
text-align: center; text-align: center;
} }
ul#situations li.whatever { .situations .whatever {
margin-left: 0; margin-left: 0;
margin-top: 16px; margin-top: 16px;
} }
ul#situations li.reciprocity { .situations .reciprocity {
margin-top: 3px; margin-top: 3px;
} }
ul#situations li h3 { .situations h3 {
margin: 0 auto 20px auto; margin: 0 auto 20px auto;
width: 200px; width: 200px;
} }
ul#situations li h3 a { .situations h3 a {
text-decoration: none; text-decoration: none;
color: #443a33; color: #443a33;
font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif; font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
@ -211,8 +211,11 @@ ul#situations li h3 a {
line-height: 1.1; line-height: 1.1;
} }
.see-more { .situations .button {
margin-top: 20px; margin-top: 20px;
}
.callout {
background-color: rgba(255, 255, 255, 0.33); background-color: rgba(255, 255, 255, 0.33);
border: solid 1px #e9e6e1; border: solid 1px #e9e6e1;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
@ -223,41 +226,40 @@ ul#situations li h3 a {
color: #7e7974; color: #7e7974;
padding: 16px; padding: 16px;
} }
.see-more {
ul#situations li a.button {
margin-top: 20px; margin-top: 20px;
} }
table.license { .license-grid {
font-size: 13px; font-size: 13px;
line-height: 1.3; line-height: 1.3;
margin-bottom: 40px; margin-bottom: 40px;
} }
table.license th { .license-grid th {
border-bottom: solid 1px #d9d7d2; border-bottom: solid 1px #d9d7d2;
padding: 5px 10px; padding: 5px 10px;
} }
table.license th.name { .license-grid .name {
border-right: solid 1px #d9d7d2; border-right: solid 1px #d9d7d2;
width: 150px; width: 150px;
} }
table.license th.name a { .license-grid .name a {
font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif; font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
font-size: 28px; font-size: 28px;
font-weight: 900; font-weight: 900;
} }
table.license th.summary { .license-grid .summary {
color: #7e7974; color: #7e7974;
} }
table.license td { .license-grid td {
border-bottom: solid 1px #e9e6e2; border-bottom: solid 1px #e9e6e2;
padding: 4px 10px; padding: 4px 10px;
} }
table.license td.label { .license-grid .label {
border-right: solid 1px #d9d7d2; border-right: solid 1px #d9d7d2;
font-weight: bold; font-weight: bold;
} }
table.license td ul li { .license-grid li {
background-position: 0 1px; background-position: 0 1px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 12px 12px; background-size: 12px 12px;
@ -271,79 +273,70 @@ table.license td ul li {
margin-right: 15px; margin-right: 15px;
padding-left: 16px; padding-left: 16px;
} }
table.license td ul li:hover { .license-grid li:hover {
color: #443a33; color: #443a33;
} }
table.license td ul.required li { .license-grid .required li {
background-image: url(../images/blue-dot@2x.png); 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); 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); 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); background-color: rgba(0, 0, 0, 0.02);
} }
div.license { .license-body {
font-size: 15px; font-size: 15px;
float: left; float: left;
width: 660px; width: 660px;
} }
div.license pre { .license-body pre {
font-family: Consolas, Monaco, Courier, monospace; font-family: Consolas, Monaco, Courier, monospace;
font-size: 14px; font-size: 14px;
} }
div.sidebar { .sidebar {
float: right; float: right;
width: 220px; width: 220px;
} }
div.sidebar a.button { .sidebar a.button {
margin-top: -110px; margin-top: -110px;
width: 100%; width: 100%;
} }
div.sidebar .how-to-apply { .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;
font-size: 12px; font-size: 12px;
margin-top: -15px; margin-top: -15px;
padding: 16px;
} }
div.sidebar .how-to-apply p { .sidebar .how-to-apply p {
line-height: 1.5; line-height: 1.5;
} }
div.sidebar .how-to-apply p:last-child { .sidebar .how-to-apply p:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
div.sidebar div.source { .sidebar .source {
font-size: 12px; font-size: 12px;
text-align: center; text-align: center;
margin-top: 10px; margin-top: 10px;
} }
div.sidebar div.source a { .sidebar .source a {
padding-left: 20px; padding-left: 20px;
background: transparent url(../images/source@2x.png) 0 1px no-repeat; background: transparent url(../images/source@2x.png) 0 1px no-repeat;
background-size: 16px 12px; background-size: 16px 12px;
} }
div.sidebar div.boilerplate { .sidebar .boilerplate {
font-family: 'courier new', courier; font-family: 'courier new', courier;
font-size: 0.7em; font-size: 0.7em;
} }
#footer { .site-footer {
border-top: 1px solid #e9e6e1; border-top: 1px solid #e9e6e1;
margin-top: 30px; margin-top: 30px;
padding-top: 20px; padding-top: 20px;
@ -352,17 +345,17 @@ div.sidebar div.boilerplate {
text-align: left; text-align: left;
line-height: 1.5; line-height: 1.5;
} }
#footer a { .site-footer a {
color: #443a33; color: #443a33;
font-weight: normal; font-weight: normal;
} }
#footer p { .site-footer p {
float: left; float: left;
} }
#footer nav { .site-footer nav {
float: right; float: right;
} }
#footer nav a { .site-footer nav a {
display: inline-block; display: inline-block;
margin-left: 20px; margin-left: 20px;
} }
@ -422,4 +415,3 @@ div.sidebar div.boilerplate {
.cf { .cf {
zoom:1; zoom:1;
} }

View File

@ -12,8 +12,8 @@
<script src='javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='home'> <body class='home'>
<div id='container'> <div class='container'>
<div id='home'> <div id='home'>
<h1>Choosing an OSS license doesnt need to be scary.</h1> <h1>Choosing an OSS license doesnt need to be scary.</h1>
<h2> <h2>
@ -21,7 +21,7 @@
Which of the following best describes your situation? Which of the following best describes your situation?
<span>}</span> <span>}</span>
</h2> </h2>
<ul id='situations' class="cf"> <ul class="situations cf">
<li class='whatever'> <li class='whatever'>
<a href="licenses/mit"><img height='57' src='images/three-arrows@2x.png' width='72'></a> <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> <h3><a href="licenses/mit">Do what you like with my code.</a></h3>
@ -56,19 +56,19 @@
</p> </p>
</li> </li>
</ul> </ul>
<p class="see-more"> <p class="see-more callout">
None of these work for me. <a href="licenses">Show me more licenses »</a> None of these work for me. <a href="licenses">Show me more licenses »</a>
</p> </p>
</div> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="about">About</a> <a href="about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
</nav> </nav>
<p>Please consult a legal expert before adopting a software license for your project.<br> <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/"> 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>
</div> </footer>
</div> </div>
</body> </body>
</html> </html>

View File

@ -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-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.', 'no-sublicense' : 'You may not grant a sublicense to modify and distribute this software to third parties not included in the license.',
}, },
required: { required: {
'include-copyright' : 'Include the original copyright with the code.', 'include-copyright' : 'Include the original copyright with the code.',
'include-license' : 'Include the full text of the license 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.' 'rename' : 'You must change the name of the software if you modify it.'
} }
} }
var qtip_position = { var qtip_position = {
my: 'top center', my: 'top center',
@ -37,9 +36,9 @@ $(document).ready(function() {
for (var annotation in categoryAnnotations) { for (var annotation in categoryAnnotations) {
$('table.license ul.' + category + ' li.' + annotation).attr('title', categoryAnnotations[annotation]); $('table.license ul.' + category + ' li.' + annotation).attr('title', categoryAnnotations[annotation]);
} }
} }
$('table.license ul.required li').qtip({ $('.license .required li').qtip({
content: { content: {
text: false, text: false,
title: { title: {
@ -52,7 +51,7 @@ $(document).ready(function() {
} }
}); });
$('table.license ul.permitted li').qtip({ $('.license .permitted li').qtip({
content: { content: {
text: false, text: false,
title: { title: {
@ -65,7 +64,7 @@ $(document).ready(function() {
} }
}); });
$('table.license ul.forbidden li').qtip({ $('.license .forbidden li').qtip({
content: { content: {
text: false, text: false,
title: { title: {

View File

@ -1,20 +1,20 @@
$(document).ready(function() { $(document).ready(function() {
// Backup the clipboard button's original text. // Backup the clipboard button's original text.
$("#clipboard-button").data('clipboard-prompt', $('#clipboard-button').text()); $(".js-clipboard-button").data('clipboard-prompt', $('.js-clipboard-button').text());
// Hook up copy to clipboard buttons
var clip = new ZeroClipboard( $("#clipboard-button"), {
moviePath: "../../javascripts/ZeroClipboard.swf"
} );
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. // Restore the clipboard button's original text.
this.innerText = $(this).data('clipboard-prompt'); this.innerText = $(this).data('clipboard-prompt');
} ); });
clip.on( 'complete', function(client, args) { clip.on('complete', function(client, args) {
this.innerText = 'Copied!'; this.innerText = 'Copied!';
} ); });
}); });

View File

@ -15,16 +15,16 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>Apache v2 License</h1> <h1>Apache v2 License</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
Apache License Apache License
Version 2.0, January 2004 Version 2.0, January 2004
@ -34,27 +34,27 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions. 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. 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. owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities "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. 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 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 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 contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity. 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. 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 but not limited to software source code, documentation source, and configuration
files. 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, translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types. 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 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). 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 "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, is based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works 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 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. name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version "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 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 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 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, on behalf of the copyright owner. For the purposes of this definition,
"submitted" means any form of electronic, verbal, or written communication sent "submitted" means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems, and communication on electronic mailing lists, source code control systems, and
issue tracking systems that are managed by, or on behalf of, the Licensor for 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 the purpose of discussing and improving the Work, but excluding communication
that is conspicuously marked or otherwise designated in writing by the copyright that is conspicuously marked or otherwise designated in writing by the copyright
owner as "Not a Contribution." owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
of whom a Contribution has been received by Licensor and subsequently of whom a Contribution has been received by Licensor and subsequently
incorporated within the Work. incorporated within the Work.
2. Grant of Copyright License. 2. Grant of Copyright License.
Subject to the terms and conditions of this License, each Contributor hereby Subject to the terms and conditions of this License, each Contributor hereby
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
irrevocable copyright license to reproduce, prepare Derivative Works of, irrevocable copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the Work and such publicly display, publicly perform, sublicense, and distribute the Work and such
Derivative Works in Source or Object form. Derivative Works in Source or Object form.
3. Grant of Patent License. 3. Grant of Patent License.
Subject to the terms and conditions of this License, each Contributor hereby Subject to the terms and conditions of this License, each Contributor hereby
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
irrevocable (except as stated in this section) patent license to make, have 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 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 such license applies only to those patent claims licensable by such Contributor
that are necessarily infringed by their Contribution(s) alone or by combination 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 of their Contribution(s) with the Work to which such Contribution(s) was
submitted. If You institute patent litigation against any entity (including a submitted. If You institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work or a cross-claim or counterclaim in a lawsuit) alleging that the Work or a
Contribution incorporated within the Work constitutes direct or contributory Contribution incorporated within the Work constitutes direct or contributory
patent infringement, then any patent licenses granted to You under this License 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. for that Work shall terminate as of the date such litigation is filed.
4. Redistribution. 4. Redistribution.
You may reproduce and distribute copies of the Work or Derivative Works thereof 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, in any medium, with or without modifications, and in Source or Object form,
provided that You meet the following conditions: 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 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 changed the files; and
You must retain, in the Source form of any Derivative Works that You distribute, 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 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 of the Work, excluding those notices that do not pertain to any part of the
Derivative Works; and Derivative Works; and
If the Work includes a "NOTICE" text file as part of its distribution, then any 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 Derivative Works that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding those notices 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 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 following places: within a NOTICE text file distributed as part of the
Derivative Works; within the Source form or documentation, if provided along Derivative Works; within the Source form or documentation, if provided along
with the Derivative Works; or, within a display generated by the Derivative 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 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 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 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, You distribute, alongside or as an addendum to the NOTICE text from the Work,
provided that such additional attribution notices cannot be construed as provided that such additional attribution notices cannot be construed as
modifying the License. modifying the License.
You may add Your own copyright statement to Your modifications and may provide You may add Your own copyright statement to Your modifications and may provide
additional or different license terms and conditions for use, reproduction, or additional or different license terms and conditions for use, reproduction, or
distribution of Your modifications, or for any such Derivative Works as a whole, distribution of Your modifications, or for any such Derivative Works as a whole,
provided Your use, reproduction, and distribution of the Work otherwise complies provided Your use, reproduction, and distribution of the Work otherwise complies
with the conditions stated in this License. with the conditions stated in this License.
5. Submission of Contributions. 5. Submission of Contributions.
Unless You explicitly state otherwise, any Contribution intentionally submitted 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 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. conditions of this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify the terms of 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. such Contributions.
6. Trademarks. 6. Trademarks.
This License does not grant permission to use the trade names, 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 service marks, or product names of the Licensor, except as required for
reasonable and customary use in describing the origin of the Work and reasonable and customary use in describing the origin of the Work and
reproducing the content of the NOTICE file. reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. 7. Disclaimer of Warranty.
Unless required by applicable law or agreed to in writing, Licensor provides the 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, Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
including, without limitation, any warranties or conditions of TITLE, including, without limitation, any warranties or conditions of TITLE,
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
solely responsible for determining the appropriateness of using or solely responsible for determining the appropriateness of using or
redistributing the Work and assume any risks associated with Your exercise of redistributing the Work and assume any risks associated with Your exercise of
permissions under this License. permissions under this License.
8. Limitation of Liability. 8. Limitation of Liability.
In no event and under no legal theory, whether in tort (including negligence), In no event and under no legal theory, whether in tort (including negligence),
contract, or otherwise, unless required by applicable law (such as deliberate contract, or otherwise, unless required by applicable law (such as deliberate
and grossly negligent acts) or agreed to in writing, shall any Contributor be and grossly negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special, incidental, 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 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 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. been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. 9. Accepting Warranty or Additional Liability.
While redistributing the Work or Derivative Works thereof, You may choose to While redistributing the Work or Derivative Works thereof, You may choose to
offer, and charge a fee for, acceptance of support, warranty, indemnity, or offer, and charge a fee for, acceptance of support, warranty, indemnity, or
other liability obligations and/or rights consistent with this License. However, 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 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 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 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. accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work APPENDIX: How to apply the Apache License to your work
To apply the Apache License to your work, attach the following boilerplate To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "[]" replaced with your own notice, with the fields enclosed by brackets "[]" replaced with your own
identifying information. (Don't include the brackets!) The text should be identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also 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 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 the same "printed page" as the copyright notice for easier identification within
third-party archives. third-party archives.
@ -220,8 +220,8 @@ third-party archives.
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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>
</div> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="../../about">About</a> <a href="../../about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -243,7 +243,7 @@ third-party archives.
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,184 +15,184 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>Artistic License 2.0</h1> <h1>Artistic License 2.0</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
Artistic License 2.0 Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation. 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. document, but changing it is not allowed.
Preamble Preamble
This license establishes the terms under which a given free software Package may 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 be copied, modified, distributed, and/or redistributed. The intent is that the
Copyright Holder maintains some artistic control over the development of that Copyright Holder maintains some artistic control over the development of that
Package while still keeping the Package available as open source and free Package while still keeping the Package available as open source and free
software. software.
You are always permitted to make arrangements wholly outside of this license 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 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 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. should contact the Copyright Holder and seek a different licensing arrangement.
Definitions 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. copyright notice for the entire Package.
"Contributor" means any party that has contributed code or other material to the "Contributor" means any party that has contributed code or other material to the
Package, in accordance with the Copyright Holder's procedures. 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. the Package.
"Package" means the collection of files distributed by the Copyright Holder, and "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. consist of either the Standard Version, or a Modified Version.
"Distribute" means providing a copy of the Package or making it accessible to "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 anyone else, or in the case of a company or organization, to others outside of
your company or organization. your company or organization.
"Distributor Fee" means any fee that you charge for Distributing this Package or "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. 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. 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. were not explicitly requested by the Copyright Holder.
"Original License" means this Artistic License as Distributed with the Standard "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 Version of the Package, in its current version or as it may be modified by The
Perl Foundation in the future. 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. 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. form resulting from mechanical transformation or translation of the Source form.
Permission for Use and Modification Without Distribution Permission for Use and Modification Without Distribution
(1) You are permitted to use the Standard Version and create and use Modified (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 Versions for any purpose without restriction, provided that you do not
Distribute the Modified Version. Distribute the Modified Version.
Permissions for Redistribution of the Standard Version Permissions for Redistribution of the Standard Version
(2) You may Distribute verbatim copies of the Source form of the Standard (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 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 a Distributor Fee, provided that you duplicate all of the original copyright
notices and associated disclaimers. At your discretion, such verbatim copies may notices and associated disclaimers. At your discretion, such verbatim copies may
or may not include a Compiled form of the Package. or may not include a Compiled form of the Package.
(3) You may apply any bug fixes, portability changes, and other modifications (3) You may apply any bug fixes, portability changes, and other modifications
made available from the Copyright Holder. The resulting Package will still be 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 considered the Standard Version, and as such will be subject to the Original
License. License.
Distribution of Modified Versions of the Package as Source Distribution of Modified Versions of the Package as Source
(4) You may Distribute your Modified Version as Source (either gratis or for a (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) 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, provided that you clearly document how it differs from the Standard Version,
including, but not limited to, documenting any non-standard features, including, but not limited to, documenting any non-standard features,
executables, or modules, and provided that you do at least ONE of the following: 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 (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 Version, under the Original License, so that the Copyright Holder may include
your modifications in the Standard Version. your modifications in the Standard Version.
(b) ensure that installation of your Modified Version does not prevent the user (b) ensure that installation of your Modified Version does not prevent the user
installing or running the Standard Version. In addition, the Modified Version 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. 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 form of the Modified Version available to others under
(i) the Original License or (i) the Original License or
(ii) a license that permits the licensee to freely copy, modify and redistribute (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 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 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 Version, and of any works derived from it, be made freely available in that
license fees are prohibited but Distributor Fees are allowed. 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 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 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. If these instructions, at any time while you are carrying out such
distribution, become invalid, you must provide new instructions on demand or distribution, become invalid, you must provide new instructions on demand or
cease further distribution. If you provide valid instructions or cease cease further distribution. If you provide valid instructions or cease
distribution within thirty days after you become aware that the instructions are 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. 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, (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 provided that you comply with Section 4 with respect to the Source of the
Modified Version. Modified Version.
Aggregating or Linking the Package Aggregating or Linking the Package
(7) You may aggregate the Package (either the Standard Version or Modified (7) You may aggregate the Package (either the Standard Version or Modified
Version) with other packages and Distribute the resulting aggregation provided Version) with other packages and Distribute the resulting aggregation provided
that you do not charge a licensing fee for the Package. Distributor Fees are 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, and licensing fees for other components in the aggregation are
permitted. The terms of this license apply to the use and Distribution of the permitted. The terms of this license apply to the use and Distribution of the
Standard or Modified Versions as included in the aggregation. Standard or Modified Versions as included in the aggregation.
(8) You are permitted to link Modified and Standard Versions with other works, (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 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 binary or bytecode versions of applications that include the Package, and
Distribute the result without restriction, provided the result does not expose a Distribute the result without restriction, provided the result does not expose a
direct interface to the Package. direct interface to the Package.
Items That are Not Considered Part of a Modified Version Items That are Not Considered Part of a Modified Version
(9) Works (including, but not limited to, modules and scripts) that merely (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 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 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. Package itself, and are not subject to the terms of this license.
General Provisions General Provisions
(10) Any use, modification, and distribution of the Standard or Modified (10) Any use, modification, and distribution of the Standard or Modified
Versions is governed by this Artistic License. By using, modifying or Versions is governed by this Artistic License. By using, modifying or
distributing the Package, you accept this license. Do not use, modify, or distributing the Package, you accept this license. Do not use, modify, or
distribute the Package, if you do not accept this license. distribute the Package, if you do not accept this license.
(11) If your Modified Version has been derived from a Modified Version made by (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 someone other than you, you are nevertheless required to ensure that your
Modified Version complies with the requirements of this license. 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. mark, tradename, or logo of the Copyright Holder.
(13) This license includes the non-exclusive, worldwide, free-of-charge patent (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 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 transfer the Package with respect to any patent claims licensable by the
Copyright Holder that are necessarily infringed by the Package. If you institute Copyright Holder that are necessarily infringed by the Package. If you institute
patent litigation (including a cross-claim or counterclaim) against any party patent litigation (including a cross-claim or counterclaim) against any party
alleging that the Package constitutes direct or contributory patent alleging that the Package constitutes direct or contributory patent
infringement, then this Artistic License to you shall terminate on the date that infringement, then this Artistic License to you shall terminate on the date that
such litigation is filed. such litigation is filed.
(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND (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 CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. 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 UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY 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 OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE. DAMAGE.
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="../../about">About</a> <a href="../../about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -212,7 +212,7 @@ DAMAGE.
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,16 +15,16 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>BSD (3-Clause) License</h1> <h1>BSD (3-Clause) License</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
Copyright (c) {year}, {copyright holder} Copyright (c) {year}, {copyright holder}
All rights reserved. All rights reserved.
@ -38,8 +38,8 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="/about">About</a> <a href="/about">About</a>
<a href="#">Terms of Service</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> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,16 +15,16 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>BSD (2-Clause) License</h1> <h1>BSD (2-Clause) License</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
Copyright (c) {year}, {copyright holder} Copyright (c) {year}, {copyright holder}
All rights reserved. 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 Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer. of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution. other materials provided with the distribution.
Neither the name of the {organization} nor the names of its contributors may be 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 used to endorse or promote products derived from this software without specific
prior written permission. prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 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 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 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 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="../../about">About</a> <a href="../../about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -75,7 +75,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,60 +15,60 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>Eclipse Public License v1.0</h1> <h1>Eclipse Public License v1.0</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
Eclipse Public License - v 1.0 Eclipse Public License - v 1.0
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
1. DEFINITIONS 1. DEFINITIONS
"Contribution" means: "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 distributed under this Agreement, and
b) in the case of each subsequent Contributor: b) in the case of each subsequent Contributor:
i) changes to the Program, and i) changes to the Program, and
ii) additions to the Program; 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 distributed by that particular Contributor. A Contribution 'originates' from
a Contributor if it was added to the Program by such Contributor itself or 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 anyone acting on such Contributor's behalf. Contributions do not include
additions to the Program which: (i) are separate modules of software additions to the Program which: (i) are separate modules of software
distributed in conjunction with the Program under their own license distributed in conjunction with the Program under their own license
agreement, and (ii) are not derivative works of the Program. agreement, and (ii) are not derivative works of the Program.
"Contributor" means any person or entity that distributes the Program. "Contributor" means any person or entity that distributes the Program.
"Licensed Patents" mean patent claims licensable by a Contributor which are "Licensed Patents" mean patent claims licensable by a Contributor which are
necessarily infringed by the use or sale of its Contribution alone or when necessarily infringed by the use or sale of its Contribution alone or when
combined with the Program. combined with the Program.
"Program" means the Contributions distributed in accordance with this Agreement. "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. including all Contributors.
2. GRANT OF RIGHTS 2. GRANT OF RIGHTS
a) Subject to the terms of this Agreement, each Contributor hereby grants a) Subject to the terms of this Agreement, each Contributor hereby grants
Recipient a non-exclusive, worldwide, royalty-free copyright license to Recipient a non-exclusive, worldwide, royalty-free copyright license to
reproduce, prepare derivative works of, publicly display, publicly perform, reproduce, prepare derivative works of, publicly display, publicly perform,
distribute and sublicense the Contribution of such Contributor, if any, and distribute and sublicense the Contribution of such Contributor, if any, and
such derivative works, in source code and object code form. such derivative works, in source code and object code form.
b) Subject to the terms of this Agreement, each Contributor hereby grants b) Subject to the terms of this Agreement, each Contributor hereby grants
Recipient a non-exclusive, worldwide, royalty-free patent license under Recipient a non-exclusive, worldwide, royalty-free patent license under
Licensed Patents to make, use, sell, offer to sell, import and otherwise Licensed Patents to make, use, sell, offer to sell, import and otherwise
transfer the Contribution of such Contributor, if any, in source code and 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 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 be covered by the Licensed Patents. The patent license shall not apply
to any other combinations which include the Contribution. No hardware per to any other combinations which include the Contribution. No hardware per
se is licensed hereunder. se is licensed hereunder.
c) Recipient understands that although each Contributor grants the licenses to c) Recipient understands that although each Contributor grants the licenses to
its Contributions set forth herein, no assurances are provided by any its Contributions set forth herein, no assurances are provided by any
Contributor that the Program does not infringe the patent or other Contributor that the Program does not infringe the patent or other
intellectual property rights of any other entity. Each Contributor intellectual property rights of any other entity. Each Contributor
disclaims any liability to Recipient for claims brought by any other entity 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 d) Each Contributor represents that to its knowledge it has sufficient
copyright rights in its Contribution, if any, to grant the copyright copyright rights in its Contribution, if any, to grant the copyright
license set forth in this Agreement. license set forth in this Agreement.
3. REQUIREMENTS 3. REQUIREMENTS
A Contributor may choose to distribute the Program in object code form under its 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 a) it complies with the terms and conditions of this Agreement; and
b) its license agreement: 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 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; merchantability and fitness for a particular purpose;
ii) effectively excludes on behalf of all Contributors all liability for ii) effectively excludes on behalf of all Contributors all liability for
damages, including direct, indirect, special, incidental and damages, including direct, indirect, special, incidental and
consequential damages, such as lost profits; consequential damages, such as lost profits;
iii) states that any provisions which differ from this Agreement are offered iii) states that any provisions which differ from this Agreement are offered
by that Contributor alone and not by any other party; and by that Contributor alone and not by any other party; and
iv) states that source code for the Program is available from such iv) states that source code for the Program is available from such
Contributor, and informs licensees how to obtain it in a reasonable Contributor, and informs licensees how to obtain it in a reasonable
manner on or through a medium customarily used for software exchange. manner on or through a medium customarily used for software exchange.
When the Program is made available in source code form: When the Program is made available in source code form:
a) it must be made available under this Agreement; and 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 Contributors may not remove or alter any copyright notices contained within
the Program. the Program.
Each Contributor must identify itself as the originator of its Contribution, if Each Contributor must identify itself as the originator of its Contribution, if
any, in a manner that reasonably allows subsequent Recipients to identify the any, in a manner that reasonably allows subsequent Recipients to identify the
originator of the Contribution. originator of the Contribution.
4. COMMERCIAL DISTRIBUTION 4. COMMERCIAL DISTRIBUTION
Commercial distributors of software may accept certain responsibilities with Commercial distributors of software may accept certain responsibilities with
respect to end users, business partners and the like. While this license is 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 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 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 which does not create potential liability for other Contributors. Therefore, if
a Contributor includes the Program in a commercial product offering, such a Contributor includes the Program in a commercial product offering, such
Contributor ("Commercial Contributor") hereby agrees to defend and indemnify Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
every other Contributor ("Indemnified Contributor") against any losses, damages every other Contributor ("Indemnified Contributor") against any losses, damages
and costs (collectively "Losses") arising from claims, lawsuits and other legal and costs (collectively "Losses") arising from claims, lawsuits and other legal
actions brought by a third party against the Indemnified Contributor to the actions brought by a third party against the Indemnified Contributor to the
extent caused by the acts or omissions of such Commercial Contributor in extent caused by the acts or omissions of such Commercial Contributor in
connection with its distribution of the Program in a commercial product 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 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 relating to any actual or alleged intellectual property infringement. In order
to qualify, an Indemnified Contributor must: a) promptly notify the Commercial to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
Contributor in writing of such claim, and b) allow the Commercial Contributor to 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 control, and cooperate with the Commercial Contributor in, the defense and any
related settlement negotiations. The Indemnified Contributor may participate in related settlement negotiations. The Indemnified Contributor may participate in
any such claim at its own expense. any such claim at its own expense.
For example, a Contributor might include the Program in a commercial product For example, a Contributor might include the Program in a commercial product
offering, Product X. That Contributor is then a Commercial Contributor. If that offering, Product X. That Contributor is then a Commercial Contributor. If that
Commercial Contributor then makes performance claims, or offers warranties Commercial Contributor then makes performance claims, or offers warranties
related to Product X, those performance claims and warranties are such related to Product X, those performance claims and warranties are such
Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor's responsibility alone. Under this section, the
Commercial Contributor would have to defend claims against the other Commercial Contributor would have to defend claims against the other
Contributors related to those performance claims and warranties, and if a court 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 requires any other Contributor to pay any damages as a result, the Commercial
Contributor must pay those damages. Contributor must pay those damages.
5. NO WARRANTY 5. NO WARRANTY
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN 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 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
Recipient is solely responsible for determining the appropriateness of using and Recipient is solely responsible for determining the appropriateness of using and
distributing the Program and assumes all risks associated with its exercise of 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 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, of program errors, compliance with applicable laws, damage to or loss of data,
programs or equipment, and unavailability or interruption of operations. programs or equipment, and unavailability or interruption of operations.
6. DISCLAIMER OF LIABILITY 6. DISCLAIMER OF LIABILITY
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 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. GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
7. GENERAL 7. GENERAL
If any provision of this Agreement is invalid or unenforceable under applicable 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 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 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 shall be reformed to the minimum extent necessary to make such
provision valid and enforceable. provision valid and enforceable.
If Recipient institutes patent litigation against any entity (including a If Recipient institutes patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Program itself cross-claim or counterclaim in a lawsuit) alleging that the Program itself
(excluding combinations of the Program with other software or hardware) (excluding combinations of the Program with other software or hardware)
infringes such Recipient's patent(s), then such Recipient's rights granted under 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. 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 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 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 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, such noncompliance. If all Recipient's rights under this Agreement terminate,
Recipient agrees to cease use and distribution of the Program as soon as Recipient agrees to cease use and distribution of the Program as soon as
reasonably practicable. However, Recipient's obligations under this Agreement reasonably practicable. However, Recipient's obligations under this Agreement
and any licenses granted by Recipient relating to the Program shall continue and and any licenses granted by Recipient relating to the Program shall continue and
survive. survive.
Everyone is permitted to copy and distribute copies of this Agreement, but in 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 order to avoid inconsistency the Agreement is copyrighted and may only be
modified in the following manner. The Agreement Steward reserves the right to modified in the following manner. The Agreement Steward reserves the right to
publish new versions (including revisions) of this Agreement from time to time. 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. 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 The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation
may assign the responsibility to serve as the Agreement Steward to a suitable 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 separate entity. Each new version of the Agreement will be given a
distinguishing version number. The Program (including Contributions) may always distinguishing version number. The Program (including Contributions) may always
be distributed subject to the version of the Agreement under which it was 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, received. In addition, after a new version of the Agreement is published,
Contributor may elect to distribute the Program (including its Contributions) 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) 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 above, Recipient receives no rights or licenses to the intellectual property of
any Contributor under this Agreement, whether expressly, by implication, any Contributor under this Agreement, whether expressly, by implication,
estoppel or otherwise. All rights in the Program not expressly granted under estoppel or otherwise. All rights in the Program not expressly granted under
this Agreement are reserved. this Agreement are reserved.
This Agreement is governed by the laws of the State of New York and the 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 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 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 after the cause of action arose. Each party waives its rights to a jury trial in
any resulting litigation. any resulting litigation.
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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>
</div> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="/about">About</a> <a href="/about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -247,7 +247,7 @@ any resulting litigation.
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,16 +15,16 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>GPL v2</h1> <h1>GPL v2</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
GNU GENERAL PUBLIC LICENSE GNU GENERAL PUBLIC LICENSE
Version 2, June 1991 Version 2, June 1991
@ -368,15 +368,15 @@ Public License instead of this License.
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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>
<p> <p>
<strong>Note:</strong>The Free Software Foundation recommends taking the additional <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. be found at the end of the license.
</p> </p>
</div> </div>
@ -385,7 +385,7 @@ Public License instead of this License.
</div> </div>
</div> </div>
</div> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="/about">About</a> <a href="/about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -393,7 +393,7 @@ Public License instead of this License.
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,16 +15,16 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>GPL v3</h1> <h1>GPL v3</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
GNU GENERAL PUBLIC LICENSE GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007 Version 3, 29 June 2007
@ -703,15 +703,15 @@ Public License instead of this License. But first, please read
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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>
<p> <p>
<strong>Note:</strong>The Free Software Foundation recommends taking the additional <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. be found at the end of the license.
</p> </p>
</div> </div>
@ -720,7 +720,7 @@ Public License instead of this License. But first, please read
</div> </div>
</div> </div>
</div> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="/about">About</a> <a href="/about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -728,7 +728,7 @@ Public License instead of this License. But first, please read
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -16,9 +16,9 @@
<script src='../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license-types'> <body class='license-types'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../">Home</a> <a href="../../">Home</a>
</li> </li>
@ -148,7 +148,7 @@
<h1>Other licenses</h1> <h1>Other licenses</h1>
<p> <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. community. For example, PERL developers often choose the artistic license.
</p> </p>
<table class='license'> <table class='license'>
@ -193,7 +193,7 @@
</td> </td>
</tr> </tr>
</table> </table>
<table class='license'> <table class='license'>
<tr> <tr>
<th class='name'> <th class='name'>
@ -398,14 +398,14 @@
</td> </td>
</tr> </tr>
</table> </table>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="../about">About</a> <a href="../about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
</nav> </nav>
<p>Please consult a legal expert before adopting a software license for your project.<br> <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/"> 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> </p>
</div> </div>
</body> </body>

View File

@ -15,16 +15,16 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>LGPL v2.1</h1> <h1>LGPL v2.1</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
GNU LESSER GENERAL PUBLIC LICENSE GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999 Version 2.1, February 1999
@ -531,15 +531,15 @@ That's all there is to it!
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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>
<p> <p>
<strong>Note:</strong>The Free Software Foundation recommends taking the additional <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. be found at the end of the license.
</p> </p>
</div> </div>
@ -548,7 +548,7 @@ That's all there is to it!
</div> </div>
</div> </div>
</div> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="/about">About</a> <a href="/about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -556,7 +556,7 @@ That's all there is to it!
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,16 +15,16 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>LGPL v3</h1> <h1>LGPL v3</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
GNU LESSER GENERAL PUBLIC LICENSE GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007 Version 3, 29 June 2007
@ -194,8 +194,8 @@ Library.
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <p>
This license is an additional set of permissions to the <a href="../gpl-v3">GPL v3</a> 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>
</div> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="/about">About</a> <a href="/about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -217,7 +217,7 @@ Library.
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,40 +15,40 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>MIT License</h1> <h1>MIT License</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
Copyright (c) {year} {copyright holders} Copyright (c) {year} {copyright holders}
Permission is hereby granted, free of charge, to any person obtaining a copy of 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 this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 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: 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. 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 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 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 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 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. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="/about">About</a> <a href="/about">About</a>
<a href="#">Terms of Service</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> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>

View File

@ -15,16 +15,16 @@
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script> <script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]--> <![endif]-->
</head> </head>
<body id='license'> <body class='license'>
<div id='container'> <div class='container'>
<ol id='breadcrumbs'> <ol class='breadcrumbs'>
<li> <li>
<a href="../../../">Home</a> / <a href="../">Licenses</a> <a href="../../../">Home</a> / <a href="../">Licenses</a>
</li> </li>
</ol> </ol>
<h1>Mozilla Public License<br />Version 2.0</h1> <h1>Mozilla Public License<br />Version 2.0</h1>
<div class="cf"> <div class="cf">
<div class='license'> <div class='license-body'>
<pre id="license-text"> <pre id="license-text">
Mozilla Public License, version 2.0 Mozilla Public License, version 2.0
@ -37,7 +37,7 @@ Mozilla Public License, version 2.0
1.2. “Contributor Version” 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 Contributors Contribution. Contributor and that particular Contributors Contribution.
1.3. “Contribution” 1.3. “Contribution”
@ -54,29 +54,29 @@ Mozilla Public License, version 2.0
1.5. “Incompatible With Secondary Licenses” 1.5. “Incompatible With Secondary Licenses”
means 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 Exhibit B to the Covered Software; or
b. that the Covered Software was made available under the terms of version 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 1.1 or earlier of the License, but not also under the terms of a
Secondary License. Secondary License.
1.6. “Executable Form” 1.6. “Executable Form”
means any form of the work other than Source Code Form. means any form of the work other than Source Code Form.
1.7. “Larger Work” 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. file or files, that is not Covered Software.
1.8. “License” 1.8. “License”
means this document. means this document.
1.9. “Licensable” 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 time of the initial grant or subsequently, any and all of the rights conveyed by
this License. this License.
@ -93,14 +93,14 @@ Mozilla Public License, version 2.0
means any patent claim(s), including without limitation, method, process, means any patent claim(s), including without limitation, method, process,
and apparatus claims, in any patent Licensable by such Contributor that 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 using, selling, offering for sale, having made, import, or transfer of
either its Contributions or its Contributor Version. either its Contributions or its Contributor Version.
1.12. “Secondary License” 1.12. “Secondary License”
means either the GNU General Public License, Version 2.0, the GNU Lesser 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. License, Version 3.0, or any later versions of those licenses.
1.13. “Source Code Form” 1.13. “Source Code Form”
@ -109,12 +109,12 @@ Mozilla Public License, version 2.0
1.14. “You” (or “Your”) 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 License. For legal entities, “You” includes any entity that controls, is
controlled by, or is under common control with You. For purposes of this controlled by, or is under common control with You. For purposes of this
definition, “control” means (a) the power, direct or indirect, to cause definition, “control” means (a) the power, direct or indirect, to cause
the direction or management of such entity, whether by contract or the direction or management of such entity, whether by contract or
otherwise, or (b) ownership of more than fifty percent (50%) of the otherwise, or (b) ownership of more than fifty percent (50%) of the
outstanding shares or beneficial ownership of such entity. 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, Each Contributor hereby grants You a world-wide, royalty-free,
non-exclusive license: 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, Licensable by such Contributor to use, reproduce, make available,
modify, display, perform, distribute, and otherwise exploit its modify, display, perform, distribute, and otherwise exploit its
Contributions, either on an unmodified basis, with Modifications, or as Contributions, either on an unmodified basis, with Modifications, or as
@ -137,15 +137,15 @@ Mozilla Public License, version 2.0
2.2. Effective Date 2.2. Effective Date
The licenses granted in Section 2.1 with respect to any Contribution become The licenses granted in Section 2.1 with respect to any Contribution become
effective for each Contribution on the date the Contributor first distributes effective for each Contribution on the date the Contributor first distributes
such Contribution. such Contribution.
2.3. Limitations on Grant Scope 2.3. Limitations on Grant Scope
The licenses granted in this Section 2 are the only rights granted under this 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 License. No additional rights or licenses will be implied from the distribution
or licensing of Covered Software under this License. Notwithstanding Section or licensing of Covered Software under this License. Notwithstanding Section
2.1(b) above, no patent license is granted by a Contributor: 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 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 Contributions with other software (except as part of its Contributor
Version); or 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. 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 logos of any Contributor (except as may be necessary to comply with the
notice requirements in Section 3.4). notice requirements in Section 3.4).
@ -177,12 +177,12 @@ Mozilla Public License, version 2.0
2.6. Fair Use 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. copyright doctrines of fair use, fair dealing, or other equivalents.
2.7. Conditions 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. Section 2.1.
@ -190,8 +190,8 @@ Mozilla Public License, version 2.0
3.1. Distribution of Source Form 3.1. Distribution of Source Form
All distribution of Covered Software in Source Code Form, including any All distribution of Covered Software in Source Code Form, including any
Modifications that You create or to which You contribute, must be under the 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 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 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 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 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 copyright notices, patent notices, disclaimers of warranty, or limitations
of liability) contained within the Source Code Form of the Covered of liability) contained within the Source Code Form of the Covered
Software, except that You may alter any license notices to the extent 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 alone, and You hereby agree to indemnify every Contributor for any
liability incurred by such Contributor as a result of warranty, support, liability incurred by such Contributor as a result of warranty, support,
indemnity or liability terms You offer. You may include additional 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. jurisdiction.
4. Inability to Comply Due to Statute or Regulation 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 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 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 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 distributions of the Covered Software under this License. Except to the
extent prohibited by statute or regulation, such description must be extent prohibited by statute or regulation, such description must be
sufficiently detailed for a recipient of ordinary skill to be able to 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. 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, fail to comply with any of its terms. However, if You become compliant,
then the rights granted under this License from a particular Contributor then the rights granted under this License from a particular Contributor
are reinstated (a) provisionally, unless and until such 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 non-compliance with this License from such Contributor, and You become
compliant prior to 30 days after Your receipt of the notice. 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, infringement claim (excluding declaratory judgment actions, counter-claims,
and cross-claims) alleging that a Contributor Version directly or and cross-claims) alleging that a Contributor Version directly or
indirectly infringes any patent, then the rights granted to You by any and 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 all Contributors for the Covered Software under Section 2.1 of this License
shall terminate. shall terminate.
5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user 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 license agreements (excluding distributors and resellers) which have been
validly granted by You or Your distributors under this License prior to validly granted by You or Your distributors under this License prior to
termination shall survive termination. termination shall survive termination.
6. Disclaimer of Warranty 6. Disclaimer of Warranty
Covered Software is provided under this License on an “as is” basis, without Covered Software is provided under this License on an “as is” basis, without
warranty of any kind, either expressed, implied, or statutory, including, warranty of any kind, either expressed, implied, or statutory, including,
without limitation, warranties that the Covered Software is free of defects, without limitation, warranties that the Covered Software is free of defects,
merchantable, fit for a particular purpose or non-infringing. The entire 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. 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 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 7. Limitation of Liability
Under no circumstances and under no legal theory, whether tort (including Under no circumstances and under no legal theory, whether tort (including
negligence), contract, or otherwise, shall any Contributor, or anyone who negligence), contract, or otherwise, shall any Contributor, or anyone who
distributes Covered Software as permitted above, be liable to You for any distributes Covered Software as permitted above, be liable to You for any
direct, indirect, special, incidental, or consequential damages of any direct, indirect, special, incidental, or consequential damages of any
character including, without limitation, damages for lost profits, loss of character including, without limitation, damages for lost profits, loss of
goodwill, work stoppage, computer failure or malfunction, or any and all 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 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 a jurisdiction where the defendant maintains its principal place of business
and such litigation shall be governed by laws of that jurisdiction, without and such litigation shall be governed by laws of that jurisdiction, without
reference to its conflict-of-law provisions. Nothing in this Section shall reference to its conflict-of-law provisions. Nothing in this Section shall
prevent a partys ability to bring cross-claims or counter-claims. prevent a partys ability to bring cross-claims or counter-claims.
9. Miscellaneous 9. Miscellaneous
This License represents the complete agreement concerning the subject matter This License represents the complete agreement concerning the subject matter
hereof. If any provision of this License is held to be unenforceable, such 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 provision shall be reformed only to the extent necessary to make it
enforceable. Any law or regulation which provides that the language of a 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 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 obtain one at
http://mozilla.org/MPL/2.0/. http://mozilla.org/MPL/2.0/.
If it is not possible or desirable to put the notice in a particular file, then 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 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. directory) where a recipient would be likely to look for such a notice.
You may add additional accurate notices of copyright ownership. You may add additional accurate notices of copyright ownership.
@ -382,8 +382,8 @@ Exhibit B - “Incompatible With Secondary Licenses” Notice
</pre> </pre>
</div> </div>
<div class='sidebar'> <div class='sidebar'>
<a href="#" id="clipboard-button" data-clipboard-target="license-text" class="button">Copy license text to clipboard</a> <a href="#" data-clipboard-target="license-text" class="js-clipboard-button button">Copy license text to clipboard</a>
<div class='how-to-apply'> <div class='how-to-apply callout'>
<h5>How to apply this license</h5> <h5>How to apply this license</h5>
<p> <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. 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> </div>
<div id="footer" class="cf"> <footer class="site-footer cf">
<nav> <nav>
<a href="/about">About</a> <a href="/about">About</a>
<a href="#">Terms of Service</a> <a href="#">Terms of Service</a>
@ -403,7 +403,7 @@ Exhibit B - “Incompatible With Secondary Licenses” Notice
<p> <p>
Please consult a legal expert before adopting a software license for your project.<br> 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/"> 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> </p>
</div> </div>
</div> </div>