mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-04-20 13:45:47 +00:00
commit
6a4a8fefa8
571 changed files with 1322 additions and 125 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
.DS_Store
|
||||
.idea
|
||||
|
|
|
|||
3
.travis.yml
Normal file
3
.travis.yml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- "0.10"
|
||||
95
README.md
95
README.md
|
|
@ -20,14 +20,18 @@ You can fork this project, send me a pull request and wait for me to
|
|||
pull (which I'll do as quickly as possible) or if the user is still
|
||||
available you can do it yourself from the command line:
|
||||
|
||||
curl -d'{ "copyright": "Remy Sharp" }' http://rem.mit-license.org
|
||||
```bash
|
||||
curl -d'{ "copyright": "Remy Sharp" }' http://rem.mit-license.org
|
||||
```
|
||||
|
||||
If the `rem` user isn't taken already, then this will create the new
|
||||
user file on the fly and the url will be immediately available.
|
||||
|
||||
You can send a full JSON file to the API, not *just* the copyright, so this works too:
|
||||
|
||||
curl -d'{ "copyright": "Remy Sharp", "url": "http://remysharp.com", "email": "me@mysite.com", "format": "txt" }' http://rem.mit-license.org
|
||||
```bash
|
||||
curl -d'{ "copyright": "Remy Sharp", "url": "http://remysharp.com", "email": "me@mysite.com", "format": "txt" }' http://rem.mit-license.org
|
||||
```
|
||||
|
||||
If there's any problems in the automated creation, send me a pull
|
||||
request and it'll go live soon after.
|
||||
|
|
@ -59,9 +63,11 @@ Create a new file and give it the name of the CNAME you want (in my case
|
|||
it's `rem.json`). This file contains a JSON object containing at least a
|
||||
`copyright` property:
|
||||
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com"
|
||||
}
|
||||
```json
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com"
|
||||
}
|
||||
```
|
||||
|
||||
Means I can now link to: http://rem.mit-license.org and it will show my
|
||||
license name (note that the date will always show the current year).
|
||||
|
|
@ -71,10 +77,12 @@ license name (note that the date will always show the current year).
|
|||
In addition to the `copyright` property, if you want to make a link from
|
||||
the copyright text, you can include a `url` property:
|
||||
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com"
|
||||
}
|
||||
```json
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com"
|
||||
}
|
||||
```
|
||||
|
||||
### email
|
||||
|
||||
|
|
@ -82,34 +90,40 @@ You can also include a link to your email which is displayed after the
|
|||
copyright notice using the `email` property (note the `mailto:` is
|
||||
automatically added):
|
||||
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"email": "me@mysite.com"
|
||||
}
|
||||
```json
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"email": "me@mysite.com"
|
||||
}
|
||||
```
|
||||
|
||||
### format
|
||||
|
||||
And if you want your license to appear as plain text, just add the
|
||||
`format` property (currently only `txt` and `html` are supported):
|
||||
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"format": "txt"
|
||||
}
|
||||
```json
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"format": "txt"
|
||||
}
|
||||
```
|
||||
|
||||
### gravatar
|
||||
|
||||
And if you want to show your gravatar, just add the `gravatar`
|
||||
boolean property:
|
||||
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"email": "me@mysite.com",
|
||||
"gravatar": true
|
||||
}
|
||||
```json
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"email": "me@mysite.com",
|
||||
"gravatar": true
|
||||
}
|
||||
```
|
||||
|
||||
Note that the gravatar requires the email property. You also need to check the
|
||||
compatibility of the chosen theme. Currently, only the default theme supports
|
||||
|
|
@ -133,11 +147,13 @@ shows an older version of the LICENSE.html file (compared to the [latest version
|
|||
|
||||
This can also be targeted in my JSON file:
|
||||
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"version": "a526rbf7"
|
||||
}
|
||||
```json
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"version": "a526rbf7"
|
||||
}
|
||||
```
|
||||
|
||||
Note that if no version is supplied, the latest copy of the LICENSE.html
|
||||
will be displayed with your information included.
|
||||
|
|
@ -151,11 +167,13 @@ is simple and clean, but you can add your own as you like.
|
|||
To use a theme, add the `theme` property to your `user.json` file, for
|
||||
example:
|
||||
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"theme": "flesch"
|
||||
}
|
||||
```json
|
||||
{
|
||||
"copyright": "Remy Sharp, http://remysharp.com",
|
||||
"url": "http://remysharp.com",
|
||||
"theme": "flesch"
|
||||
}
|
||||
```
|
||||
|
||||
Current available themes:
|
||||
|
||||
|
|
@ -180,10 +198,11 @@ Current available themes:
|
|||
[@remy](http://github.com/remy),
|
||||
[@raphaelbastide](http://github.com/raphaelbastide) &
|
||||
[@evertton](http://github.com/evertton))
|
||||
* black-beauty - [preview](http://jsbin.com/efujux/38) (by [@evertton](http://github.com/evertton))
|
||||
* black-beauty - [preview](http://jsbin.com/dovivu) (by [@evertton](http://github.com/evertton))
|
||||
* silver-style - [preview](http://jsbin.com/erezijI/2) (by [@dev-dipesh](https://github.com/Dev-Dipesh))
|
||||
* friendly - [preview](http://jsbin.com/ecijol/6) (by [@evertton](http://github.com/evertton))
|
||||
* friendly - [preview](http://jsbin.com/hilula) (by [@evertton](http://github.com/evertton))
|
||||
* opensans - [preview](http://jsbin.com/UfepUvah) (by [@pburtchaell](http://github.com/pburtchaell))
|
||||
* solarized - [preview](http://jsbin.com/yimax/1) (by [@anmoljagetia](http://github.com/anmoljagetia))
|
||||
|
||||
## Formats & URLs
|
||||
|
||||
|
|
@ -247,7 +266,7 @@ Domain contributions:
|
|||
* [mostly-magic](http://github.com/mostly-magic) - 2030-2032
|
||||
|
||||
*Please note that the whois says 2021 as you can only have 10 active
|
||||
registered years with ICCAN - but the domain is set to auto-renew, so
|
||||
registered years with ICANN - but the domain is set to auto-renew, so
|
||||
it's all good :)*
|
||||
|
||||
### 2. Hosting
|
||||
|
|
|
|||
|
|
@ -148,6 +148,7 @@
|
|||
$license = array_shift(explode('</article>', array_pop(explode('<article>', $license))));
|
||||
$license = preg_replace('/<[^>]*>/', '', trim($license));
|
||||
$license = html_entity_decode($license, ENT_COMPAT | ENT_HTML401, 'UTF-8');
|
||||
$license .= "\n";
|
||||
header('content-type: text/plain; charset=UTF-8');
|
||||
}
|
||||
|
||||
|
|
|
|||
19
package.json
Normal file
19
package.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"author": "Remy Sharp <remy@leftlogic.com> (http://remysharp.com/)",
|
||||
"name": "mit-licence",
|
||||
"description": "Hosted MIT License with details controlled through this repo",
|
||||
"version": "1.0.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@github.com:remy/mit-license.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"bugs": { "url": "https://github.com/remy/mit-license/issues" },
|
||||
"licenses": [
|
||||
{ "type": "MIT",
|
||||
"url": "http://rem.mit-license.org/"
|
||||
}
|
||||
]
|
||||
}
|
||||
13
test.js
Normal file
13
test.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/env node
|
||||
var fs = require('fs');
|
||||
var users = fs.readdirSync("users");
|
||||
for(i in users){
|
||||
try{
|
||||
var content = fs.readFileSync("users/"+users[i]).toString();
|
||||
JSON.parse(content);
|
||||
}
|
||||
catch(e){
|
||||
console.error("Invalid JSON in file: " + users[i]);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
|
|
@ -19,9 +19,9 @@ article, footer {
|
|||
}
|
||||
|
||||
article {
|
||||
margin-top: 2em;
|
||||
margin-top: 1em;
|
||||
background-color: #2a2a2a;
|
||||
padding: 2em;
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
|
@ -32,18 +32,26 @@ article p {
|
|||
|
||||
article p:first-of-type {
|
||||
text-align: center;
|
||||
font-size: .8em;
|
||||
}
|
||||
|
||||
article p:last-of-type {
|
||||
border-left: 3px solid #CCC;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
#gravatar {
|
||||
width: 70px;
|
||||
border: 5px solid #ccc;
|
||||
border-radius: 5px;
|
||||
display:block;
|
||||
border-radius: 35px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
position: absolute;
|
||||
right: -6px;
|
||||
bottom: -20px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
font-size: 1.5em;
|
||||
font-weight: 300;
|
||||
text-transform: uppercase;
|
||||
display: inline-block;
|
||||
|
|
@ -62,13 +70,17 @@ a:hover, a:focus, a:active {
|
|||
color: white;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 960px) {
|
||||
#gravatar {
|
||||
position: absolute;
|
||||
top: 2em;
|
||||
left: 2em;
|
||||
}
|
||||
@media (min-width: 640px) {
|
||||
h1 {
|
||||
font-size: 2.5em;
|
||||
font-size: 2.4em;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
article p:first-of-type {
|
||||
font-size: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -13,15 +13,14 @@ body {
|
|||
}
|
||||
|
||||
article, footer {
|
||||
max-width: 900px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-width: 877px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
article {
|
||||
margin-top: 2em;
|
||||
padding: 2em;
|
||||
margin-top: 1em;
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
|
@ -32,18 +31,27 @@ article p {
|
|||
|
||||
article p:first-of-type {
|
||||
text-align: center;
|
||||
font-size: .8em;
|
||||
|
||||
}
|
||||
|
||||
article p:last-of-type {
|
||||
border-left: 3px solid #333;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
#gravatar {
|
||||
width: 70px;
|
||||
border: 5px solid #d9d9d9;
|
||||
border-radius: 5px;
|
||||
display:block;
|
||||
border-radius: 35px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
position: absolute;
|
||||
bottom: -3em;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
font-size: 1.5em;
|
||||
font-weight: 300;
|
||||
text-transform: uppercase;
|
||||
display: inline-block;
|
||||
|
|
@ -52,6 +60,20 @@ h1 {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
footer {
|
||||
background: #dadada;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
footer p {
|
||||
text-align: left;
|
||||
padding-left: 80px;
|
||||
}
|
||||
|
||||
footer p a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
a {
|
||||
color: gray;
|
||||
text-decoration: none;
|
||||
|
|
@ -62,13 +84,16 @@ a:hover, a:focus, a:active {
|
|||
color: black;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 960px) {
|
||||
#gravatar {
|
||||
position: absolute;
|
||||
top: 2em;
|
||||
left: 2em;
|
||||
}
|
||||
@media (min-width: 640px) {
|
||||
h1 {
|
||||
font-size: 2.5em;
|
||||
font-size: 2.4em;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
article p:first-of-type {
|
||||
font-size: 1em;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
70
themes/rokkitt.css
Normal file
70
themes/rokkitt.css
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
@import url(http://fonts.googleapis.com/css?family=Rokkitt:400,700);
|
||||
|
||||
body {
|
||||
margin: 0 auto;
|
||||
font: normal x-large/1.3 Rokkitt, Helvetica, Arial;
|
||||
line-height: 1.2em;
|
||||
color: #666;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
article, footer {
|
||||
display: block;
|
||||
min-width: 360px;
|
||||
max-width: 900px;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
article {
|
||||
margin: 0 auto 0 auto;
|
||||
border: 1px solid ;
|
||||
border-color: #fff #fff #fff #fff;
|
||||
padding: 2em; background: #fff;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
article p:first-of-type {
|
||||
margin-top: 1.6em;
|
||||
}
|
||||
|
||||
article p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin: 0em auto 2em auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #abc8e2;
|
||||
text-shadow: 0 1px 1px #fff;
|
||||
text-decoration:none;
|
||||
font-size:.8em;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-weight:normal;
|
||||
line-height: 36px;
|
||||
font-size: 2em;
|
||||
text-align: center
|
||||
}
|
||||
|
||||
a {
|
||||
color: #abc8e2;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
#gravatar {
|
||||
position: relative;
|
||||
float: right;
|
||||
margin-bottom: 1em;
|
||||
margin-left: 1em;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
|
||||
@media all and ( max-width: 500px) { article {padding:1em;} body {font-size:1em;} }
|
||||
3
themes/solarized.css
Normal file
3
themes/solarized.css
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
/*Solarized theme by Ethan Schoonover*/
|
||||
/*Part of source code reused from the Open Sans Theme */
|
||||
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:300);@import url(http://fonts.googleapis.com/css?family=Source+Code+Pro:700);html{padding:0;font-size:1em;background-color:#eee8d5}body{font-family:'Source Sans Pro',sans-serif;font-size:1.5em;font-weight:300;text-align:center;margin:0;background:none repeat scroll 0 0 #eee8d5}article,footer{text-align:center;margin:auto;max-width:100%}article{margin-top:0;padding:1.75em;color:#dc322f;text-align:center;position:relative;background:none repeat scroll 0 0 #002b36}article p{text-align:left;color:#93a1a1}article p:first-of-type{text-align:center;color:#b58900}article p:last-of-type{color:#268bd2}#gravatar{width:50px;border:5px solid #FFF;border-radius:15px;display:block;margin:0 auto}h1{font-size:2em;font-weight:700;text-transform:uppercase;display:inline-block;padding-bottom:12px;border-bottom:2px dashed #dc322f;margin:0}a{font-family:'Source Sans Pro',sans-serif;font-size:1em;font-weight:700;color:#859900;text-decoration:none;word-wrap:break-word}a:active,a:focus,a:hover{color:#d33682}@media screen and (min-width:960px){#gravatar{display: none;position:absolute;top:2em;left:2em}h1{font-size:2.5em}}
|
||||
14
themes/willpower.css
Normal file
14
themes/willpower.css
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@import url(http://fonts.googleapis.com/css?family=Roboto:400,700);
|
||||
* { margin: 0; padding: 0; box-sizing: boder-box; }
|
||||
img { border: 0; }
|
||||
body { background: #fff; font: 16px/28px "Roboto", sans-serif; color: #888; }
|
||||
article, footer { display: block; max-width: 720px; margin: 0 auto; }
|
||||
article { padding: 20px; }
|
||||
footer { padding: 0 20px; text-align: center; font-size: 12px; }
|
||||
h1 { font-size: 24px; line-height: 32px; color: #399; }
|
||||
a, a:visited { color: #369; padding:4px; text-decoration:none; }
|
||||
a:active, a:hover { text-decoration: underline;}
|
||||
a img { position: absolute; top: 0; right: 0; }
|
||||
article p { margin: 10px 0; }
|
||||
article p:last-child {border-left: 2px solid #399; padding-left: 10px; }
|
||||
#gravatar { float:right; margin:1em; width:80px; height:80px; border-radius:40px; }
|
||||
1
users/10kb.json
Normal file
1
users/10kb.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"10KB","url":"http:\/\/10kb.nl","email":"info@10kb.nl","gravatar":true}
|
||||
1
users/1up.json
Normal file
1
users/1up.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"1UP, http:\/\/1upnote.com","url":"http:\/\/1upnote.com","email":"1up@1upz.com","format":"html"}
|
||||
5
users/284km.json
Normal file
5
users/284km.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "284km",
|
||||
"email": "k.furuhashi10@gmail.com",
|
||||
"theme": "double-windsor"
|
||||
}
|
||||
1
users/4soft.json
Normal file
1
users/4soft.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"4Soft"}
|
||||
8
users/SITZ.json
Normal file
8
users/SITZ.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"copyright": "Sitesh Shrivastava",
|
||||
"url": "http://www.siteshshrivastava.com",
|
||||
"email": "siteshshrivastava@gmail.com",
|
||||
"format": "html",
|
||||
"theme": "default",
|
||||
"gravatar": true
|
||||
}
|
||||
1
users/a.json
Normal file
1
users/a.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Austin Pray","url":"http:\/\/austinpray.com.com","email":"austin@austinpray.com","format":"txt"}
|
||||
1
users/ab2d.json
Normal file
1
users/ab2d.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Remy Sharp A"}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"copyright": "Abhishek Das",
|
||||
"url": "https:\/\/github.com/abhshkdz",
|
||||
"email": "das.abhshk@gmail.com"
|
||||
"copyright": "Abhishek Das, http://abhishekdas.com",
|
||||
"url": "http://abhishekdas.com",
|
||||
"email": "das.abhshk@gmail.com",
|
||||
"gravatar": true
|
||||
}
|
||||
|
|
|
|||
1
users/achilles.json
Normal file
1
users/achilles.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Achillefs Charmpilas","url":"http:\/\/humbuckercode.co.uk\/licks\/","email":"ac@humbuckercode.co.uk","format":"txt"}
|
||||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"copyright": "Ad@m",
|
||||
"url": "http://adam.hbang.ws",
|
||||
"theme": "orange"
|
||||
}
|
||||
"copyright": "Adam Demasi",
|
||||
"url": "http://kirb.me/",
|
||||
"email": "adam@hbang.ws",
|
||||
"gravatar": true,
|
||||
"theme": "solarized"
|
||||
}
|
||||
|
|
|
|||
1
users/adamreeve.json
Normal file
1
users/adamreeve.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Adam Reeve, http:\/\/adamreeve.com","url":"http:\/\/adamreeve.com","theme":"friendly"}
|
||||
1
users/adopi.json
Normal file
1
users/adopi.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Adonis Najimi","email":"adopi.naj@gmail.com","format":"html"}
|
||||
1
users/adthul.json
Normal file
1
users/adthul.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Andy Thul","email":"thul.andy@gmail.com","gravatar":true,"theme":"xtansia"}
|
||||
1
users/aergonaut.json
Normal file
1
users/aergonaut.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Chris Fung","url":"https:\/\/github.com\/aergonaut"}
|
||||
1
users/ajsquared.json
Normal file
1
users/ajsquared.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Andrew Johnson","url":"http:\/\/andrewjamesjohnson.com","email":"andrew@andrewjamesjohnson.com","theme":"double-windsor"}
|
||||
1
users/alessioalex.json
Normal file
1
users/alessioalex.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alexandru Vladutu","email":"alexandru.vladutu@gmail.com","gravatar":true}
|
||||
1
users/alexander.json
Normal file
1
users/alexander.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alexander Shpilkin","url":"http:\/\/about.me\/alex.shpilkin","email":"ashpilkin@gmail.com"}
|
||||
1
users/alexb.json
Normal file
1
users/alexb.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alex Bierwagen","url":"http:\/\/alexb.ninja","email":"me@alexb.ninja"}
|
||||
1
users/alexh.json
Normal file
1
users/alexh.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alex Hamilton","url":"https:\/\/hmltn.me","email":"github@aehmlo.me","gravatar":true}
|
||||
1
users/alibabatajine.json
Normal file
1
users/alibabatajine.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Harald Haesler","url":"http:\/\/www.tajine.de","email":"mit@tajine.de","theme":"double-windsor"}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
copyright : 'Ali Mihandoost, http://ali.md',
|
||||
url : 'http://ali.md'
|
||||
email : 'i@ali.md'
|
||||
theme : 'default'
|
||||
"copyright": "Ali Mihandoost, http://ali.md",
|
||||
"url": "http://ali.md",
|
||||
"email": "i@ali.md",
|
||||
"theme": "flesch",
|
||||
"gravatar": true
|
||||
}
|
||||
|
|
|
|||
6
users/allthingssmitty.json
Normal file
6
users/allthingssmitty.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"copyright": "Matt Smith, https://github.com/AllThingsSmitty",
|
||||
"url": "https://github.com/AllThingsSmitty",
|
||||
"theme": "default",
|
||||
"gravatar": true
|
||||
}
|
||||
1
users/alphawhy.json
Normal file
1
users/alphawhy.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alpha Why"}
|
||||
1
users/andrel.json
Normal file
1
users/andrel.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Andre Loureiro","url":"http:\/\/andrel.me","email":"hi@andrel.me","gravatar":true,"theme":"opensans"}
|
||||
1
users/andreloureiro.json
Normal file
1
users/andreloureiro.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Andre Loureiro","url":"http:\/\/andrel.me","email":"andreloureiroo@gmail.com","format":"txt"}
|
||||
1
users/andxyz.json
Normal file
1
users/andxyz.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Andrew Stevens","url":"http:\/\/andxyz.com","email":"andy@andxyz.com","format":"txt"}
|
||||
1
users/andystubbs.json
Normal file
1
users/andystubbs.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Andy Stubbs"}
|
||||
1
users/angusm.json
Normal file
1
users/angusm.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Angus McIntyre"}
|
||||
1
users/anon.json
Normal file
1
users/anon.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"anon","url":"http:\/\/anoncom.net","email":"anon@anoncom.net","format":"html","theme":"eula-modern","gravatar":true}
|
||||
1
users/anwarjaved.json
Normal file
1
users/anwarjaved.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ "copyright": "Anwar Javed", "email": "anwarjaved@gmail.com", "format": "html", "gravatar": true, "theme": "default-dark" }
|
||||
1
users/apriendeau.json
Normal file
1
users/apriendeau.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Austin Riendeau","url":"http:\/\/apriendeau.com","email":"austin@apriendeau.com"}
|
||||
1
users/armpit.json
Normal file
1
users/armpit.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Shane Holding"}
|
||||
1
users/artemave.json
Normal file
1
users/artemave.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Artem Avetisyan"}
|
||||
1
users/arvid.json
Normal file
1
users/arvid.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Arvid Bj\u00f6rkstr\u00f6m","email":"arvid@bjorkstrom.se"}
|
||||
1
users/asbubam.json
Normal file
1
users/asbubam.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"asbubam","url":"http:\/\/blog.2dal.com","email":"asbubam@gmail.com","format":"txt"}
|
||||
1
users/atran.json
Normal file
1
users/atran.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Anthony Tran","url":"http:\/\/anthonytran.info"}
|
||||
1
users/austin.json
Normal file
1
users/austin.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Austin Riendeau","url":"http:\/\/apriendeau.com","email":"austin@apriendeau.com","format":"txt"}
|
||||
1
users/axisthemes.json
Normal file
1
users/axisthemes.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"AxisThemes","url":"http:\/\/axisthemes.com","theme":"double-windsor"}
|
||||
1
users/baenziger-hug.json
Normal file
1
users/baenziger-hug.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"B\u00e4nziger Hug Ltd.","url":"http:\/\/baenziger-hug.com","email":"oh@baenziger-hug.com","format":"html"}
|
||||
1
users/bankfacil.json
Normal file
1
users/bankfacil.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"BankFacil, http:\/\/bankfacil.com.br","url":"http:\/\/bankfacil.com.br"}
|
||||
1
users/bauglir.json
Normal file
1
users/bauglir.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Joris Kraak, https:\/\/majorfail.com","url":"https:\/\/majorfail.com","email":"joris@majorfail.com","gravatar":true}
|
||||
1
users/bee.json
Normal file
1
users/bee.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Songbee","url":"http:\/\/songbee.net","email":"hi@songbee.net"}
|
||||
1
users/beedaan.json
Normal file
1
users/beedaan.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Brendan Heussler","url":"http://bheussler.name","email":"bheussler@gmail.com","theme":"flesch"}
|
||||
1
users/benizi.json
Normal file
1
users/benizi.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Benjamin R. Haskell","email":"mit-license@benizi.com"}
|
||||
1
users/berngfilho.json
Normal file
1
users/berngfilho.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bernardo Gurgel Filho","url":"http:\/\/bernardogfilho.github.io","email":"bernardogfilho@gmail.com","format":"txt"}
|
||||
1
users/betomuniz.json
Normal file
1
users/betomuniz.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Beto Muniz"}
|
||||
1
users/bh.json
Normal file
1
users/bh.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"B\u00e4nziger Hug Ltd.","url":"http:\/\/baenziger-hug.com","email":"oh@baenziger-hug.com","format":"txt"}
|
||||
1
users/bharath063.json
Normal file
1
users/bharath063.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bharath Balan"}
|
||||
1
users/bih.json
Normal file
1
users/bih.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bilawal Hameed","url":"http:\/\/bilaw.al","email":"me@bilaw.al"}
|
||||
1
users/biomassives.json
Normal file
1
users/biomassives.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Biomassives Group Ltd."}
|
||||
8
users/birkof.json
Normal file
8
users/birkof.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"copyright": "Daniel STANCU, http://birkof.ro",
|
||||
"url": "http://birkof.ro",
|
||||
"theme": "afterdark",
|
||||
"email": "birkof@birkof.ro",
|
||||
"gravatar": true,
|
||||
"format": "html"
|
||||
}
|
||||
1
users/blacklite.json
Normal file
1
users/blacklite.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"David Driscoll","url":"http:\/\/blacklite.ca","email":"david@blacklite.ca","gravatar":true,"theme":"opensans"}
|
||||
1
users/blahah.json
Normal file
1
users/blahah.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Richard Smith-Unna"}
|
||||
5
users/boska.json
Normal file
5
users/boska.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Boska Lee",
|
||||
"url": "https:\/\/github.com/boska",
|
||||
"email": "mr.boska@gmail.com"
|
||||
}
|
||||
6
users/bottom.json
Normal file
6
users/bottom.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"copyright": "Anthony Cluse, Bottom",
|
||||
"url": "https://github.com/tonymx227/bottom",
|
||||
"email": "tonymx227@gmail.com",
|
||||
"gravatar": true
|
||||
}
|
||||
1
users/brandonhimpfen.json
Normal file
1
users/brandonhimpfen.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Brandon Himpfen","url":"http:\/\/www.himpfen.com","email":"brandon@himpfen.com","format":"html"}
|
||||
1
users/brasil-js.json
Normal file
1
users/brasil-js.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Brasil.js","url":"http:\/\/brasil-js.org","email":"contato@brasil-js.org","format":"html", "gravatar": true}
|
||||
1
users/bregor.json
Normal file
1
users/bregor.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Maxim Filatov","email":"pipopolam@gmail.com","format":"txt"}
|
||||
1
users/brenopolanski.json
Normal file
1
users/brenopolanski.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Breno Polanski","url":"http:\/\/brenopolanski.com","email":"breno.polanski@gmail.com"}
|
||||
1
users/bricebou.json
Normal file
1
users/bricebou.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Brice Boucard"}
|
||||
5
users/bro.json
Normal file
5
users/bro.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Tim Brockman, http://timBrockman.com",
|
||||
"url": "http://timbrockman.com",
|
||||
"theme": "opensans"
|
||||
}
|
||||
1
users/brutalhonesty.json
Normal file
1
users/brutalhonesty.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Adam Schodde","email":"aaschodd@asu.edu","format":"html"}
|
||||
1
users/bsilivestru.json
Normal file
1
users/bsilivestru.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bogdan Silivestru","url":"http:\/\/silivestru.net"}
|
||||
1
users/buell.json
Normal file
1
users/buell.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Liam Buell","url":"http:\/\/www.liambuell.com","email":"liamcbuell@gmail.com","format":"txt"}
|
||||
1
users/building-blocks.json
Normal file
1
users/building-blocks.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Building Blocks"}
|
||||
1
users/buzzdecafe.json
Normal file
1
users/buzzdecafe.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Michael Hurley"}
|
||||
|
|
@ -1 +1 @@
|
|||
{"copyright":"byjml","url":"http:\/\/jml.so","email":"me@jml.so","format":"html"}
|
||||
{"copyright":"byjml","url":"http:\/\/jml.so","email":"by@jml.so","format":"html"}
|
||||
|
|
|
|||
1
users/byscripts.json
Normal file
1
users/byscripts.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Byscripts","email":"thierry@byscripts.info","gravatar":true,"theme":"friendly"}
|
||||
1
users/cactusjs.json
Normal file
1
users/cactusjs.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"CactusJS","url":"http:\/\/cactusjs.github.io/cactusjs-site/","email":"breno.polanski@gmail.com"}
|
||||
1
users/cap11235.json
Normal file
1
users/cap11235.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Charles Paul"}
|
||||
1
users/carlton.json
Normal file
1
users/carlton.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Mike Carlton, http:\/\/mike.carltons.us","url":"http:\/\/mike.carltons.us"}
|
||||
1
users/casey.json
Normal file
1
users/casey.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Casey Zumwalt"}
|
||||
1
users/cassianomon.json
Normal file
1
users/cassianomon.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Cassiano Montanari","url":"http:\/\/cassianomon.github.io","email":"cassianomontanari@gmail.com"}
|
||||
1
users/cb.json
Normal file
1
users/cb.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Christian Bundy","url":"http:\/\/christianbundy.com","email":"me@christianbundy.com","format":"html"}
|
||||
1
users/cedx.json
Normal file
1
users/cedx.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"C\u00e9dric Belin","url":"http:\/\/belin.io","email":"cedric@belin.io","format":"txt"}
|
||||
1
users/cheer.json
Normal file
1
users/cheer.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"cheer","url":"https:\/\/github.com\/cheer-cheer"}
|
||||
1
users/chiayu.json
Normal file
1
users/chiayu.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Chia Yu Pai","email":"fantasyatelier@gmail.com","theme":"opensans","gravatar":true}
|
||||
5
users/chilijung.json
Normal file
5
users/chilijung.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "chilijung",
|
||||
"url": "http://about.me/lijung.chi",
|
||||
"gravatar": true
|
||||
}
|
||||
1
users/chrisdasie.json
Normal file
1
users/chrisdasie.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Chris Da Sie"}
|
||||
1
users/chrisdigital.json
Normal file
1
users/chrisdigital.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Christopher Carvey","url":"http:\/\/chriscarvey.com","email":"chriscarvey.feedback@gmail.com","theme":"friendly","gravatar":true}
|
||||
4
users/chrismayer.json
Normal file
4
users/chrismayer.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"copyright": "Christian Mayer, www.meggsimum.de",
|
||||
"url": "http://www.meggsimum.de"
|
||||
}
|
||||
1
users/christianbundy.json
Normal file
1
users/christianbundy.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Christian Bundy","url":"http:\/\/christianbundy.com","email":"me@christianbundy.com","format":"html"}
|
||||
1
users/cisneiros.json
Normal file
1
users/cisneiros.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alexandre Cisneiros","url":"http:\/\/www.cisneiros.com","email":"alexandre@cisneiros.com","format":"html","gravatar":true,"theme":"cherry-white"}
|
||||
1
users/cjpatoilo.json
Normal file
1
users/cjpatoilo.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ "copyright": "CJ Patoilo", "url": "http:\/\/cjpatoilo.com", "email": "cjpatoilo@gmail.com", "theme": "double-windsor" }
|
||||
1
users/ck.json
Normal file
1
users/ck.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Chris Kaminski"}
|
||||
1
users/ckaznocha.json
Normal file
1
users/ckaznocha.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Clifton Kaznocha"}
|
||||
1
users/ckuijjer.json
Normal file
1
users/ckuijjer.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Casper Kuijjer","url":"http:\/\/www.kuijjer.com","email":"casper@kuijjer.com"}
|
||||
1
users/clarkeash.json
Normal file
1
users/clarkeash.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ashley Clarke","url":"https:\/\/ashleyclarke.me","email":"me@ashleyclarke.me","format":"html","gravatar":true,"theme":"flesch"}
|
||||
1
users/cleargifltd.json
Normal file
1
users/cleargifltd.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"ClearGif Ltd"}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue