The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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

same_source

Returns true if all @other targets are mirrored from the same source

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

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.

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.

SEE ALSO

SVK::Path::Checkout

AUTHORS

Chia-liang Kao <clkao@clkao.org>

COPYRIGHT

Copyright 2003-2005 by Chia-liang Kao <clkao@clkao.org>.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html