Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/www/index.html
blob: 16607374627c598bdeb078fec6b7f927ce35f195 (plain)
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
<!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 Preview</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>