summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/index.html
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2007-01-03 20:17:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:36:09 -0500
commit626bb8efb0c825f332c937ffaaadc9b402079539 (patch)
tree1c95f69d157b24f64edff470143f5f55a09cfca6 /webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/index.html
parenteeddcf8cc8eb655d7c40f1fd5f7fd422529f4f98 (diff)
downloadsamba-626bb8efb0c825f332c937ffaaadc9b402079539.tar.gz
samba-626bb8efb0c825f332c937ffaaadc9b402079539.tar.bz2
samba-626bb8efb0c825f332c937ffaaadc9b402079539.zip
r20517: re-add cleaned-up webapps
(This used to be commit 5a3d6ad0b7cf0ecf8b57b4088b19f7d4291c990b)
Diffstat (limited to 'webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/index.html')
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/index.html82
1 files changed, 82 insertions, 0 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/index.html b/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/index.html
new file mode 100644
index 0000000000..96c1bfda59
--- /dev/null
+++ b/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/index.html
@@ -0,0 +1,82 @@
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
+ <title>qooxdoo demo</title>
+ <link type="text/css" rel="stylesheet" href="resource/css/layout.css"/>
+ <!--[if IE]>
+ <link type="text/css" rel="stylesheet" href="resource/css/layout_ie.css"/>
+ <![endif]-->
+ <style type="text/css">
+*{
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+}
+
+img{
+ box-sizing: content-box;
+ -moz-box-sizing: content-box;
+}
+
+#content{
+ margin: 40px 20px 0;
+ width: 400px;
+}
+
+h1{
+ font-size: 20px;
+ margin-bottom: 20px;
+}
+
+h2{
+ font-size: 14px;
+}
+
+a{
+ color: #335EA8;
+}
+
+li{
+ margin-left: 16px;
+ list-style: square;
+ margin-bottom: 20px;
+}
+
+p{
+ font-size: 12px;
+}
+ </style>
+</head>
+<body>
+ <div id="demoHead">qooxdoo: <span>The new era of web interface development</span></div>
+ <div id="demoFoot"></div>
+
+ <div id="content" style="position:absolute;top:0px;left:0px">
+ <h1>qooxdoo <span>demo</demo></h1>
+
+ <ul>
+ <li>
+ <h2><a href="html/at-a-glance/index.html">At-a-Glance</a></h2>
+ <p>A good example for qooxdoo's versatility.</p>
+ </li>
+ <li>
+ <h2><a href="html/showcase/Showcase_1.html">Showcase</a></h2>
+ <p>Complex application-like interface using multiple qooxdoo widgets.</p>
+ </li>
+ <li>
+ <h2><a href="html/example/index.html">Example</a></h2>
+ <p>Easily to understand examples. The basic features of each qooxdoo widget is demonstrated in a separate example. This section is probably the one you are looking for!</p>
+ </li>
+ <li>
+ <h2><a href="html/test/index.html">Test</a></h2>
+ <p>These tests demonstrate internal functionality of qooxdoo. Not really useful for the typical qooxdoo user, but needed for developers to test some complex layout stuff, performance related problems and more. The tests may not always be up-to-date and functioning!</p>
+ </li>
+ <li>
+ <h2><a href="html/performance/index.html">Performance</a></h2>
+ <p>These tests are used to test performance of different javascript/qooxdoo rountines and allows them to compare them with each other</p>
+ </li>
+ </ul>
+ </div>
+</body>
+</html>