DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7453>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7453 StarTeam Documentation not in-synch with codeline Summary: StarTeam Documentation not in-synch with codeline Product: Ant Version: 1.5 alpha (nightly) Platform: All OS/Version: All Status: NEW Severity: Minor Priority: Other Component: Optional Tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The StarTeam optional task for checking in files states that recursion is assumed as true unless otherwise specified. However, there is an explicit comment and associated statement in the StarTeamCheckin task that defaults recursion to false: public StarTeamCheckin() { // we want this to have a false default, unlike for Checkin. setRecursive(false); } I don't know why this should be different from the Checkout and List tasks so I've removed the constructor, which now makes the documentation match the functionality. Also, the starteam.html document requires a few cosmetic fixes. The diffs are listed below: --- cvs/src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamCheckin.jav a Mon Mar 25 04:49:10 2002 +++ local/src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamCheckin.j ava Mon Mar 25 11:24:09 2002 @@ -82,11 +82,6 @@ */ public class StarTeamCheckin extends TreeBasedTask { - public StarTeamCheckin() { - // we want this to have a false default, unlike for Checkin. - setRecursive(false); - } - private boolean createFolders = true; /** --- cvs/docs/manual/OptionalTasks/starteam.html Mon Mar 25 04:49:52 2002 +++ local/docs/manual/OptionalTasks/starteam.html Mon Mar 25 11:22:19 2002 @@ -486,7 +486,7 @@ </tr> <tr> <td valign="top">description</td> - <td valign="top">A description of the view to be stored in the StarTeam project.</td> + <td valign="top">A description of the label to be stored in the StarTeam project.</td> <td align="center" valign="top">no</td> </tr> </table> @@ -504,7 +504,7 @@ password="secret" label="Version 6.2" lastbuild="${nowstamp}" - description-"Thorough description" + description="Thorough description" /> </pre> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
