johnkeis ef8536a213 Display a patch
git-svn-id: svn://10.0.0.236/trunk@137730 18797224-902f-48f8-a5cc-f745e15eee43
2003-02-12 22:03:26 +00:00

22 lines
347 B
Perl

package Tinderbox3::FieldProcessors::Patch;
use strict;
sub new {
my $class = shift;
$class = ref($class) || $class;
my $this = {};
bless $this, $class;
return $this;
}
sub process_field {
my $this = shift;
my ($tree_columns, $field, $value) = @_;
return ($tree_columns->{PATCH_STR}{$value} || "(deleted patch)") . "<br>\n";
}
1