NAME
SVK::Log::ChangedPath - changes made to a path during in a revision
SYNOPSIS
print "Path of change : ", $changedpath->path(), "\n";
print "Action : ", $changedpath->action(), "\n";
print "Property action: ", $changedpath->propertyaction(), "\n";
...DESCRIPTION
An object of this class represents a path which was modified in a particular revision. It provides methods to determine how the path was modified. This class is intended for indirect use by log filters. Log filters may want to report about the paths that were modified during a particular revision, but they shouldn't have to know the details of how SVK determines those changes. Encapsulating that knowledge in this class allows log filters to focus on formatting, displaying and analyzing the logs. MMEETTHHOODDSSnneeww $$rroooott, $pathname, $pathentry
SVK::Log::ChangedPath objects are usually created from
SVK::Log::ChangedPaths and it's probably meaningless to construct them
anywhere else. Nevertheless, here's a brief description.$root should be the return value from "SVK::Path->root()" $pathname is
the key in the hash returned by "$root->pathschanged()" $pathentry is
the corresponding value from that hash. aaccttiioonn Returns a single character indicating the way in which the content of the path was changed. This letter is the same as the first column inthe path line that you see when you do "svk log -verbose"
ccooppiieeddffrroomm If the path was copied from somewhere else in this revision, "copiedfrom()" returns the revision and path from which this path was copied. The values are returned as a list with items in that order. Namely,if ( $changedpath->iscopy() ) {
my ($rev, $path) = $changedpath->copiedfrom();
print "Copied from $path in revision $rev\n";
} iissccooppyy Returns true if the path was copied from somewhere else in this revision, otherwise, returns false. ppaatthh Returns the full depot path for this changed path. pprrooppeerrttyyaaccttiioonn Returns a single character indicating the way in which the properties of the path were changed. This letter is the same as the second columnin the path line that you see when you do "svk log -verbose"
DIAGNOSTICS None CONFIGURATION AND ENVIRONMENTSVK::Log::ChangedPath requires no configuration files or environment
variables. DDEEPPEENNDDEENNCCIIEESS +o SVK::Command::Log IINNCCOOMMPPAATTIIBBIILLIITTIIEESS None known.BUGS AND LIMITATIONS
None known.perl v5.8.8 2006-12-28 SVK::Log::ChangedPath(3)