summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.5-sdk/frontend/application/index.html
blob: 139e50cabc8e42495bb99c9349e0b7086b9d1e81 (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
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
180
181
182
183
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <title>qooxdoo &raquo; Demo</title>
  <style type="text/css">
*{
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  font-size: 12px;
  font-family: Arial, "Bitstream Vera Sans", Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

p{
  margin: 6px 0;
}

.hide, .build {
	display: none;
}

#demoHead,
#demoFoot{
  position: absolute;
  left: 0px;
  right: 0px;
  width: 100%;
  background: #134275;
  padding: 5px 8px;
  color: #DEFF83;
  font-weight: bold;
  overflow: hidden;
  z-index: 1000000000;
}

#demoHead{
  top: 0px;
}

#demoHead span{
  font-weight: normal;
  color: white;
}

img{
  box-sizing: content-box;
  -moz-box-sizing: content-box;
}

#content{
  margin: 40px 20px 0;
  width: 400px;
}

h1{
  font-size: 22px;
  margin-bottom: 20px;
  color: #134275;
}

h2{
  font-size: 16px;
  color: #134275;
  margin-bottom: 10px;
}

h3{
  font-size: 14px;
  color: #1D65B3;
}

a{
  color: #335EA8;
}

li{
  margin-left: 16px;
  list-style: square;
  margin-bottom: 20px;
}

p{
  font-size: 12px;
}

ul ul{
  margin-top: 20px;
}

p.note{
  padding: 10px;
  background: #F3FFD1;
  color: #444444;
  margin: 20px 0;
}
  </style>
  <script type="text/javascript">
  	function launch(url, w, h) {
		var w = w || 800;
		var h = h || 600;
		var sw = 100;
		var sh = 100;
		
		sw = getCenteredCoord(w, screen.availWidth);
		sh = getCenteredCoord(h, screen.availHeight);
		
		var win = window.open(url, "qx", "width=" + w + ",height=" + h + ",left=" + sw + ",top=" + sh + ",status=no,resizable=no");
	}
	
	function getCenteredCoord(windowDim, screenDim) {
		return (screenDim / 2) - (windowDim / 2);
	}
	</script>
</head>
<body>
  <div id="demoHead">qooxdoo: <span>The new era of web interface development</span></div>

  <div id="content" style="position:absolute;top:0px;left:0px">
    
    <h1>Demo</h1>
   
    <p class="note">The source version is only available in SVN and SDK archives.</p>

    <h2>Applications</h2>
    
    <ul>
      <li>
        <h3>Showcase</h3>
        <p>A good example for qooxdoo's versatility.</p>
        <span class="source"><a href="showcase/build/index.html"><b>Build</b></a> | <a href="showcase/source/index.html">Source (Developer)</a></span>
        <span class="build"><a href="showcase/index.html"><b>Start Showcase</b></a></span>
      </li>
      <li>
        <h3>Feed Reader</h3>
        <p>qooxdoo RSS feed reader using dummy RSS feed data.</p>
      	<span class="source"><a href="feedreader/build/index.html"><b>Build</b></a> | <a href="feedreader/source/index.html">Source (Developer)</a></span>
      	<span class="build"><a href="feedreader/index.html"><b>Open Feed Reader</b></a></span>
      </li>
      <li>
        <h3>Web Mail</h3>
        <p>Complex application-like interface using multiple qooxdoo widgets.</p>
        <span class="source"><a href="#" onclick="launch('webmail/build/index.html')"><b>Build</b></a> | <a href="#" onclick="launch('webmail/source/index.html')">Source (Developer)</a></span>
        <span class="build"><a href="#" onclick="launch('webmail/index.html')"><b>Open Web Mail</b></a></span>
      </li>
      <li>
        <h3>API Viewer</h3>
        <p>qooxdoo based API viewer.</p>
        <span class="source"><a href="apiviewer/build/index.html"><b>Build</b></a> | <a href="apiviewer/source/index.html">Source (Developer)</a></span>
        <span class="build"><a href="apiviewer/index.html"><b>Open API viewer</b></a></span>
      </li>
      <li>
        <h3>Samples</h3>
        <ul>
          <li>
            <h4>Example</h4>
            <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>
            <span class="source"><a href="sample/build/html/example/index.html"><b>Build</b></a> | <a href="sample/source/html/example/index.html">Source (Developer)</a></span>
            <span class="build"><a href="sample/html/example/index.html"><b>Show Example</b></a></span>
          </li>
          <li>
            <h4>Test</h4>
            <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>
            <span class="source"><a href="sample/build/html/test/index.html"><b>Build</b></a> | <a href="sample/source/html/test/index.html">Source (Developer)</a></span>
            <span class="build"><a href="sample/html/test/index.html"><b>Show Test</b></a></span>
          </li>
          <li>
            <h4>Performance</h4>
            <p>These tests are used to test performance of different javascript/qooxdoo rountines and allows them to compare them with each other</p>
            <span class="source"><a href="sample/build/html/performance/index.html"><b>Build</b></a> | <a href="sample/source/html/performance/index.html">Source (Developer)</a></span>
            <span class="build"><a href="sample/html/performance/index.html"><b>Show Performance</b></a></span>
          </li>
        </ul>
      </li>
    </ul>
  </div>
</body>
</html>