You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2012/07/18 12:39:00 UTC

svn commit: r1362860 - /commons/proper/chain/trunk/apps/example2/src/main/webapp/WEB-INF/chain-config.xml

Author: simonetripodi
Date: Wed Jul 18 10:39:00 2012
New Revision: 1362860

URL: http://svn.apache.org/viewvc?rev=1362860&view=rev
Log:
XML format, no functional modifications

Modified:
    commons/proper/chain/trunk/apps/example2/src/main/webapp/WEB-INF/chain-config.xml

Modified: commons/proper/chain/trunk/apps/example2/src/main/webapp/WEB-INF/chain-config.xml
URL: http://svn.apache.org/viewvc/commons/proper/chain/trunk/apps/example2/src/main/webapp/WEB-INF/chain-config.xml?rev=1362860&r1=1362859&r2=1362860&view=diff
==============================================================================
--- commons/proper/chain/trunk/apps/example2/src/main/webapp/WEB-INF/chain-config.xml (original)
+++ commons/proper/chain/trunk/apps/example2/src/main/webapp/WEB-INF/chain-config.xml Wed Jul 18 10:39:00 2012
@@ -1,7 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
-
  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.
@@ -9,80 +7,71 @@
  (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
+   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.
-
 -->
-
 <catalogs>
 
-    <!-- Default Catalog: "Path Info" example -->
-    <catalog>
-
-        <!-- Command that maps "Path Info" patterns to Commands -->
-        <chain name="COMMAND_MAPPER">
-            <command                       className="org.apache.commons.chain2.web.servlet.PathInfoMapper"/>
-            <command forward="/pathinfo.jsp"  className="org.apache.commons.chain2.apps.example.ForwardCommand"/>
-        </chain>
-
-        <!-- Foo Command -->
-        <chain name="/foo">
-            <command attribute="pathinfoFooCount" className="org.apache.commons.chain2.apps.example.CountCommand"/>
-        </chain>
-
-        <!-- Bar Command -->
-        <chain name="/bar">
-            <command attribute="pathinfoBarCount" className="org.apache.commons.chain2.apps.example.CountCommand"/>
-        </chain>
-
-    </catalog>
-
-    <!-- Catalog for "Request Parameter" example -->
-    <catalog name="reqparam">
-
-        <!-- Command that maps a "Request Parameter" to Commands -->
-        <chain name="COMMAND_MAPPER">
-            <command catalogName="reqparam"  className="org.apache.commons.chain2.web.servlet.RequestParameterMapper"/>
-            <command forward="/reqparam.jsp" className="org.apache.commons.chain2.apps.example.ForwardCommand"/>
-        </chain>
-
-        <!-- Foo Command -->
-        <chain name="foo">
-            <command attribute="reqparamFooCount" className="org.apache.commons.chain2.apps.example.CountCommand"/>
-        </chain>
-
-        <!-- Bar Command -->
-        <chain name="bar">
-            <command attribute="reqparamBarCount" className="org.apache.commons.chain2.apps.example.CountCommand"/>
-        </chain>
-
-    </catalog>
-
-    <!-- Catalog for "Servlet Path" example -->
-    <catalog name="servletpath">
-
-        <!-- Command that maps "Servlet Path" patterns to Commands -->
-        <chain name="COMMAND_MAPPER">
-            <command catalogName="servletpath"  className="org.apache.commons.chain2.web.servlet.ServletPathMapper"/>
-            <command forward="/servletpath.jsp" className="org.apache.commons.chain2.apps.example.ForwardCommand"/>
-        </chain>
-
-        <!-- Foo Command -->
-        <chain name="/foo.execute">
-            <command attribute="servletpathFooCount" className="org.apache.commons.chain2.apps.example.CountCommand"/>
-        </chain>
-
-        <!-- Bar Command -->
-        <chain name="/bar.execute">
-            <command attribute="servletpathBarCount" className="org.apache.commons.chain2.apps.example.CountCommand"/>
-        </chain>
-
-
-    </catalog>
+  <!-- Default Catalog: "Path Info" example -->
+  <catalog>
+    <!-- Command that maps "Path Info" patterns to Commands -->
+    <chain name="COMMAND_MAPPER">
+      <command className="org.apache.commons.chain2.web.servlet.PathInfoMapper" />
+      <command forward="/pathinfo.jsp"  className="org.apache.commons.chain2.apps.example.ForwardCommand" />
+    </chain>
+
+    <!-- Foo Command -->
+    <chain name="/foo">
+      <command attribute="pathinfoFooCount" className="org.apache.commons.chain2.apps.example.CountCommand" />
+    </chain>
+
+    <!-- Bar Command -->
+    <chain name="/bar">
+      <command attribute="pathinfoBarCount" className="org.apache.commons.chain2.apps.example.CountCommand" />
+    </chain>
+  </catalog>
+
+  <!-- Catalog for "Request Parameter" example -->
+  <catalog name="reqparam">
+    <!-- Command that maps a "Request Parameter" to Commands -->
+    <chain name="COMMAND_MAPPER">
+      <command catalogName="reqparam"  className="org.apache.commons.chain2.web.servlet.RequestParameterMapper" />
+      <command forward="/reqparam.jsp" className="org.apache.commons.chain2.apps.example.ForwardCommand" />
+    </chain>
+
+    <!-- Foo Command -->
+    <chain name="foo">
+      <command attribute="reqparamFooCount" className="org.apache.commons.chain2.apps.example.CountCommand" />
+    </chain>
+
+    <!-- Bar Command -->
+    <chain name="bar">
+      <command attribute="reqparamBarCount" className="org.apache.commons.chain2.apps.example.CountCommand" />
+    </chain>
+  </catalog>
+
+  <!-- Catalog for "Servlet Path" example -->
+  <catalog name="servletpath">
+    <!-- Command that maps "Servlet Path" patterns to Commands -->
+    <chain name="COMMAND_MAPPER">
+      <command catalogName="servletpath"  className="org.apache.commons.chain2.web.servlet.ServletPathMapper" />
+      <command forward="/servletpath.jsp" className="org.apache.commons.chain2.apps.example.ForwardCommand" />
+    </chain>
+
+    <!-- Foo Command -->
+    <chain name="/foo.execute">
+      <command attribute="servletpathFooCount" className="org.apache.commons.chain2.apps.example.CountCommand" />
+    </chain>
+
+    <!-- Bar Command -->
+    <chain name="/bar.execute">
+      <command attribute="servletpathBarCount" className="org.apache.commons.chain2.apps.example.CountCommand" />
+    </chain>
+  </catalog>
 
 </catalogs>