From 5f8478a617d7d145ba94abcc4e197cdd50f76e1f Mon Sep 17 00:00:00 2001
From: Henri Sara
-If you have found an issue with IT Mill Toolkit, demo applications or
+If you have found an issue with Vaadin, demo applications or
documentation, please report it to us. Fill out the following form to
send us any relevant information about the issue.
Click here
diff --git a/WebContent/VAADIN/themes/example/layouts/Developers.html b/WebContent/VAADIN/themes/example/layouts/Developers.html
index 50e054a4f4..bc74566c63 100644
--- a/WebContent/VAADIN/themes/example/layouts/Developers.html
+++ b/WebContent/VAADIN/themes/example/layouts/Developers.html
@@ -2,7 +2,7 @@
-This section contains information for developers using IT Mill Toolkit
+This section contains information for developers using Vaadin
to create Java web applications.
In late 2006 IT Mill ensured funding of the new generation of
-Millstone. IT Mill Toolkit was released in early 2007.
+Millstone. IT Mill Toolkit was released in early 2007 and renamed
+Vaadin in 2009.
1. High compatibility with web browsers and application servers
diff --git a/WebContent/VAADIN/themes/example/layouts/Welcome.html b/WebContent/VAADIN/themes/example/layouts/Welcome.html
index 964753da5b..05abef5f11 100644
--- a/WebContent/VAADIN/themes/example/layouts/Welcome.html
+++ b/WebContent/VAADIN/themes/example/layouts/Welcome.html
@@ -5,15 +5,15 @@
IT Mill is a specialist in enterprise web user interface design and
technology. We offer a variety of products and services for enterprise
application user interface design, -analysis and -implementation. Our
-flagship product is IT Mill Toolkit - a server-side component
-framework for Java EE. IT Mill Toolkit enables creation of highly
-usable browser applications in real Java.
+flagship product is Vaadin - a server-side component framework for
+Java EE. Vaadin enables creation of highly usable browser applications
+in real Java.
-IT Mill Toolkit is a web user interface framework for developing
-high-quality web applications for enterprise and professional use. By
-using standard Java tools and the enterprise environment (Java EE -
+Vaadin is a web user interface framework for developing high-quality
+web applications for enterprise and professional use. By using
+standard Java tools and the enterprise environment (Java EE -
formerly J2EE) we have created the most elegant and complete
architecture for developing user interfaces for web business
applications - for your benefit.
diff --git a/WebContent/statictestfiles/ticket2095_popup.html b/WebContent/statictestfiles/ticket2095_popup.html
index 863b35ad4f..b95dff7ba7 100644
--- a/WebContent/statictestfiles/ticket2095_popup.html
+++ b/WebContent/statictestfiles/ticket2095_popup.html
@@ -15,7 +15,7 @@ function setTarget() {
- * Base class required for all IT Mill Toolkit applications. This class provides
- * all the basic services required by the toolkit. These services allow external
- * discovery and manipulation of the user, {@link com.vaadin.ui.Window
- * windows} and themes, and starting and stopping the application.
+ * Base class required for all Vaadin applications. This class provides all the
+ * basic services required by the toolkit. These services allow external
+ * discovery and manipulation of the user, {@link com.vaadin.ui.Window windows}
+ * and themes, and starting and stopping the application.
*
- * As mentioned, all IT Mill Toolkit applications must inherit this class.
- * However, this is almost all of what one needs to do to create a fully
- * functional application. The only thing a class inheriting the
- *
- * See the class
@@ -76,8 +76,8 @@ import com.vaadin.ui.Window;
* found out, the window itself is queried for a preferred theme. If the window
* does not prefer a specific theme, the application containing the window is
* queried. If neither the application prefers a theme, the default theme for
- * the {@link com.vaadin.terminal.Terminal terminal} is used. The
- * terminal always defines a default theme.
+ * the {@link com.vaadin.terminal.Terminal terminal} is used. The terminal
+ * always defines a default theme.
* For advanced client side programmers Toolkit offers a simple method which can be used to force sync client with server. This may be needed for example if another part of a mashup changes things on server. For advanced client side programmers Vaadin offers a simple method which can be used to force sync client with server. This may be needed for example if another part of a mashup changes things on server. For advanced client side programmers Toolkit offers a simple method which can be used to force sync client with server. This may be needed for example if another part of a mashup changes things on server. For advanced client side programmers Vaadin offers a simple method which can be used to force sync client with server. This may be needed for example if another part of a mashup changes things on server. Provides several fully functional IT Mill Toolkit example applications. These
+ Provides several fully functional Vaadin example applications. These
highlight certain aspects of the toolkit and how it can be
used to produce simple, elegant yet powerful user interface driven
applications.Report a Bug
Developers
Top 5 reasons to choose IT Mill Toolkit
+Top 5 reasons to choose Vaadin
Application
needs to do is implement the init
- * method where it creates the windows it needs to perform its function. Note
- * that all applications must have at least one window: the main window. The
- * first unnamed window constructed by an application automatically becomes the
- * main window which behaves just like other windows with one exception: when
- * accessing windows using URLs the main window corresponds to the application
- * URL whereas other windows correspond to a URL gotten by catenating the
- * window's name to the application URL.
+ * As mentioned, all Vaadin applications must inherit this class. However, this
+ * is almost all of what one needs to do to create a fully functional
+ * application. The only thing a class inheriting the Application
+ * needs to do is implement the init
method where it creates the
+ * windows it needs to perform its function. Note that all applications must
+ * have at least one window: the main window. The first unnamed window
+ * constructed by an application automatically becomes the main window which
+ * behaves just like other windows with one exception: when accessing windows
+ * using URLs the main window corresponds to the application URL whereas other
+ * windows correspond to a URL gotten by catenating the window's name to the
+ * application URL.
* com.vaadin.demo.HelloWorld
for a simple
- * example of a fully working application.
+ * See the class com.vaadin.demo.HelloWorld
for a simple example of
+ * a fully working application.
*
javascript:itmill.forceSync();";
+ public static final String txt = "
javascript:vaadin.forceSync();";
private final VerticalLayout main;
private final Label l;
diff --git a/src/com/vaadin/automatedtests/featurebrowser/RichTextExample.java b/src/com/vaadin/automatedtests/featurebrowser/RichTextExample.java
index 0fb21b2200..84c16e3a26 100644
--- a/src/com/vaadin/automatedtests/featurebrowser/RichTextExample.java
+++ b/src/com/vaadin/automatedtests/featurebrowser/RichTextExample.java
@@ -21,7 +21,7 @@ public class RichTextExample extends CustomComponent {
public static final String txt = "RichText editor example
"
+ "To edit this text, press the Edit button below."
+ "
"
- + "See the manual "
+ + "See the Book of Vaadin "
+ "for more information.";
private final VerticalLayout main;
diff --git a/src/com/vaadin/automatedtests/util/RandomComponents.java b/src/com/vaadin/automatedtests/util/RandomComponents.java
index 8ddafaf62b..46446d8f3b 100644
--- a/src/com/vaadin/automatedtests/util/RandomComponents.java
+++ b/src/com/vaadin/automatedtests/util/RandomComponents.java
@@ -165,7 +165,7 @@ public class RandomComponents implements Serializable {
break;
case 4:
// Link
- result = new Link("", new ExternalResource("http://www.itmill.com"));
+ result = new Link("", new ExternalResource("http://www.vaadin.com"));
result.setCaption("Link component " + caption);
break;
case 5:
diff --git a/src/com/vaadin/data/util/IndexedContainer.java b/src/com/vaadin/data/util/IndexedContainer.java
index 9ce00697a2..617fe93e14 100644
--- a/src/com/vaadin/data/util/IndexedContainer.java
+++ b/src/com/vaadin/data/util/IndexedContainer.java
@@ -1018,7 +1018,9 @@ public class IndexedContainer implements Container.Indexed,
/*
* A class implementing the com.vaadin.data.Item interface to be contained
- * in the list. @author IT Mill Ltd.
+ * in the list.
+ *
+ * @author IT Mill Ltd.
*
* @version @VERSION@
*
diff --git a/src/com/vaadin/demo/ToolkitTunesLayout.java b/src/com/vaadin/demo/ToolkitTunesLayout.java
index 4951eb2105..c3615e934c 100644
--- a/src/com/vaadin/demo/ToolkitTunesLayout.java
+++ b/src/com/vaadin/demo/ToolkitTunesLayout.java
@@ -46,7 +46,7 @@ public class ToolkitTunesLayout extends Application {
root
.showNotification(
- "This is an example of how you can do layouts in IT Mill Toolkit.
It is not a working sound player.",
+ "This is an example of how you can do layouts in Vaadin.
It is not a working sound player.",
Notification.TYPE_HUMANIZED_MESSAGE);
// Our root window contains one VerticalLayout by default, let's make
diff --git a/src/com/vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java b/src/com/vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java
index c9bbedbd66..fc37e6971a 100644
--- a/src/com/vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java
+++ b/src/com/vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java
@@ -15,7 +15,7 @@ import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.Widget;
/**
- * A regular GWT component without integration with IT Mill Toolkit.
+ * A regular GWT component without integration with Vaadin.
*/
public class GwtColorPicker extends Composite implements ClickListener {
diff --git a/src/com/vaadin/demo/colorpicker/gwt/client/ui/VColorPicker.java b/src/com/vaadin/demo/colorpicker/gwt/client/ui/VColorPicker.java
index 7b90653c6a..e225dbe268 100644
--- a/src/com/vaadin/demo/colorpicker/gwt/client/ui/VColorPicker.java
+++ b/src/com/vaadin/demo/colorpicker/gwt/client/ui/VColorPicker.java
@@ -21,7 +21,7 @@ public class VColorPicker extends GwtColorPicker implements Paintable {
/**
* The constructor should first call super() to initialize the component and
- * then handle any initialization relevant to IT Mill Toolkit.
+ * then handle any initialization relevant to Vaadin.
*/
public VColorPicker() {
// The superclass has a lot of relevant initialization
diff --git a/src/com/vaadin/demo/featurebrowser/ButtonExample.java b/src/com/vaadin/demo/featurebrowser/ButtonExample.java
index 66a22ad657..d0e40363bf 100644
--- a/src/com/vaadin/demo/featurebrowser/ButtonExample.java
+++ b/src/com/vaadin/demo/featurebrowser/ButtonExample.java
@@ -96,19 +96,19 @@ public class ButtonExample extends CustomComponent implements
+ " server-initiated window opening.");
desc.setContentMode(Label.CONTENT_XHTML);
links.addComponent(desc);
- Link l = new Link("IT Mill home", new ExternalResource(
- "http://www.itmill.com"));
+ Link l = new Link("Vaadin home", new ExternalResource(
+ "http://www.vaadin.com"));
l.setDescription("Link without target name, opens in this window");
links.addComponent(l);
- l = new Link("IT Mill home (new window)", new ExternalResource(
- "http://www.itmill.com"));
+ l = new Link("Vaadin home (new window)", new ExternalResource(
+ "http://www.vaadin.com"));
l.setTargetName("_blank");
l.setDescription("Link with target name, opens in new window");
links.addComponent(l);
- l = new Link("IT Mill home (new window, less decor)",
- new ExternalResource("http://www.itmill.com"));
+ l = new Link("Vaadin home (new window, less decor)",
+ new ExternalResource("http://www.vaadin.com"));
l.setTargetName("_blank");
l.setTargetBorder(Link.TARGET_BORDER_MINIMAL);
l.setTargetName("_blank");
@@ -116,8 +116,8 @@ public class ButtonExample extends CustomComponent implements
.setDescription("Link with target name and BORDER_MINIMAL, opens in new window with less decor");
links.addComponent(l);
- l = new Link("IT Mill home (new 200x200 window, no decor, icon)",
- new ExternalResource("http://www.itmill.com"), "_blank", 200,
+ l = new Link("Vaadin home (new 200x200 window, no decor, icon)",
+ new ExternalResource("http://www.vaadin.com"), "_blank", 200,
200, Link.TARGET_BORDER_NONE);
l.setTargetName("_blank");
l
diff --git a/src/com/vaadin/demo/featurebrowser/EmbeddedBrowserExample.java b/src/com/vaadin/demo/featurebrowser/EmbeddedBrowserExample.java
index 64800199c7..5093a12d32 100644
--- a/src/com/vaadin/demo/featurebrowser/EmbeddedBrowserExample.java
+++ b/src/com/vaadin/demo/featurebrowser/EmbeddedBrowserExample.java
@@ -25,16 +25,14 @@ public class EmbeddedBrowserExample extends VerticalLayout implements
Select.ValueChangeListener {
// Default URL to open.
- private static final String DEFAULT_URL = "http://www.itmill.com/index_itmill_toolkit.htm";
+ private static final String DEFAULT_URL = "http://www.vaadin.com/";
// The embedded page
Embedded emb = new Embedded();
public EmbeddedBrowserExample() {
- this(new String[] { DEFAULT_URL,
- "http://www.itmill.com/index_developers.htm",
- "http://toolkit.itmill.com/demo/doc/api/",
- "http://www.itmill.com/manual/index.html" });
+ this(new String[] { DEFAULT_URL, "http://www.vaadin.com/learn",
+ "http://www.vaadin.com/api", "http://www.vaadin.com/book" });
}
public EmbeddedBrowserExample(String[] urls) {
@@ -80,7 +78,7 @@ public class EmbeddedBrowserExample extends VerticalLayout implements
} catch (MalformedURLException e) {
getWindow().showNotification("Invalid address",
- e.getMessage() + " (example: http://www.itmill.com)",
+ e.getMessage() + " (example: http://www.vaadin.com)",
Notification.TYPE_WARNING_MESSAGE);
}
diff --git a/src/com/vaadin/demo/featurebrowser/FeatureBrowser.java b/src/com/vaadin/demo/featurebrowser/FeatureBrowser.java
index 5a583f3724..1b06f43a5d 100644
--- a/src/com/vaadin/demo/featurebrowser/FeatureBrowser.java
+++ b/src/com/vaadin/demo/featurebrowser/FeatureBrowser.java
@@ -107,8 +107,7 @@ public class FeatureBrowser extends com.vaadin.Application implements
// Windowing
{ "Misc", "Windowing", "About windowing", WindowingExample.class },
// JavaScript API
- { "Misc", "JavaScript API",
- "JavaScript to IT Mill Toolkit communication",
+ { "Misc", "JavaScript API", "JavaScript to Vaadin communication",
JavaScriptAPIExample.class },
// END
};
@@ -120,7 +119,7 @@ public class FeatureBrowser extends com.vaadin.Application implements
setTheme("example");
// Create new window for the application and give the window a visible.
- final Window main = new Window("IT Mill Toolkit 5");
+ final Window main = new Window("Vaadin 6");
// set as main window
setMainWindow(main);
@@ -268,8 +267,8 @@ public class FeatureBrowser extends com.vaadin.Application implements
exp.setExpandRatio(ts, 1);
final Label status = new Label(
- "Developer Area"
- + " | Documentation");
+ "30 Seconds to Vaadin"
+ + " | Book of Vaadin");
status.setContentMode(Label.CONTENT_XHTML);
exp.addComponent(status);
exp.setComponentAlignment(status, Alignment.MIDDLE_RIGHT);
diff --git a/src/com/vaadin/demo/featurebrowser/JavaScriptAPIExample.java b/src/com/vaadin/demo/featurebrowser/JavaScriptAPIExample.java
index 42f07648d6..06b3815d9a 100644
--- a/src/com/vaadin/demo/featurebrowser/JavaScriptAPIExample.java
+++ b/src/com/vaadin/demo/featurebrowser/JavaScriptAPIExample.java
@@ -22,7 +22,7 @@ import com.vaadin.ui.Button.ClickEvent;
*/
public class JavaScriptAPIExample extends CustomComponent {
- public static final String txt = "
javascript:itmill.forceSync();";
+ public static final String txt = "
javascript:vaadin.forceSync();";
private final VerticalLayout main;
private final Label l;
diff --git a/src/com/vaadin/demo/featurebrowser/RichTextExample.java b/src/com/vaadin/demo/featurebrowser/RichTextExample.java
index 475f128e7a..d3f4315830 100644
--- a/src/com/vaadin/demo/featurebrowser/RichTextExample.java
+++ b/src/com/vaadin/demo/featurebrowser/RichTextExample.java
@@ -21,7 +21,7 @@ public class RichTextExample extends CustomComponent {
public static final String txt = "RichText editor example
"
+ "To edit this text, press the Edit button below."
+ "
"
- + "See the manual "
+ + "See the Book of Vaadin "
+ "for more information.";
private final VerticalLayout main;
diff --git a/src/com/vaadin/demo/package.html b/src/com/vaadin/demo/package.html
index d9bb6824f7..0a6d902e31 100644
--- a/src/com/vaadin/demo/package.html
+++ b/src/com/vaadin/demo/package.html
@@ -5,7 +5,7 @@
-
- * Good candidates are IT Mill classes being demoed in the example, or other + * Good candidates are Vaadin classes being demoed in the example, or other * classes playing an important role in the example. *
*
diff --git a/src/com/vaadin/demo/sampler/features/commons/IconsExample.java b/src/com/vaadin/demo/sampler/features/commons/IconsExample.java
index 39d31dbfcf..84cb25d8e4 100644
--- a/src/com/vaadin/demo/sampler/features/commons/IconsExample.java
+++ b/src/com/vaadin/demo/sampler/features/commons/IconsExample.java
@@ -28,20 +28,20 @@ public class IconsExample extends VerticalLayout {
Panel p = new Panel("Handy links");
p.setIcon(new ThemeResource("icons/icon_info.gif"));
addComponent(p);
- Link lnk = new Link("http://www.itmill.com", new ExternalResource(
- "http://www.itmill.com"));
+ Link lnk = new Link("http://www.vaadin.com", new ExternalResource(
+ "http://www.vaadin.com"));
lnk.setIcon(new ThemeResource("icons/icon_world.gif"));
p.addComponent(lnk);
- lnk = new Link("http://www.itmill.com/developers/",
- new ExternalResource("http://www.itmill.com/developers/"));
+ lnk = new Link("http://www.vaadin.com/learn", new ExternalResource(
+ "http://www.vaadin.com/learn"));
lnk.setIcon(new ThemeResource("icons/icon_world.gif"));
p.addComponent(lnk);
- lnk = new Link("http://dev.itmill.com/", new ExternalResource(
- "http://dev.itmill.com/"));
+ lnk = new Link("http://dev.vaadin.com/", new ExternalResource(
+ "http://dev.vaadin.com/"));
lnk.setIcon(new ThemeResource("icons/icon_world.gif"));
p.addComponent(lnk);
- lnk = new Link("http://forum.itmill.com", new ExternalResource(
- "http://forum.itmill.com"));
+ lnk = new Link("http://www.vaadin.com/forum", new ExternalResource(
+ "http://www.vaadin.com/forum"));
lnk.setIcon(new ThemeResource("icons/icon_world.gif"));
p.addComponent(lnk);
diff --git a/src/com/vaadin/demo/tutorial/addressbook/data/PersonContainer.java b/src/com/vaadin/demo/tutorial/addressbook/data/PersonContainer.java
index d0dfb262bf..5be844cc7f 100644
--- a/src/com/vaadin/demo/tutorial/addressbook/data/PersonContainer.java
+++ b/src/com/vaadin/demo/tutorial/addressbook/data/PersonContainer.java
@@ -68,7 +68,7 @@ public class PersonContainer extends BeanItemContainer Provides classes and interfaces for the inheritable event
model. The model supports inheritable events and a flexible way of
registering and unregistering event listeners. It's a fundamental building
-block of the IT Mill Toolkit, and as it is included in
+block of Vaadin, and as it is included in
{@link com.vaadin.ui.AbstractComponent}, all UI components
automatically support it. This package is the base of the IT Mill Toolkit. The base package
-contains the Application class, the starting point of any aplication that uses IT Mill Toolkit.
+ This package is the base of Vaadin. The base package
+contains the Application class, the starting point of any aplication that uses Vaadin.
The sub-packages from this point contain application components and utilities.
Provides some general service classes used throughout a IT Mill Toolkit
+ Provides some general service classes used throughout Vaadin
based applications. Provides interfaces and classes in the IT Mill Toolkit. Provides interfaces and classes in Vaadin.Package Specification
- IT Mill Toolkit is composed of the following packages:
+ Vaadin is composed of the following packages:
Package Specification
--
cgit v1.2.3