Browse Source

Added version information to welcome page.

Added TODO texts.

Removed obsolete code.

svn changeset:594/svn branch:toolkit
tags/6.7.0.beta1
Jani Laakso 17 years ago
parent
commit
192bea73c1

+ 0
- 14
src/com/itmill/toolkit/demo/features/FeatureBrowser.java View File

@@ -81,20 +81,6 @@ public class FeatureBrowser extends CustomComponent implements
left.addComponent(features);
layout.addComponent(left);

// Welcome temporarily disabled
// Label greeting = new Label(WELCOME_TEXT, Label.CONTENT_XHTML);
// OrderedLayout welcomePanel = new OrderedLayout();
// welcome =
// new Embedded(
// "",
// new ClassResource(
// getClass(),
// "itmill.gif",
// getApplication()));
// welcomePanel.addComponent(welcome);
// welcomePanel.addComponent(greeting);
// layout.addComponent(welcomePanel);

// Theme selector
left.addComponent(themeSelector);
themeSelector.addItem("demo");

+ 1
- 1
src/com/itmill/toolkit/demo/features/IntroBasic.java View File

@@ -68,7 +68,7 @@ public class IntroBasic extends Feature {
}

protected String getTitle() {
return "Introduction of basic UI components";
return "Introduction of basic UI components (TODO)";
}

}

+ 1
- 1
src/com/itmill/toolkit/demo/features/IntroComponents.java View File

@@ -68,7 +68,7 @@ public class IntroComponents extends Feature {
}

protected String getTitle() {
return "";
return "Introduction of basic components (TODO)";
}

}

+ 1
- 1
src/com/itmill/toolkit/demo/features/IntroDataHandling.java View File

@@ -68,7 +68,7 @@ public class IntroDataHandling extends Feature {
}

protected String getTitle() {
return "Introduction for data handling";
return "Introduction for data handling (TODO)";
}

}

+ 1
- 1
src/com/itmill/toolkit/demo/features/IntroDataModel.java View File

@@ -68,7 +68,7 @@ public class IntroDataModel extends Feature {
}

protected String getTitle() {
return "Introduction for data model";
return "Introduction for data model (TODO)";
}

}

+ 1
- 1
src/com/itmill/toolkit/demo/features/IntroItemContainers.java View File

@@ -68,7 +68,7 @@ public class IntroItemContainers extends Feature {
}

protected String getTitle() {
return "Introduction for item containers";
return "Introduction for item containers (TODO)";
}

}

+ 1
- 1
src/com/itmill/toolkit/demo/features/IntroLayouts.java View File

@@ -68,7 +68,7 @@ public class IntroLayouts extends Feature {
}

protected String getTitle() {
return "Introduction for layouts";
return "Introduction for layouts (TODO)";
}

}

+ 1
- 1
src/com/itmill/toolkit/demo/features/IntroTerminal.java View File

@@ -68,7 +68,7 @@ public class IntroTerminal extends Feature {
}

protected String getTitle() {
return "Introduction for terminals";
return "Introduction for terminals (TODO)";
}

}

+ 3
- 2
src/com/itmill/toolkit/demo/features/IntroWelcome.java View File

@@ -54,7 +54,8 @@ public class IntroWelcome extends Feature {
Label lab = new Label();
lab.setStyle("featurebrowser-none");
Label version = new Label();
version.setValue("IT Mill Toolkit Version: "+ApplicationServlet.VERSION);
version.setValue("IT Mill Toolkit version: "+ApplicationServlet.VERSION);
l.addComponent(version);
l.addComponent(lab);

// Properties
@@ -79,7 +80,7 @@ public class IntroWelcome extends Feature {
}

protected String getTitle() {
return "Welcome to the IT Mill Toolkit feature tour!";
return "Welcome to the IT Mill Toolkit feature tour! (TODO)";
}

}

Loading…
Cancel
Save