|
|
pathdata(entries,
path)
(entries,path) Returns the data(dict) for a specific file/dir at the
path specified. |
source code
|
|
|
|
|
|
|
isadded(entries,
path)
(entries,path) Returns true if the path exists and is added to the
cvs tree. |
source code
|
|
|
|
findnew(entries,
recursive=0,
basedir='')
(entries,recursive=0,basedir="") Recurses the entries tree
to find all elements that have been added but have not yet been
committed. |
source code
|
|
|
|
findoption(entries,
pattern,
recursive=0,
basedir='')
(entries, pattern, recursive=0, basedir="") Iterate over
paths of cvs entries for which the pattern.search() method finds a
match. |
source code
|
|
|
|
findchanged(entries,
recursive=0,
basedir='')
(entries,recursive=0,basedir="") Recurses the entries tree
to find all elements that exist in the cvs tree and differ from the
committed version. |
source code
|
|
|
|
findmissing(entries,
recursive=0,
basedir='')
(entries,recursive=0,basedir="") Recurses the entries tree
to find all elements that are listed in the cvs tree but do not exist
on the filesystem. |
source code
|
|
|
|
findunadded(entries,
recursive=0,
basedir='')
(entries,recursive=0,basedir="") Recurses the entries tree
to find all elements that are in valid cvs directories but are not
part of the cvs tree. |
source code
|
|
|
|
findremoved(entries,
recursive=0,
basedir='')
(entries,recursive=0,basedir="") Recurses the entries tree
to find all elements that are in flagged for cvs deletions. |
source code
|
|
|
|
findall(entries,
recursive=0,
basedir='')
(entries,recursive=0,basedir="") Recurses the entries tree
to find all new, changed, missing, and unadded entities. |
source code
|
|
|
|
|
|
|
getentries(mydir,
recursive=0)
(basedir,recursive=0) Scans the given directory and returns a
datadict of all the entries in the directory separated as a dirs dict
and a files dict. |
source code
|
|