Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

svk::log::changedpath(3) [osx 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)

Check Out this Related Man Page

SVK::Editor::Merge(3)					User Contributed Perl Documentation				     SVK::Editor::Merge(3)

NAME
SVK::Editor::Merge - An editor that does merges for the storage editor SYNOPSIS
$editor = SVK::Editor::Merge->new ( anchor => $anchor, base_anchor => $base_anchor, base_root => $fs->revision_root ($arg{fromrev}), target => $target, storage => $storage_editor, %cb, ); DESCRIPTION
Given the base root and callbacks for local tree, SVK::Editor::Merge forwards the incoming editor calls to the storage editor for modifying the local tree, and merges the tree delta and text delta transparently. PARAMETERS
options for base and target tree anchor The anchor of the target tree. target The target path component of the target tree. base_anchor The anchor of the base tree. base_root The root object of the base tree. storage The editor that will receive the merged callbacks. allow_conflicts Close the editor instead of abort when there are conflicts. open_nonexist open the directory even if cb_exist failed. This is for use in conjunction with SVK::Editor::Rename for the case that a descendent exists but its parent does not. inspector The inspector reflecting the target of the merge. callbacks for local tree Since the merger needs to have information about the local tree, some callbacks must be supplied. cb_rev Check the revision of the given path. cb_conflict When a conflict is detected called with path and conflict type as argument. At this point type can be either 'node' or 'prop'. cb_prop_merged Called when properties are merged without changes, that is, the "g" status. cb_merged Called right before closing the target with changes flag, node type and ticket. cb_closed Called after each file close call. BUGS
Tree merge still very primitive, have to handle lots of cases perl v5.10.0 2008-08-04 SVK::Editor::Merge(3)
Man Page