Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/www/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/index.html')
-rw-r--r--www/index.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/www/index.html b/www/index.html
new file mode 100644
index 0000000..2d2e9a8
--- /dev/null
+++ b/www/index.html
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML>
+<html lang="en-US">
+<head>
+ <meta charset="UTF-8">
+ <title></title>
+ <link rel="stylesheet" href="css/main.css" type="text/css" />
+ <script src="/www/js/jquery-1.6.2.js" type="text/javascript"></script>
+</head>
+<body>
+ <div id="content" class="bling">
+ <header><h1>Sugar WebSDK <span id="beta">beta</span></h1></header>
+ <section>
+ <article><h2>Technology Demonstration</h2></article>
+ <p>The following are examples of things that can be achieved with WebSDK.</p>
+ <ul>
+ <li><input type="button" class="btn"
+ value="Webpy: WebSDK Studio" onclick='location.href="/edit?filename=appservice.py"' />
+ - <input type="button" class="btn"
+ value="Split view" onclick='location.href="/vsplit"' />
+ <p class="subtitle">Featuring Ace Editor and some tricks.</p>
+ </li>
+ <li><input type="button" class="btn"
+ value="Webpy bundle browser" onclick='location.href="/browse"' />
+ <p class="subtitle"><i>"Write less, do more".</i> Jquery is a bag of candy.</p>
+ </li>
+ <li><input type="button" class="btn"
+ value="Call root python controller" onclick='location.href="/"'>
+ </li>
+ <li><input type="button" class="btn"
+ value="Sugar Integration: Journal" onclick='location.href="/journal"' />
+<input type="button" class="btn"
+ value="Sugar Integration: Collaboration" onclick='location.href="/collaboration"' />
+ <p class="subtitle">Not yet implemented.</p>
+ </li>
+ <li><input type="button" class="btn"
+ value="Debugging tools." onclick='location.href="/debug"' />
+ <p class="subtitle">Begin with right click, inspect element.</p>
+ </li>
+ </ul>
+ </section>
+ </div>
+ <script>
+ window.onload = function() {
+ $('#content').fadeIn(700);
+ $('#beta').delay(1500).fadeIn("slow");
+ }
+ </script>
+</body>
+</html>