org.apache.tools.ant.taskdefs.cvslib
public class ChangeLogTask extends AbstractCvsTask
<!-- Root element --> <!ELEMENT changelog (entry+)> <!-- CVS Entry --> <!ELEMENT entry (date,author,file+,msg)> <!-- Date of cvs entry --> <!ELEMENT date (#PCDATA)> <!-- Author of change --> <!ELEMENT author (#PCDATA)> <!-- List of files affected --> <!ELEMENT msg (#PCDATA)> <!-- File changed --> <!ELEMENT file (name,revision,prevrevision?)> <!-- Name of the file --> <!ELEMENT name (#PCDATA)> <!-- Revision number --> <!ELEMENT revision (#PCDATA)> <!-- Previous revision number --> <!ELEMENT prevrevision (#PCDATA)>
Since: Ant 1.5
UNKNOWN: name="cvschangelog" category="scm"
Method Summary | |
---|---|
void | addFileset(FileSet fileSet)
Adds a set of files about which cvs logs will be generated.
|
void | addUser(CvsUser user)
Add a user to list changelog knows about.
|
void | execute()
Execute task
|
void | setDaysinpast(int days)
Set the number of days worth of log entries to process.
|
void | setDestfile(File destfile)
Set the output file for the log.
|
void | setDir(File dir)
Set the base dir for cvs.
|
void | setEnd(Date stop)
Set the date at which the changelog should stop.
|
void | setStart(Date start)
Set the date at which the changelog should start.
|
void | setUsersfile(File usersFile)
Set a lookup list of user names & addresses
|
Parameters: fileSet a set of files about which cvs logs will be generated.
Parameters: user the user
Throws: BuildException if something goes wrong executing the cvs command
Parameters: days the number of days of log to process.
Parameters: destfile The new destfile value
Parameters: dir The new dir value
Parameters: stop The date at which the changelog should stop.
Parameters: start The date at which the changelog should start.
Parameters: usersFile The file containing the users info.