mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 03:08:51 +01:00
43cb4ca085
Added a very rough mockup of a license page.
74 lines
2.8 KiB
HTML
74 lines
2.8 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
|
|
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
|
|
<title>KING of Developers</title>
|
|
<link href="css/style.css" rel="stylesheet">
|
|
<script type="text/javascript" src="https://use.typekit.com/weh4icd.js"></script>
|
|
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
|
|
</head>
|
|
|
|
<body class="cal">
|
|
<div class="get-started">
|
|
<h1>
|
|
So you want to choose an OSS license.
|
|
<strong>Now what?</strong>
|
|
</h1>
|
|
|
|
<p>
|
|
<strong>This doesn't need to be scary.</strong>
|
|
We compiled a list of three licenses that address what most projects need.
|
|
You can pick on of these and be on your way, or click the links to dig deeper
|
|
into picking a license that meets your unique needs.
|
|
</p>
|
|
|
|
<h2>
|
|
<strong>Ready? Which of the following describes you?</strong>
|
|
<h3 class="big-intro-link">Do whatever with my code</h3>
|
|
<p>
|
|
<a href="licenses/mit.html">The MIT license</a> is a permissive license that is short and to the point.
|
|
It lets people do anything with your code with two main stipulations:
|
|
</p>
|
|
<ul>
|
|
<li>- Include proper attribution</li>
|
|
<li>- The code is provided without warranty of any kind</li>
|
|
</ul>
|
|
<p>
|
|
<a href="guide/permissive-licenses.html">More like this...</a>
|
|
<strong class="projects">Projects that use this: jQuery, Rails</strong>
|
|
</p>
|
|
</h2>
|
|
|
|
<h2>
|
|
<h3 class="big-intro-link">I’m concerned about patents</h3>
|
|
<p>
|
|
<a href="licenses/apache.html">The Apache license</a> is a permissive license similar to the MIT License,
|
|
but it provides a patent license for any code that infringes on a contributor’s patents.
|
|
</p>
|
|
<p>
|
|
<a href="guide/foundation-backed.html">More like this...</a>
|
|
<strong class="projects">Projects that use this: Apache, SVN, NuGet</strong>
|
|
</p>
|
|
</h2>
|
|
|
|
<h2>
|
|
<h3 class="big-intro-link">You care about reciprocity</h3>
|
|
<p>
|
|
The GPL (<a href="licenses/gpl-v2.html">v2</a> or <a href="licenses/gpl-v3.html">v3</a>) requires that folks who modify your
|
|
code also license their changes under the GPL. V3 is similar to v2, but adds a restriction
|
|
that doesn’st allow using the software in hardware that doesn’t allow modifying
|
|
the software.
|
|
</p>
|
|
<p>
|
|
<a href="guide/reciprocal-licenses.html">More like this...</a>
|
|
<strong class="projects">Projects that use this: Linux, Git</strong>
|
|
</p>
|
|
</h2>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|