Skip to content

Commit 3d6838e

Browse files
author
Rafael Grigorian
committed
Initial Upload
0 parents  commit 3d6838e

23 files changed

+496
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
/Gemfile.lock
3+
/.sass-cache/
4+
/_site/

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: ruby
2+
rvm:
3+
- 2.1
4+
script: "bundle exec jekyll build"

Gemfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source "https://rubygems.org"
2+
3+
# Application Dependencies
4+
gem "github-pages"
5+
gem "jekyll"
6+
gem "jekyll-sitemap"

LICENSE.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!-- I know what your thinking, it's not what it looks like -->
2+
<!-- https://dynamic-license.github.io/MIT?year=2018%E2%80%93present&owner=Rafael%20Grigorian -->
3+
4+
The MIT License (MIT)
5+
=====================
6+
7+
Copyright © 2018–present, Rafael Grigorian
8+
9+
Permission is hereby granted, free of charge, to any person
10+
obtaining a copy of this software and associated documentation
11+
files (the “Software”), to deal in the Software without
12+
restriction, including without limitation the rights to use,
13+
copy, modify, merge, publish, distribute, sublicense, and/or sell
14+
copies of the Software, and to permit persons to whom the
15+
Software is furnished to do so, subject to the following
16+
conditions:
17+
18+
The above copyright notice and this permission notice shall be
19+
included in all copies or substantial portions of the Software.
20+
21+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
22+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28+
OTHER DEALINGS IN THE SOFTWARE.

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Dynamic License
2+
> Generate software licenses dynamically with the use of query parameters.
3+
4+
![license](https://img.shields.io/badge/License-MIT-orange.svg?style=for-the-badge&colorB=ff3f45)
5+
6+
<p align="center" >
7+
<img src="assets/images/logo.svg" height="150" />
8+
<p>
9+
10+
## Purpose
11+
12+
Generate software licenses dynamically with the use of query parameters. This site eliminates the problem of linking software licenses. If your software's license is not public facing or is not served anywhere, it is a common occurrence to link to a templated software license. The only problem is that the copyright date, owner, organization, and many other parameters are not filled out when using that particular solution. This site aims to solve this very small but legally impactful problem.
13+
14+
## Get Started
15+
16+
Pick one of the common software licenses below. Once there, you will notice that some text is colored differently. These are placeholders that are configurable through the URL's query parameters. The text between the angle brackets is the query key and the value is what every you want it to be. Consider the following customized license:
17+
18+
[https://dynamic-license.github.io/MIT?year=2018&owner=You](https://dynamic-license.github.io/MIT?year=2018&owner=You)
19+
20+
## Contribute
21+
22+
If you would like to contribute a common software license, then please open a pull request.

_config.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
plugins:
2+
- jekyll-sitemap
3+
- github-pages
4+
collections:
5+
licenses:
6+
output: true
7+
permalink: /:title

_includes/menu.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<nav>
2+
<ul class="wrapper" >
3+
<li class="logo" ></li>
4+
<li class="text" >Dynamic License</li>
5+
<li class="toggle-fullscreen" ></li>
6+
<li class="toggle-theme" ></li>
7+
<li class="toggle-github" ></li>
8+
</ul>
9+
</nav>

_layouts/index.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: page
3+
---
4+
5+
{% include menu.html %}
6+
7+
<div class="wrapper" >
8+
{{ content }}
9+
<h1>Available Licenses</h1>
10+
<ul>
11+
{% assign sorted = site.licenses | sort: "abbreviation" | reverse %}
12+
{% for license in sorted %}
13+
<a href="{{ license.url }}" >
14+
<li>
15+
{{ license.full_name }} ({{ license.abbreviation }})
16+
</li>
17+
</a>
18+
{% endfor %}
19+
</ul>
20+
</div>

_layouts/license.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: page
3+
---
4+
5+
{% include menu.html %}
6+
7+
<div class="wrapper" >
8+
{{ content }}
9+
</div>

_layouts/page.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en" >
4+
<head>
5+
<title>{{ page.full_name | default: "Dynamic License" }}</title>
6+
<meta charset="utf-8" />
7+
<meta property="og:title" content="{{ page.full_name | default: 'Dynamic License' }}" />
8+
<meta property="og:description" content="{{ page.description | default: 'Dynamically generated software license.' }}" />
9+
<meta name="description" content="{{ page.description | default: 'Dynamically generated software license.' }}" />
10+
<meta name="viewport" content="width=device-width, initial-scale=1" />
11+
<meta name="google-site-verification" content="6Gr-bU8y8UmpCCHkrm7WCBT7ocFrrWSbV6KN5dFV7cU" />
12+
<link rel="icon" type="image/png" href="/assets/images/favicon.png" />
13+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
14+
<link rel="stylesheet" type="text/css" href="/assets/index.css" />
15+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" ></script>
16+
<script src="/assets/index.js" ></script>
17+
</head>
18+
<body>
19+
<main>{{ content }}</main>
20+
</body>
21+
</html>

_licenses/BSD-2.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: license
3+
abbreviation: BSD-2
4+
full_name: Simplified BSD License
5+
---
6+
7+
Simplified BSD License
8+
======================
9+
10+
_Copyright © `<year>`, `<owner>`_
11+
_All rights reserved._
12+
13+
Redistribution and use in source and binary forms, with or without
14+
modification, are permitted provided that the following conditions are met:
15+
16+
1. Redistributions of source code must retain the above copyright notice, this
17+
list of conditions and the following disclaimer.
18+
2. Redistributions in binary form must reproduce the above copyright notice,
19+
this list of conditions and the following disclaimer in the documentation
20+
and/or other materials provided with the distribution.
21+
22+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND
23+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
26+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32+
33+
The views and conclusions contained in the software and documentation are those
34+
of the authors and should not be interpreted as representing official policies,
35+
either expressed or implied, of the FreeBSD Project.

_licenses/BSD-3.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: license
3+
abbreviation: BSD-3
4+
full_name: Modified BSD License
5+
---
6+
7+
Modified BSD License
8+
====================
9+
10+
_Copyright © `<year>`, `<owner>`_
11+
_All rights reserved._
12+
13+
Redistribution and use in source and binary forms, with or without
14+
modification, are permitted provided that the following conditions are met:
15+
16+
1. Redistributions of source code must retain the above copyright
17+
notice, this list of conditions and the following disclaimer.
18+
2. Redistributions in binary form must reproduce the above copyright
19+
notice, this list of conditions and the following disclaimer in the
20+
documentation and/or other materials provided with the distribution.
21+
3. Neither the name of the `<organization>` nor the
22+
names of its contributors may be used to endorse or promote products
23+
derived from this software without specific prior written permission.
24+
25+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND
26+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
27+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28+
DISCLAIMED. IN NO EVENT SHALL `<OWNER>` BE LIABLE FOR ANY
29+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
30+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
32+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

_licenses/MIT.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
layout: license
3+
abbreviation: MIT
4+
full_name: The MIT License
5+
---
6+
7+
The MIT License (MIT)
8+
=====================
9+
10+
Copyright © `<year>`, `<owner>`
11+
12+
Permission is hereby granted, free of charge, to any person
13+
obtaining a copy of this software and associated documentation
14+
files (the “Software”), to deal in the Software without
15+
restriction, including without limitation the rights to use,
16+
copy, modify, merge, publish, distribute, sublicense, and/or sell
17+
copies of the Software, and to permit persons to whom the
18+
Software is furnished to do so, subject to the following
19+
conditions:
20+
21+
The above copyright notice and this permission notice shall be
22+
included in all copies or substantial portions of the Software.
23+
24+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
25+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
26+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
28+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
29+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
31+
OTHER DEALINGS IN THE SOFTWARE.

assets/images/favicon.png

1.15 KB
Loading

assets/images/fullscreen-exit.svg

+9
Loading

assets/images/fullscreen.svg

+9
Loading

assets/images/github.svg

+9
Loading

assets/images/logo.svg

+9
Loading

assets/images/theme.svg

+9
Loading

0 commit comments

Comments
 (0)