summaryrefslogtreecommitdiff
path: root/swat/apps/qooxdoo-examples/index.html
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2006-10-06 15:40:18 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:20:40 -0500
commit10c06a1968dbf39d8a3790077a3537b8323f36ff (patch)
treef7389aac531dfe7c0d538879bdbd15cca33156e4 /swat/apps/qooxdoo-examples/index.html
parent77fc14c0818498e277a79196fa4f6e15f4b607b1 (diff)
downloadsamba-10c06a1968dbf39d8a3790077a3537b8323f36ff.tar.gz
samba-10c06a1968dbf39d8a3790077a3537b8323f36ff.tar.bz2
samba-10c06a1968dbf39d8a3790077a3537b8323f36ff.zip
r19141: add a reasonable subset of the qooxdoo runtime environment, and example applications
(This used to be commit ff28ab7314ff1eebcd62f387678b816091af8121)
Diffstat (limited to 'swat/apps/qooxdoo-examples/index.html')
-rw-r--r--swat/apps/qooxdoo-examples/index.html82
1 files changed, 82 insertions, 0 deletions
diff --git a/swat/apps/qooxdoo-examples/index.html b/swat/apps/qooxdoo-examples/index.html
new file mode 100644
index 0000000000..1ddba85ac8
--- /dev/null
+++ b/swat/apps/qooxdoo-examples/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="at-a-glance/index.html">At-a-Glance</a></h2>
+ <p>A good example for qooxdoo's versatility.</p>
+ </li>
+ <li>
+ <h2><a href="showcase/Showcase_1.html">Showcase</a></h2>
+ <p>Complex application-like interface using multiple qooxdoo widgets.</p>
+ </li>
+ <li>
+ <h2><a href="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="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="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>