--- trunk/lib/Biblio/Isis.pm 2006/07/09 12:18:44 58 +++ trunk/lib/Biblio/Isis.pm 2006/07/13 13:34:30 65 @@ -7,7 +7,7 @@ BEGIN { use Exporter (); use vars qw ($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); - $VERSION = 0.21; + $VERSION = 0.22; @ISA = qw (Exporter); #Give a hoot don't pollute, do not export more than needed by default @EXPORT = qw (); @@ -84,7 +84,7 @@ read_fdt => 1, include_deleted => 1, hash_filter => sub { - my $v = shift; + my ($v,$field_number) = @_; $v =~ s#foo#bar#g; }, debug => 1, @@ -114,7 +114,9 @@ =item hash_filter -Filter code ref which will be used before data is converted to hash. +Filter code ref which will be used before data is converted to hash. It will +receive two arguments, whole line from current field (in C<< $_[0] >>) and +field number (in C<< $_[1] >>). =item debug @@ -576,7 +578,7 @@ # filter output if ($self->{'hash_filter'}) { - $l = $self->{'hash_filter'}->($l); + $l = $self->{'hash_filter'}->($l, $f_nr); next unless defined($l); } @@ -751,6 +753,10 @@ =over 8 +=item 0.22 + +Added field number when calling C + =item 0.21 Added C to L and L. @@ -785,6 +791,8 @@ =head1 SEE ALSO +L for CDS/ISIS manual appendix F, G and H which describe file format + OpenIsis web site L perl4lib site L