From 5f41947fea063436dbeb9b190662016f939e9554 Mon Sep 17 00:00:00 2001
From: Antoine Levy-Lambert by:Ant ClearCase Tasks
Curtis White (cwhite at aracnet dot com),
-Sean P. Kane (spkane at genomatica dot com), and
-Rob Anderson (Anderson.Rob at vectorscm dot com)
+Rob Anderson (Anderson.Rob at vectorscm dot com), and
+Sean Egan (sean at cm-logic dot com)
Version 1.6 - 02/25/2003
@@ -27,7 +29,10 @@ Rob Anderson (Anderson.Rob at vectorscm dot com)@@ -162,7 +172,19 @@ Task to perform a "cleartool checkout" command to ClearCase.Specify a file containing a comment. Only one of comment or commentfile may be used. No - + ++ +notco +Fail if it's already checked out to the current view. Set to false to ignore it. +
+ Since ant 1.6.1No ++ failonerr +Throw an exception if the command fails. Default is true. +
+ Since ant 1.6.1No +Examples
@@ -201,6 +223,12 @@ Task to perform a UnCheckout command to ClearCase. extension or notNo ++ failonerr +Throw an exception if the command fails. Default is true +
+ Since ant 1.6.1No +Examples
@@ -262,6 +290,12 @@ Task to perform an "cleartool update" command to ClearCase. specified.No ++ failonerr +Throw an exception if the command fails. Default is true. +
+ Since ant 1.6.1No +Examples
@@ -337,6 +371,12 @@ Task to perform a "mklbtype" command to ClearCase.Specify a file containing a comment. Only one of comment or cfile may be used. No + + failonerr +Throw an exception if the command fails. Default is true +
+ Since ant 1.6.1No +Examples
@@ -403,6 +443,12 @@ Task to perform a "mklabel" command to ClearCase.Specify a file containing a comment. Only one of comment or cfile may be used. No + + failonerr +Throw an exception if the command fails. Default is true +
+ Since ant 1.6.1No +Examples
@@ -488,6 +534,12 @@ Task to perform a "rmtype" command to ClearCase.Specify a file containing a comment. Only one of comment or cfile may be used. No + + failonerr +Throw an exception if the command fails. Default is true + Since ant 1.6.1 +No +Examples
@@ -537,19 +589,31 @@ Task to perform a "cleartool lock" command to ClearCase.pname Specifies the object pathname to be locked. -Yes +No objselect -Specifies the object(s) to be locked. -Yes +This variable is obsolete. Should use objsel instead. +No + + objsel +Specifies the object(s) to be locked. +
+ Since ant 1.6.1No ++ + failonerr +Throw an exception if the command fails. Default is true. +
+ Since ant 1.6.1No +Examples
@@ -574,19 +638,31 @@ Task to perform a "cleartool unlock" command to ClearCase.<cclock - objselect="stream:Application_Integration@\MyProject_PVOB" + objsel="stream:Application_Integration@\MyProject_PVOB" />pname Specifies the object pathname to be unlocked. -Yes +No objselect -Specifies the object(s) to be unlocked. -Yes +This variable is obsolete. Should use objsel instead. +No ++ objsel +Specifies the object(s) to be unlocked. +
+ Since ant 1.6.1No ++ + failonerr +Throw an exception if the command fails. Default is true. +
+ Since ant 1.6.1No +Examples
@@ -641,6 +717,12 @@ previous baseline.<ccunlock - objselect="stream:Application_Integration@\MyProject_PVOB" + objsel="stream:Application_Integration@\MyProject_PVOB" />Allows the baseline to be created without a label. No ++ failonerr +Throw an exception if the command fails. Default is true. +
+ Since ant 1.6.1No +Examples
@@ -658,7 +740,201 @@ even if it is identical to a previous baseline. The new baseline with be incremental and named "Application_Baseline_AUTO".
-Copyright © 2000-2003 Apache Software Foundation. All rights +
CCMkattr
+Description
+Task to perform a "cleartool mkattr" command to ClearCase.
+Since ant 1.6.1 +Parameters
++
++ +Attribute +Values +Required ++ +viewpath +Path to the ClearCase view file or directory that the command will operate on +Yes ++ +replace +Replace the value of the attribute if it already exists +No ++ +recurse +Process each subdirectory under viewpath +No ++ +version +Identify a specific version to attach the attribute to +No ++ +typename +Name of the attribute type +Yes ++ +typevalue +Value to attach to the attribute type +Yes ++ +comment +Specify a comment. Only one of comment or cfile may be used. +No ++ +commentfile +Specify a file containing a comment. Only one of comment or cfile may be used. +No ++ +failonerr +Throw an exception if the command fails. Default is true +No +Examples
++++<ccmkattr viewpath="c:/views/viewdir/afile" + typename="BugFix" + typevalue="34445" + /> ++Does a ClearCase mkattr on the file c:/views/viewdir/afile and +attaches the attribute BugFix with a value of 34445 to it.
+
+ +CCMkdir
+Description
+Task to perform a "cleartool mkdir" command to ClearCase.
+Since ant 1.6.1 +Parameters
++
++ +Attribute +Values +Required ++ +viewpath +Path to the ClearCase view directory that the command will operate on +Yes ++ +comment +Specify a comment. Only one of comment or cfile may be used. +No ++ +commentfile +Specify a file containing a comment. Only one of comment or cfile may be used. +No ++ +nocheckout +Do not checkout after element creation +No ++ +failonerr +Throw an exception if the command fails. Default is true +No +Examples
++++<ccmkdir viewpath="c:/views/viewdir/adir" + nochcekout="true" + comment="Some comment text"/> ++Does a ClearCase mkdir on the dir c:/views/viewdir/adir and +does not automatically check it out.
+
+ +CCMkelem
+Description
+Task to perform a "cleartool mkelem" command to ClearCase.
+Since ant 1.6.1 +Parameters
++
++ +Attribute +Values +Required ++ viewpath +Path to the ClearCase view file or directory that the command will operate on +Yes ++ + comment +Specify a comment. Only one of comment or cfile may be used. +No ++ + commentfile +Specify a file containing a comment. Only one of comment or cfile may be used. +No ++ + nowarn +Suppress warning messages +No ++ + nocheckout +Do not checkout after element creation +No ++ + checkin +Checkin element after creation +No ++ + preservetime +Preserve the modification time (for checkin) +No ++ + master +Assign mastership of the main branch to the current site +No ++ + eltype +Element type to use during element creation +No ++ + failonerr +Throw an exception if the command fails. Default is true +No ++ Examples
++++<ccmkelem viewpath="c:/views/viewdir/afile" + eltype="text_file" + checkin="true" + comment="Some comment text"/> ++Does a ClearCase mkelem on the file c:/views/viewdir/afile with +element type text_file. It also checks in the file after creation.
+
+ +Copyright © 2000-2004 Apache Software Foundation. All rights reserved.