blob: edd8400e8fdd2416b015ad1a3584c655f605746d (
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>IT Mill Toolkit 5</title>
<link rel="stylesheet" type="text/css" href="demo/css/styles.css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="demo/css/ie.css" />
<![endif]-->
<script type="text/javascript">
window.onload = function() {
itmill.init();
}
var itmill = function() {
var packageContent;
var package;
return {
init : function() {
// Fetch references
packageContent = document.getElementById("package-contents-content");
package = document.getElementById("package-contents");
// Hide panel initially
packageContent.style.display = "none";
// Enable package contents panel hiding/showing
toggle = package.getElementsByTagName("h3")[0];
toggle.style.cursor = "pointer";
toggle.title = "Show/hide package contents";
// Use the quick-n-dirty way to attach event listeners
toggle.onclick = function() {itmill.togglePanel(packageContent)};
// feedback popup
var fb = document.getElementById("feedback").getElementsByTagName("textarea")[0];
fb._originalValue = fb.value;
fb.style.height = "14px";
fb.className = "blur";
fb.onfocus = function() {
fb.className = "";
fb.style.height = "50px";
if(fb.value == fb._originalValue)
fb.value = "";
};
try {
if(window.location.search && -1 != window.location.search.indexOf('gwt.hosted')) {
var hostedParam = window.location.search;
var demolinks = document.getElementsByTagName("a");
for (var k = 0; k < demolinks.length; k++) {
var link = demolinks[k];
if(link.className.indexOf
("demoapp") != -1) {
link.href = link.href + hostedParam;
}
}
}
} catch(e) {}
},
togglePanel : function(which) {
if(which._open) {
which.style.display = "none";
which._open = false;
} else {
which.style.display = "block";
which._open = true;
}
}
};
}();
</script>
</head>
<body id="index">
<div id="container">
<div class="header">
<h1>Introducing IT Mill Toolkit 5</h1>
<em>Effortless web application development for Java-programmers.</em>
<div id="header-links">
<a href="http://dev.itmill.com" title="Open dev.itmill.com">Visit developer site dev.itmill.com</a><br/>
<a href="http://forum.itmill.com" title="Open forum.itmill.com">Visit support site forum.itmill.com</a>
</div>
</div> <!-- /Header -->
<div class="content">
<div id="demos">
<h2>Demos</h2>
<h4 id="sampler"><a class="demoapp" href="sampler/" title="Open Sampler">Open Sampler</a></h4>
<h4>IT Mill Toolkit Sampler</h4>
<p><a href="sampler/" title="Open Sampler">Sampler</a> contains examples of most features, as well as combination examples and useful UI patterns that you can use simply by copy-pasting the code.</p>
<h4>Additional demos</h4>
<ul><li><a class="demoapp" href="Reservr">Reservr – reservation application</a> (<a href="doc/example-source/com/itmill/toolkit/demo/reservation">sources</a>)</li>
<li><a class="demoapp" href="ToolkitTunesLayout/">ToolkitTunes – advanced layout & theme</a> (<a href="doc/example-source/com/itmill/toolkit/demo/ToolkitTunesLayout.java.html">sources</a>)</li>
<li><a class="demoapp" href="Coverflow/">Coverflow – Flex integration</a> (<a href="doc/example-source/com/itmill/toolkit/demo/coverflow">sources</a>)</li>
</ul>
<h2 class="tutorial">Tutorial and Examples</h2>
<h4 id="address-book">Address Book tutorial</h4>
<p>Read the step-by-step tutorial and learn how to build a simple contacts management application.</p>
<ul class="links">
<li><a href="http://itmill.com/documentation/itmill-toolkit-5-tutorial/" class="more">Step-by-step tutorial</a></li>
<li><a href="AddressBook/" class="more">See Address Book application</a></li>
</ul>
<h4>More Examples</h4>
<p>Below is a collection of stand-alone demo applications that will help you get started with the actual Toolkit code.</p>
<ul>
<li><a class="demoapp" href="HelloWorld/">Hello world</a> (<a href="doc/example-source/com/itmill/toolkit/demo/HelloWorld.java.html">sources</a>)</li>
<li><a class="demoapp" href="Calc/">Calculator</a> (<a href="doc/example-source/com/itmill/toolkit/demo/Calc.java.html">sources</a>)</li>
<li><a class="demoapp" href="colorpicker">Colorpicker – creating new widgets</a> (<a href="doc/example-source/com/itmill/toolkit/demo/colorpicker">sources</a>)</li>
</ul>
</div> <!-- /demos -->
<div id="getting-started">
<h2>Getting started</h2>
<h4>Eclipse IDE QuickStart</h4>
<p>The easiest way to start working with IT Mill Toolkit is to
use Eclipse IDE with the Toolkit QuickStart project.
<a href="doc/manual/getting-started.quickstart.html" class="more">Instant Toolkit workspace for Eclipse</a></p>
</div> <!-- /getting-started -->
<div id="support-licensing">
<h2>Support and Licensing</h2>
<h4>Documentation</h4>
<p>Need help using IT Mill Toolkit? Look no further. Everything you need to know is here.</p>
<ul class="links">
<li><a href="doc/manual/index.html">Manual</a> <a href="doc/manual.pdf" class="more"><span>(</span>PDF<span>)</span></a></li>
<li><a href="doc/api/index.html" class="more">JavaDoc API</a></li>
<li><a href="http://forum.itmill.com" class="more">Support forum</a></li>
</ul>
<h4>Open Source Development & Licenses</h4>
<p>IT Mill Toolkit is developed as an Open Source software and its core is licensed under
the liberal Apache 2.0 License. Commercial licenses that include support are also available.</p>
<ul class="links">
<li><a href="http://dev.itmill.com" title="Open dev.itmill.com" class="more">Developer website</a></li>
<li><a href="license/licensing-guidelines.html" class="more">Licensing Guidelines</a></li>
</ul>
</div> <!-- /support-licensing -->
<div id="package-contents" class="panel">
<div class="top"></div>
<h3>» Package contents</h3>
<em>Version @version@</em>
<div id="package-contents-content"> <!-- For JavaScript hooking -->
<div class="library">
<h5>Library</h5>
<p>Contains all you need to start a new Toolkit project (binaries, sources, default
themes and widgetsets). <a href="vaadin-@version@.jar">Toolkit JAR</a></p>
</div>
<div class="documentation">
<h5>Documentation</h5>
<ul>
<li><a href="release-notes.html">Release Notes</a></li>
<li><a href="doc/manual/index.html">Manual</a> (<a href="doc/manual.pdf">view as PDF</a>)</li>
<li><a href="doc/api/index.html">JavaDoc API</a></li>
</ul>
</div>
<div class="support">
<h5>Support & Licensing</h5>
<ul>
<li><a href="http://forum.itmill.com">Support forum</a></li>
<li><a href="license/licensing-guidelines.html">Licensing Guidelines</a></li>
<li>Commercial support and prices from <a href="mailto:sales@itmill.com">sales@itmill.com</a></li>
</ul>
</div>
</div>
<div class="bottom"></div>
</div> <!-- /package-contents -->
<div id="feedback" class="panel">
<div class="top"></div>
<h4>Instant Feedback</h4>
<form action="http://www.itmill.com/formmail.app" enctype="multipart/form-data" method="post">
<input name="SuccessUrl"type="hidden" value="http://www.itmill.com/developers/feedback_ok.htm">
<input name="FormType" type="hidden" value="7" />
Send a quick message to Toolkit R&D team:<br />
<textarea name="feedback" cols="38" rows="3" multiline="true">Comments, suggestions, bug reports - anything.</textarea><br />
<input type="hidden" value="itmill" name="Human"/>
<input type="submit" value="Send" />
</form>
<div class="bottom"></div>
</div>
<div class="clearer"></div>
</div> <!-- /content-->
<div class="footer">
<a href="http://www.itmill.com">IT Mill Ltd.</a>
<em>Interfacing IT</em>
</div> <!-- /footer -->
</div> <!-- /container -->
</body>
</html>
|