You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/07/08 18:51:38 UTC

svn commit: r1500834 - in /tomcat/trunk: build.xml java/org/apache/tomcat/util/descriptor/ java/org/apache/tomcat/util/descriptor/web/

Author: markt
Date: Mon Jul  8 16:51:38 2013
New Revision: 1500834

URL: http://svn.apache.org/r1500834
Log:
Create a new package for descriptor parsing that will be shared between Catalina and Jasper.
There is currently a single sub-package (web) for web.xml parsing. It is expected that additional parsers will be added (e.g. for taglibs).
The intended end point is for Jasper to depend only on the Servlet API and JspC to share web.xml processing with Catalina so it can handle web applications with fragments.

Added:
    tomcat/trunk/java/org/apache/tomcat/util/descriptor/
    tomcat/trunk/java/org/apache/tomcat/util/descriptor/web/
Modified:
    tomcat/trunk/build.xml

Modified: tomcat/trunk/build.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1500834&r1=1500833&r2=1500834&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Mon Jul  8 16:51:38 2013
@@ -319,6 +319,7 @@
   <patternset id="files.tomcat-util">
     <include name="org/apache/tomcat/util/buf/**" />
     <include name="org/apache/tomcat/util/codec/**" />
+    <include name="org/apache/tomcat/util/descriptor/**" />
     <include name="org/apache/tomcat/util/file/**" />
     <include name="org/apache/tomcat/util/res/**" />
     <include name="org/apache/tomcat/util/scan/**" />
@@ -366,6 +367,7 @@
          WebSockets -->
     <exclude name="org/apache/tomcat/util/buf/**" />
     <exclude name="org/apache/tomcat/util/codec/**" />
+    <exclude name="org/apache/tomcat/util/descriptor/**" />
     <exclude name="org/apache/tomcat/util/file/**" />
     <exclude name="org/apache/tomcat/util/res/**" />
     <exclude name="org/apache/tomcat/util/scan/**" />



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