-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
89 lines (78 loc) · 5.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html>
<head>
<title>Lisense</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javascript" src="lib/modernizr-2.0.min.js"></script>
<script type="text/javascript" src="lib/respond.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Merienda+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="css/lisense.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print">
<link rel="shortcut icon" type='image/vnd.microsoft.icon' href="favicon.ico">
<link rel="icon" type="image/x-ico" href="favicon.ico">
<!--[if lt IE 8]>
<link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection">
<![endif]-->
</head>
<body>
<a href="http://github.com/nbartlomiej/lisense"><img style="position: absolute; top: 0px; right: 0px; border: 0;" src="https://a248.e.akamai.net/assets.github.com/img/e6bef7a091f5f3138b8cd40bc3e114258dd68ddf/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub"></a>
<div class='container'>
<div class='span-12'>
<div class='main-column'>
<h1>Lisense</h1>
<p>Licenses sometimes have little sense. Too often they're difficult to read, incredibly long and full of legal traps.</p>
<p>Lisense is a simple web app that aims to improve the world of licenses.</p>
<h3>Paste a license below:</h3>
<p class='samples'>Sample licenses: <a href='#' onclick="loadApacheLicense();">Apache</a>, <a href='#' onclick="loadMitLicense();">MIT</a>.</p>
<textarea id='license'> </textarea>
<p>More? Search for <a target='_blank' href='http://www.google.com/search?q=%22*+terms+of+service%22+-wikipedia'>Terms of Service</a> / <a target='_blank' href='http://www.google.com/search?q=%22*+EULA%22+-wikipedia'>EULA</a> / <a target='_blank' href='http://www.google.com/search?q=license+-wikipedia'>License</a>.</p>
<div style='overflow: auto; width: 100%; margin-bottom: 1.5em;'>
<div class='dim' style='float: left;'>by: <a target='_blank' href='http://twitter.com/nbartlomiej'>@nbartlomiej</a></div>
<div style='float: right;'>
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Check readability of any license with Lisense" data-count="none" data-related="nbartlomiej:Passionate developer, Lisense's author.">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
</div>
</div>
</div>
<div class='show-newsletter'>
<a href='#' id='show-newsletter' onclick='$(".show-newsletter").hide();$("#todo").fadeIn()' >Hey Lisense, email me when new features are available.</a>
</div>
<div id='todo' class='todo' style='display:none'>
<form action="http://twitter.us2.list-manage.com/subscribe/post?u=83cebfda4f1a0d435ece335b5&id=730080c317" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
Be notified about updates, enter email address:
<input type="email" style="width:105px; height: 16px; background: #fff; border: 1px solid #8a5;" value="" name="EMAIL" id="mce-EMAIL" />
<input type="submit" value="Go!" name="subscribe" id="mc-embedded-subscribe" class="button">
</form>
</div>
</div>
<div class='results span-12 last'>
<div id='scores' class='scores'>
<div class='score-description'>Score:</div>
<div id='score' class='score'>0</div>
</div>
<div id='notifications'>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="lib/jquery-1.6.2.min.js"><\/script>')</script>
<!-- TODO: rewrite javascript files to CoffeeScript -->
<!-- TODO: merge javascript files into single script in production -->
<script type="text/javascript" src="src/Scanner.js"></script>
<script type="text/javascript" src="src/Counter.js"></script>
<script type="text/javascript" src="src/ScannerGroup.js"></script>
<script type="text/javascript" src="src/Notifier.js"></script>
<script type="text/javascript" src="src/Notification.js"></script>
<script type="text/javascript" src="src/Application.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-25933793-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>