-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 1.99 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
<html>
<head>
<script src="CodeMirror-0.93/js/codemirror.js"></script>
<script src="cscc.js"></script>
<script src="cscc-parse-xml.js"></script>
<script src="cscc-parse-css.js"></script>
<script src="cscc-sense.js"></script>
</head>
<body onload="cscc.init('code');">
<textarea id="code" name="code"><!-- Hi, welcome to another Common Sense Code Completion demo! -->
<html>
<head>
<title>CSCC - Common Sense Code Completion enhanced</title>
<meta name="description" content="browser based code completion - now context aware"/>
<link type="text/css" rel="stylesheet" href="/style.css"/>
<script type="text/javascript" src="/script.js"></script>
<style>
body {
margin: 20px;
font-family: "Lucida Grande";
font-size: 12px;
}
button {
white-space: nowrap;
}
</style>
</head>
<body>
<h1>Welcome to the CSCC demo.</h1>
<p>
This is another demo for CSCC, Common Sense Code Completion. The
original code is written by Martin Kool (@mrtnkl) from Quplo. Please
read the <a href="http://blog.quplo.com">Quplo blog</a> for more
details about CSCC.
</p>
<p>
You are watching a version of CSCC containing fixes from Quplo code and
some exciting additions, like context aware tags. Context aware tags
are those that only appears inside another tag, for example
"option" or "optgroup" tags inside "select".
</p>
<select title="Try it now!">
</select>
<p>
We use this enhanced code in production at Webpop, if you are a
designer or web developer, don't forget to sign up for a beta test
of <a href="http://www.webpop.com">Webpop!</a>. :-)
</p>
<form method="get" action="http://www.webpop.com/">
<input type="submit" value="Sign up now!"/>
</form>
</body>
</html>
<!-- Hope you enjoyed! --></textarea>
</body>
</html>