From e30f1cdbcc2a30a4012e2cf2219f3c8140420d5b Mon Sep 17 00:00:00 2001 From: Jan Materne Date: Fri, 23 Jul 2004 06:40:26 +0000 Subject: [PATCH] typo; BugID 30277 git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276713 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/OptionalTasks/ccm.html | 100 ++++++++++++++--------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/docs/manual/OptionalTasks/ccm.html b/docs/manual/OptionalTasks/ccm.html index 25d97b5bb..6b0cfc841 100644 --- a/docs/manual/OptionalTasks/ccm.html +++ b/docs/manual/OptionalTasks/ccm.html @@ -9,140 +9,140 @@

Continuus Support

-

These ant tasks are wrappers around Continuus Source Manager. They have been tested +

These ant tasks are wrappers around Continuus Source Manager. They have been tested agains versions 5.1/6.2 on Windows 2000, but should work on other platforms with ccm installed.

author: Benoit Mousaud (benoit.moussaud@criltelecom.com)


-

CCMCheckin

+

CCMCheckin

Description

Task to checkin a file

Parameters

- + - + - + - + - + -
Attribute Values Required
file Path to the file that the command will operate on Yes
comment Specify a comment. Default is "Checkin" plus the date No
task Specify the task number used to check in the file (may use 'default') No
ccmdir path to the ccm executable file, required if it is not on the PATH No
+

Examples

<ccmcheckin file="c:/wa/com/foo/MyFile.java"
         comment="mycomment"/>
 
-

Checks in the file c:/wa/com/foo/MyFile.java. - Comment attribute mycomment is added as a task comment. The task +

Checks in the file c:/wa/com/foo/MyFile.java. + Comment attribute mycomment is added as a task comment. The task used is the one set as the default.


CCMCheckout

Description

-Task to perform a Checkout command to Continuus +Task to perform a Checkout command to Continuus

Parameters

- + - + - + - + - + - - +
Attribute Values Required
file Path to the file that the command will operate on Yes (file|fileset)
fileset filset containing the file to be checked out
comment Specify a comment. No
taskSpecify the task number used to checkin the file (may use + Specify the task number used to checkin the file (may use 'default') No
ccmdir path to the ccm executable file, required if it is not on the PATH No

Examples

-
+
<ccmcheckout file="c:/wa/com/foo/MyFile.java"
         comment="mycomment"/>
 
-

Check out the file c:/wa/com/foo/MyFile.java. +

Check out the file c:/wa/com/foo/MyFile.java. Comment attribute mycomment is added as a task comment The used task is the one set as the default.

-
+
<ccmcheckout  comment="mycomment">
   <fileset dir="lib" >
     <include name="**/*.jar" />
   </fileset>
 </ccmcheckout >
-  
+

Check out all the files in the lib directory having the .jar extension. Comment attribute mycomment is added as a task comment - The used task is the one set as the default.

+ The used task is the one set as the default.


CCMCheckinTask

Description

-Task to perform a check in default task command to Continuus +Task to perform a check in default task command to Continuus

Parameters

- + - + - + - + @@ -157,30 +157,30 @@ Task to perform a check in default task command to Continuus

CCMReconfigure

Description

-Task to perform an reconfigure command to Continuus. +Task to perform an reconfigure command to Continuus.

Parameters

Attribute Values Required
comment Specify a comment. No
task Specify the task number used to check in the file (may use 'default') No
ccmdir path to the ccm executable file, required if it is not on the PATH No
- + - + - + - + - + @@ -188,66 +188,66 @@ Task to perform an reconfigure command to Continuus.
Attribute Values Required
recurse recurse on subproject (default false) No
verbose do a verbose reconfigure operation (default false) No
ccmproject Specifies the ccm project on which the operation is applied. Yes
ccmdir path to the ccm executable file, required if it is not on the PATH No

Examples

-
<ccmreconfigure ccmproject="ANTCCM_TEST#BMO_1" 
+ 
<ccmreconfigure ccmproject="ANTCCM_TEST#BMO_1"
          verbose="true" />
 
-

Does a Continuus reconfigure on the project ANTCCM_TEST#BMO_1. +

Does a Continuus reconfigure on the project ANTCCM_TEST#BMO_1.


CCMCreateTask

Description

-Create a Continuus task. +Create a Continuus task.

Parameters

- + - + - + - + - + - + - + - +
Attribute Values Required
comment Specify a comment. No
platform Specify the target platform No
ccmdir path to the ccm executable file, required if it is not on the PATH No
resolver Specify the resolver No
release Specify the CCM release No
subsystem Specify the subsystem No
task Specify the task number used to checkin the file (may use 'default') No

Examples

-
-
<ccmcreatetask resolver="${user.name}" 
+
+
<ccmcreatetask resolver="${user.name}"
             release="ANTCCM_TEST" comment="blahblah" />
 
-

Creates a task for the release ANTCCM_TEST with the +

Creates a task for the release ANTCCM_TEST with the current user as the resolver for this task.


@@ -255,4 +255,4 @@ Create a Continuus task. Reserved.

- + \ No newline at end of file