diff options
author | Marc Englund <marc.englund@itmill.com> | 2007-11-27 15:16:48 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2007-11-27 15:16:48 +0000 |
commit | 2ab0680ac57b82245b2deadcb65300b48b0a78ce (patch) | |
tree | ebed51a71bccc4c604173dc3328bb6a90de6976e /WebContent/WEB-INF/web.xml | |
parent | 0710b724cef0c0c543a48e1869dec87011269391 (diff) | |
download | vaadin-framework-2ab0680ac57b82245b2deadcb65300b48b0a78ce.tar.gz vaadin-framework-2ab0680ac57b82245b2deadcb65300b48b0a78ce.zip |
Initial commit of a new demo, name needs to be re-thought...
svn changeset:3004/svn branch:trunk
Diffstat (limited to 'WebContent/WEB-INF/web.xml')
-rw-r--r-- | WebContent/WEB-INF/web.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml index d2efa61f31..3a59bc005a 100644 --- a/WebContent/WEB-INF/web.xml +++ b/WebContent/WEB-INF/web.xml @@ -341,6 +341,14 @@ <param-value>com.itmill.toolkit.demo.WindowedDemos</param-value>
</init-param>
</servlet>
+ <servlet>
+ <servlet-name>ApplicationDemo</servlet-name>
+ <servlet-class>com.itmill.toolkit.terminal.gwt.server.ApplicationServlet</servlet-class>
+ <init-param>
+ <param-name>application</param-name>
+ <param-value>com.itmill.toolkit.demo.ApplicationDemo</param-value>
+ </init-param>
+ </servlet>
<servlet-mapping> <servlet-name>DemoTestBench</servlet-name> @@ -502,6 +510,10 @@ <servlet-name>WindowedDemos</servlet-name>
<url-pattern>/WindowedDemos/*</url-pattern>
</servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>ApplicationDemo</servlet-name>
+ <url-pattern>/ApplicationDemo/*</url-pattern>
+ </servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
|