You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2012/11/14 14:21:24 UTC

svn commit: r1409190 - /camel/trunk/tests/camel-itest/src/test/resources/org/apache/camel/itest/ftp/SpringFileAntPathMatcherRemoteFileFilterTest-context.xml

Author: davsclaus
Date: Wed Nov 14 13:21:23 2012
New Revision: 1409190

URL: http://svn.apache.org/viewvc?rev=1409190&view=rev
Log:
Polished

Modified:
    camel/trunk/tests/camel-itest/src/test/resources/org/apache/camel/itest/ftp/SpringFileAntPathMatcherRemoteFileFilterTest-context.xml

Modified: camel/trunk/tests/camel-itest/src/test/resources/org/apache/camel/itest/ftp/SpringFileAntPathMatcherRemoteFileFilterTest-context.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest/src/test/resources/org/apache/camel/itest/ftp/SpringFileAntPathMatcherRemoteFileFilterTest-context.xml?rev=1409190&r1=1409189&r2=1409190&view=diff
==============================================================================
--- camel/trunk/tests/camel-itest/src/test/resources/org/apache/camel/itest/ftp/SpringFileAntPathMatcherRemoteFileFilterTest-context.xml (original)
+++ camel/trunk/tests/camel-itest/src/test/resources/org/apache/camel/itest/ftp/SpringFileAntPathMatcherRemoteFileFilterTest-context.xml Wed Nov 14 13:21:23 2012
@@ -36,11 +36,11 @@
         </route>
     </camelContext>
 
-    <!-- we use the AntPathMatcherRemoteFileFilter to use ant paths for includes and exlucde -->
+    <!-- we use the AntPathMatcherRemoteFileFilter to use ant paths for includes and exclude -->
     <bean id="myAntFilter" class="org.apache.camel.component.file.AntPathMatcherGenericFileFilter">
-        <!-- include and file in the subfolder that has day in the name -->
+        <!-- include any files in the sub folder that has day in the name -->
         <property name="includes" value="**/subfolder/**/*day*"/>
-        <!-- exclude all files with bad in name or .xml files. Use comma to seperate multiple excludes -->
+        <!-- exclude all files with bad in name or .xml files. Use comma to separate multiple excludes -->
         <property name="excludes" value="**/*bad*,**/*.xml"/>
     </bean>
     <!-- END SNIPPET: example -->