You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by ma...@apache.org on 2005/08/05 06:39:42 UTC

svn commit: r230396 - in /struts/sandbox/trunk/ti: ./ src/example/ src/example/WEB-INF/ src/example/WEB-INF/src/ src/java/ src/java/org/apache/ti/config/ src/java/org/apache/ti/processor/chain/ src/test/org/apache/ti/processor/chain/

Author: martinc
Date: Thu Aug  4 21:39:37 2005
New Revision: 230396

URL: http://svn.apache.org/viewcvs?rev=230396&view=rev
Log:
Fix line ends and set eol-style and keyword properties.

Modified:
    struts/sandbox/trunk/ti/LICENSE.txt   (props changed)
    struts/sandbox/trunk/ti/NOTICE.txt   (contents, props changed)
    struts/sandbox/trunk/ti/README.txt   (contents, props changed)
    struts/sandbox/trunk/ti/project.xml   (contents, props changed)
    struts/sandbox/trunk/ti/src/example/WEB-INF/src/build.xml   (props changed)
    struts/sandbox/trunk/ti/src/example/WEB-INF/web.xml   (props changed)
    struts/sandbox/trunk/ti/src/example/index.jsp   (props changed)
    struts/sandbox/trunk/ti/src/java/org/apache/ti/config/spring-config-servlet.xml   (props changed)
    struts/sandbox/trunk/ti/src/java/org/apache/ti/config/velocity.properties   (contents, props changed)
    struts/sandbox/trunk/ti/src/java/org/apache/ti/processor/chain/chain-config-servlet.xml   (props changed)
    struts/sandbox/trunk/ti/src/java/xwork-default.xml   (props changed)
    struts/sandbox/trunk/ti/src/test/org/apache/ti/processor/chain/chain-config.xml   (props changed)

