You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2008/08/01 15:01:20 UTC

svn commit: r681681 - in /tuscany/sandbox/travelsample/ui-contribution-webapp: ./ pom.xml src/ src/main/ src/main/webapp/ src/main/webapp/META-INF/ src/main/webapp/META-INF/sca-deployables/ src/main/webapp/WEB-INF/ src/main/webapp/WEB-INF/web.xml

Author: antelder
Date: Fri Aug  1 06:01:19 2008
New Revision: 681681

URL: http://svn.apache.org/viewvc?rev=681681&view=rev
Log:
Start of a webapp ui

Added:
    tuscany/sandbox/travelsample/ui-contribution-webapp/
      - copied from r681680, tuscany/sandbox/travelsample/ui-contribution/
    tuscany/sandbox/travelsample/ui-contribution-webapp/src/
    tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/
    tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/
    tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/META-INF/
    tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/META-INF/sca-deployables/
    tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/WEB-INF/
    tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/WEB-INF/web.xml
Modified:
    tuscany/sandbox/travelsample/ui-contribution-webapp/pom.xml

Modified: tuscany/sandbox/travelsample/ui-contribution-webapp/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/ui-contribution-webapp/pom.xml?rev=681681&r1=681680&r2=681681&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/ui-contribution-webapp/pom.xml (original)
+++ tuscany/sandbox/travelsample/ui-contribution-webapp/pom.xml Fri Aug  1 06:01:19 2008
@@ -25,7 +25,8 @@
         <version>1.4-SNAPSHOT</version>
         <!--relativePath>../../pom.xml</relativePath-->
     </parent>
-    <artifactId>scatours-ui-contribution</artifactId>
+    <packaging>war</packaging>
+    <artifactId>scatours-ui</artifactId>
     <name>Apache Tuscany SCA Tours User Interface Contribution</name>
 
     <dependencies>

Added: tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/WEB-INF/web.xml?rev=681681&view=auto
==============================================================================
--- tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/WEB-INF/web.xml (added)
+++ tuscany/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/WEB-INF/web.xml Fri Aug  1 06:01:19 2008
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  * Licensed to the Apache Software Foundation (ASF) under one
+  * or more contributor license agreements.  See the NOTICE file
+  * distributed with this work for additional information
+  * regarding copyright ownership.  The ASF licenses this file
+  * to you under the Apache License, Version 2.0 (the
+  * "License"); you may not use this file except in compliance
+  * with the License.  You may obtain a copy of the License at
+  * 
+  *   http://www.apache.org/licenses/LICENSE-2.0
+  * 
+  * Unless required by applicable law or agreed to in writing,
+  * software distributed under the License is distributed on an
+  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  * KIND, either express or implied.  See the License for the
+  * specific language governing permissions and limitations
+  * under the License.    
+-->
+
+<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web
+Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
+<web-app>
+
+  <display-name>Apache Tuscany SCA Tours User Interface Webapp</display-name>
+
+  <filter>
+    <filter-name>tuscany</filter-name> 
+    <filter-class>org.apache.tuscany.sca.host.webapp.TuscanyServletFilter</filter-class> 
+  </filter>
+
+  <filter-mapping>
+    <filter-name>tuscany</filter-name> 
+    <url-pattern>/*</url-pattern> 
+  </filter-mapping>
+
+  <welcome-file-list id="WelcomeFileList">
+    <welcome-file>scatours.html</welcome-file>
+  </welcome-file-list>
+
+</web-app>