package SVK::Command::Propget; use strict; use SVK::Version; our $VERSION = $SVK::VERSION; use base qw( SVK::Command::Proplist ); use constant opt_recursive => 0; use SVK::XD; sub options { ('strict' => 'strict', 'r|revision=i' => 'rev', 'revprop' => 'revprop', ); } sub parse_arg { my ($self, @arg) = @_; return if @arg < 1; push @arg, '' if @arg == 1; return ($arg[0], map { $self->_arg_revprop ($_) } @arg[1..$#arg]); } sub run { my ($self, $pname, @targets) = @_; foreach my $target (@targets) { my $proplist = $self->_proplist($target); exists $proplist->{$pname} or next; print $target->report, ' - ' if @targets > 1 and !$self->{strict}; print $proplist->{$pname}; print "\n" if !$self->{strict}; } return; } 1; __DATA__ =head1 NAME SVK::Command::Propget - Display a property on path =head1 SYNOPSIS propget PROPNAME [DEPOTPATH | PATH...] =head1 OPTIONS -R [--recursive] : descend recursively -r [--revision] REV : act on revision REV instead of the head revision --revprop : operate on a revision property (use with -r) --strict : do not print an extra newline at the end of the property values; when there are multiple paths involved, do not prefix path names before values =head1 AUTHORS Chia-liang Kao Eclkao@clkao.orgE =head1 COPYRIGHT Copyright 2003-2005 by Chia-liang Kao Eclkao@clkao.orgE. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L =cut