You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by lu...@apache.org on 2012/11/02 00:24:07 UTC

svn commit: r1404827 - /oodt/trunk/crawler/src/main/resources/legacy-cmd-line-options.xml

Author: luca
Date: Thu Nov  1 23:24:07 2012
New Revision: 1404827

URL: http://svn.apache.org/viewvc?rev=1404827&view=rev
Log:
Fixing missing configuration options in cmd-line legacy beans (OODT-530).

Modified:
    oodt/trunk/crawler/src/main/resources/legacy-cmd-line-options.xml

Modified: oodt/trunk/crawler/src/main/resources/legacy-cmd-line-options.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/crawler/src/main/resources/legacy-cmd-line-options.xml?rev=1404827&r1=1404826&r2=1404827&view=diff
==============================================================================
--- oodt/trunk/crawler/src/main/resources/legacy-cmd-line-options.xml (original)
+++ oodt/trunk/crawler/src/main/resources/legacy-cmd-line-options.xml Thu Nov  1 23:24:07 2012
@@ -117,7 +117,7 @@
 			<bean class="org.apache.oodt.cas.crawl.cli.option.handler.CrawlerBeansPropHandler">
 				<property name="properties">
 					<list>
-						<value>MoveMetadataToFailureDir.toDir</value>
+						<value>MoveMetadataFileToFailureDir.toDir</value>
 						<value>MovePushpullMetFileToFailureDir.toDir</value>
 						<value>MoveDataFileToFailureDir.toDir</value>
 					</list>
@@ -324,7 +324,14 @@
 		<property name="shortOption" value="nr" />
 		<property name="longOption" value="noRecur" />
 		<property name="description" value="Turns off recursive crawling - will only process files in productPath directory" />
-		<property name="hasArgs" value="false" />
+		<property name="type" value="boolean" />
+        <property name="hasArgs" value="false" />
+        <property name="staticArgs">
+	        <list>
+				<value>true</value>
+	        </list>
+        </property>
+        <property name="required" value="false" />
 		<property name="requirementRules">
 			<list>
 				<bean class="org.apache.oodt.cas.cli.option.require.ActionDependencyRule"
@@ -352,7 +359,13 @@
 		<property name="shortOption" value="cfd" />
 		<property name="longOption" value="crawlForDirs" />
 		<property name="description" value="Will crawl for directories instead of files" />
-		<property name="hasArgs" value="false" />
+		<property name="type" value="boolean" />
+        <property name="hasArgs" value="false" />
+        <property name="staticArgs">
+	        <list>
+				<value>true</value>
+	        </list>
+        </property>
 		<property name="required" value="false" />
 		<property name="requirementRules">
 			<list>