1
0
mirror of https://github.com/github/choosealicense.com synced 2024-12-22 12:50:24 +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

@ -25,7 +25,6 @@ var annotations = {
} }
} }
var qtip_position = { var qtip_position = {
my: 'top center', my: 'top center',
at: 'bottom center' at: 'bottom center'
@ -39,7 +38,7 @@ $(document).ready(function() {
} }
} }
$('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 // Hook up copy to clipboard buttons
var clip = new ZeroClipboard( $("#clipboard-button"), { var clip = new ZeroClipboard($(".js-clipboard-button"), {
moviePath: "../../javascripts/ZeroClipboard.swf" moviePath: "../../javascripts/ZeroClipboard.swf"
} ); });
clip.on( 'mouseover', function(client, args) { 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
@ -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,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>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.
@ -191,8 +191,8 @@ 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.
@ -54,8 +54,8 @@ 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,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>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
@ -227,8 +227,8 @@ 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,8 +368,8 @@ 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.
@ -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,8 +703,8 @@ 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.
@ -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>
@ -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,8 +531,8 @@ 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.
@ -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,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>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}
@ -47,8 +47,8 @@ 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
@ -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>