mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-04-17 13:15:47 +00:00
Merge branch 'master' of github.com:remy/mit-license
Conflicts: users/kawaz.json users/ryanjacobs.json users/teppeis.json
This commit is contained in:
commit
c29fc06a24
312 changed files with 462 additions and 76 deletions
92
README.md
92
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,9 +198,9 @@ 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))
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
1
users/59.json
Normal file
1
users/59.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"59","url":"http:\/\/berabou.me","theme":"afterdark"}
|
||||
1
users/59naga.json
Normal file
1
users/59naga.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"59naga","url":"http:\/\/berabou.me"}
|
||||
1
users/9joneg.json
Normal file
1
users/9joneg.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"9joneg"}
|
||||
1
users/abuasmaa.json
Normal file
1
users/abuasmaa.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Abd Al-Ala Camara"}
|
||||
1
users/acenode.json
Normal file
1
users/acenode.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"AceNode","url":"http:\/\/acenode.com https:\/\/github.com\/acenode","email":"open@acenode.com","format":"txt"}
|
||||
1
users/adafruit.json
Normal file
1
users/adafruit.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Adafruit"}
|
||||
1
users/adamroberts.json
Normal file
1
users/adamroberts.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Adam Roberts"}
|
||||
1
users/aetheris.json
Normal file
1
users/aetheris.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alex Cai","email":"alex.cai@uwaterloo.ca"}
|
||||
1
users/aj9.json
Normal file
1
users/aj9.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Adam Gask","url":"http:\/\/aj9.github.io"}
|
||||
1
users/ajay.json
Normal file
1
users/ajay.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ajay Raj"}
|
||||
1
users/ajenjo.json
Normal file
1
users/ajenjo.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Jon Dotsoy.","url":"https:\/\/github.com\/ajenjo\/ajenjo-server","email":"ajenjo@jonad.in","theme":"xtansia","gravatar":true}
|
||||
1
users/albertofdzm.json
Normal file
1
users/albertofdzm.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alberto Fernandez Medina, http:\/\/onlythepixel.com","url":"http:\/\/onlythepixel.com","email":"albertofdzm@gmail.com","gravatar":true,"theme":"black-beauty"}
|
||||
1
users/ali-sdk.json
Normal file
1
users/ali-sdk.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"ali-sdk and other contributors","url":"https:\/\/github.com\/ali-sdk","email":"m@fengmk2.com","format":"txt"}
|
||||
1
users/altun.json
Normal file
1
users/altun.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Mustafa Altun","url":"http:\/\/mustafaaltun.com","email":"gmail@mustafaaltun.com","format":"txt"}
|
||||
1
users/and3k5.json
Normal file
1
users/and3k5.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Anders Kjeldsen"}
|
||||
1
users/anmoljagetia.json
Normal file
1
users/anmoljagetia.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Anmol Jagetia","url":"http:\/\/anmoljagetia.me","email":"anmoljagetia@gmail.com","theme":"solarized"}
|
||||
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/ariporad.json
Normal file
1
users/ariporad.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ari Porad","url":"http:\/\/ariporad.com","email":"ari@porad.com"}
|
||||
1
users/arunoda.json
Normal file
1
users/arunoda.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Arunoda Susiripala"}
|
||||
1
users/aschn.json
Normal file
1
users/aschn.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Anna Schneider"}
|
||||
1
users/ashtonwar.json
Normal file
1
users/ashtonwar.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ashton War"}
|
||||
1
users/askesian.json
Normal file
1
users/askesian.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"askesian","url":"http:\/\/askesian.com","email":"askesian@outlook.com"}
|
||||
1
users/avidenie.json
Normal file
1
users/avidenie.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Adrian Videnie","url":"http:\/\/web.expectations.ro","email":"avidenie@gmail.com","theme":"eula-modern"}
|
||||
1
users/axe312.json
Normal file
1
users/axe312.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Benedikt R\u00f6tsch"}
|
||||
1
users/axisthemes.json
Normal file
1
users/axisthemes.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"AxisThemes"}
|
||||
1
users/ayesh.json
Normal file
1
users/ayesh.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ayesh Karunaratne","url":"http:\/\/ayesh.me"}
|
||||
1
users/b4b4r07.json
Normal file
1
users/b4b4r07.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Masaki Ishiyama","url":"http:\/\/b4b4r07.com","email":"b4b4r07@gmail.com","format":"txt"}
|
||||
1
users/bardi.json
Normal file
1
users/bardi.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bardi Harborow","url":"https:\/\/www.bardiharborow.com","email":"bardi@bardiharborow.com","gravatar":true}
|
||||
1
users/besson.json
Normal file
1
users/besson.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Lilian Besson, http:\/\/perso.crans.org\/besson\/","url":"http:\/\/perso.crans.org\/besson\/","email":"besson at crans dot org","format":"html","gravatar":true}
|
||||
1
users/bilger.json
Normal file
1
users/bilger.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Matthias Bilger","url":"http:\/\/bilger.info","email":"matthias@bilger.info","format":"txt"}
|
||||
1
users/bipbop.json
Normal file
1
users/bipbop.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"BIPBOP SOFTWARE E SERVICOS LTDA","url":"http:\/\/www.bipbop.com.br\/","email":"contato@bipbop.com.br","format":"txt"}
|
||||
1
users/blazeworx.json
Normal file
1
users/blazeworx.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alex Carter","url":"http:\/\/blazeworx.com","email":"alex@blazeworx.com","format":"txt"}
|
||||
1
users/bmintz.json
Normal file
1
users/bmintz.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Benjamin Mintz","url":"http:\/\/benmintz.com","theme":"black-beauty"}
|
||||
1
users/boldoutlook.json
Normal file
1
users/boldoutlook.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bold Outlook","url":"http:\/\/www.boldoutlook.com","email":"contact@boldoutlook.com","format":"html"}
|
||||
1
users/bubblecubestudios.json
Normal file
1
users/bubblecubestudios.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"BubbleCube Studios","url":"http:\/\/bubblecubestudios.com","email":"support@bubblecubestudios.com","gravatar":true,"theme":"opensans"}
|
||||
1
users/caedes.json
Normal file
1
users/caedes.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Romain Laurent"}
|
||||
1
users/casdr.json
Normal file
1
users/casdr.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Cas de Reuver","url":"http:\/\/0fi.net\/~casdr","email":"casdr@0fi.net"}
|
||||
1
users/centerified.json
Normal file
1
users/centerified.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"CENTERIFIED","url":"http:\/\/centerified.com","email":"cwigley@gmail.com"}
|
||||
1
users/chick307.json
Normal file
1
users/chick307.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"chick307","email":"chick307@gmail.com"}
|
||||
4
users/chrismayer
Normal file
4
users/chrismayer
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"copyright": "Christian Mayer, www.meggsimum.de",
|
||||
"url": "http://www.meggsimum.de"
|
||||
}
|
||||
1
users/clemenst.json
Normal file
1
users/clemenst.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Clemens Teichmann"}
|
||||
1
users/clemos.json
Normal file
1
users/clemos.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Cl\u00e9ment Charmet"}
|
||||
1
users/cmtoomey.json
Normal file
1
users/cmtoomey.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Chris Toomey","email":"chris.toomey@slalom.com","format":"txt"}
|
||||
1
users/colinmarshall.json
Normal file
1
users/colinmarshall.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Colin Marshall","url":"http:\/\/colinmarshall.net","email":"colin.michael.marshall@gmail.com","format":"txt"}
|
||||
1
users/cotapreco.json
Normal file
1
users/cotapreco.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Cota Pre\u00e7o"}
|
||||
1
users/cotorusso.json
Normal file
1
users/cotorusso.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Francesco Russo","url":"http:\/\/cotorusso.com","email":"coto.russo@gmail.com","format":"txt"}
|
||||
1
users/count0.json
Normal file
1
users/count0.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Masami Asai","url":"http:\/\/count0.org"}
|
||||
1
users/cpage.json
Normal file
1
users/cpage.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Carson Page","email":"pagem.carson@gmail.com","theme":"flesch"}
|
||||
|
|
@ -1 +1 @@
|
|||
{"copyright":"Chih-Chun Lee","url":"http:\/\/ctiml.tw","email":"timmy.ccl@gmail.com","format":"txt"}
|
||||
{"copyright":"Chih-chun Lee","url":"http:\/\/ctiml.tw"}
|
||||
|
|
|
|||
1
users/danielgbullido.json
Normal file
1
users/danielgbullido.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Daniel Gonzalez Bullido, http:\/\/lavidaenbinario.com","url":"http:\/\/lavidaenbinario.com","email":"daniel.gbullido@gmail.com","gravatar":true,"theme":"black-beauty"}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"copyright": "Daniel Lamb",
|
||||
"url": "http://daniellmb.com",
|
||||
"email": "dlamb.open.source@mgmail.com",
|
||||
"email": "dlamb.open.source@gmail.com",
|
||||
"gravatar": true,
|
||||
"theme": "friendly"
|
||||
}
|
||||
|
|
|
|||
1
users/danilovaz.json
Normal file
1
users/danilovaz.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Danilo Vaz","url":"http:\/\/danilovaz.github.io","email":"dani@canarinho.co","format":"md"}
|
||||
1
users/datawraith.json
Normal file
1
users/datawraith.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Johannes Holzfu\u00df <DataWraith@web.de>"}
|
||||
1
users/davejustice.json
Normal file
1
users/davejustice.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Dave Justice","url":"http:\/\/davejustice.com","email":"davejustishh@gmail.com","format":"txt"}
|
||||
1
users/dejal.json
Normal file
1
users/dejal.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Dejal Systems, LLC, http:\/\/www.dejal.com\/developer\/","url":"http:\/\/www.dejal.com\/developer\/"}
|
||||
1
users/denis.json
Normal file
1
users/denis.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Denis Ciccale"}
|
||||
1
users/diadatp.json
Normal file
1
users/diadatp.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bittu N","url":"http:\/\/diadatp.com","email":"admin@diadatp.com"}
|
||||
1
users/digipars.json
Normal file
1
users/digipars.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"DigiPars, http:\/\/digipars.com","url":"http:\/\/digipars.com\/","format":"html","gravatar":false,"theme":"plaintext"}
|
||||
1
users/djdch.json
Normal file
1
users/djdch.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"DjDCH","url":"http:\/\/djdch.com\/","email":"coding@djdch.com"}
|
||||
1
users/dmcclccam.json
Normal file
1
users/dmcclccam.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Danilo Moreira de Castro","url":"http:\/\/dmcclccam.com.br","email":"danilo.moreira94@gmail.com","format":"txt"}
|
||||
1
users/dn.json
Normal file
1
users/dn.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"David Newman"}
|
||||
1
users/dsernst.json
Normal file
1
users/dsernst.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"David Ernst","url":"http:\/\/dsernst.com","email":"david@dsernst.com"}
|
||||
1
users/dydx.json
Normal file
1
users/dydx.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Josh Sandlin"}
|
||||
|
|
@ -1 +1 @@
|
|||
{"copyright":"Eduán Lávaque","url":"http:\/\/eduantech.com","email":"eduanlavaque@gmail.com","format":"html","theme":"default"}
|
||||
{"copyright":"Greduan","url":"http:\/\/greduan.com","email":"eduan@websharks-inc.com","format":"html","theme":"default"}
|
||||
|
|
|
|||
1
users/eduardorabelo.json
Normal file
1
users/eduardorabelo.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Eduardo Rabelo","url":"http:\/\/eduardorabelo.com.br","email":"oieduardorabelo@gmail.com","gravatar":true,"theme":"default"}
|
||||
1
users/eeleater.json
Normal file
1
users/eeleater.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Nikolas Weger"}
|
||||
1
users/efrainc.json
Normal file
1
users/efrainc.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Remy Sharp"}
|
||||
1
users/ehealthafrica.json
Normal file
1
users/ehealthafrica.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"eHealth Africa","url":"http:\/\/ehealthafrica.org","email":"oss@ehealthafrica.org"}
|
||||
1
users/ekin.json
Normal file
1
users/ekin.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ekin Koc"}
|
||||
1
users/elgook.json
Normal file
1
users/elgook.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"elgook"}
|
||||
1
users/enigmaticflare.json
Normal file
1
users/enigmaticflare.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Enigmatic Flare"}
|
||||
1
users/eriklindebratt.json
Normal file
1
users/eriklindebratt.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Erik Lindebratt, https:\/\/twitter.com\/eriklindebratt","email":"erik.lindebratt@gmail.com","gravatar":true}
|
||||
|
|
@ -3,5 +3,5 @@
|
|||
"email": "e.everttonlima@gmail.com",
|
||||
"format": "html",
|
||||
"gravatar": true,
|
||||
"theme": "black-beauty"
|
||||
"theme": "friendly"
|
||||
}
|
||||
|
|
|
|||
1
users/fannheyward.json
Normal file
1
users/fannheyward.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Heyward Fann","url":"http:\/\/fann.im","email":"fannheyward@gmail.com","format":"txt","theme":"plaintext"}
|
||||
1
users/fengmk2.json
Normal file
1
users/fengmk2.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"fengmk2","url":"http:\/\/fengmk2.com","email":"m@fengmk2.com","format":"txt"}
|
||||
1
users/ff.json
Normal file
1
users/ff.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Florian Fida"}
|
||||
1
users/foobar.json
Normal file
1
users/foobar.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Foo Bar"}
|
||||
1
users/fpcs.json
Normal file
1
users/fpcs.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Flashpoint Computer Services, LLC","url":"http:\/\/www.flashpointcs.net","email":"info@flashpointcs.net","format":"html"}
|
||||
1
users/fs.json
Normal file
1
users/fs.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Frederick Silva","url":"http:\/\/fredericksilva.github.io","email":"devfrederick@gmail.com","format":"txt"}
|
||||
1
users/fuckthebitch.json
Normal file
1
users/fuckthebitch.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"FuckTheBitch","url":"http:\/\/fuckthebitch.com","theme":"double-windsor"}
|
||||
1
users/futoase.json
Normal file
1
users/futoase.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Keiji Matsuzaki"}
|
||||
1
users/fwolf.json
Normal file
1
users/fwolf.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Fwolf","email":"fwolf.aide+MIT@gmail.com"}
|
||||
1
users/gableroux.json
Normal file
1
users/gableroux.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Gabriel Le Breton","url":"http:\/\/gableroux.com","email":"lebreton.gabriel@gmail.com","format":"html"}
|
||||
1
users/gersonthiago.json
Normal file
1
users/gersonthiago.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Gerson Thiago","url":"http:\/\/gersonthiago.com","email":"gersonthiago.lima@gmail.com","format":"txt"}
|
||||
1
users/gianu.json
Normal file
1
users/gianu.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Sergio Rafael Gianazza","url":"http:\/\/softwarepsychonaut.com","email":"sgianazza@gmail.com","format":"html","gravatar":true,"theme":"default"}
|
||||
1
users/github.json
Normal file
1
users/github.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Github Inc","url":"https:\/\/github.com","theme":"double-windsor"}
|
||||
1
users/glynford.json
Normal file
1
users/glynford.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Glynford Padao","url":"http:\/\/g.padao.org","email":"glynford@padao.org","format":"txt"}
|
||||
1
users/gmph.json
Normal file
1
users/gmph.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Graham Macphee","url":"http:\/\/grahammacphee.co.uk","email":"hi@grahammacphee.co.uk","format":"txt"}
|
||||
1
users/googledrivewpmedia.json
Normal file
1
users/googledrivewpmedia.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Moch Amir, http:\/\/mochamir.com","url":"https:\/\/wordpress.org\/plugins\/google-drive-wp-media\/","email":"surat@mochamir.com","format":"html"}
|
||||
1
users/grawity.json
Normal file
1
users/grawity.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Mantas Mikul\u0117nas","email":"grawity@gmail.com","url":"http:\/\/nullroute.eu.org\/~grawity\/"}
|
||||
1
users/grvcoelho.json
Normal file
1
users/grvcoelho.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Guilherme Rv Coelho","email":"guilhermervcoelho@gmail.com"}
|
||||
1
users/gtomitsuka.json
Normal file
1
users/gtomitsuka.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Gabriel Tomitsuka"}
|
||||
1
users/gugod.json
Normal file
1
users/gugod.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Kang-min Liu"}
|
||||
1
users/guilhermeprates.json
Normal file
1
users/guilhermeprates.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Guilherme Prates"}
|
||||
1
users/gus.json
Normal file
1
users/gus.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Angus Macdonald"}
|
||||
7
users/hadb.json
Normal file
7
users/hadb.json
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"copyright": "HADB, Bean Deng 邓斌",
|
||||
"url": "http://blog.haoest.com",
|
||||
"email": "haiandengbin@126.com",
|
||||
"format": "html",
|
||||
"theme": "eula-modern"
|
||||
}
|
||||
1
users/halid.json
Normal file
1
users/halid.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Halid Altuner","url":"http:\/\/halid.org","email":"halid@halid.org","format":"html","gravater":true,"theme":"opensans"}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue