summaryrefslogtreecommitdiffstats
path: root/build/package
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2010-06-21 10:48:08 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2010-06-21 10:48:08 +0000
commit74034e484964c8784e3e4643f86e748fb0925724 (patch)
tree63ec2fe687a417f227d5d99ceb2535dda9348728 /build/package
parentb53c6aead015456504b3b92168988adbb69ea584 (diff)
downloadvaadin-framework-74034e484964c8784e3e4643f86e748fb0925724.tar.gz
vaadin-framework-74034e484964c8784e3e4643f86e748fb0925724.zip
fixes #5168 now creates an optimized client side for the HelloWorld and Calculator example
svn changeset:13812/svn branch:6.4
Diffstat (limited to 'build/package')
-rw-r--r--build/package/WebContent/WEB-INF/web.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/build/package/WebContent/WEB-INF/web.xml b/build/package/WebContent/WEB-INF/web.xml
index 0d7af3dae2..3e795d6199 100644
--- a/build/package/WebContent/WEB-INF/web.xml
+++ b/build/package/WebContent/WEB-INF/web.xml
@@ -72,6 +72,14 @@
<param-name>application</param-name>
<param-value>com.vaadin.demo.HelloWorld</param-value>
</init-param>
+ <!--
+ As an example, we will use an optimized widget set. See
+ SamplerWidgetSet.gwt.xml
+ -->
+ <init-param>
+ <param-name>widgetset</param-name>
+ <param-value>com.vaadin.demo.gwt.OptimizedWidgetSet</param-value>
+ </init-param>
</servlet>
<!-- Calculator demo application -->
@@ -82,6 +90,14 @@
<param-name>application</param-name>
<param-value>com.vaadin.demo.Calc</param-value>
</init-param>
+ <init-param>
+ <!--
+ As an example, we will use an optimized widget set. See
+ SamplerWidgetSet.gwt.xml
+ -->
+ <param-name>widgetset</param-name>
+ <param-value>com.vaadin.demo.gwt.OptimizedWidgetSet</param-value>
+ </init-param>
</servlet>
<!--