Propchange: struts/sandbox/trunk/ti/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: struts/sandbox/trunk/ti/NOTICE.txt
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/NOTICE.txt?rev=230396&r1=230395&r2=230396&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/NOTICE.txt (original)
+++ struts/sandbox/trunk/ti/NOTICE.txt Thu Aug  4 21:39:37 2005
@@ -1,8 +1,8 @@
-NOTICE
-
-This software consists of voluntary contributions made by many
-individuals on behalf of the Apache Software Foundation
-
-Portions of this software are Copyright(c) 2002-2003 by 
-OpenSymphony and provided under the Open Symphony License 
+NOTICE
+
+This software consists of voluntary contributions made by many
+individuals on behalf of the Apache Software Foundation
+
+Portions of this software are Copyright(c) 2002-2003 by 
+OpenSymphony and provided under the Open Symphony License 
 [http://opensymphony.com/xwork/license.action].

Propchange: struts/sandbox/trunk/ti/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: struts/sandbox/trunk/ti/README.txt
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/README.txt?rev=230396&r1=230395&r2=230396&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/README.txt (original)
+++ struts/sandbox/trunk/ti/README.txt Thu Aug  4 21:39:37 2005
@@ -1,80 +1,80 @@
-OVERVIEW
-
-Struts Ti is a simplified Model 2 framework for developing webapps which
-allows the developer better access to the underlying servlet/portlet
-environment. 
-
-Struts Ti serves a niche of web applications that don’t want the
-additional complexity of server-side components and verbose
-configuration, yet want the structure and controller features of a
-modern web framework. Struts Ti builds on the directions of Struts 1.x,
-yet re-implements the framework to provide a clean slate for the next
-generation of Struts Ti. It aims to combine the simplicity of Ruby on
-Rails and NanoWeb, the refinement of WebWork 2, the tool-friendly
-authoring and Page Flow of Beehive, and the lessons learned from Struts 1.x.
-
-The key word for Struts Ti is simplicity. Ideally, Struts Ti should
-approach Ruby on Rails levels of easy of use, yet scale up to large
-applications providing a smooth transition to JSF/Shale if desired.
-
-KEY FEATURES
-
-    * POJO-based action that combines an Action and ActionForm in a
-similar manner to JSF backing beans and WebWork 2 Commands
-    * Intelligent defaults utilizing naming and placement conventions
-to require minimal, if any, configuration per page, however it will be
-possible to override everything on a global and per-action basis
-    * Configuration can be “assumed” or declared through annotations,
-xml or properties files, or any other pluggable mechanism
-    * Pluggable EL for data binding defaulting to JSP 2.0 EL but
-allowing OGNL or even BeanUtils
-    * Integration of a dialog or page flow capability drawing from
-Beehive, Spring’s web flow, and Shale’s Dialogs.
-    * Per-Action optional interceptor chain ala WebWork 2
-    * Built-in dependency injection support
-
-DESIGN GOALS
-
-    * No servlet dependency in core framework, portlet and JSF support
-out of the box
-    * Spring-based dependency injection in core to allow for pluggability
-    * No bias to any view technology
-    * Ability to layer Struts 1.x compatibility on top
-    * Highly toolable
-    * Smooth integration into a portal/portlet environment
-    * AJAX-friendly
-
-IMPLEMENTATION
-
-    * Built on the backbone of commons-chain
-    * No restriction on multiple Servlets and/or Servlet Filter
-implementations
-    * Key decision points (action selection for example) use CoR chain
-for maximum flexiblity
-    * Configuration specified using XDoclet (Java 1.4) or Annotations
-(Java 5+), both supported out of the box
-
-DEPENDENCIES
-
-    * Servlets 2.4
-    * Java 1.4 runtime, Java 1.5 to build
-    * JSP 2.0 if taglibs used
-    * XWork 1.5
-
-Existing project collaboration
-
-    * XWork/WebWork using their XWork and possibly parts/all of their
-tag libraries
-    * Beehive using the Page Flow and annotations
-
-STATUS
-
-A working, if feature sparce, framework is in place.  
-
-The code is available in the Struts sandbox, but at this point, 
-the project site and more detailed design discussions are on an
-external server:
-
-https://www.twdata.org/projects/struts-ti
-
-####
+OVERVIEW
+
+Struts Ti is a simplified Model 2 framework for developing webapps which
+allows the developer better access to the underlying servlet/portlet
+environment. 
+
+Struts Ti serves a niche of web applications that don’t want the
+additional complexity of server-side components and verbose
+configuration, yet want the structure and controller features of a
+modern web framework. Struts Ti builds on the directions of Struts 1.x,
+yet re-implements the framework to provide a clean slate for the next
+generation of Struts Ti. It aims to combine the simplicity of Ruby on
+Rails and NanoWeb, the refinement of WebWork 2, the tool-friendly
+authoring and Page Flow of Beehive, and the lessons learned from Struts 1.x.
+
+The key word for Struts Ti is simplicity. Ideally, Struts Ti should
+approach Ruby on Rails levels of easy of use, yet scale up to large
+applications providing a smooth transition to JSF/Shale if desired.
+
+KEY FEATURES
+
+    * POJO-based action that combines an Action and ActionForm in a
+similar manner to JSF backing beans and WebWork 2 Commands
+    * Intelligent defaults utilizing naming and placement conventions
+to require minimal, if any, configuration per page, however it will be
+possible to override everything on a global and per-action basis
+    * Configuration can be “assumed” or declared through annotations,
+xml or properties files, or any other pluggable mechanism
+    * Pluggable EL for data binding defaulting to JSP 2.0 EL but
+allowing OGNL or even BeanUtils
+    * Integration of a dialog or page flow capability drawing from
+Beehive, Spring’s web flow, and Shale’s Dialogs.
+    * Per-Action optional interceptor chain ala WebWork 2
+    * Built-in dependency injection support
+
+DESIGN GOALS
+
+    * No servlet dependency in core framework, portlet and JSF support
+out of the box
+    * Spring-based dependency injection in core to allow for pluggability
+    * No bias to any view technology
+    * Ability to layer Struts 1.x compatibility on top
+    * Highly toolable
+    * Smooth integration into a portal/portlet environment
+    * AJAX-friendly
+
+IMPLEMENTATION
+
+    * Built on the backbone of commons-chain
+    * No restriction on multiple Servlets and/or Servlet Filter
+implementations
+    * Key decision points (action selection for example) use CoR chain
+for maximum flexiblity
+    * Configuration specified using XDoclet (Java 1.4) or Annotations
+(Java 5+), both supported out of the box
+
+DEPENDENCIES
+
+    * Servlets 2.4
+    * Java 1.4 runtime, Java 1.5 to build
+    * JSP 2.0 if taglibs used
+    * XWork 1.5
+
+Existing project collaboration
+
+    * XWork/WebWork using their XWork and possibly parts/all of their
+tag libraries
+    * Beehive using the Page Flow and annotations
+
+STATUS
+
+A working, if feature sparce, framework is in place.  
+
+The code is available in the Struts sandbox, but at this point, 
+the project site and more detailed design discussions are on an
+external server:
+
+https://www.twdata.org/projects/struts-ti
+
+####

Propchange: struts/sandbox/trunk/ti/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: struts/sandbox/trunk/ti/project.xml
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/project.xml?rev=230396&r1=230395&r2=230396&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/project.xml (original)
+++ struts/sandbox/trunk/ti/project.xml Thu Aug  4 21:39:37 2005
@@ -1,486 +1,486 @@
-<?xml version="1.0"?>
-<!-- 
-/*
- * Copyright 2001-2004 The Apache Software Foundation.
- * 
- * Licensed 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.
- */
- -->
-
-
-<project>
-  <pomVersion>3</pomVersion>
-  <id>struts</id>
-  <name>Struts TI</name>
-  <groupId>ti</groupId>
-  <currentVersion>0.1-dev</currentVersion>
-
-
-    <!-- ################################################################ -->
-    <!--        Project management section                                -->
-    <!-- ################################################################ -->
-
-  
-  <organization>
-    <name>The Apache Software Foundation</name>
-    <url>http://www.apache.org/</url>
-    <logo>http://www.apache.org/images/asf-logo.gif</logo>
-  </organization>
-  <logo>http://struts.apache.org/images/struts.gif</logo>
-  <inceptionYear>2000</inceptionYear>
-  <package>org.apache.ti</package>
-  <logo>http://struts.apache.org/images/struts.gif</logo>
-  <gumpRepositoryId>struts-ti-svn</gumpRepositoryId>
-
-  <description>
-      The core of the Struts framework is a flexible control layer based on 
-      standard technologies like Java Servlets, JavaBeans, ResourceBundles, 
-      and Extensible Markup Language (XML), as well as various Jakarta Commons 
-      packages. 
-      
-      Struts encourages application architectures based on the Model 
-      2 approach, a variation of the classic Model-View-Controller (MVC) design 
-      paradigm. Struts provides its own Controller component and integrates with 
-      other technologies to provide the Model and the View. 
-      
-      For the Model, Struts can interact with any standard data access technology, 
-      including Enterprise Java Beans, JDBC, and Object Relational Bridge. 
-      
-      For the View, Struts works well with JavaServer Pages, including JSTL and 
-      JSF, as well as Velocity Templates, XSLT, and other presentation systems. 
-      
-      The Struts framework provides the invisible underpinnings every professional 
-      web application needs to survive. Struts helps you create an extensible 
-      development environment for your application, based on published standards 
-      and proven design patterns.
-      
-  </description>
-      
-  <shortDescription>MVC Web Application Framework</shortDescription>
-  <url>http://struts.apache.org/index.html</url>
-  <issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
-  <siteAddress>struts.apache.org</siteAddress>
-  <siteDirectory>/www/struts.apache.org/</siteDirectory>
-  <distributionSite>struts.apache.org</distributionSite>
-  <distributionDirectory>/www/www.apache.org/builds/</distributionDirectory>
-<!--  <distributionDirectory>/www/www.apache.org/dist/java-repository/</distributionDirectory>-->
-  
-  <mailingLists>
-    <mailingList>
-      <name>Struts User List</name>
-      <subscribe>user-subscribe@struts.apache.org</subscribe>
-      <unsubscribe>user-unsubscribe@struts.apache.org</unsubscribe>
-      <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listId=42</archive>
-    </mailingList>
-    <mailingList>
-      <name>Struts Developer List</name>
-      <subscribe>dev-subscribe@struts.apache.org</subscribe>
-      <unsubscribe>dev-unsubscribe@struts.apache.org</unsubscribe>
-      <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listId=41</archive>
-    </mailingList>
-  </mailingLists>
-
-  <developers>
-    <developer>
-      <name>Craig R. McClanahan</name>
-      <id>craigmcc</id>
-      <email>craigmcc at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>Ted Husted</name>
-      <id>husted</id>
-      <email>husted at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>Rob Leland</name>
-      <id>rleland</id>
-      <email>rleland at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>Cedric Dumoulin</name>
-      <id>cedric</id>
-      <email>cedric.dumoulin at lifl.fr</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>Martin Cooper</name>
-      <id>martinc</id>
-      <email>martinc at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>Arron Bates</name>
-      <id>arron</id>
-      <email>arron at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>James Holmes</name>
-      <id>jholmes</id>
-      <email>jholmes at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>David M. Karr</name>
-      <id>dmkarr</id>
-      <email>dmkarr at apache.org</email>
-      <organization></organization>
-    </developer>
-
-    <developer>
-      <name>Eddie Bush</name>
-      <id>ekbush</id>
-      <email>ekbush at apache.org</email>
-      <organization></organization>
-    </developer>
-
-    <developer>
-      <name>David Graham</name>
-      <id>dgraham</id>
-      <email>dgraham at apache.org</email>
-      <organization></organization>
-    </developer>
-
-    <developer>
-      <name>James Mitchell</name>
-      <id>jmitchell</id>
-      <email>jmitchell at apache.org</email>
-      <organization></organization>
-    </developer>
-
-    <developer>
-      <name>James Turner</name>
-      <id>turner</id>
-      <email>turner at blackbear.com</email>
-      <organization></organization>
-    </developer>
-
-    <developer>
-      <name>Steve Raeburn</name>
-      <id>sraeburn</id>
-      <email>sraeburn at apache.org</email>
-      <organization></organization>
-    </developer>
-
-    <developer>
-      <name>Don Brown</name>
-      <id>mrdon</id>
-      <email>mrdon at apache.org</email>
-      <organization></organization>
-    </developer>
-
-    <developer>
-      <name>Joe Germuska</name>
-      <id>germuska</id>
-      <email>germuska at apache.org</email>
-      <organization></organization>
-    </developer>
-
-    <developer>
-      <name>Niall Pemberton</name>
-      <id>niallp</id>
-      <email>niallp at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>Hubert Rabago</name>
-      <id>hrabago</id>
-      <email>hrabago at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-    <developer>
-      <name>David Geary</name>
-      <id>dgeary</id>
-      <email>dgeary at apache.org</email>
-      <organization></organization>
-    </developer>
-    
-  </developers>
-
-  <contributors/>
-  
-  <licenses>
-    <license>
-      <name>The Apache Software License, Version 2.0</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-
-  <!-- ################################################################ -->
-  <!--        Project dependency section                                -->
-  <!-- ################################################################ -->
-
-  <dependencies>
-
-	<!-- Standard dependencies -->  
-    <dependency>
-      <groupId>servletapi</groupId>
-      <artifactId>servletapi</artifactId>
-      <version>2.4</version>
-      <url>http://java.sun.com/products/servlet/</url>
-    </dependency>
-    
-    <dependency>
-      <groupId>commons-chain</groupId>
-      <artifactId>commons-chain</artifactId>
-      <version>1.0</version>
-      <url>http://jakarta.apache.org/commons/chain/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-  
-    <dependency>
-      <groupId>commons-collections</groupId>
-      <artifactId>commons-collections</artifactId>
-      <version>2.1</version>
-      <url>http://jakarta.apache.org/commons/collections/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
- 
-    <dependency>
-      <groupId>commons-beanutils</groupId>
-      <artifactId>commons-beanutils</artifactId>
-      <version>1.7.0</version>
-      <url>http://jakarta.apache.org/commons/beanutils/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-    <dependency>
-      <groupId>commons-digester</groupId>
-      <artifactId>commons-digester</artifactId>
-      <version>1.7</version>
-      <url>http://jakarta.apache.org/commons/digester/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-
-    <dependency>
-      <groupId>commons-logging</groupId>
-      <artifactId>commons-logging</artifactId>
-      <version>1.0.4</version>
-      <url>http://jakarta.apache.org/commons/logging/</url>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-
- 
-    <dependency>
-      <groupId>opensymphony</groupId>
-      <artifactId>xwork</artifactId>
-      <version>1.0.5</version>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>opensymphony</groupId>
-      <artifactId>oscore</artifactId>
-      <version>2.2.4</version>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-
-    <dependency>
-      <groupId>ognl</groupId>
-      <artifactId>ognl</artifactId>
-      <version>2.6.7</version>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-    <dependency>
-      <groupId>velocity</groupId>
-      <artifactId>velocity</artifactId>
-      <version>1.4</version>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-    <dependency>
-      <groupId>velocity</groupId>
-      <artifactId>velocity-dep</artifactId>
-      <version>1.4</version>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-    <dependency>
-      <groupId>xjavadoc</groupId>
-      <artifactId>xjavadoc</artifactId>
-      <version>1.1</version>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-    <dependency>
-      <groupId>springframework</groupId>
-      <artifactId>spring-core</artifactId>
-      <version>1.2.1</version>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-    <dependency>
-      <groupId>springframework</groupId>
-      <artifactId>spring-beans</artifactId>
-      <version>1.2.1</version>
-      <properties>
-        <war.bundle>true</war.bundle>
-      </properties>
-    </dependency>
-    
-    <dependency>
-      <groupId>ant</groupId>
-      <artifactId>ant</artifactId>
-      <version>1.6.5</version>
-      <url>http://ant.apache.org</url>
-    </dependency>
-
-    <!-- for unit tests -->
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <url>http://www.junit.org/</url>
-    </dependency>
-    
-    <dependency>
-      <groupId>jdom</groupId>
-      <artifactId>jdom</artifactId>
-      <version>1.0</version>
-      <url>http://www.jdom.org</url>
-    </dependency>
-    
-    <dependency>
-      <groupId>jaxen</groupId>
-      <artifactId>jaxen</artifactId>
-      <version>1.0-FCS-full</version>
-      <url>http://www.jaxen.org</url>
-    </dependency>
-    
-    <dependency>
-      <groupId>saxpath</groupId>
-      <artifactId>saxpath</artifactId>
-      <version>1.0-FCS</version>
-      <url>http://www.saxpath.org</url>
-    </dependency>
-
-  </dependencies>
-
-
-  <!-- ################################################################ -->
-  <!--        Project build and reports section                         -->
-  <!-- ################################################################ -->
-
-  <build>
-    <nagEmailAddress>struts-dev@struts.apache.org</nagEmailAddress>
-    <sourceDirectory>src/java</sourceDirectory>
-    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
-    
-    <unitTest>
-      <includes>
-        <include>**/Test*.java</include>
-      </includes>
-      <resources>
-        <resource>
-          <directory>${basedir}/src/test</directory>
-          <includes>
-            <exclude>**/*.java</exclude>
-          </includes>
-        </resource>
-      </resources>
-    </unitTest>
-    <resources>
-      <resource>
-        <directory>${basedir}/src/java</directory>
-        <excludes>
-          <exclude>**/*.java</exclude>
-        </excludes>
-      </resource>
-    </resources>
- 
-    <!-- J A R  R E S O U R C E S -->
-    <!-- Resources that are packaged up inside the JAR file -->
-<!--
-    <resources>
-      <resource>
-        <directory>${basedir}/src/share</directory>
-        <includes>
-          <include>**/*.properties</include>
-        </includes>
-      </resource>
-    </resources>
--->
-
-  </build>
-
-  <reports>
-    <!--
-     |
-     | These should all be completely self contained. You should be able
-     | to generate each of them individually without needing the final
-     | xdoc transformation.
-     |
-     | Each report plugin with it's POM and plugin.jelly logic should
-     | contain everything needed to produced the report.
-     |
-    -->
-
-    <report>maven-checkstyle-plugin</report>
-    <report>maven-changelog-plugin</report>
-    <report>maven-changes-plugin</report>
-    <report>maven-developer-activity-plugin</report>
-    <report>maven-faq-plugin</report>
-    <report>maven-file-activity-plugin</report>
-    <report>maven-javadoc-plugin</report>
-    <report>maven-jdepend-plugin</report>
-    <report>maven-junit-report-plugin</report>
-    <report>maven-jxr-plugin</report>
-	<!--report>maven-linkcheck-plugin</report-->
-    <report>maven-pmd-plugin</report>
-    <report>maven-simian-plugin</report>
-    <report>maven-tasklist-plugin</report>
-    <report>maven-jcoverage-plugin</report>
-    <!--report>maven-findbugs-plugin</report-->
-
-  </reports>
-</project>
+<?xml version="1.0"?>
+<!-- 
+/*
+ * Copyright 2001-2004 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ */
+ -->
+
+
+<project>
+  <pomVersion>3</pomVersion>
+  <id>struts</id>
+  <name>Struts TI</name>
+  <groupId>ti</groupId>
+  <currentVersion>0.1-dev</currentVersion>
+
+
+    <!-- ################################################################ -->
+    <!--        Project management section                                -->
+    <!-- ################################################################ -->
+
+  
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+    <logo>http://www.apache.org/images/asf-logo.gif</logo>
+  </organization>
+  <logo>http://struts.apache.org/images/struts.gif</logo>
+  <inceptionYear>2000</inceptionYear>
+  <package>org.apache.ti</package>
+  <logo>http://struts.apache.org/images/struts.gif</logo>
+  <gumpRepositoryId>struts-ti-svn</gumpRepositoryId>
+
+  <description>
+      The core of the Struts framework is a flexible control layer based on 
+      standard technologies like Java Servlets, JavaBeans, ResourceBundles, 
+      and Extensible Markup Language (XML), as well as various Jakarta Commons 
+      packages. 
+      
+      Struts encourages application architectures based on the Model 
+      2 approach, a variation of the classic Model-View-Controller (MVC) design 
+      paradigm. Struts provides its own Controller component and integrates with 
+      other technologies to provide the Model and the View. 
+      
+      For the Model, Struts can interact with any standard data access technology, 
+      including Enterprise Java Beans, JDBC, and Object Relational Bridge. 
+      
+      For the View, Struts works well with JavaServer Pages, including JSTL and 
+      JSF, as well as Velocity Templates, XSLT, and other presentation systems. 
+      
+      The Struts framework provides the invisible underpinnings every professional 
+      web application needs to survive. Struts helps you create an extensible 
+      development environment for your application, based on published standards 
+      and proven design patterns.
+      
+  </description>
+      
+  <shortDescription>MVC Web Application Framework</shortDescription>
+  <url>http://struts.apache.org/index.html</url>
+  <issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
+  <siteAddress>struts.apache.org</siteAddress>
+  <siteDirectory>/www/struts.apache.org/</siteDirectory>
+  <distributionSite>struts.apache.org</distributionSite>
+  <distributionDirectory>/www/www.apache.org/builds/</distributionDirectory>
+<!--  <distributionDirectory>/www/www.apache.org/dist/java-repository/</distributionDirectory>-->
+  
+  <mailingLists>
+    <mailingList>
+      <name>Struts User List</name>
+      <subscribe>user-subscribe@struts.apache.org</subscribe>
+      <unsubscribe>user-unsubscribe@struts.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listId=42</archive>
+    </mailingList>
+    <mailingList>
+      <name>Struts Developer List</name>
+      <subscribe>dev-subscribe@struts.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@struts.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listId=41</archive>
+    </mailingList>
+  </mailingLists>
+
+  <developers>
+    <developer>
+      <name>Craig R. McClanahan</name>
+      <id>craigmcc</id>
+      <email>craigmcc at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>Ted Husted</name>
+      <id>husted</id>
+      <email>husted at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>Rob Leland</name>
+      <id>rleland</id>
+      <email>rleland at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>Cedric Dumoulin</name>
+      <id>cedric</id>
+      <email>cedric.dumoulin at lifl.fr</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>Martin Cooper</name>
+      <id>martinc</id>
+      <email>martinc at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>Arron Bates</name>
+      <id>arron</id>
+      <email>arron at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>James Holmes</name>
+      <id>jholmes</id>
+      <email>jholmes at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>David M. Karr</name>
+      <id>dmkarr</id>
+      <email>dmkarr at apache.org</email>
+      <organization></organization>
+    </developer>
+
+    <developer>
+      <name>Eddie Bush</name>
+      <id>ekbush</id>
+      <email>ekbush at apache.org</email>
+      <organization></organization>
+    </developer>
+
+    <developer>
+      <name>David Graham</name>
+      <id>dgraham</id>
+      <email>dgraham at apache.org</email>
+      <organization></organization>
+    </developer>
+
+    <developer>
+      <name>James Mitchell</name>
+      <id>jmitchell</id>
+      <email>jmitchell at apache.org</email>
+      <organization></organization>
+    </developer>
+
+    <developer>
+      <name>James Turner</name>
+      <id>turner</id>
+      <email>turner at blackbear.com</email>
+      <organization></organization>
+    </developer>
+
+    <developer>
+      <name>Steve Raeburn</name>
+      <id>sraeburn</id>
+      <email>sraeburn at apache.org</email>
+      <organization></organization>
+    </developer>
+
+    <developer>
+      <name>Don Brown</name>
+      <id>mrdon</id>
+      <email>mrdon at apache.org</email>
+      <organization></organization>
+    </developer>
+
+    <developer>
+      <name>Joe Germuska</name>
+      <id>germuska</id>
+      <email>germuska at apache.org</email>
+      <organization></organization>
+    </developer>
+
+    <developer>
+      <name>Niall Pemberton</name>
+      <id>niallp</id>
+      <email>niallp at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>Hubert Rabago</name>
+      <id>hrabago</id>
+      <email>hrabago at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+    <developer>
+      <name>David Geary</name>
+      <id>dgeary</id>
+      <email>dgeary at apache.org</email>
+      <organization></organization>
+    </developer>
+    
+  </developers>
+
+  <contributors/>
+  
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <!-- ################################################################ -->
+  <!--        Project dependency section                                -->
+  <!-- ################################################################ -->
+
+  <dependencies>
+
+	<!-- Standard dependencies -->  
+    <dependency>
+      <groupId>servletapi</groupId>
+      <artifactId>servletapi</artifactId>
+      <version>2.4</version>
+      <url>http://java.sun.com/products/servlet/</url>
+    </dependency>
+    
+    <dependency>
+      <groupId>commons-chain</groupId>
+      <artifactId>commons-chain</artifactId>
+      <version>1.0</version>
+      <url>http://jakarta.apache.org/commons/chain/</url>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+  
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>2.1</version>
+      <url>http://jakarta.apache.org/commons/collections/</url>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+ 
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.7.0</version>
+      <url>http://jakarta.apache.org/commons/beanutils/</url>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+    <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+      <version>1.7</version>
+      <url>http://jakarta.apache.org/commons/digester/</url>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+      <url>http://jakarta.apache.org/commons/logging/</url>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+
+ 
+    <dependency>
+      <groupId>opensymphony</groupId>
+      <artifactId>xwork</artifactId>
+      <version>1.0.5</version>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+
+    <dependency>
+      <groupId>opensymphony</groupId>
+      <artifactId>oscore</artifactId>
+      <version>2.2.4</version>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+
+    <dependency>
+      <groupId>ognl</groupId>
+      <artifactId>ognl</artifactId>
+      <version>2.6.7</version>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+    <dependency>
+      <groupId>velocity</groupId>
+      <artifactId>velocity</artifactId>
+      <version>1.4</version>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+    <dependency>
+      <groupId>velocity</groupId>
+      <artifactId>velocity-dep</artifactId>
+      <version>1.4</version>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+    <dependency>
+      <groupId>xjavadoc</groupId>
+      <artifactId>xjavadoc</artifactId>
+      <version>1.1</version>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+    <dependency>
+      <groupId>springframework</groupId>
+      <artifactId>spring-core</artifactId>
+      <version>1.2.1</version>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+    <dependency>
+      <groupId>springframework</groupId>
+      <artifactId>spring-beans</artifactId>
+      <version>1.2.1</version>
+      <properties>
+        <war.bundle>true</war.bundle>
+      </properties>
+    </dependency>
+    
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.6.5</version>
+      <url>http://ant.apache.org</url>
+    </dependency>
+
+    <!-- for unit tests -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <url>http://www.junit.org/</url>
+    </dependency>
+    
+    <dependency>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
+      <version>1.0</version>
+      <url>http://www.jdom.org</url>
+    </dependency>
+    
+    <dependency>
+      <groupId>jaxen</groupId>
+      <artifactId>jaxen</artifactId>
+      <version>1.0-FCS-full</version>
+      <url>http://www.jaxen.org</url>
+    </dependency>
+    
+    <dependency>
+      <groupId>saxpath</groupId>
+      <artifactId>saxpath</artifactId>
+      <version>1.0-FCS</version>
+      <url>http://www.saxpath.org</url>
+    </dependency>
+
+  </dependencies>
+
+
+  <!-- ################################################################ -->
+  <!--        Project build and reports section                         -->
+  <!-- ################################################################ -->
+
+  <build>
+    <nagEmailAddress>struts-dev@struts.apache.org</nagEmailAddress>
+    <sourceDirectory>src/java</sourceDirectory>
+    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
+    
+    <unitTest>
+      <includes>
+        <include>**/Test*.java</include>
+      </includes>
+      <resources>
+        <resource>
+          <directory>${basedir}/src/test</directory>
+          <includes>
+            <exclude>**/*.java</exclude>
+          </includes>
+        </resource>
+      </resources>
+    </unitTest>
+    <resources>
+      <resource>
+        <directory>${basedir}/src/java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+ 
+    <!-- J A R  R E S O U R C E S -->
+    <!-- Resources that are packaged up inside the JAR file -->
+<!--
+    <resources>
+      <resource>
+        <directory>${basedir}/src/share</directory>
+        <includes>
+          <include>**/*.properties</include>
+        </includes>
+      </resource>
+    </resources>
+-->
+
+  </build>
+
+  <reports>
+    <!--
+     |
+     | These should all be completely self contained. You should be able
+     | to generate each of them individually without needing the final
+     | xdoc transformation.
+     |
+     | Each report plugin with it's POM and plugin.jelly logic should
+     | contain everything needed to produced the report.
+     |
+    -->
+
+    <report>maven-checkstyle-plugin</report>
+    <report>maven-changelog-plugin</report>
+    <report>maven-changes-plugin</report>
+    <report>maven-developer-activity-plugin</report>
+    <report>maven-faq-plugin</report>
+    <report>maven-file-activity-plugin</report>
+    <report>maven-javadoc-plugin</report>
+    <report>maven-jdepend-plugin</report>
+    <report>maven-junit-report-plugin</report>
+    <report>maven-jxr-plugin</report>
+	<!--report>maven-linkcheck-plugin</report-->
+    <report>maven-pmd-plugin</report>
+    <report>maven-simian-plugin</report>
+    <report>maven-tasklist-plugin</report>
+    <report>maven-jcoverage-plugin</report>
+    <!--report>maven-findbugs-plugin</report-->
+
+  </reports>
+</project>

Propchange: struts/sandbox/trunk/ti/project.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/ti/src/example/WEB-INF/src/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/ti/src/example/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/ti/src/example/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/ti/src/java/org/apache/ti/config/spring-config-servlet.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: struts/sandbox/trunk/ti/src/java/org/apache/ti/config/velocity.properties
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/src/java/org/apache/ti/config/velocity.properties?rev=230396&r1=230395&r2=230396&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/src/java/org/apache/ti/config/velocity.properties (original)
+++ struts/sandbox/trunk/ti/src/java/org/apache/ti/config/velocity.properties Thu Aug  4 21:39:37 2005
@@ -1,4 +1,3 @@
-
 #
 # specify resource loaders to use
 #

Propchange: struts/sandbox/trunk/ti/src/java/org/apache/ti/config/velocity.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/ti/src/java/org/apache/ti/processor/chain/chain-config-servlet.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/ti/src/java/xwork-default.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/ti/src/test/org/apache/ti/processor/chain/chain-config.xml
------------------------------------------------------------------------------
    svn:eol-style = native



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org