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::FilterPipeline(3)				User Contributed Perl Documentation			       SVK::Log::FilterPipeline(3)

NAME
SVK::Log::FilterPipeline - a pipeline of log filter objects DESCRIPTION
An SVK::Log::FilterPipeline represents a particular collection of log filter objects each of which needs to be called in turn. METHODS
new Construct a new SVK::Log::FilterPipeline object by constructing the specific filters that will handle the details and preparing for the first revision. build_filter_object Given the name of a filter, try and construct an appropriate filter object. Search @INC for modules that match the name given. If no appropriate classes are available, we die with an appropriate warning. This method creates an object for the filter by calling its new() method filter SVK::Command::Log calls this routine when it wants to display (or process) a revision. The method then dispatches the information to the methods of the necessary filter objects in the pipeline to perform the real work. finished Tell all the filters that their jobs are done by calling "footer" and "teardown" on each one. get_pipeline_command Examine an exception to determine if it's a pipeline control exception. If it is, return the desired pipeline command. If it's not, rethrow the exception. If no exception is provided, the command 'continue' is returned. present_revision Display a single revision by passing it to the pipeline's presentation filter. run_pipeline Send a revision down the pipeline. Provide revision information to the revision() method of each filter in the pipeline until one of them says to stop. Then return the pipeline command. set_up_presentation Handle initial set up for the presentation filter. This should only be called once during an SVK::Log::FilterPipeline's lifetime. set_up_selection Handle initial set up for the selection filter pipeline. This should only be called once during "SVK::Log::FilterPipeline"'s lifetime. split_filter Split a string into a filter name and an arbitrary argument string. split_selectors Split the description of the selection filter pipeline into individual filter names and their arguments. Each filter is separated by a '|' character. Literal pipe characters are included with '|'. perl v5.10.0 2008-08-04 SVK::Log::FilterPipeline(3)
Man Page