Skip to content

Commit

Permalink
Merge pull request #101 from IQAndreas/fix-missing-sources
Browse files Browse the repository at this point in the history
Add license sources where missing
  • Loading branch information
afeld committed Oct 23, 2013
2 parents 686367b + dc58abe commit a5b5d4a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ <h5>How to apply this license</h5>
</p>
{% endif %}
</div>
{% if page.source %}
<div class="source">
<a href="{{ page.source}}">Source</a>
<a href="{{ page.source }}">Source</a>
</div>
{% endif %}

<div class="license-rules license-rules-sidebar">

Expand Down
1 change: 1 addition & 0 deletions licenses/gpl-v2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: GPL v2
layout: license
permalink: /licenses/gpl-v2/
source: http://www.gnu.org/licenses/gpl-2.0.txt

featured: true

Expand Down
1 change: 1 addition & 0 deletions licenses/gpl-v3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: GPL v3
layout: license
permalink: /licenses/gpl-v3/
source: http://www.gnu.org/licenses/gpl-3.0.txt

description: GPL is the most widely used free software license and has a strong copyleft requirement. When distributing derived works, the source code of the work must be made available under the same license.

Expand Down
1 change: 1 addition & 0 deletions licenses/lgpl-v2.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: license
title: LGPL v2.1
permalink: /licenses/lgpl-v2.1/
source: http://www.gnu.org/licenses/lgpl-2.1.txt

description: Primarily used for software libraries, LGPL requires that derived works be licensed under the same license, but works that only link to it do not fall under this restriction.

Expand Down
1 change: 1 addition & 0 deletions licenses/lgpl-v3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: license
title: LGPL v3
permalink: /licenses/lgpl-v3/
source: http://www.gnu.org/licenses/lgpl-3.0.txt

description: Version 3 of the LGPL is an additional set of permissions to the <a href="/licenses/gpl-v3">GPL v3 license</a> that requires that derived works be licensed under the same license, but works that only link to it do not fall under this restriction.

Expand Down
1 change: 1 addition & 0 deletions licenses/mit.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: license
title: MIT License
permalink: /licenses/mit/
source: http://opensource.org/licenses/MIT

featured: true

Expand Down
1 change: 1 addition & 0 deletions licenses/mozilla.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: license
title: Mozilla Public License Version 2.0
permalink: /licenses/mozilla/
source: http://www.mozilla.org/MPL/2.0/

description: The Mozilla Public License (MPL 2.0) is maintained by the Mozilla foundation. This license attempts to be a compromise between the permissive BSD license and the reciprocal GPL license.

Expand Down
2 changes: 2 additions & 0 deletions licenses/public-domain.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ class: license-types
title: Public Domain (Unlicense)
filename: UNLICENSE

source: http://unlicense.org/UNLICENSE

description: Because copyright is automatic in most countries, <a href="http://unlicense.org">the Unlicense</a> is a template to waive copyright interest in software you've written and dedicate it to the public domain. Use the Unlicense to opt out of copyright entirely. It also includes the no-warranty statement from the MIT/X11 license.

how: Create a text file (typically named UNLICENSE or UNLICENSE.txt) in the root of your source code and copy the text of the license disclaimer into the file.
Expand Down

0 comments on commit a5b5d4a

Please sign in to comment.