Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

svk::path(3) [osx man page]

SVK::Path(3)						User Contributed Perl Documentation					      SVK::Path(3)

NAME
SVK::Path - SVK path class SYNOPSIS
See below DESCRIPTION
The class represents a node in svk depot. root Returns the root representing the file system of the revision at the anchor. Give optional pool (null to use default), otherwise use the internal root of the path object. Be careful if you are using the root object but not keeping the path object. same_repos Returns true if all @other targets are from the same repository as this one. same_source Returns true if all @other targets are mirrored from the same source is_mirrored Returns the mirror object if the path is mirrored. Returns additional path component if used in array context. normalize Normalize the revision to the last changed one. as_depotpath Makes target depotpath. Takes $revision number optionally. path Returns the full path of the target even if anchorified. descend Makes target descend into $entry universal Returns corresponding SVK::Target::Universal object. depotpath Returns depotpath of the target copy_ancestors Returns a list of "(path, rev)" pairs, which are ancestors of the current node. nearest_copy(root, path, [pool]) given a root object (or a target) and a path, returns the revision root where it's ancestor is from another path, and ancestor's root and path. related_to Check if $self is related to another target. copied_from ($want_mirror) Return the nearest copy target that still exists. If $want_mirror is true, only return one that was mirrored from somewhere. $self->seek_to($revision) Return the "SVK::Path" object that $self is at $revision. Note that we don't have forward tracing, so if <$revision is greater than "$self-"revision>, a "SVK::Path" at <$revision> will be returned. In other words, assuming "foo@N" for "-r N foo@M" when N > M. as_url($local_only, [ $path, $rev ]) Returns (url, revision) pair. node_id () Returns the node id of this path object. SEE ALSO
SVK::Path::Checkout perl v5.10.0 2008-08-04 SVK::Path(3)

Check Out this Related Man Page

SVK::Log::ChangedPath(3)				User Contributed Perl Documentation				  SVK::Log::ChangedPath(3)

NAME
SVK::Log::ChangedPath - changes made to a path during in a revision SYNOPSIS
print "Path of change : ", $changed_path->path(), " "; print "Action : ", $changed_path->action(), " "; print "Property action: ", $changed_path->property_action(), " "; ... 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. METHODS
new $root, $path_name, $path_entry 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()" $path_name is the key in the hash returned by "$root->paths_changed()" $path_entry is the corresponding value from that hash. action 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 in the path line that you see when you do "svk log --verbose" copied_from If the path was copied from somewhere else in this revision, "copied_from()" 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 ( $changed_path->is_copy() ) { my ($rev, $path) = $changed_path->copied_from(); print "Copied from $path in revision $rev "; } is_copy Returns true if the path was copied from somewhere else in this revision, otherwise, returns false. path Returns the full depot path for this changed path. property_action Returns a single character indicating the way in which the properties of the path were changed. This letter is the same as the second column in the path line that you see when you do "svk log --verbose" DIAGNOSTICS
None CONFIGURATION AND ENVIRONMENT
SVK::Log::ChangedPath requires no configuration files or environment variables. DEPENDENCIES
o SVK::Command::Log INCOMPATIBILITIES
None known. BUGS AND LIMITATIONS
None known. perl v5.10.0 2008-08-04 SVK::Log::ChangedPath(3)
Man Page