org.apache.tools.ant.taskdefs.cvslib
Class ChangeLogTask
- Cloneable
public class ChangeLogTask
Examines the output of cvs log and group related changes together.
It produces an XML output representing the list of changes.
<!-- 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)>
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 inputDir)- Set the base dir for cvs.
|
void | setEnd(Date endDate)- 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
|
addCommandArgument, addCommandArgument, addConfiguredCommandline, addConfiguredCommandline, configureCommandline, execute, getCommand, getCvsRoot, getCvsRsh, getDest, getErrorStream, getExecuteStreamHandler, getOutputStream, getPackage, getPassFile, getPort, getTag, removeCommandline, runCommand, setAppend, setCommand, setCompression, setCompressionLevel, setCvsRoot, setCvsRsh, setDate, setDest, setError, setErrorStream, setExecuteStreamHandler, setFailOnError, setNoexec, setOutput, setOutputStream, setPackage, setPassfile, setPort, setQuiet, setReallyquiet, setTag |
bindToOwner, execute, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType |
addFileset
public void addFileset(FileSet fileSet)
Adds a set of files about which cvs logs will be generated.
fileSet - a set of files about which cvs logs will be generated.
addUser
public void addUser(CvsUser user)
Add a user to list changelog knows about.
setDaysinpast
public void setDaysinpast(int days)
Set the number of days worth of log entries to process.
days - the number of days of log to process.
setDestfile
public void setDestfile(File destFile)
Set the output file for the log.
destFile - The new destfile value
setDir
public void setDir(File inputDir)
Set the base dir for cvs.
inputDir - The new dir value
setEnd
public void setEnd(Date endDate)
Set the date at which the changelog should stop.
endDate - The date at which the changelog should stop.
setStart
public void setStart(Date start)
Set the date at which the changelog should start.
start - The date at which the changelog should start.
setUsersfile
public void setUsersfile(File usersFile)
Set a lookup list of user names & addresses
usersFile - The file containing the users info.