This repository has been archived by the owner on Sep 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
179 lines (158 loc) · 3.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>next » Welcome</title>
<style type="text/css">
html, body {
padding: 0;
margin: 0;
background: #FFFFFF;
color: #262626;
background-color: #00ad00;
}
body {
font-family: "Lucida Grande", Verdana, Arial, sans-serif;
font-size: 13px;
line-height: 180%;
letter-spacing: 0.1em;
}
header {
color: #00ad00;
background-color: white;
padding: 10px 40px;
font-size: 18px;
font-family: 'Lucida Grande', 'Verdana', sans-serif;
border-bottom: 4px solid #00ad00;;
}
a:link,
a:visited{
text-decoration: underline;
color: #262626;
}
a:hover,
a:active{
text-decoration: underline;
color: #00ad00;
}
h1 {
font-size: 28px;
line-height: 100%;
margin: 0;
}
h1 a {
font-size: 12px;
float: right;
}
h2 {
color: #00ad00;
font-size: 18px;
margin: 0;
border-bottom: 1px solid #00ad00;
}
h3 {
margin-bottom: 0;
}
p {
margin: 3px 0;
}
ul {
list-style: square;
padding-left: 16px;
color: #565656;
margin-top: 0;
}
div {
padding: 20px;
-webkit-columns: 350px 2;
-moz-columns: 350px 2;
columns: 350px 2;
-webkit-column-gap: 20px;
-moz-column-gap: 20px;
column-gap: 20px;
background-color: white;
}
section {
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
}
article {
background-color: #eee;
border: 1px solid #ddd;
padding: 10px;
margin-bottom: 10px;
}
footer {
color: white;
padding: 10px;
}
footer p {
font-size: 13px;
width: 80%;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<header>
<h1>next <a href="https://github.com/qooxdoo/next">Code on github</a></h1>
</header>
<div>
<section>
<h2>Demos</h2>
<article>
<h3>Play</h3>
<p>Explore next programming interactively: edit code in one pane, and see the result running in another.</p>
<ul>
<li><a href="application/play/source/index.html">Source</a></li>
<li><a href="application/play/build/index.html">Build</a></li>
</ul>
</article>
<article>
<h3>Mobile Showcase</h3>
<p>Showcase for the widgetset of the framework.</p>
<ul>
<li><a href="application/mobileshowcase/source/index.html">Source</a></li>
<li><a href="application/mobileshowcase/build/index.html">Build</a></li>
</ul>
</article>
</section>
<section>
<h2>Development</h2>
<article>
<h3>API Viewer</h3>
<p>Searchable API reference of the next framework.</p>
<ul>
<li><a href="framework/api/index.html">Source</a></li>
</ul>
</article>
<article>
<h3>Unit Tests</h3>
<p>Unit test suit based on Mocha.js and chai.</p>
<ul>
<li><a href="framework/source/test/index-source.html">Source</a></li>
<li><a href="framework/source/test/index-coverage.html">Source (Including code coverage)</a></li>
<li><a href="framework/source/test/index.html">Build</a></li>
<li><a href="framework/source/test/index-module.html">Build (Separate modules)</a></li>
</ul>
</article>
<article>
<h3>Manual</h3>
<p>The manual, including user guide and reference sections.</p>
<ul>
<li><a href="documentation/manual/build/html/index.html">Manual</a></li>
</ul>
</article>
</section>
</div>
<footer>
<p>
As browsers sometimes restrict functionality when a local HTML file is
loaded directly (with the "file://" protocol), it might be advantageous
to run this index file through a web server.
</p>
</footer>
</body>
</html>