mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-03-25 09:25:49 +00:00
Merge w/upstream
This commit is contained in:
commit
e0071cfca5
547 changed files with 1293 additions and 21 deletions
|
|
@ -5,6 +5,8 @@ Options +FollowSymLinks +ExecCGI
|
|||
RewriteEngine On
|
||||
RewriteBase /
|
||||
|
||||
RewriteRule "(^|/)(CVS|\.svn|\.git)/" - [F]
|
||||
|
||||
# strip www. from the domain
|
||||
RewriteCond %{HTTP_HOST} ^www\.mit-license\.org$ [NC]
|
||||
RewriteRule ^(.*)$ http://mit-license.org/$1 [R=301,L]
|
||||
|
|
|
|||
|
|
@ -61,5 +61,5 @@ <h1>The MIT License (MIT)</h1>
|
|||
<p><a href="https://github.com/remy/mit-license">Fork this project to create your own MIT license that you can always link to.</a></p>
|
||||
</footer>
|
||||
<script>var _gaq=[['_setAccount','UA-1656750-28'],['_trackPageview']];(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.src='//www.google-analytics.com/ga.js';s.parentNode.insertBefore(g,s)})(document,'script')</script>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
10
README.md
10
README.md
|
|
@ -25,6 +25,10 @@ available you can do it yourself from the command line:
|
|||
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
|
||||
|
||||
If there's any problems in the automated creation, send me a pull
|
||||
request and it'll go live soon after.
|
||||
|
||||
|
|
@ -144,6 +148,12 @@ Current available themes:
|
|||
* orange - [preview](http://jsbin.com/uzubos/2) (by [@kirbylover4000](http://github.com/kirbylover4000))
|
||||
* plaintext - [preview](http://jsbin.com/uzubos/4) (by [@barberboy](https://github.com/barberboy))
|
||||
* double-windsor - [preview](http://jsbin.com/uzubos/5/) (by [@desandro](https://github.com))
|
||||
* cherry - [preview](http://jsbin.com/ufefid/5/) (by [@mustafa-x](https://github.com/mustafa-x))
|
||||
* white cherry - [preview](http://jsbin.com/uzezas/2/) (by [@mustafa-x](https://github.com/mustafa-x))
|
||||
* blackwood - [preview](http://jsbin.com/uzezas/) (by [@mustafa-x](https://github.com/mustafa-x))
|
||||
* hipster-gray - [preview](http://jsbin.com/ivufon/10) (by [@noformnocontent](https://github.com/noformnocontent))
|
||||
* xtansia - [preview](http://jsbin.com/ereren/1/) (by [@tomass1996](https://github.com/tomass1996))
|
||||
|
||||
|
||||
## Formats & URLs
|
||||
|
||||
|
|
|
|||
13
index.php
13
index.php
|
|
@ -30,11 +30,14 @@
|
|||
Throw new Exception(wordwrap('>>> Unable to create new user - please send a pull request on https://github.com/remy/mit-license'));
|
||||
}
|
||||
|
||||
echo '>>> MIT license page created: http://' . $_SERVER['HTTP_HOST'] . "\n\n";
|
||||
|
||||
// try to add to github...!
|
||||
// exec('/usr/local/bin/git add ' . $user_file . ' && /usr/local/bin/git commit -m"created ' . $user_file . '" && /usr/local/bin/git push', $out, $r);
|
||||
// user_error('create new user. out: ' . $out . ', r: ' . $r);
|
||||
exec('cd /WWW/mit-license && /usr/bin/git add ' . $user_file . ' && /usr/bin/git commit -m"automated creation of ' . $user_file . '"', $out, $r);
|
||||
//print_r($out); echo "\n"; print_r($r); echo "\n";
|
||||
$out = array();
|
||||
exec('cd /WWW/mit-license && /usr/bin/git push origin master -v 2>&1', $out, $r);
|
||||
//print_r($out); echo "\n"; print_r($r); echo "\n";
|
||||
|
||||
echo '>>> MIT license page created: http://' . $_SERVER['HTTP_HOST'] . "\n\n";
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage() . "\n\n";
|
||||
}
|
||||
|
|
@ -138,7 +141,7 @@
|
|||
if ($format == 'txt') {
|
||||
$license = array_shift(explode('</article>', array_pop(explode('<article>', $license))));
|
||||
$license = preg_replace('/<[^>]*>/', '', trim($license));
|
||||
$license = html_entity_decode($license);
|
||||
$license = html_entity_decode($license, ENT_COMPAT | ENT_HTML401, 'UTF-8');
|
||||
header('content-type: text/plain; charset=UTF-8');
|
||||
}
|
||||
|
||||
|
|
|
|||
40
themes/blackwood.css
Normal file
40
themes/blackwood.css
Normal file
File diff suppressed because one or more lines are too long
BIN
themes/blackwood.jpg
Normal file
BIN
themes/blackwood.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
18
themes/cherry-white.css
Normal file
18
themes/cherry-white.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
@import url(http://fonts.googleapis.com/css?family=Alegreya:400italic,400,700);
|
||||
|
||||
body { color: #94979E; font: 16px/28px 'Alegreya', "Garamond",serif; margin: 0; padding: 0 50px;}
|
||||
article, footer { display:block; max-width:720px; margin:0 auto; }
|
||||
article {background: repeat scroll 0 0 #FFFFFF; border-bottom: 4px solid #FF3366; border-right: 3px solid #FF6666; padding: 45px 28px 28px; position: relative; -webkit-border-radius: 0px 0 10px 10px; -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; margin-top: 28px; border-left: 1px solid #F7F7F7;}
|
||||
h1 { background: none repeat scroll 0 0 #FF3366; color: #FFFFFF; font-size: 24px; left: -12px; line-height: 32px; padding: 10px 0 10px 13px; position: absolute; top: -22px; width: 100%; display: block; -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; }
|
||||
h1:after { background-color: #AD0431; border-radius: 0 0 0 32px; content: ""; height: 7px; left: 3px; position: absolute; top: 52px; width: 7px; }
|
||||
h1:before { background-color: #D01B4B; content: ""; height: 11px; left: 0; position: absolute; top: 52px; width: 11px; -webkit-border-radius: 0 0 0 32px; -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; }
|
||||
article p:nth-of-type(1) {font-size: 24px;}
|
||||
a, a:visited { color:#3A3A3A; padding:4px 4px 0 4px; text-decoration:none; }
|
||||
a:active, a:hover { color:#710257; }
|
||||
a img { position: absolute; top: 0; right: 0; border: 0; }
|
||||
:-moz-any-link:focus {color:#bc4a46;}
|
||||
::selection {color:#bc4a46;}
|
||||
::-moz-selection {color:#bc4a46; }
|
||||
footer { background-color: #FFFFFF; border-bottom: 3px solid #FF3366; margin-top: 10px; padding: 4px 28px; text-align: center; border-top: 1px solid #F5F5F5; }
|
||||
footer a { padding: 10px; }
|
||||
footer p { font-size: 16px; margin: 0; padding: 0;}
|
||||
18
themes/cherry.css
Normal file
18
themes/cherry.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
@import url(http://fonts.googleapis.com/css?family=Alegreya:400italic,400,700);
|
||||
|
||||
body { background: url("cherry.png") repeat scroll 0 0 transparent; color: #94979E; font: 16px/28px 'Alegreya', "Garamond",serif; margin: 0; padding: 0 50px;}
|
||||
article, footer { display:block; max-width:720px; margin:0 auto; }
|
||||
article {background: repeat scroll 0 0 #FFFFFF; border-bottom: 4px solid #FF3366; border-right: 3px solid #FF6666;padding: 74px 28px 28px; position: relative; -webkit-border-radius: 0px 0 10px 10px; -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; }
|
||||
h1 { background: none repeat scroll 0 0 #FF3366; color: #FFFFFF; font-size: 24px; left: -12px; line-height: 32px; padding: 10px 0 10px 13px; position: absolute; top: 0; width: 100%; display: block; -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; }
|
||||
h1:after { background-color: #AD0431; border-radius: 0 0 0 32px; content: ""; height: 7px; left: 3px; position: absolute; top: 52px; width: 7px; }
|
||||
h1:before { background-color: #D01B4B; content: ""; height: 11px; left: 0; position: absolute; top: 52px; width: 11px; -webkit-border-radius: 0 0 0 32px; -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; }
|
||||
article p:nth-of-type(1) {font-size: 24px;}
|
||||
a, a:visited { color:#3A3A3A; padding:4px 4px 0 4px; text-decoration:none; }
|
||||
a:active, a:hover { color:#710257; }
|
||||
a img { position: absolute; top: 0; right: 0; border: 0; }
|
||||
:-moz-any-link:focus {color:#bc4a46;}
|
||||
::selection {color:#bc4a46;}
|
||||
::-moz-selection {color:#bc4a46; }
|
||||
footer { background-color: #FFFFFF; border-bottom: 3px solid #FF3366; margin-top: 10px; padding: 4px 28px; text-align: center; }
|
||||
footer a { padding: 10px; }
|
||||
footer p { font-size: 16px; margin: 0; padding: 0;}
|
||||
BIN
themes/cherry.png
Normal file
BIN
themes/cherry.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 43 KiB |
BIN
themes/hipster-gray-octocat.png
Normal file
BIN
themes/hipster-gray-octocat.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 443 B |
198
themes/hipster-gray.css
Normal file
198
themes/hipster-gray.css
Normal file
|
|
@ -0,0 +1,198 @@
|
|||
@import url(http://fonts.googleapis.com/css?family=Merriweather:400,300);
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
-webkit-transition: all 0.2s ease-out;
|
||||
-moz-transition: all 0.2s ease-out;
|
||||
-o-transition: all 0.2s ease-out;
|
||||
-ms-transition: all 0.2s ease-out;
|
||||
transition: all 0.2s ease-out;
|
||||
}
|
||||
body {
|
||||
background: #aaa;
|
||||
font-family: Merriweather, "Palatino Linotype", Georgia, serif;
|
||||
font-size: 21pt;
|
||||
line-height: 170%;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-smoothing: antialiased;
|
||||
overflow-y: auto;
|
||||
padding: 20pt;
|
||||
}
|
||||
a:link, a:visited {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
border-bottom: 1pt solid #aaa;
|
||||
}
|
||||
a:hover, a:focus, a:active {
|
||||
background: #aaa;
|
||||
text-decoration: none;
|
||||
}
|
||||
h1 {
|
||||
font-size: 64pt;
|
||||
font-weight: 400;
|
||||
line-height: 100%;
|
||||
}
|
||||
article, footer {
|
||||
padding: 50pt 50pt 20pt 20%;
|
||||
background: #ccc;
|
||||
}
|
||||
article p { margin-top: 40pt; }
|
||||
article p:first-of-type {
|
||||
margin-top: 20pt;
|
||||
font-size: 14pt;
|
||||
line-height: 150%;
|
||||
}
|
||||
article :nth-child(4),
|
||||
article :nth-child(4):before {
|
||||
font-size: 18pt;
|
||||
font-weight: 300;
|
||||
}
|
||||
article :nth-child(4):before {
|
||||
content: "*";
|
||||
margin-left: -20pt;
|
||||
float: left;
|
||||
}
|
||||
article p:last-child {
|
||||
border: 20pt solid #c4c4c4;
|
||||
font-size: 17pt;
|
||||
line-height: 180%;
|
||||
margin: 40pt;
|
||||
color: #888;
|
||||
padding: 20pt;
|
||||
}
|
||||
footer {
|
||||
padding-top: 0;
|
||||
font-size: 14pt;
|
||||
line-height: 100%;
|
||||
margin-top: -1pt;
|
||||
}
|
||||
footer p {
|
||||
background: url("hipster-gray-octocat.png") 0 0 no-repeat;
|
||||
margin-left: -20pt;
|
||||
padding-left: 20pt;
|
||||
}
|
||||
footer a:link, footer a:visited {
|
||||
border-bottom-color: #bbb;
|
||||
color: #888;
|
||||
}
|
||||
footer a:hover, footer a:focus, footer a:active {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (max-width: 1360px) {
|
||||
article, footer {
|
||||
padding-left: 50pt;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 1140px) {
|
||||
body {
|
||||
font-size: 17pt;
|
||||
padding: 15pt;
|
||||
}
|
||||
h1 { font-size: 40pt; }
|
||||
article, footer { padding: 30pt; }
|
||||
article p { margin-top: 17pt; }
|
||||
article p:first-of-type {
|
||||
font-size: 12pt;
|
||||
line-height: 120%;
|
||||
margin-top: 10pt;
|
||||
}
|
||||
article :nth-child(4), article :nth-child(4):before { font-size: 15pt; }
|
||||
article :nth-child(4):before { margin-left: -15pt; }
|
||||
article p:last-child {
|
||||
border-width: 15pt;
|
||||
font-size: 13pt;
|
||||
margin: 15pt 0 0 0;
|
||||
padding: 15pt;
|
||||
}
|
||||
footer {
|
||||
padding-top: 0;
|
||||
font-size: 11pt;
|
||||
line-height: 120%;
|
||||
}
|
||||
footer p {
|
||||
margin-left: -15pt;
|
||||
padding-left: 15pt;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 720px) {
|
||||
body {
|
||||
font-size: 12pt;
|
||||
padding: 10pt;
|
||||
}
|
||||
h1 { font-size: 24pt; }
|
||||
article, footer { padding: 20pt; }
|
||||
article p { margin-top: 15pt; }
|
||||
article p:first-of-type {
|
||||
font-size: 9pt;
|
||||
line-height: 120%;
|
||||
margin-top: 10pt;
|
||||
}
|
||||
article :nth-child(4), article :nth-child(4):before { font-size: 10pt; }
|
||||
article :nth-child(4):before { margin-left: -10pt; }
|
||||
article p:last-child {
|
||||
border-width: 10pt;
|
||||
font-size: 10pt;
|
||||
margin: 15pt 0 0 0;
|
||||
padding: 10pt;
|
||||
}
|
||||
footer {
|
||||
padding-top: 0;
|
||||
font-size: 9pt;
|
||||
line-height: 120%;
|
||||
}
|
||||
footer p {
|
||||
background-position: 0 1px;
|
||||
-webkit-background-size: 9px;
|
||||
background-size: 11px;
|
||||
margin-left: -10pt;
|
||||
padding-left: 10pt;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media print {
|
||||
@page { margin: .5cm; }
|
||||
* { color: black !important; }
|
||||
a[href]:after { content: " [" attr(href) "]" }
|
||||
a:link, a[href]:after { border: none; }
|
||||
body {
|
||||
background: none;
|
||||
font-size: 12pt;
|
||||
padding: 0;
|
||||
}
|
||||
h1 { font-size: 28pt; }
|
||||
article, footer {
|
||||
background: none;
|
||||
padding: 30pt;
|
||||
}
|
||||
article p { margin-top: 16pt; }
|
||||
article p:first-of-type {
|
||||
font-size: 10pt;
|
||||
line-height: 120%;
|
||||
margin-top: 10pt;
|
||||
}
|
||||
article :nth-child(4), article :nth-child(4):before { font-size: 12pt; }
|
||||
article :nth-child(4):before { margin-left: -12pt; }
|
||||
article p:last-child {
|
||||
border-width: 11pt;
|
||||
font-size: 11pt;
|
||||
margin: 18pt 0 0 0;
|
||||
padding: 11pt;
|
||||
}
|
||||
footer {
|
||||
padding-top: 0;
|
||||
font-size: 10pt;
|
||||
line-height: 120%;
|
||||
}
|
||||
footer p {
|
||||
background-position: 0 1px;
|
||||
-webkit-background-size: 11px;
|
||||
background-size: 11px;
|
||||
margin-left: -12pt;
|
||||
padding-left: 12pt;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,12 +1,13 @@
|
|||
@import url(http://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Caption:700);
|
||||
html,body{background:#663300;font:13pt "PT Sans",sans-serif;text-align:center}
|
||||
html,body{background:#663B14;font:13pt "PT Sans",sans-serif;text-align:center}
|
||||
a:link,a:visited{color:#234234;text-decoration:none}
|
||||
a:hover,a:active{color:#432321;text-decoration:underline}
|
||||
article{background:#CC9900;text-align:left;width:85%;margin:80px auto;border-radius:10px;-moz-border-radius:10px}
|
||||
article h1{background:#CC6600;text-align:center;border-bottom:1px solid #7A7A00;font:bold 35pt "PT Sans Caption","PT Sans",sans-serif;margin:0;padding:5px;border-radius:10px;-moz-border-radius:10px}
|
||||
article{background:#CC9900;text-align:left;width:85%;margin:80px auto;border-radius:10px;-moz-border-radius:10px;box-shadow:-1px 1px 20px rgba(30,30,30,0.5),2px 1px 15px rgba(80,80,80,0.4),inset 0 0 10px rgba(50,50,50,0.7);-webkit-box-shadow:-1px 1px 20px rgba(30,30,30,0.5),2px 1px 15px rgba(80,80,80,0.4),inset 0 0 10px rgba(50,50,50,0.7)}
|
||||
article h1{background:#CC6600;text-align:center;font:bold 35pt "PT Sans Caption","PT Sans",sans-serif;margin:0;padding:5px;border-radius:10px;-moz-border-radius:10px;box-shadow:inset 0 0 10px rgba(70,70,70,0.2),inset 1px 0 10px rgba(50,50,50,0.3),inset -1px 0 10px rgba(50,50,50,0.3);-webkit-box-shadow:inset 0 0 10px rgba(70,70,70,0.2),inset 1px 0 10px rgba(50,50,50,0.3),inset -1px 0 10px rgba(50,50,50,0.3)}
|
||||
article p{margin:0;padding:10px 15px}
|
||||
footer{position:fixed;bottom:0;left:0;width:100%;border-top:1px solid #7A7A00;background:#333300;user-select:none;-moz-user-select:none;-webkit-user-select:none}
|
||||
footer p,footer a{display:block;margin:0;text-shadow:0 0 10px #ccc}
|
||||
footer p,footer a{display:block;margin:0;text-shadow:0 0 10px #ccc;font-size:11.5pt}
|
||||
footer a:link,footer a:visited{color:#aaa}
|
||||
footer a:hover,footer a:active{color:#eee}
|
||||
::selection,::-moz-selection{background:#663300}
|
||||
::selection{background:#663300;color:white}
|
||||
::-moz-selection{background:#663300;color:white}
|
||||
67
themes/xtansia.css
Normal file
67
themes/xtansia.css
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
@import url(http://fonts.googleapis.com/css?family=Rambla:400,400italic);
|
||||
|
||||
body {
|
||||
font-family: Rambla, serif;
|
||||
padding: 32px;
|
||||
font-size: 1.1em;
|
||||
background: white;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
article {
|
||||
max-width: 800px;
|
||||
text-align: justify;
|
||||
margin: 10px auto 0;
|
||||
}
|
||||
|
||||
article p:nth-of-type(1) {
|
||||
text-align: center;
|
||||
font-style: italic;
|
||||
font-size: 1.15em;
|
||||
border-top: 2px dashed DeepSkyBlue;
|
||||
padding-top: 1.0em;
|
||||
}
|
||||
|
||||
article p:last-child {
|
||||
border-bottom: 2px dashed DeepSkyBlue;
|
||||
padding: 0.0em 2.0em 1.0em 2.0em;
|
||||
font-size: 0.9em;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
article h1 {
|
||||
max-width: 550px;
|
||||
margin: 0 auto;
|
||||
border-bottom: groove LightGray;
|
||||
padding-top: 0.5em;
|
||||
padding-bottom: 0.5em;
|
||||
text-align: center;
|
||||
font-variant: small-caps;
|
||||
font-size: 1.6em;
|
||||
font-weight: 450;
|
||||
letter-spacing: 0.25em;
|
||||
}
|
||||
|
||||
footer {
|
||||
max-width: 550px;
|
||||
border-top: groove LightGray;
|
||||
margin: 0 auto;
|
||||
font-size: 0.8em;
|
||||
font-style: italic;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
text-decoration: none;
|
||||
color: SlateGray;
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: DeepSkyBlue;
|
||||
border: none;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #007399;
|
||||
}
|
||||
1
users/15minuteslate.json
Normal file
1
users/15minuteslate.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"15minuteslate","url":"http:\/\/15minuteslate.net","email":"hi@15minuteslate.net","format":"html","theme":"afterdark"}
|
||||
5
users/5509.json
Normal file
5
users/5509.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Kazunori Tokuda, http://5509.me",
|
||||
"url": "http://5509.me",
|
||||
"theme": "double-windsor"
|
||||
}
|
||||
5
users/abhshkdz.json
Normal file
5
users/abhshkdz.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Abhishek Das",
|
||||
"url": "https:\/\/github.com/abhshkdz",
|
||||
"email": "das.abhshk@gmail.com"
|
||||
}
|
||||
1
users/abitgone.json
Normal file
1
users/abitgone.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Anthony Williams","url":"http:\/\/abitgone.co.uk","email":"anthony@abitgone.co.uk","format":"html","theme":"flesch"}
|
||||
1
users/abovethewater.json
Normal file
1
users/abovethewater.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Joe Mathews","url":"http:\/\/abovethewater.co.uk","email":"joe@abovethewater.co.uk","theme":"double-windsor"}
|
||||
1
users/ac.json
Normal file
1
users/ac.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alan Cohen","url":"https:\/\/twitter.com\/alan_mit","email":"alan.mit@gmail.com"}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"copyright": "Ad@m",
|
||||
"url": "http://adamscode.sourceforge.net",
|
||||
"url": "http://adam.hbang.ws",
|
||||
"theme": "orange"
|
||||
}
|
||||
1
users/adampritchard.json
Normal file
1
users/adampritchard.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Adam Pritchard"}
|
||||
1
users/ael.json
Normal file
1
users/ael.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Futoshi Takeo","url":"http:\/\/ael.aquilegia.info\/"}
|
||||
1
users/afein.json
Normal file
1
users/afein.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alex Mavrogiannis","theme":"double-windsor"}
|
||||
1
users/ahmet.json
Normal file
1
users/ahmet.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ahmet AYGUN","url":"http://github.com/ahmet","theme":"flesch"}
|
||||
1
users/airtonix.json
Normal file
1
users/airtonix.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Zenobius Jiricek","url":"http:\/\/airtonix.net","email":"airtonix@gmail.com","format":"txt"}
|
||||
1
users/ajmal.json
Normal file
1
users/ajmal.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ajmal Eylia","url":"http:\/\/ajmaleylia.com"}
|
||||
1
users/akervern.json
Normal file
1
users/akervern.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Arnaud Kervern"}
|
||||
1
users/akkartik.json
Normal file
1
users/akkartik.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Kartik Agaram"}
|
||||
1
users/akshay.json
Normal file
1
users/akshay.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Akshay Mhatre"}
|
||||
1
users/akshaymhatre.json
Normal file
1
users/akshaymhatre.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Akshay Mhatre"}
|
||||
1
users/ale.json
Normal file
1
users/ale.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alejandro Morales","url":"http:\/\/alejandromorales.co.cc","email":"alejandro@numbus.co","theme":"double-windsor"}
|
||||
1
users/alexluke.json
Normal file
1
users/alexluke.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alex Luke","url":"http:\/\/alexluke.me","email":"alex@alexluke.me"}
|
||||
1
users/alno.json
Normal file
1
users/alno.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alexey Noskov","url":"http:\/\/alno.name\/","email":"alexey.noskov@gmail.com"}
|
||||
5
users/andreisebastianc.json
Normal file
5
users/andreisebastianc.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Andrei Sebastian Cîmpean",
|
||||
"email": "andreisebastianc@gmail.com",
|
||||
"format": "txt"
|
||||
}
|
||||
1
users/andyedinborough.json
Normal file
1
users/andyedinborough.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Andy Edinborough"}
|
||||
1
users/anton.json
Normal file
1
users/anton.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Anton Piatek"}
|
||||
4
users/antonio.json
Normal file
4
users/antonio.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"copyright":"Antonio Santos",
|
||||
"theme":"afterdark"
|
||||
}
|
||||
1
users/aponxi.json
Normal file
1
users/aponxi.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"WeaponXI","url":"http:\/\/www.weaponxi.com","email":"aponxi@weaponxi.com","format":"html","theme":"blackwood"}
|
||||
5
users/appsattic.json
Normal file
5
users/appsattic.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright" : "AppsAttic Ltd",
|
||||
"url" : "http://appsattic.com/",
|
||||
"email" : "chilts@appsattic.com"
|
||||
}
|
||||
1
users/asante.json
Normal file
1
users/asante.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alexander Sante"}
|
||||
1
users/asdbjasbdja.json
Normal file
1
users/asdbjasbdja.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"ajsdhbjabsdh"}
|
||||
1
users/aseemk.json
Normal file
1
users/aseemk.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Aseem Kishore","url":"http:\/\/aseemk.com\/","email":"aseem.kishore@gmail.com"}
|
||||
1
users/ats.json
Normal file
1
users/ats.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"ActBlue Technical Services"}
|
||||
5
users/austegard.json
Normal file
5
users/austegard.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Oskar Austegard, http://austegard.com",
|
||||
"url": "http://austegard.com",
|
||||
"email": "me@austegard.com"
|
||||
}
|
||||
1
users/avidal.json
Normal file
1
users/avidal.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Alex Vidal","url":"https:\/\/github.com\/avidal","email":"alex.vidal@gmail.com","format":"html"}
|
||||
6
users/axot.json
Normal file
6
users/axot.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"copyright": "Zheng Shao",
|
||||
"url": "http://www.axot.org",
|
||||
"email": "imaxot@gmail.com",
|
||||
"theme": "blackwood"
|
||||
}
|
||||
1
users/azamara.json
Normal file
1
users/azamara.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"William Kim, http:\/\/azamara.io\/","url":"http:\/\/azamara.io\/"}
|
||||
1
users/azlab.json
Normal file
1
users/azlab.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"AnZen-Lab (UEC, Tokyo)"}
|
||||
1
users/azu.json
Normal file
1
users/azu.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"azu","url":"http:\/\/efcl.info\/"}
|
||||
5
users/b.json
Normal file
5
users/b.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Brian Seward, http://brianseward.com",
|
||||
"url": "http://brianseward.com",
|
||||
"theme": "default"
|
||||
}
|
||||
4
users/bai.json
Normal file
4
users/bai.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"copyright": "Vlad Gorodetsky",
|
||||
"email": "v@gor.io"
|
||||
}
|
||||
6
users/banyan.json
Normal file
6
users/banyan.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"copyright": "Kohei Hasegawa, https://github.com/banyan",
|
||||
"url": "https://github.com/banyan",
|
||||
"email": "ameutau@gmail.com",
|
||||
"theme": "flesch"
|
||||
}
|
||||
1
users/bartaz.json
Normal file
1
users/bartaz.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bartek Szopka"}
|
||||
1
users/benatkin.json
Normal file
1
users/benatkin.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ben Atkin"}
|
||||
1
users/benjie.json
Normal file
1
users/benjie.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Benjie Gillam"}
|
||||
1
users/berbaquero.json
Normal file
1
users/berbaquero.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bernardo Baquero Stand"}
|
||||
1
users/birdi.json
Normal file
1
users/birdi.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Birdicode","url":"http:\/\/black-burn.ch","email":"birdicode@gmail.com","format":"txt"}
|
||||
1
users/bjeanes.json
Normal file
1
users/bjeanes.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bo Jeanes","url":"http:\/\/bjeanes.com","email":"me@bjeanes.com","format":"txt"}
|
||||
1
users/bmelton.json
Normal file
1
users/bmelton.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Barry Melton"}
|
||||
1
users/boardintelligence.json
Normal file
1
users/boardintelligence.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Board Intelligence","url":"http:\/\/boardintelligence.co.uk","email":"boardiq@boardintelligence.co.uk"}
|
||||
1
users/bobby-tables.json
Normal file
1
users/bobby-tables.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bobby Tables","email":"bobby.tables@mailinator.com\">Little Bobby Tables<\/a><script>alert(\"test\")<\/script><a href=\"#"}
|
||||
1
users/bobuk.json
Normal file
1
users/bobuk.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bobuk","email":"thebobuk@ya.ru","format":"txt"}
|
||||
1
users/bowsersenior.json
Normal file
1
users/bowsersenior.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Mani Tadayon","url":"http:\/\/bowsersenior.github.com","email":"bowsersenior@gmail.com","format":"txt"}
|
||||
1
users/bracke.json
Normal file
1
users/bracke.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Bent Bracke, http:\/\/bracke.dk"}
|
||||
1
users/braziljs.json
Normal file
1
users/braziljs.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"BrazilJS Foundation","url":"http:\/\/braziljs.org","email":"contact@braziljs.org","format":"txt"}
|
||||
1
users/brendon.json
Normal file
1
users/brendon.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Brendon Justin","url":"http:\/\/brendonjustin.com","email":"brendonjustin@gmail.com","format":"txt"}
|
||||
1
users/brianmhunt.json
Normal file
1
users/brianmhunt.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Brian M Hunt","email":"brianmhunt@gmail.com","theme":"double-windsor"}
|
||||
1
users/bripkens.json
Normal file
1
users/bripkens.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ben Ripkens","url":"http:\/\/bripkens.de","email":"bripkens.dev@gmail.com","format":"txt"}
|
||||
1
users/bucho.json
Normal file
1
users/bucho.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"bucho","url":"http:\/\/about.me\/torufurukawa\/"}
|
||||
5
users/bugsnag.json
Normal file
5
users/bugsnag.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Bugsnag Inc., https://bugsnag.com",
|
||||
"url": "http://bugsnag.com",
|
||||
"theme": "default"
|
||||
}
|
||||
1
users/cabforward.json
Normal file
1
users/cabforward.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"CabForward"}
|
||||
4
users/camspiers.json
Normal file
4
users/camspiers.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"copyright": "Cam Spiers",
|
||||
"url": "https://github.com/camspiers"
|
||||
}
|
||||
1
users/cantino.json
Normal file
1
users/cantino.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Andrew Cantino, andrewcantino.com","url":"http:\/\/andrewcantino.com"}
|
||||
5
users/caraya.json
Normal file
5
users/caraya.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"copyright": "Carlos Araya",
|
||||
"url": "http://carlos.rivendellweb.net/",
|
||||
"theme": "double-windsor"
|
||||
}
|
||||
1
users/caseybecking.json
Normal file
1
users/caseybecking.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Casey Becking","url":"http:\/\/caseybecking.com","email":"caseybecking@gmail.com","format":"txt"}
|
||||
1
users/cfarajpour.json
Normal file
1
users/cfarajpour.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Cyrus Farajpour"}
|
||||
1
users/cfddream.json
Normal file
1
users/cfddream.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"cfddream Cai","url":"http:\/\/kissdry.com\/","email":"cfddream@gmail.com","format":"txt"}
|
||||
1
users/cgack.json
Normal file
1
users/cgack.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Cory Gackenheimer"}
|
||||
6
users/chilts.json
Normal file
6
users/chilts.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"copyright" : "Andrew Chilton",
|
||||
"url" : "http://chilts.org/blog/",
|
||||
"email" : "andychilton@gmail.com",
|
||||
"theme" : "double-windsor"
|
||||
}
|
||||
1
users/chintan.json
Normal file
1
users/chintan.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Chintan Parikh"}
|
||||
1
users/choly.json
Normal file
1
users/choly.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Ilia Choly","email":"ilia.choly@gmail.com"}
|
||||
1
users/christopher.json
Normal file
1
users/christopher.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Christopher J. Su"}
|
||||
1
users/christophersu.json
Normal file
1
users/christophersu.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Christopher Su"}
|
||||
1
users/chuckcarpenter.json
Normal file
1
users/chuckcarpenter.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Chuck Carpenter, http:\/\/chuckcarpenter.com","theme":"plaintext"}
|
||||
1
users/cicloid.json
Normal file
1
users/cicloid.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Gustavo Barron, http:\/\/42fu.com","url":"http:\/\/42fu.com","theme":"flesch"}
|
||||
1
users/clayallsopp.json
Normal file
1
users/clayallsopp.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Clay Allsopp"}
|
||||
1
users/claylo.json
Normal file
1
users/claylo.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Clay Loveless","url":"http:\/\/claylo.com","email":"clay@php.net","format":"html","theme":"plaintext"}
|
||||
1
users/co.json
Normal file
1
users/co.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Carmine Olivo"}
|
||||
1
users/cocoanaut.json
Normal file
1
users/cocoanaut.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ "copyright": "Frank Gregor", "url": "http://cocoanaut.com", "email": "phranck@cocoanaut.com", "format": "html", "theme": "default" }
|
||||
1
users/codecafe.json
Normal file
1
users/codecafe.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"CodeCafe"}
|
||||
1
users/codeclarity-jquerytools.json
Normal file
1
users/codeclarity-jquerytools.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Code Clarity","theme":"double-windsor","email":"support@icodeclarity.com","version":"a526bf7ad1"}
|
||||
1
users/coderarity.json
Normal file
1
users/coderarity.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Christian Howe","email":"coderarity@gmail.com","theme":"afterdark"}
|
||||
1
users/codespaces.json
Normal file
1
users/codespaces.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"CodeSpaces","url":"http:\/\/www.codespaces.com","email":"labs@codespaces.com"}
|
||||
1
users/colken.json
Normal file
1
users/colken.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Colin Kennedy"}
|
||||
1
users/collin.json
Normal file
1
users/collin.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Collin Miller","url":"http:\/\/github.com\/collin","email":"collintmiller+license@gmail.com","format":"txt"}
|
||||
4
users/cookieo9.json
Normal file
4
users/cookieo9.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"copyright": "Carlos Castillo",
|
||||
"theme": "orange"
|
||||
}
|
||||
4
users/coredumpcat.json
Normal file
4
users/coredumpcat.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"copyright": "Mick Kubo, http://komarineko.net",
|
||||
"url": "http://komarineko.net"
|
||||
}
|
||||
1
users/corpix.json
Normal file
1
users/corpix.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Dmitriy Petrov"}
|
||||
6
users/couto.json
Normal file
6
users/couto.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"copyright" : "Luís Couto",
|
||||
"url" : "http://15minuteslate.net",
|
||||
"email" : "couto@15minuteslate.net",
|
||||
"theme" : "double-windsor"
|
||||
}
|
||||
1
users/crosspop.json
Normal file
1
users/crosspop.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"copyright":"Crosspop","url":"http:\/\/crosspop.in\/"}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue