HTML-TableParser-0.43/0000755000040700040100000000000013255011270013546 5ustar djcxcopticsHTML-TableParser-0.43/tdata/0000755000040700040100000000000013255011270014643 5ustar djcxcopticsHTML-TableParser-0.43/tdata/end_table.html0000644000040700040100000000027713255011270017454 0ustar djcxcoptics Too Many End Table Tags

Too Many End Table Tags

HTML-TableParser-0.43/META.yml0000644000040700040100000000201613255011270015016 0ustar djcxcoptics--- abstract: 'HTML::TableParser - Extract data from an HTML table' author: - 'Diab Jerius ' build_requires: ExtUtils::MakeMaker: '0' File::Spec: '0' IO::Handle: '0' IPC::Open3: '0' Test::More: '0.32' configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 generated_by: 'Dist::Zilla version 6.010, CPAN::Meta::Converter version 2.150010' license: gpl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: '1.4' name: HTML-TableParser no_index: directory: - eg - examples - inc - share - t - xt provides: HTML::TableParser: file: lib/HTML/TableParser.pm version: '0.43' HTML::TableParser::Table: file: lib/HTML/TableParser/Table.pm version: '0.43' requires: HTML::Entities: '0' HTML::Parser: '3.26' resources: bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=HTML-TableParser repository: git://github.com/djerius/html-tableparser.git version: '0.43' x_serialization_backend: 'YAML::Tiny version 1.70' HTML-TableParser-0.43/README0000644000040700040100000001061713255011270014433 0ustar djcxcopticsHTML::TableParser HTML::TableParser uses HTML::Parser to extract data from an HTML table. The data is returned via a series of user defined callback functions or methods. Specific tables may be selected either by a matching a unique table id or by matching against the column names. Multiple (even nested) tables may be parsed in a document in one pass. Table Identification Each table is given a unique id, relative to its parent, based upon its order and nesting. The first top level table has id 1, the second 2, etc. The first table nested in table 1 has id 1.1, the second 1.2, etc. The first table nested in table 1.1 has id 1.1.1, etc. These, as well as the tables' column names, may be used to identify which tables to parse. Data Extraction As the parser traverses a selected table, it will pass data to user provided callback functions or methods after it has digested particular structures in the table. All functions are passed the table id (as described above), the line number in the HTML source where the table was found, and a reference to any table specific user provided data. Table Start The start callback is invoked when a matched table has been found. Table End The end callback is invoked after a matched table has been parsed. Header The hdr callback is invoked after the table header has been read in. Some tables do not use the tag to indicate a header, so this function may not be called. It is passed the column names. Row The row callback is invoked after a row in the table has been read. It is passed the column data. Warn The warn callback is invoked when a non-fatal error occurs during parsing. Fatal errors croak. New This is the class method to call to create a new object when HTML::TableParser is supposed to create new objects upon table start. Callback API Callbacks may be functions or methods or a mixture of both. In the latter case, an object must be passed to the constructor. (More on that later.) The callbacks are invoked as follows: start( $tbl_id, $line_no, $udata ); end( $tbl_id, $line_no, $udata ); hdr( $tbl_id, $line_no, \@col_names, $udata ); row( $tbl_id, $line_no, \@data, $udata ); warn( $tbl_id, $line_no, $message, $udata ); new( $tbl_id, $udata ); Data Cleanup There are several cleanup operations that may be performed automatically: Chomp chomp() the data Decode Run the data through HTML::Entities::decode. DecodeNBSP Normally HTML::Entitites::decode changes a non-breaking space into a character which doesn't seem to be matched by Perl's whitespace regexp. Setting this attribute changes the HTML "nbsp" character to a plain 'ol blank. Trim remove leading and trailing white space. Data Organization Column names are derived from cells delimited by the and tags. Some tables have header cells which span one or more columns or rows to make things look nice. HTML::TableParser determines the actual number of columns used and provides column names for each column, repeating names for spanned columns and concatenating spanned rows and columns. For example, if the table header looks like this: +----+--------+----------+-------------+-------------------+ | | | Eq J2000 | | Velocity/Redshift | | No | Object |----------| Object Type |-------------------| | | | RA | Dec | | km/s | z | Qual | +----+--------+----------+-------------+-------------------+ The columns will be: No Object Eq J2000 RA Eq J2000 Dec Object Type Velocity/Redshift km/s Velocity/Redshift z Velocity/Redshift Qual Row data are derived from cells delimited by the and tags. Cells which span more than one column or row are handled correctly, i.e. the values are duplicated in the appropriate places. INSTALLATION This is a Perl module distribution. It should be installed with whichever tool you use to manage your installation of Perl, e.g. any of cpanm . cpan . cpanp -i . Consult http://www.cpan.org/modules/INSTALL.html for further instruction. Should you wish to install this module manually, the procedure is perl Makefile.PL make make test make install COPYRIGHT AND LICENSE This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. This is free software, licensed under: The GNU General Public License, Version 3, June 2007 HTML-TableParser-0.43/lib/0000755000040700040100000000000013255011270014314 5ustar djcxcopticsHTML-TableParser-0.43/lib/HTML/0000755000040700040100000000000013255011270015060 5ustar djcxcopticsHTML-TableParser-0.43/lib/HTML/TableParser.pm0000644000040700040100000011373213255011270017631 0ustar djcxcopticspackage HTML::TableParser; # ABSTRACT: HTML::TableParser - Extract data from an HTML table require 5.8.1; use strict; use warnings; our $VERSION = '0.43'; use Carp (); use HTML::Parser; use HTML::TableParser::Table; ## no critic ( ProhibitAccessOfPrivateData ) our @ISA = qw(HTML::Parser); # Preloaded methods go here. our %Attr = ( Trim => 0, Decode => 1, Chomp => 0, MultiMatch => 0, DecodeNBSP => 0, ); our @Attr = keys %Attr; our $Verbose = 0; sub new { my $class = shift; my $reqs = shift; my $self = $class->SUPER::new ( api_version => 3, unbroken_text => 1, start_h => [ '_start', 'self, tagname, attr, line' ], end_h => [ '_end', 'self, tagname, attr, line' ], ); Carp::croak( __PACKAGE__, ": must specify a table request" ) unless defined $reqs and 'ARRAY' eq ref $reqs; my $attr = shift || {}; my @notvalid = grep { ! exists $Attr{$_} } keys %$attr; Carp::croak ( __PACKAGE__, ": Invalid attribute(s): '", join(" ,'", @notvalid ), "'" ) if @notvalid; my %attr = ( %Attr, %$attr ); $self->{reqs} = _tidy_reqs( $reqs, \%attr ); $self->{Tables} = [ HTML::TableParser::Table->new() ]; # by default we're not processing anything $self->_process(0); $self; } our @ReqAttr = ( qw( cols colre id idre class obj start end hdr row warn udata ), keys %Attr ); our %ReqAttr = map { $_ => 1 } @ReqAttr; # convert table requests into something that HTML::TableParser::Table can # handle sub _tidy_reqs { my ( $reqs, $attr ) = @_; my @reqs; my $nreq = 0; for my $req ( @$reqs ) { my %req; $nreq++; my @notvalid = grep { ! exists $ReqAttr{$_} } keys %$req; Carp::croak (__PACKAGE__, ": table request $nreq: invalid attribute(s): '", join(" ,'", @notvalid ), "'" ) if @notvalid; my $req_id = 0; # parse cols and id the same way for my $what ( qw( cols id ) ) { $req{$what} = []; if ( exists $req->{$what} && defined $req->{$what} ) { my @reqs; my $ref = ref $req->{$what}; if ( 'ARRAY' eq $ref ) { @reqs = @{$req->{$what}}; } elsif ( 'Regexp' eq $ref || 'CODE' eq $ref || ! $ref ) { @reqs = ( $req->{$what} ); } else { Carp::croak( __PACKAGE__, ": table request $nreq: $what must be a scalar, arrayref, or coderef" ); } # now, check that we have legal things in there my %attr = (); for my $match ( @reqs ) { my $ref = ref $match; Carp::croak( __PACKAGE__, ": table request $nreq: illegal $what `$match': must be a scalar, regexp, or coderef" ) unless defined $match && ! $ref || 'Regexp' eq $ref || 'CODE' eq $ref ; if ( ! $ref && $match eq '-' ) { %attr = ( exclude => 1 ); next; } if ( ! $ref && $match eq '--' ) { %attr = ( skip => 1 ); next; } if ( ! $ref && $match eq '+' ) { %attr = (); next; } push @{$req{$what}}, { %attr, match => $match }; %attr = (); $req_id++; } } } # colre is now obsolete, but keep backwards compatibility # column regular expression match? if ( defined $req->{colre} ) { my $colre; if ( 'ARRAY' eq ref $req->{colre} ) { $colre = $req->{colre}; } elsif ( ! ref $req->{colre} ) { $colre = [ $req->{colre} ]; } else { Carp::croak( __PACKAGE__, ": table request $nreq: colre must be a scalar or arrayref" ); } for my $re ( @$colre ) { my $ref = ref $re; Carp::croak( __PACKAGE__, ": table request $nreq: colre must be a scalar" ) unless ! $ref or 'Regexp' eq $ref; push @{$req{cols}}, { include => 1, match => 'Regexp' eq $ref ? $re : qr/$re/ }; $req_id++; } } Carp::croak( __PACKAGE__, ": table request $nreq: must specify at least one id method" ) unless $req_id; $req{obj} = $req->{obj} if exists $req->{obj}; $req{class} = $req->{class} if exists $req->{class}; for my $method ( qw( start end hdr row warn new ) ) { if ( exists $req->{$method} && 'CODE' eq ref $req->{$method} ) { $req{$method} = $req->{$method}; } elsif ( exists $req{obj} || exists $req{class}) { my $thing = exists $req{obj} ? $req{obj} : $req{class}; if ( exists $req->{$method} ) { if ( defined $req->{$method} ) { Carp::croak( __PACKAGE__, ": table request $nreq: can't have object & non-scalar $method" ) if ref $req->{$method}; my $call = $req->{$method}; Carp::croak( __PACKAGE__, ": table request $nreq: class doesn't have method $call" ) if ( exists $req->{obj} && ! $req->{obj}->can( $call ) ) || !UNIVERSAL::can( $thing, $call ); } # if $req->{$method} is undef, user must have explicitly # set it so, which is a signal to NOT call that method. } else { $req{$method} = $method if UNIVERSAL::can( $thing, $method ); } } elsif( exists $req->{$method} ) { Carp::croak( __PACKAGE__, ": invalid callback for $method" ); } } # last minute cleanups for things that don't fit in the above loop Carp::croak( __PACKAGE__, ": must specify valid constructor for class $req->{class}" ) if exists $req{class} && ! exists $req{new}; $req{udata} = undef; $req{udata} = exists $req->{udata} ? $req->{udata} : undef; $req{match} = 0; @req{@Attr} = @Attr{@Attr}; $req{$_} = $attr->{$_} foreach grep { defined $attr->{$_} } @Attr; $req{$_} = $req->{$_} foreach grep { defined $req->{$_} } @Attr; push @reqs, \%req; } \@reqs; } sub _process { my ($self, $state) = @_; my $ostate = $self->{process} || 0; if ( $state ) { $self->report_tags( qw( table th td tr ) ); $self->handler( 'text' => '_text', 'self, text, line' ); } else { $self->report_tags( qw( table ) ); $self->handler( 'text' => '' ); } $self->{process} = $state; $ostate; } our %trans = ( tr => 'row', th => 'header', td => 'column' ); sub _start { my $self = shift; my $tagname = shift; print STDERR __PACKAGE__, "::start : $_[1] : $tagname \n" if $HTML::TableParser::Verbose; if ( 'table' eq $tagname ) { $self->_start_table( @_ ); } else { my $method = 'start_' . $trans{$tagname}; $self->{Tables}[-1]->$method(@_); } } sub _end { my $self = shift; my $tagname = shift; print STDERR __PACKAGE__, "::_end : $_[1]: $tagname \n" if $HTML::TableParser::Verbose; if ( 'table' eq $tagname ) { $self->_end_table( @_ ); } else { my $method = 'end_' . $trans{$tagname}; $self->{Tables}[-1]->$method(@_); } } sub _start_table { my ( $self, $attr, $line ) = @_; my $tbl = HTML::TableParser::Table->new( $self, $self->{Tables}[-1]->ids, $self->{reqs}, $line ); print STDERR __PACKAGE__, "::_start_table : $tbl->{id}\n" if $HTML::TableParser::Verbose; $self->_process( $tbl->process ); push @{$self->{Tables}}, $tbl; } sub _end_table { my ( $self, $attr, $line ) = @_; my $tbl = pop @{$self->{Tables}}; print STDERR __PACKAGE__, "::_end_table : $tbl->{id}\n" if $HTML::TableParser::Verbose; # the first table in the list is our sentinel table. if we're about # to delete it, it means that we've hit one too many tags # we delay the croak until after the pop so that the verbose error # message prints something nice. no harm anyway as we're about to # keel over and croak. Carp::croak( __PACKAGE__, ": $line: unbalanced and
tags; too many tags" ) if 0 == @{$self->{Tables}}; undef $tbl; $self->_process( $self->{Tables}[-1]->process ); } sub _text { my ( $self, $text, $line ) = @_; $self->{Tables}[-1]->text( $text ); } 1; # # This file is part of HTML-TableParser # # This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. # # This is free software, licensed under: # # The GNU General Public License, Version 3, June 2007 # =pod =head1 NAME HTML::TableParser - HTML::TableParser - Extract data from an HTML table =head1 VERSION version 0.43 =head1 SYNOPSIS use HTML::TableParser; @reqs = ( { id => 1.1, # id for embedded table hdr => \&header, # function callback row => \&row, # function callback start => \&start, # function callback end => \&end, # function callback udata => { Snack => 'Food' }, # arbitrary user data }, { id => 1, # table id cols => [ 'Object Type', qr/object/ ], # column name matches obj => $obj, # method callbacks }, ); # create parser object $p = HTML::TableParser->new( \@reqs, { Decode => 1, Trim => 1, Chomp => 1 } ); $p->parse_file( 'foo.html' ); # function callbacks sub start { my ( $id, $line, $udata ) = @_; #... } sub end { my ( $id, $line, $udata ) = @_; #... } sub header { my ( $id, $line, $cols, $udata ) = @_; #... } sub row { my ( $id, $line, $cols, $udata ) = @_; #... } =head1 DESCRIPTION B uses B to extract data from an HTML table. The data is returned via a series of user defined callback functions or methods. Specific tables may be selected either by a matching a unique table id or by matching against the column names. Multiple (even nested) tables may be parsed in a document in one pass. =head2 Table Identification Each table is given a unique id, relative to its parent, based upon its order and nesting. The first top level table has id C<1>, the second C<2>, etc. The first table nested in table C<1> has id C<1.1>, the second C<1.2>, etc. The first table nested in table C<1.1> has id C<1.1.1>, etc. These, as well as the tables' column names, may be used to identify which tables to parse. =head2 Data Extraction As the parser traverses a selected table, it will pass data to user provided callback functions or methods after it has digested particular structures in the table. All functions are passed the table id (as described above), the line number in the HTML source where the table was found, and a reference to any table specific user provided data. =over 8 =item Table Start The B callback is invoked when a matched table has been found. =item Table End The B callback is invoked after a matched table has been parsed. =item Header The B callback is invoked after the table header has been read in. Some tables do not use the BthE> tag to indicate a header, so this function may not be called. It is passed the column names. =item Row The B callback is invoked after a row in the table has been read. It is passed the column data. =item Warn The B callback is invoked when a non-fatal error occurs during parsing. Fatal errors croak. =item New This is the class method to call to create a new object when B is supposed to create new objects upon table start. =back =head2 Callback API Callbacks may be functions or methods or a mixture of both. In the latter case, an object must be passed to the constructor. (More on that later.) The callbacks are invoked as follows: start( $tbl_id, $line_no, $udata ); end( $tbl_id, $line_no, $udata ); hdr( $tbl_id, $line_no, \@col_names, $udata ); row( $tbl_id, $line_no, \@data, $udata ); warn( $tbl_id, $line_no, $message, $udata ); new( $tbl_id, $udata ); =head2 Data Cleanup There are several cleanup operations that may be performed automatically: =over 8 =item Chomp B the data =item Decode Run the data through B. =item DecodeNBSP Normally B changes a non-breaking space into a character which doesn't seem to be matched by Perl's whitespace regexp. Setting this attribute changes the HTML C character to a plain 'ol blank. =item Trim remove leading and trailing white space. =back =head2 Data Organization Column names are derived from cells delimited by the BthE> and B/thE> tags. Some tables have header cells which span one or more columns or rows to make things look nice. B determines the actual number of columns used and provides column names for each column, repeating names for spanned columns and concatenating spanned rows and columns. For example, if the table header looks like this: +----+--------+----------+-------------+-------------------+ | | | Eq J2000 | | Velocity/Redshift | | No | Object |----------| Object Type |-------------------| | | | RA | Dec | | km/s | z | Qual | +----+--------+----------+-------------+-------------------+ The columns will be: No Object Eq J2000 RA Eq J2000 Dec Object Type Velocity/Redshift km/s Velocity/Redshift z Velocity/Redshift Qual Row data are derived from cells delimited by the BtdE> and B/tdE> tags. Cells which span more than one column or row are handled correctly, i.e. the values are duplicated in the appropriate places. =head1 METHODS =over 8 =item new $p = HTML::TableParser->new( \@reqs, \%attr ); This is the class constructor. It is passed a list of table requests as well as attributes which specify defaults for common operations. Table requests are documented in L. The C<%attr> hash provides default values for some of the table request attributes, namely the data cleanup operations ( C, C, C ), and the multi match attribute C, i.e., $p = HTML::TableParser->new( \@reqs, { Chomp => 1 } ); will set B on for all of the table requests, unless overridden by them. The data cleanup operations are documented above; C is documented in L. B defaults to on; all of the others default to off. =item parse_file This is the same function as in B. =item parse This is the same function as in B. =back =head1 Table Requests A table request is a hash used by B to determine which tables are to be parsed, the callbacks to be invoked, and any data cleanup. There may be multiple requests processed by one call to the parser; each table is associated with a single request (even if several requests match the table). A single request may match several tables, however unless the B attribute is specified for that request, it will be used for the first matching table only. A table request which matches a table id of C will be used as a catch-all request, and will match all tables not matched by other requests. Please note that tables are compared to the requests in the order that the latter are passed to the B method; place the B method last for proper behavior. =head2 Identifying tables to parse B needs to be told which tables to parse. This can be done by matching table ids or column names, or a combination of both. The table request hash elements dedicated to this are: =over 8 =item id This indicates a match on table id. It can take one of these forms: =over 8 =item exact match id => $match id => '1.2' Here C<$match> is a scalar which is compared directly to the table id. =item regular expression id => $re id => qr/1\.\d+\.2/ C<$re> is a regular expression, which must be constructed with the C operator. =item subroutine id => \&my_match_subroutine id => sub { my ( $id, $oids ) = @_ ; $oids[0] > 3 && $oids[1] < 2 } Here C is assigned a coderef to a subroutine which returns true if the table matches, false if not. The subroutine is passed two arguments: the table id as a scalar string ( e.g. C<1.2.3>) and the table id as an arrayref (e.g. C<$oids = [ 1, 2, 3]>). =back C may be passed an array containing any combination of the above: id => [ '1.2', qr/1\.\d+\.2/, sub { ... } ] Elements in the array may be preceded by a modifier indicating the action to be taken if the table matches on that element. The modifiers and their meanings are: =over 8 =item C<-> If the id matches, it is explicitly excluded from being processed by this request. =item C<--> If the id matches, it is skipped by B requests. =item C<+> If the id matches, it will be processed by this request. This is the default action. =back An example: id => [ '-', '1.2', 'DEFAULT' ] indicates that this request should be used for all tables, except for table 1.2. id => [ '--', '1.2' ] Table 2 is just plain skipped altogether. =item cols This indicates a match on column names. It can take one of these forms: =over 8 =item exact match cols => $match cols => 'Snacks01' Here C<$match> is a scalar which is compared directly to the column names. If any column matches, the table is processed. =item regular expression cols => $re cols => qr/Snacks\d+/ C<$re> is a regular expression, which must be constructed with the C operator. Again, a successful match against any column name causes the table to be processed. =item subroutine cols => \&my_match_subroutine cols => sub { my ( $id, $oids, $cols ) = @_ ; ... } Here C is assigned a coderef to a subroutine which returns true if the table matches, false if not. The subroutine is passed three arguments: the table id as a scalar string ( e.g. C<1.2.3>), the table id as an arrayref (e.g. C<$oids = [ 1, 2, 3]>), and the column names, as an arrayref (e.g. C<$cols = [ 'col1', 'col2' ]>). This option gives the calling routine the ability to make arbitrary selections based upon table id and columns. =back C may be passed an arrayref containing any combination of the above: cols => [ 'Snacks01', qr/Snacks\d+/, sub { ... } ] Elements in the array may be preceded by a modifier indicating the action to be taken if the table matches on that element. They are the same as the table id modifiers mentioned above. =item colre B An arrayref containing the regular expressions to match, or a scalar containing a single reqular expression =back More than one of these may be used for a single table request. A request may match more than one table. By default a request is used only once (even the C id match!). Set the C attribute to enable multiple matches per request. When attempting to match a table, the following steps are taken: =over 8 =item 1 The table id is compared to the requests which contain an id match. The first such match is used (in the order given in the passed array). =item 2 If no explicit id match is found, column name matches are attempted. The first such match is used (in the order given in the passed array) =item 3 If no column name match is found (or there were none requested), the first request which matches an B of C is used. =back =head2 Specifying the data callbacks Callback functions are specified with the callback attributes C, C, C, C, and C. They should be set to code references, i.e. %table_req = ( ..., start => \&start_func, end => \&end_func ) To use methods, specify the object with the C key, and the method names via the callback attributes, which should be set to strings. If you don't specify method names they will default to (you guessed it) C, C, C, C, and C. $obj = SomeClass->new(); # ... %table_req_1 = ( ..., obj => $obj ); %table_req_2 = ( ..., obj => $obj, start => 'start', end => 'end' ); You can also have B create a new object for you for each table by specifying the C attribute. By default the constructor is assumed to be the class B method; if not, specify it using the C attribute: use MyClass; %table_req = ( ..., class => 'MyClass', new => 'mynew' ); To use a function instead of a method for a particular callback, set the callback attribute to a code reference: %table_req = ( ..., obj => $obj, end => \&end_func ); You don't have to provide all the callbacks. You should not use both C and C in the same table request. B automatically determines if your object or class has one of the required methods. If you wish it I to use a particular method, set it equal to C. For example %table_req = ( ..., obj => $obj, end => undef ) indicates the object's B method should not be called, even if it exists. You can specify arbitrary data to be passed to the callback functions via the C attribute: %table_req = ( ..., udata => \%hash_of_my_special_stuff ) =head2 Specifying Data cleanup operations Data cleanup operations may be specified uniquely for each table. The available keys are C, C, C. They should be set to a non-zero value if the operation is to be performed. =head2 Other Attributes The C key is used when a request is capable of handling multiple tables in the document. Ordinarily, a request will process a single table only (even C requests). Set it to a non-zero value to allow the request to handle more than one table. =head1 BUGS Please report any bugs or feature requests on the bugtracker website L or by email to L. When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. =head1 SOURCE The development version is on github at L and may be cloned from L =head1 AUTHOR Diab Jerius =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. This is free software, licensed under: The GNU General Public License, Version 3, June 2007 =cut __END__ #pod =head1 SYNOPSIS #pod #pod use HTML::TableParser; #pod #pod @reqs = ( #pod { #pod id => 1.1, # id for embedded table #pod hdr => \&header, # function callback #pod row => \&row, # function callback #pod start => \&start, # function callback #pod end => \&end, # function callback #pod udata => { Snack => 'Food' }, # arbitrary user data #pod }, #pod { #pod id => 1, # table id #pod cols => [ 'Object Type', #pod qr/object/ ], # column name matches #pod obj => $obj, # method callbacks #pod }, #pod ); #pod #pod # create parser object #pod $p = HTML::TableParser->new( \@reqs, #pod { Decode => 1, Trim => 1, Chomp => 1 } ); #pod $p->parse_file( 'foo.html' ); #pod #pod #pod # function callbacks #pod sub start { #pod my ( $id, $line, $udata ) = @_; #pod #... #pod } #pod #pod sub end { #pod my ( $id, $line, $udata ) = @_; #pod #... #pod } #pod #pod sub header { #pod my ( $id, $line, $cols, $udata ) = @_; #pod #... #pod } #pod #pod sub row { #pod my ( $id, $line, $cols, $udata ) = @_; #pod #... #pod } #pod #pod =head1 DESCRIPTION #pod #pod B uses B to extract data from an HTML #pod table. The data is returned via a series of user defined callback #pod functions or methods. Specific tables may be selected either by a #pod matching a unique table id or by matching against the column names. #pod Multiple (even nested) tables may be parsed in a document in one pass. #pod #pod =head2 Table Identification #pod #pod Each table is given a unique id, relative to its parent, based upon its #pod order and nesting. The first top level table has id C<1>, the second #pod C<2>, etc. The first table nested in table C<1> has id C<1.1>, the #pod second C<1.2>, etc. The first table nested in table C<1.1> has id #pod C<1.1.1>, etc. These, as well as the tables' column names, may #pod be used to identify which tables to parse. #pod #pod =head2 Data Extraction #pod #pod As the parser traverses a selected table, it will pass data to user #pod provided callback functions or methods after it has digested #pod particular structures in the table. All functions are passed the #pod table id (as described above), the line number in the HTML source #pod where the table was found, and a reference to any table specific user #pod provided data. #pod #pod =over 8 #pod #pod =item Table Start #pod #pod The B callback is invoked when a matched table has been found. #pod #pod =item Table End #pod #pod The B callback is invoked after a matched table has been parsed. #pod #pod =item Header #pod #pod The B callback is invoked after the table header has been read in. #pod Some tables do not use the BthE> tag to indicate a header, so this #pod function may not be called. It is passed the column names. #pod #pod =item Row #pod #pod The B callback is invoked after a row in the table has been read. #pod It is passed the column data. #pod #pod =item Warn #pod #pod The B callback is invoked when a non-fatal error occurs during #pod parsing. Fatal errors croak. #pod #pod =item New #pod #pod This is the class method to call to create a new object when #pod B is supposed to create new objects upon table #pod start. #pod #pod =back #pod #pod =head2 Callback API #pod #pod Callbacks may be functions or methods or a mixture of both. #pod In the latter case, an object must be passed to the constructor. #pod (More on that later.) #pod #pod The callbacks are invoked as follows: #pod #pod start( $tbl_id, $line_no, $udata ); #pod #pod end( $tbl_id, $line_no, $udata ); #pod #pod hdr( $tbl_id, $line_no, \@col_names, $udata ); #pod #pod row( $tbl_id, $line_no, \@data, $udata ); #pod #pod warn( $tbl_id, $line_no, $message, $udata ); #pod #pod new( $tbl_id, $udata ); #pod #pod =head2 Data Cleanup #pod #pod There are several cleanup operations that may be performed automatically: #pod #pod =over 8 #pod #pod =item Chomp #pod #pod B the data #pod #pod =item Decode #pod #pod Run the data through B. #pod #pod =item DecodeNBSP #pod #pod Normally B changes a non-breaking space into #pod a character which doesn't seem to be matched by Perl's whitespace #pod regexp. Setting this attribute changes the HTML C character to #pod a plain 'ol blank. #pod #pod =item Trim #pod #pod remove leading and trailing white space. #pod #pod =back #pod #pod =head2 Data Organization #pod #pod Column names are derived from cells delimited by the BthE> and #pod B/thE> tags. Some tables have header cells which span one or #pod more columns or rows to make things look nice. B #pod determines the actual number of columns used and provides column #pod names for each column, repeating names for spanned columns and #pod concatenating spanned rows and columns. For example, if the #pod table header looks like this: #pod #pod +----+--------+----------+-------------+-------------------+ #pod | | | Eq J2000 | | Velocity/Redshift | #pod | No | Object |----------| Object Type |-------------------| #pod | | | RA | Dec | | km/s | z | Qual | #pod +----+--------+----------+-------------+-------------------+ #pod #pod The columns will be: #pod #pod No #pod Object #pod Eq J2000 RA #pod Eq J2000 Dec #pod Object Type #pod Velocity/Redshift km/s #pod Velocity/Redshift z #pod Velocity/Redshift Qual #pod #pod Row data are derived from cells delimited by the BtdE> and #pod B/tdE> tags. Cells which span more than one column or row are #pod handled correctly, i.e. the values are duplicated in the appropriate #pod places. #pod #pod =head1 METHODS #pod #pod =over 8 #pod #pod =item new #pod #pod $p = HTML::TableParser->new( \@reqs, \%attr ); #pod #pod This is the class constructor. It is passed a list of table requests #pod as well as attributes which specify defaults for common operations. #pod Table requests are documented in L. #pod #pod The C<%attr> hash provides default values for some of the table #pod request attributes, namely the data cleanup operations ( C, #pod C, C ), and the multi match attribute C, #pod i.e., #pod #pod $p = HTML::TableParser->new( \@reqs, { Chomp => 1 } ); #pod #pod will set B on for all of the table requests, unless overridden #pod by them. The data cleanup operations are documented above; C #pod is documented in L. #pod #pod B defaults to on; all of the others default to off. #pod #pod =item parse_file #pod #pod This is the same function as in B. #pod #pod =item parse #pod #pod This is the same function as in B. #pod #pod =back #pod #pod #pod =head1 Table Requests #pod #pod A table request is a hash used by B to determine #pod which tables are to be parsed, the callbacks to be invoked, and any #pod data cleanup. There may be multiple requests processed by one call to #pod the parser; each table is associated with a single request (even if #pod several requests match the table). #pod #pod A single request may match several tables, however unless the #pod B attribute is specified for that request, it will be used #pod for the first matching table only. #pod #pod A table request which matches a table id of C will be used as #pod a catch-all request, and will match all tables not matched by other #pod requests. Please note that tables are compared to the requests in the #pod order that the latter are passed to the B method; place the #pod B method last for proper behavior. #pod #pod #pod =head2 Identifying tables to parse #pod #pod B needs to be told which tables to parse. This can #pod be done by matching table ids or column names, or a combination of #pod both. The table request hash elements dedicated to this are: #pod #pod =over 8 #pod #pod =item id #pod #pod This indicates a match on table id. It can take one of these forms: #pod #pod =over 8 #pod #pod =item exact match #pod #pod id => $match #pod id => '1.2' #pod #pod Here C<$match> is a scalar which is compared directly to the table id. #pod #pod =item regular expression #pod #pod id => $re #pod id => qr/1\.\d+\.2/ #pod #pod C<$re> is a regular expression, which must be constructed with the #pod C operator. #pod #pod =item subroutine #pod #pod id => \&my_match_subroutine #pod id => sub { my ( $id, $oids ) = @_ ; #pod $oids[0] > 3 && $oids[1] < 2 } #pod #pod Here C is assigned a coderef to a subroutine which returns #pod true if the table matches, false if not. The subroutine is passed #pod two arguments: the table id as a scalar string ( e.g. C<1.2.3>) and the #pod table id as an arrayref (e.g. C<$oids = [ 1, 2, 3]>). #pod #pod =back #pod #pod C may be passed an array containing any combination of the #pod above: #pod #pod id => [ '1.2', qr/1\.\d+\.2/, sub { ... } ] #pod #pod Elements in the array may be preceded by a modifier indicating #pod the action to be taken if the table matches on that element. #pod The modifiers and their meanings are: #pod #pod =over 8 #pod #pod =item C<-> #pod #pod If the id matches, it is explicitly excluded from being processed #pod by this request. #pod #pod =item C<--> #pod #pod If the id matches, it is skipped by B requests. #pod #pod =item C<+> #pod #pod If the id matches, it will be processed by this request. This #pod is the default action. #pod #pod =back #pod #pod An example: #pod #pod id => [ '-', '1.2', 'DEFAULT' ] #pod #pod indicates that this request should be used for all tables, #pod except for table 1.2. #pod #pod id => [ '--', '1.2' ] #pod #pod Table 2 is just plain skipped altogether. #pod #pod =item cols #pod #pod This indicates a match on column names. It can take one of these forms: #pod #pod =over 8 #pod #pod =item exact match #pod #pod cols => $match #pod cols => 'Snacks01' #pod #pod Here C<$match> is a scalar which is compared directly to the column names. #pod If any column matches, the table is processed. #pod #pod =item regular expression #pod #pod cols => $re #pod cols => qr/Snacks\d+/ #pod #pod C<$re> is a regular expression, which must be constructed with the #pod C operator. Again, a successful match against any column name #pod causes the table to be processed. #pod #pod =item subroutine #pod #pod cols => \&my_match_subroutine #pod cols => sub { my ( $id, $oids, $cols ) = @_ ; #pod ... } #pod #pod Here C is assigned a coderef to a subroutine which returns #pod true if the table matches, false if not. The subroutine is passed #pod three arguments: the table id as a scalar string ( e.g. C<1.2.3>), the #pod table id as an arrayref (e.g. C<$oids = [ 1, 2, 3]>), and the column #pod names, as an arrayref (e.g. C<$cols = [ 'col1', 'col2' ]>). This #pod option gives the calling routine the ability to make arbitrary #pod selections based upon table id and columns. #pod #pod =back #pod #pod C may be passed an arrayref containing any combination of the #pod above: #pod #pod cols => [ 'Snacks01', qr/Snacks\d+/, sub { ... } ] #pod #pod Elements in the array may be preceded by a modifier indicating #pod the action to be taken if the table matches on that element. #pod They are the same as the table id modifiers mentioned above. #pod #pod =item colre #pod #pod B #pod An arrayref containing the regular expressions to match, or a scalar #pod containing a single reqular expression #pod #pod =back #pod #pod More than one of these may be used for a single table request. A #pod request may match more than one table. By default a request is used #pod only once (even the C id match!). Set the C #pod attribute to enable multiple matches per request. #pod #pod When attempting to match a table, the following steps are taken: #pod #pod =over 8 #pod #pod =item 1 #pod #pod The table id is compared to the requests which contain an id match. #pod The first such match is used (in the order given in the passed array). #pod #pod =item 2 #pod #pod If no explicit id match is found, column name matches are attempted. #pod The first such match is used (in the order given in the passed array) #pod #pod =item 3 #pod #pod If no column name match is found (or there were none requested), #pod the first request which matches an B of C is used. #pod #pod =back #pod #pod =head2 Specifying the data callbacks #pod #pod Callback functions are specified with the callback attributes #pod C, C, C, C, and C. They should be set to #pod code references, i.e. #pod #pod %table_req = ( ..., start => \&start_func, end => \&end_func ) #pod #pod To use methods, specify the object with the C key, and #pod the method names via the callback attributes, which should be set #pod to strings. If you don't specify method names they will default to (you #pod guessed it) C, C, C, C, and C. #pod #pod $obj = SomeClass->new(); #pod # ... #pod %table_req_1 = ( ..., obj => $obj ); #pod %table_req_2 = ( ..., obj => $obj, start => 'start', #pod end => 'end' ); #pod #pod You can also have B create a new object for you #pod for each table by specifying the C attribute. By default #pod the constructor is assumed to be the class B method; if not, #pod specify it using the C attribute: #pod #pod use MyClass; #pod %table_req = ( ..., class => 'MyClass', new => 'mynew' ); #pod #pod To use a function instead of a method for a particular callback, #pod set the callback attribute to a code reference: #pod #pod %table_req = ( ..., obj => $obj, end => \&end_func ); #pod #pod You don't have to provide all the callbacks. You should not use both #pod C and C in the same table request. #pod #pod B automatically determines if your object #pod or class has one of the required methods. If you wish it I #pod to use a particular method, set it equal to C. For example #pod #pod %table_req = ( ..., obj => $obj, end => undef ) #pod #pod indicates the object's B method should not be called, even #pod if it exists. #pod #pod You can specify arbitrary data to be passed to the callback functions #pod via the C attribute: #pod #pod %table_req = ( ..., udata => \%hash_of_my_special_stuff ) #pod #pod =head2 Specifying Data cleanup operations #pod #pod Data cleanup operations may be specified uniquely for each table. The #pod available keys are C, C, C. They should be #pod set to a non-zero value if the operation is to be performed. #pod #pod =head2 Other Attributes #pod #pod The C key is used when a request is capable of handling #pod multiple tables in the document. Ordinarily, a request will process #pod a single table only (even C requests). #pod Set it to a non-zero value to allow the request to handle more than #pod one table. HTML-TableParser-0.43/lib/HTML/TableParser/0000755000040700040100000000000013255011270017264 5ustar djcxcopticsHTML-TableParser-0.43/lib/HTML/TableParser/Table.pm0000644000040700040100000004406413255011270020661 0ustar djcxcopticspackage HTML::TableParser::Table; # ABSTRACT: support class for HTML::TableParser use strict; use warnings; use HTML::Entities qw(); our $VERSION = '0.43'; ## no critic ( ProhibitAccessOfPrivateData ) #pod =method new #pod #pod =cut sub new { my $this = shift; my $class = ref($this) || $this; my $self = { data => [[]], # row data (for overlapping rows) row => undef, # row info col => undef, # column info hdr => undef, # accumulated header info hdr_row => 0, # index of header row hdr_line => undef, # line in file of header row in_hdr => 0, # are we in a header row? prev_hdr => 0, # was the previous row a header row? line => undef, # line in file of current row start_line => undef, # line in file of table start req => undef, # the matching table request exclreqs => {}, # the requests which exlude this table }; bless $self, $class; my ( $parser, $ids, $reqs, $line ) = @_; $self->{parser} = $parser; $self->{start_line} = $line; # if called with no args, create an empty, placeholder object unless ( defined $ids ) { $self->{ids} = [ 0 ]; $self->{process} = 0; $self->{id} = 'sentinel'; } else { $ids->[-1]++; $self->{oids} = [ @$ids ]; $self->{ids} = [ @$ids, 0 ]; $self->{id} = join( '.', grep { $_ != 0 } @{$ids} ); $self->{reqs} = $reqs; # are we interested in this table? $self->match_id(); # inform user of table start. note that if we're looking for # for column name matches, we don't want to do the callback; # in that case $self->{req} isn't set and callback() won't # actually make the call. $self->callback( 'start', $self->{start_line} ) if $self->{process}; } $self; } #pod =method match_id #pod #pod =cut sub match_id { my $self = shift; $self->{process} = 0; $self->{req} = undef; # 1. look for explicit id matches # 2. if no explicit id match, use header matches # 3. if no header matches, use DEFAULT # 4. if no DEFAULT, no match # 1. explicit id. my ( $skip, $req ); ( $skip, $req ) = req_match_id( $self->{reqs}, $self->{id}, $self->{oids}, $self->{exclreqs} ); # did we match a skip table request? return if $skip; if ( $req ) { $self->match_req( $req ); return; } # 2. header match. # don't set {req}, as that'll trigger callbacks and we're not sure # this is a match yet if ( grep { @{$_->{cols}} } @{$self->{reqs}}) { $self->{process} = 1; $self->{req} = undef; return; } # 3. DEFAULT match ( $skip, $req ) = req_match_id( $self->{reqs}, 'DEFAULT', $self->{oids}, $self->{exclreqs} ); # did we match a skip table request? Does this make sense for DEFAULT? return if $skip; if ( $req ) { $self->match_req( $req ); return; } # 4. out of luck. no match. } #pod =method req_match_id #pod #pod =cut # determine if a request matches an id. requests should # be real objects, but until then... sub req_match_id { my ( $reqs, $id, $oids, $excluded ) = @_; for my $req ( @$reqs ) { # if we've already excluded this request, don't bother again. # this is needed for id = DEFAULT passes where we've previously # excluded based on actual table id and should again. next if exists $excluded->{$req}; # bail if this request has already matched and we're not # multi-matching next if $req->{match} && ! $req->{MultiMatch}; for my $cmp ( @{$req->{id}} ) { # is this a subroutine to call? if ( 'CODE' eq ref $cmp->{match} ) { next unless $cmp->{match}->($id, $oids ); } # regular expression elsif( 'Regexp' eq ref $cmp->{match} ) { next unless $id =~ /$cmp->{match}/; } # a direct match? else { next unless $id eq $cmp->{match}; } # we get here only if there was a match. # move on to next request if this was an explicit exclude # request. if ( $cmp->{exclude} ) { $excluded->{$req}++; next; } # return match, plus whether this is a global skip request return ( $cmp->{skip}, $req ); } } ( 0, undef ); } #pod =method req_match_cols #pod #pod =cut # determine if a request matches a column. requests should # be real objects, but until then... sub req_match_cols { my ( $reqs, $cols, $id, $oids ) = @_; for my $req ( @$reqs ) { # bail if this request has already matched and we're not # multi-matching next if $req->{match} && ! $req->{MultiMatch}; my @fix_cols = @$cols; fix_texts($req, \@fix_cols); for my $cmp ( @{$req->{cols}} ) { # is this a subroutine to call? if ( 'CODE' eq ref $cmp->{match} ) { next unless $cmp->{match}->( $id, $oids, \@fix_cols ); } # regular expression elsif( 'Regexp' eq ref $cmp->{match} ) { next unless grep { /$cmp->{match}/ } @fix_cols; } # a direct match? else { next unless grep { $_ eq $cmp->{match} } @fix_cols; } # we get here only if there was a match # move on to next request if this was an explicit exclude # request. next if $cmp->{exclude}; # return match, plus whether this is a global skip request return ( $cmp->{skip}, $req ); } } (0, undef); } #pod =method match_hdr #pod #pod =cut # we've pulled in a header; does it match against one of the requests? sub match_hdr { my ( $self, @cols ) = @_; # 1. check header matches # 2. if no header matches, use DEFAULT id # 3. if no DEFAULT, no match # 1. check header matches my ( $skip, $req ) = req_match_cols( $self->{reqs}, \@cols, $self->{id}, $self->{oids} ); # did we match a skip table request? return 0 if $skip; if ( $req ) { $self->match_req( $req ); return 1; } # 2. DEFAULT match ( $skip, $req ) = req_match_id( $self->{reqs}, 'DEFAULT', $self->{oids}, $self->{exclreqs} ); # did we match a skip table request? Does this make sense for DEFAULT? return 0 if $skip; if ( $req ) { $self->match_req( $req ); return 1; } # 3. if no DEFAULT, no match 0; } #pod =method match_req #pod #pod =cut sub match_req { my ( $self, $req ) = @_; if ( $req->{class} ) { # no strict 'refs'; my $new = $req->{new}; $self->{obj} = $req->{class}->$new( $req->{id}, $req->{udata} ); } elsif ( $req->{obj} ) { $self->{obj} = $req->{obj}; } $self->{process} = 1; $self->{req} = $req; $self->{req}{match}++; } #pod =method callback #pod #pod =cut # generic call back interface. handle method calls as well as # subroutine calls. sub callback { my $self = shift; my $method = shift; return unless defined $self->{req} && exists $self->{req}->{$method}; my $req = $self->{req}; my $call = $req->{$method}; if ( 'CODE' eq ref $call ) { $call->( $self->{id}, @_, $req->{udata} ); } else { # if the object was destroyed before we get here (if it # was created by us and thus was destroyed before us if # there was an error), we can't call a method $self->{obj}->$call( $self->{id}, @_, $req->{udata} ) if defined $self->{obj}; } } # handle #pod =method start_header #pod #pod =cut sub start_header { my $self = shift; my ( undef, $line ) = @_; $self->{in_hdr}++; $self->{prev_hdr}++; $self->{hdr_line} = $line; $self->start_column( @_ ); } # handle #pod =method end_header #pod #pod =cut sub end_header { my $self = shift; $self->end_column(); } # handle #pod =method start_column #pod #pod =cut sub start_column { my $self = shift; my ( $attr, $line ) = @_; # end last column if not explicitly ended. perform check here # to avoid extra method call $self->end_column() if defined $self->{col}; # we really shouldn't be here if a row hasn't been started unless ( defined $self->{row} ) { $self->callback( 'warn', $self->{id}, $line, " or without at line $line\n" ); $self->start_row( {}, $line ); } # even weirder. if the last row was a header we have to process it now, # rather than waiting until the end of this row, as there might be # a table in one of the cells in this row and if the enclosing table # was using a column match/re, we won't match it's header until after # the enclosed table is completely parsed. this is bad, as it may # grab a match (if there's no multimatch) meant for the enclosing table. # if we're one row past the header, we're done with the header $self->finish_header() if ! $self->{in_hdr} && $self->{prev_hdr}; $self->{col} = { attr => { %$attr} }; $self->{col}{attr}{colspan} ||= 1; $self->{col}{attr}{rowspan} ||= 1; } # handle #pod =method end_column #pod #pod =cut sub end_column { my $self = shift; return unless defined $self->{col}; $self->{col}{text} = defined $self->{text} ? $self->{text} : '' ; push @{$self->{row}}, $self->{col}; $self->{col} = undef; $self->{text} = undef; } #pod =method start_row #pod #pod =cut sub start_row { my $self = shift; my ( $attr, $line ) = @_; # end last row if not explicitly ended $self->end_row(); $self->{row} = []; $self->{line} = $line; } #pod =method end_row #pod #pod =cut sub end_row { my $self = shift; return unless defined $self->{row}; # perhaps an unfinished row. first finish column $self->end_column(); # if we're in a header, deal with overlapping cells differently # then if we're in the data section if ( $self->{in_hdr} ) { my $cn = 0; foreach my $col ( @{$self->{row}} ) { # do this just in case there are newlines and we're concatenating # column names later on. causes strange problems. besides, # column names should be regular $col->{text} =~ s/^\s+//; $col->{text} =~ s/\s+$//; # need to find the first undefined column $cn++ while defined $self->{hdr}[$cn][$self->{hdr_row}]; # note that header is stored as one array per column, not row! for ( my $cnn = 0 ; $cnn < $col->{attr}{colspan} ; $cnn++, $cn++ ) { $self->{hdr}[$cn] ||= []; $self->{hdr}[$cn][$self->{hdr_row}] = $col->{text}; # put empty placeholders in the rest of the rows for ( my $rnn = 1 ; $rnn < $col->{attr}{rowspan} ; $rnn++ ) { $self->{hdr}[$cn][$rnn + $self->{hdr_row}] = ''; } } } $self->{hdr_row}++; } else { my $cn = 0; foreach my $col ( @{$self->{row}} ) { # need to find the first undefined column $cn++ while defined $self->{data}[0][$cn]; for ( my $cnn = 0 ; $cnn < $col->{attr}{colspan} ; $cnn++, $cn++ ) { for ( my $rnn = 0 ; $rnn < $col->{attr}{rowspan} ; $rnn++ ) { $self->{data}[$rnn] ||= []; $self->{data}[$rnn][$cn] = $col->{text}; } } } } # if we're one row past the header, we're done with the header $self->finish_header() if ! $self->{in_hdr} && $self->{prev_hdr}; # output the data if we're not in a header $self->callback( 'row', $self->{line}, fix_texts( $self->{req}, shift @{$self->{data}} ) ) unless $self->{in_hdr}; $self->{in_hdr} = 0; $self->{row} = undef; } # collect the possible multiple header rows into one array and # send it off #pod =method finish_header #pod #pod =cut sub finish_header { my $self = shift; return unless $self->{hdr}; my @header = map { join( ' ', grep { defined $_ && $_ ne '' } @{$_}) } @{ $self->{hdr} }; # if we're trying to match header columns, check that here. if ( defined $self->{req} ) { fix_texts( $self->{req}, \@header ); $self->callback( 'hdr', $self->{hdr_line}, \@header ); } else { if ( $self->match_hdr( @header ) ) { # haven't done this callback yet... $self->callback( 'start', $self->{start_line} ); fix_texts( $self->{req}, \@header ); $self->callback( 'hdr', $self->{hdr_line}, \@header ); } # no match. reach up to the controlling parser and turn off # processing of this table. this is kind of kludgy! else { $self->{parser}->process(0); } } $self->{hdr} = undef; $self->{prev_hdr} = undef; $self->{hdr_row} = 0; } DESTROY { my $self = shift; # if we're actually parsing this table, do something. if ( $self->{process} ) { # just in case $self->end_row(); # just in case there's no table body $self->finish_header(); $self->callback( 'end', $self->{line} ); } } #pod =method fix_texts #pod #pod =cut sub fix_texts { my ( $req, $texts ) = @_; for ( @$texts ) { local $HTML::Entities::entity2char{nbsp} = $HTML::Entities::entity2char{nbsp}; $HTML::Entities::entity2char{nbsp} = ' ' if $req->{DecodeNBSP}; chomp $_ if $req->{Chomp}; HTML::Entities::decode_entities( $_ ) if $req->{Decode}; if ( $req->{Trim} ) { s/^\s+//; s/\s+$//; } } $texts; } #pod =method text #pod #pod =cut sub text { my $self = shift; $self->{text} = shift; } #pod =method id #pod #pod =cut sub id { $_[0]->{id} } #pod =method ids #pod #pod =cut sub ids { $_[0]->{ids} } #pod =method process #pod #pod =cut sub process { $_[0]->{process} } 1; # # This file is part of HTML-TableParser # # This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. # # This is free software, licensed under: # # The GNU General Public License, Version 3, June 2007 # =pod =head1 NAME HTML::TableParser::Table - support class for HTML::TableParser =head1 VERSION version 0.43 =head1 DESCRIPTION This class is used to keep track of information related to a table and to create the information passed back to the user callbacks. It is in charge of marshalling the massaged header and row data to the user callbacks. An instance is created when the controlling TableParser class finds a C< tag. The object is given an id based upon which table it is to work on. Its methods are invoked from the TableParser callbacks when they run across an appropriate tag (C, C
, C). The object is destroyed when the matching C
tag is found. Since tables may be nested, multiple B objects may exist simultaneously. B uses two pieces of information held by this class -- ids and process. The first is an array of table ids, one element per level of table nesting. The second is a flag indicating whether this table is being processed (i.e. it matches a requested table) or being ignored. Since B uses the ids information from an existing table to initialize a new table, it first creates an empty sentinel (place holder) table (by calling the B constructor with no arguments). The class handles missing C, C, and C tags. As such (especially when handling multi-row headers) user callbacks may be slightly delayed (and data cached). It also handles rows with overlapping columns =head1 METHODS =head2 new =head2 match_id =head2 req_match_id =head2 req_match_cols =head2 match_hdr =head2 match_req =head2 callback =head2 start_header =head2 end_header =head2 start_column =head2 end_column =head2 start_row =head2 end_row =head2 finish_header =head2 fix_texts =head2 text =head2 id =head2 ids =head2 process =head1 BUGS Please report any bugs or feature requests on the bugtracker website L or by email to L. When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. =head1 SOURCE The development version is on github at L and may be cloned from L =head1 SEE ALSO Please see those modules/websites for more information related to this module. =over 4 =item * L =back =head1 AUTHOR Diab Jerius =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. This is free software, licensed under: The GNU General Public License, Version 3, June 2007 =cut __END__ #pod =head1 DESCRIPTION #pod #pod This class is used to keep track of information related to a table and #pod to create the information passed back to the user callbacks. It is in #pod charge of marshalling the massaged header and row data to the user #pod callbacks. #pod #pod An instance is created when the controlling TableParser class finds a #pod C< tag. The object is given an id based upon which table it is #pod to work on. Its methods are invoked from the TableParser callbacks #pod when they run across an appropriate tag (C, C
, C). The #pod object is destroyed when the matching C
tag is found. #pod #pod Since tables may be nested, multiple B #pod objects may exist simultaneously. B uses two #pod pieces of information held by this class -- ids and process. The #pod first is an array of table ids, one element per level of table #pod nesting. The second is a flag indicating whether this table is being #pod processed (i.e. it matches a requested table) or being ignored. Since #pod B uses the ids information from an existing table #pod to initialize a new table, it first creates an empty sentinel (place #pod holder) table (by calling the B constructor #pod with no arguments). #pod #pod The class handles missing C, C, and C tags. As such #pod (especially when handling multi-row headers) user callbacks may #pod be slightly delayed (and data cached). It also handles rows #pod with overlapping columns HTML-TableParser-0.43/META.json0000644000040700040100000001174013255011270015172 0ustar djcxcoptics{ "abstract" : "HTML::TableParser - Extract data from an HTML table", "author" : [ "Diab Jerius " ], "dynamic_config" : 0, "generated_by" : "Dist::Zilla version 6.010, CPAN::Meta::Converter version 2.150010", "license" : [ "gpl_3" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : 2 }, "name" : "HTML-TableParser", "no_index" : { "directory" : [ "eg", "examples", "inc", "share", "t", "xt" ] }, "prereqs" : { "configure" : { "requires" : { "ExtUtils::MakeMaker" : "0" } }, "develop" : { "requires" : { "Dist::Zilla" : "5", "Dist::Zilla::Plugin::AutoMetaResources" : "0", "Dist::Zilla::Plugin::BumpVersionAfterRelease" : "0", "Dist::Zilla::Plugin::CPANFile" : "0", "Dist::Zilla::Plugin::CheckMetaResources" : "0", "Dist::Zilla::Plugin::CopyFilesFromRelease" : "0", "Dist::Zilla::Plugin::Encoding" : "0", "Dist::Zilla::Plugin::EnsureChangesHasContent" : "0", "Dist::Zilla::Plugin::EnsurePrereqsInstalled" : "0", "Dist::Zilla::Plugin::GatherDir" : "0", "Dist::Zilla::Plugin::InsertCopyright" : "0", "Dist::Zilla::Plugin::InsertExample" : "0", "Dist::Zilla::Plugin::MetaJSON" : "0", "Dist::Zilla::Plugin::MetaNoIndex" : "0", "Dist::Zilla::Plugin::MetaProvides::Package" : "0", "Dist::Zilla::Plugin::NextRelease" : "0", "Dist::Zilla::Plugin::PodCoverageTests" : "0", "Dist::Zilla::Plugin::PodSyntaxTests" : "0", "Dist::Zilla::Plugin::PodWeaver" : "0", "Dist::Zilla::Plugin::Prereqs" : "0", "Dist::Zilla::Plugin::Prereqs::AuthorDeps" : "0", "Dist::Zilla::Plugin::Readme::Brief" : "0", "Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0", "Dist::Zilla::Plugin::Regenerate" : "0", "Dist::Zilla::Plugin::RewriteVersion" : "0", "Dist::Zilla::Plugin::RunExtraTests" : "0", "Dist::Zilla::Plugin::Test::CPAN::Changes" : "0", "Dist::Zilla::Plugin::Test::CPAN::Meta::JSON" : "0", "Dist::Zilla::Plugin::Test::CheckManifest" : "0", "Dist::Zilla::Plugin::Test::CleanNamespaces" : "0", "Dist::Zilla::Plugin::Test::Compile" : "0", "Dist::Zilla::Plugin::Test::Fixme" : "0", "Dist::Zilla::Plugin::Test::NoBreakpoints" : "0", "Dist::Zilla::Plugin::Test::NoTabs" : "0", "Dist::Zilla::Plugin::Test::Perl::Critic" : "0", "Dist::Zilla::Plugin::Test::PodSpelling" : "0", "Dist::Zilla::Plugin::Test::ReportPrereqs" : "0", "Dist::Zilla::Plugin::Test::TrailingSpace" : "0", "Dist::Zilla::Plugin::Test::UnusedVars" : "0", "Dist::Zilla::Plugin::Test::Version" : "0", "Dist::Zilla::PluginBundle::Basic" : "0", "Dist::Zilla::PluginBundle::Filter" : "0", "Pod::Coverage::TrustPod" : "0", "Pod::Weaver::Section::BugsAndLimitations" : "0", "Pod::Weaver::Section::SeeAlso" : "0", "Software::License::GPL_3" : "0", "Test::CPAN::Changes" : "0.19", "Test::CPAN::Meta::JSON" : "0.16", "Test::CleanNamespaces" : "0.15", "Test::More" : "0.88", "Test::NoBreakpoints" : "0.15", "Test::NoTabs" : "0", "Test::Perl::Critic" : "0", "Test::Pod" : "1.41", "Test::Pod::Coverage" : "1.08", "Test::Spelling" : "0.12", "Test::TrailingSpace" : "0.0203", "Test::Version" : "1" } }, "runtime" : { "requires" : { "HTML::Entities" : "0", "HTML::Parser" : "3.26" } }, "test" : { "recommends" : { "CPAN::Meta" : "2.120900" }, "requires" : { "ExtUtils::MakeMaker" : "0", "File::Spec" : "0", "IO::Handle" : "0", "IPC::Open3" : "0", "Test::More" : "0.32" } } }, "provides" : { "HTML::TableParser" : { "file" : "lib/HTML/TableParser.pm", "version" : "0.43" }, "HTML::TableParser::Table" : { "file" : "lib/HTML/TableParser/Table.pm", "version" : "0.43" } }, "release_status" : "stable", "resources" : { "bugtracker" : { "mailto" : "bug-HTML-TableParser@rt.cpan.org", "web" : "https://rt.cpan.org/Public/Dist/Display.html?Name=HTML-TableParser" }, "repository" : { "type" : "git", "url" : "git://github.com/djerius/html-tableparser.git", "web" : "https://github.com/djerius/html-tableparser" } }, "version" : "0.43", "x_serialization_backend" : "Cpanel::JSON::XS version 3.0237" } HTML-TableParser-0.43/dist.ini0000644000040700040100000000460613255011270015220 0ustar djcxcopticsname = HTML-TableParser author = Diab Jerius license = GPL_3 copyright_holder = Smithsonian Astrophysical Observatory copyright_year = 2018 [@Filter] -bundle = @Basic -remove = Readme -remove = GatherDir -remove = ExtraTests ;-remove = UploadToCPAN ;[FakeRelease] ;[Run::Release] ;run = orepan2-inject %a /proj/axaf/simul/export/darkpan [RewriteVersion] [NextRelease] [BumpVersionAfterRelease] [GatherDir] exclude_filename = cpanfile exclude_filename = LICENSE exclude_filename = Makefile.PL prune_directory = local exclude_match = ~$ [Readme::Brief] [ReadmeAnyFromPod] location = root filename = README.mkdn type = markdown [Encoding] encoding = bytes match = .*\.data$ [PodWeaver] replacer = replace_with_comment post_code_replacer = replace_with_comment [CPANFile] [MetaJSON] [MetaProvides::Package] [InsertExample] remove_boiler = 1 [InsertCopyright] [CopyFilesFromRelease] ; Copy generated content to the repository root so users without ; Dist::Zilla can use it filename = cpanfile filename = LICENSE filename = Makefile.PL [AutoMetaResources] bugtracker.rt = 1 repository.github = user:djerius [CheckMetaResources] [MetaNoIndex] directory = t directory = xt directory = inc directory = share directory = eg directory = examples [Regenerate] filenames = cpanfile filenames = LICENSE filenames = Makefile.PL [Test::ReportPrereqs] [Test::Compile] [Test::NoTabs] [Test::Fixme] [Test::Version] [Test::NoBreakpoints] [Test::TrailingSpace] [Test::CheckManifest] [Test::UnusedVars] [Test::CPAN::Changes] [Test::CPAN::Meta::JSON] [Test::Perl::Critic] [Test::CleanNamespaces] [Test::PodSpelling] stopword = DecodeNBSP stopword = MultiMatch stopword = colre stopword = hdr stopword = ol stopword = reqular [PodSyntaxTests] [PodCoverageTests] [RunExtraTests] [Prereqs::AuthorDeps] [EnsurePrereqsInstalled] [EnsureChangesHasContent] ; --- Project-specific directives [Prereqs] HTML::Entities = 0 HTML::Parser = 3.26 [Prereqs / TestRequires] Test::More = 0.32 [Prereqs / DevelopRequires ] Pod::Coverage::TrustPod = 0 Test::CPAN::Changes = 0 Test::CPAN::Meta::JSON = 0 Test::CleanNamespaces = 0 Test::More = 0 Test::NoBreakpoints = 0 Test::NoTabs = 0 Test::Pod = 0 Test::Pod::Coverage = 0 Test::TrailingSpace = 0 Test::Version = 0 Pod::Weaver::Section::BugsAndLimitations = 0 Pod::Weaver::Section::SeeAlso = 0HTML-TableParser-0.43/data/0000755000040700040100000000000013255011270014457 5ustar djcxcopticsHTML-TableParser-0.43/data/table.Default.data0000644000040700040100000000254013255011270017765 0ustar djcxcopticsh1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/ned.Decode.data0000644000040700040100000004401413255011270017245 0ustar djcxcoptics1 PGC 056527 15h58m20.0s +27d14m02s G 27092 0.090369   1.0 9 0 0 0 2 Retrieve 2 ABELL 2142:[HCW85] 2 15h58m18.8s +27d14m21s G 24247 0.080879   1.1 1 0 0 0 0 Retrieve 3 PGC 056515 15h58m13.3s +27d14m55s G 28936 0.096520   1.6 3 0 0 0 1 Retrieve 4 ABELL 2142:[OHF95] 216 15h58m23.1s +27d14m04s G 27658 0.092257   1.7 1 0 0 0 0 Retrieve 5 ABELL 2142:[OHF95] 244 15h58m24.7s +27d13m47s G 26470 0.088294   1.9 1 0 0 0 0 Retrieve 6 ABELL 2142:[OHF95] 246 15h58m07.6s +27d14m45s G 26817 0.089452   2.3 1 0 0 0 0 Retrieve 7 ABELL 2142:[OHF95] 218 15h58m25.5s +27d14m46s G 27154 0.090576   2.5 1 0 0 0 0 Retrieve 8 ABELL 2142:[HS79] 103 15h58m17.5s +27d16m10s G 25161 0.083928   2.7 1 0 0 0 0 Retrieve 9 ABELL 2142:[OHF95] 214 15h58m28.4s +27d13m48s G 27403 0.091406   2.7 1 0 0 0 0 Retrieve 10 ABELL 2142:[OHF95] 209 15h58m24.6s +27d11m26s G 27350 0.091230   2.8 1 0 0 0 0 Retrieve 11 ABELL 2142:[OHF95] 208 15h58m08.0s +27d11m13s G >30000 0.102341   2.9 1 0 0 0 0 Retrieve 12 PGC 056516 15h58m14.0s +27d16m22s G 28644 0.095546   2.9 16 0 4 3 1 Retrieve 13 ABELL 2142:[OHF95] 211 15h58m04.8s +27d11m50s G 24764 0.082604   3.0 1 0 0 0 0 Retrieve 14 ABELL 2142:[OHF95] 228 15h58m13.8s +27d16m46s G 27029 0.090159   3.3 1 0 0 0 0 Retrieve 15 ABELL 2142:[OHF95] 207 15h58m09.0s +27d10m24s G 26209 0.087424   3.5 1 0 0 0 0 Retrieve 16 ABELL 2142:[OHF95] 230 15h58m12.8s +27d17m00s G 25793 0.086036   3.6 1 0 0 0 0 Retrieve 17 ABELL 2142:[OHF95] 221 15h58m01.3s +27d15m03s G 25561 0.085262   3.6 1 0 0 0 0 Retrieve 18 ABELL 2142:[OHF95] 227 15h58m06.5s +27d16m28s G 26107 0.087083   3.7 1 0 0 0 0 Retrieve 19 ABELL 2142:[OHF95] 205 15h58m20.2s +27d09m49s G 25289 0.084355   3.8 1 0 0 0 0 Retrieve 20 ABELL 2142:[OHF95] 204 15h58m17.9s +27d09m38s G 20093 0.067023   3.9 1 0 0 0 0 Retrieve 21 ABELL 2142:[OHF95] 213 15h57m56.2s +27d13m27s G 26695 0.089045   4.4 1 0 0 0 0 Retrieve 22 ABELL 2142:[OHF95] 222 15h58m33.9s +27d15m38s G 25251 0.084228   4.5 1 0 0 0 0 Retrieve 23 [HB91] 1556+274 15h58m29.2s +27d17m08s G 26981 0.090000   4.7 3 0 0 0 0 Retrieve 24 ABELL 2142:[OHF95] 203 15h58m19.2s +27d08m49s G >30000 0.147802   4.7 1 0 0 0 0 Retrieve 25 ABELL 2142:[OHF95] 206 15h57m58.6s +27d10m44s G 26779 0.089325   4.8 1 0 0 0 0 Retrieve 26 ABELL 2142:[OHF95] 212 15h57m54.9s +27d11m52s G 25246 0.084211   5.0 1 0 0 0 0 Retrieve 27 ABELL 2142:[OHF95] 243 15h58m39.1s +27d14m02s G 27034 0.090176   5.1 1 0 0 0 0 Retrieve 28 ABELL 2142:[OHF95] 242 15h58m39.6s +27d13m53s G 26930 0.089829   5.2 1 0 0 0 0 Retrieve 29 ABELL 2142:[OHF95] 224 15h58m39.3s +27d16m19s G 26769 0.089292   5.9 1 0 0 0 0 Retrieve 30 ABELL 2142:[OHF95] 220 15h58m41.5s +27d15m11s G 26486 0.088348   5.9 1 0 0 0 0 Retrieve 31 ABELL 2142:[OHF95] 225 15h57m51.7s +27d16m06s G 27356 0.091250   6.0 1 0 0 0 0 Retrieve 32 ABELL 2142:[OHF95] 234 15h58m26.7s +27d19m13s G 27760 0.092597   6.2 1 0 0 0 0 Retrieve 33 PGC 056530 15h58m21.0s +27d20m03s G 26178 0.087320   6.7 2 0 0 0 1 Retrieve 34 ABELL 2142:[OHF95] 210 15h58m45.4s +27d11m53s G 26182 0.087334   6.7 1 0 0 0 0 Retrieve 35 ABELL 2142:[OHF95] 202 15h58m37.2s +27d08m18s G 27117 0.090452   7.0 1 0 0 0 0 Retrieve 36 ABELL 2142:[OHF95] 343 15h58m32.7s +27d07m26s G >30000 0.106904   7.1 1 0 0 0 0 Retrieve 37 ABELL 2142:[OHF95] 342 15h58m29.6s +27d06m56s G 25466 0.084945   7.2 1 0 0 0 0 Retrieve 38 ABELL 2142:[OHF95] 252 15h58m47.0s +27d15m53s G 24443 0.081533   7.3 1 0 0 0 0 Retrieve 39 ABELL 2142:[OHF95] 215 15h57m43.2s +27d13m38s G 25977 0.086650   7.3 1 0 0 0 0 Retrieve 40 ABELL 2142:[OHF95] 344 15h57m55.7s +27d07m41s G 29091 0.097037   7.4 1 0 0 0 0 Retrieve 41 ABELL 2142:[OHF95] 238 15h58m16.8s +27d20m55s G 27102 0.090402   7.4 1 0 0 0 0 Retrieve 42 ABELL 2142:[OHF95] 231 15h57m49.8s +27d18m14s G 28075 0.093648   7.5 1 0 0 0 0 Retrieve 43 ABELL 2142:[OHF95] 229 15h57m43.7s +27d16m38s G 26615 0.088778   7.9 1 0 0 0 0 Retrieve 44 ABELL 2142:[OHF95] 338 15h58m21.1s +27d05m27s G 25406 0.084745   8.1 1 0 0 0 0 Retrieve 45 ABELL 2142:[OHF95] 232 15h58m43.7s +27d19m00s G 19311 0.064414   8.2 1 0 0 0 0 Retrieve 46 ABELL 2142:[OHF95] 340 15h58m05.1s +27d05m32s G 27222 0.090803   8.3 1 0 0 0 0 Retrieve 47 ABELL 2142:[OHF95] 266 15h57m40.4s +27d15m57s G 26628 0.088821   8.3 1 0 0 0 0 Retrieve 48 IRAS F15566+2716 15h58m42.9s +27d07m38s G 26003 0.086737   8.3 1 0 4 1 0 Retrieve 49 ABELL 2142:[OHF95] 233 15h57m47.1s +27d18m58s G >30000 0.100860   8.5 1 0 0 0 0 Retrieve 50 ABELL 2142:[OHF95] 341 15h58m40.0s +27d06m21s G 27399 0.091393   8.9 1 0 0 0 0 Retrieve 51 ABELL 2142:[OHF95] 240 15h58m31.6s +27d21m44s G >30000 0.100082   8.9 1 0 0 0 0 Retrieve 52 ABELL 2142:[OHF95] 241 15h58m01.0s +27d21m49s G 28364 0.094612   9.0 1 0 0 0 0 Retrieve 53 ABELL 2142:[OHF95] 235 15h58m43.6s +27d20m07s G 28324 0.094479   9.0 1 0 0 0 0 Retrieve 54 ABELL 2142:[OHF95] 260 15h58m55.8s +27d16m41s G 28182 0.094005   9.4 1 0 0 0 0 Retrieve 55 ABELL 2142:[OHF95] 264 15h57m32.9s +27d15m07s G 25805 0.086076   9.7 1 0 0 0 0 Retrieve 56 ABELL 2142:[OHF95] 337 15h58m12.2s +27d03m37s G 20461 0.068250   9.9 1 0 0 0 0 Retrieve 57 ABELL 2142:[OHF95] 255 15h58m56.6s +27d18m24s G 29279 0.097664   10.3 1 0 0 0 0 Retrieve 58 ABELL 2142:[OHF95] 327 15h57m39.3s +27d06m58s G 28561 0.095269   10.5 1 0 0 0 0 Retrieve 59 ABELL 2142:[OHF95] 326 15h57m40.3s +27d06m24s G >30000 0.111520   10.7 1 0 0 0 0 Retrieve 60 ABELL 2142:[OHF95] 253 15h59m04.5s +27d16m08s G 27306 0.091083   11.1 1 0 0 0 0 Retrieve 61 ABELL 2142:[OHF95] 309 15h58m49.6s +27d05m17s G 26241 0.087530   11.1 1 0 0 0 0 Retrieve 62 ABELL 2142:[OHF95] 279 15h57m49.9s +27d23m01s G 27401 0.091400   11.2 1 0 0 0 0 Retrieve 63 ABELL 2142:[OHF95] 277 15h57m37.5s +27d20m39s G 28339 0.094529   11.2 1 0 0 0 0 Retrieve 64 ABELL 2142:[OHF95] 256 15h58m59.0s +27d19m23s G 24511 0.081760   11.2 1 0 0 0 0 Retrieve 65 ABELL 2142:[OHF95] 281 15h57m56.5s +27d23m53s G 27214 0.090776   11.3 1 0 0 0 0 Retrieve 66 ABELL 2142:[OHF95] 280 15h57m51.2s +27d23m33s G 29263 0.097611   11.5 1 0 0 0 0 Retrieve 67 ABELL 2142:[OHF95] 275 15h57m30.2s +27d18m57s G 27585 0.092013   11.6 1 0 0 0 0 Retrieve 68 ABELL 2142:[OHF95] 365 15h57m40.0s +27d22m50s G 27373 0.091306   12.3 1 0 0 0 0 Retrieve 69 IRAS 15567+2731 15h58m50.5s +27d23m26s G 28237 0.094188   12.6 3 0 4 2 0 Retrieve 70 ABELL 2142:[OHF95] 274 15h57m24.3s +27d18m49s G 27093 0.090372   12.7 1 0 0 0 0 Retrieve 71 ABELL 2142:[OHF95] 269 15h57m19.4s +27d16m32s G 29438 0.098194   13.0 1 0 0 0 0 Retrieve 72 ABELL 2142:[OHF95] 350 15h58m47.3s +27d24m29s G 28567 0.095289   13.0 1 0 0 0 0 Retrieve 73 ABELL 2142:[OHF95] 248 15h59m14.9s +27d10m24s G 27189 0.090693   13.4 1 0 0 0 0 Retrieve 74 ABELL 2142:[OHF95] 254 15h59m14.7s +27d17m25s G 27439 0.091526   13.6 1 0 0 0 0 Retrieve 75 ABELL 2142:[OHF95] 317 15h57m42.0s +27d02m05s G 27226 0.090816   13.7 1 0 0 0 0 Retrieve 76 ABELL 2142:[OHF95] 335 15h57m45.0s +27d01m22s G 29208 0.097427   14.0 1 0 0 0 0 Retrieve 77 ABELL 2142:[OHF95] 282 15h57m49.7s +27d26m12s G 26655 0.088911   14.0 1 0 0 0 0 Retrieve 78 ABELL 2142:[OHF95] 284 15h58m29.4s +27d27m35s G 28433 0.094842   14.4 1 0 0 0 0 Retrieve 79 ABELL 2142:[OHF95] 310 15h59m12.4s +27d06m00s G 25884 0.086340   14.6 1 0 0 0 0 Retrieve 80 ABELL 2142:[OHF95] 249 15h59m21.5s +27d11m49s G 27382 0.091336   14.6 1 0 0 0 0 Retrieve 81 ABELL 2142:[OHF95] 320 15h57m26.5s +27d03m48s G 20745 0.069198   14.7 1 0 0 0 0 Retrieve 82 PGC 056556 15h58m49.7s +27d26m40s G 25467 0.084949   15.2 2 0 0 0 1 Retrieve 83 ABELL 2142:[HS79] 204 15h57m42.4s +27d00m18s G 25116 0.083778   15.2 1 0 0 0 0 Retrieve 84 ABELL 2142:[OHF95] 251 15h59m24.0s +27d15m18s G 27308 0.091090   15.2 1 0 0 0 0 Retrieve 85 ABELL 2142:[OHF95] 250 15h59m24.6s +27d13m01s G 27948 0.093224   15.2 1 0 0 0 0 Retrieve 86 ABELL 2142:[OHF95] 304 15h58m54.6s +27d00m50s G 19322 0.064451   15.3 1 0 0 0 0 Retrieve 87 KUG 1556+276 15h58m32.0s +27d28m24s G 9333 0.031131   15.3 4 0 0 2 1 Retrieve 88 ABELL 2142:[OHF95] 258 15h59m18.8s +27d20m04s G 26885 0.089679   15.4 1 0 0 0 0 Retrieve 89 CGCG 167-007 15h58m34.4s +26d58m30s GPair 19860 0.066246   15.5 9 0 0 2 0 Retrieve 90 ABELL 2142:[OHF95] 334 15h58m43.1s +26d59m08s G 27078 0.090322   15.5 1 0 0 0 0 Retrieve 91 ABELL 2142:[OHF95] 322 15h57m19.4s +27d04m18s G 20388 0.068007   15.6 1 0 0 0 0 Retrieve 92 CGCG 167-007 NED01 15h58m39.0s +26d58m37s G 19839 0.066176   15.7 2 0 0 1 0 Retrieve 93 ABELL 2142:[OHF95] 347 15h58m40.0s +26d58m41s G 19321 0.064448   15.7 1 0 0 0 0 Retrieve 94 ABELL 2142:[OHF95] 351 15h58m55.9s +27d26m31s G 27042 0.090202   15.8 1 0 0 0 0 Retrieve 95 IRAS 15556+2736 15h57m43.6s +27d27m55s G 9350 0.031188   16.1 4 0 4 2 0 Retrieve 96 ABELL 2142:[OHF95] 367 15h57m28.9s +27d25m46s G 26229 0.087490   16.1 1 0 0 0 0 Retrieve 97 ABELL 2142:[OHF95] 259 15h59m22.9s +27d20m49s G 27146 0.090549   16.6 1 0 0 0 0 Retrieve 98 ABELL 2142:[OHF95] 328 15h57m06.6s +27d07m10s G 20277 0.067637   16.7 1 0 0 0 0 Retrieve 99 ABELL 2142:[OHF95] 372 15h57m36.8s +27d27m51s G 26790 0.089362   16.8 1 0 0 0 0 Retrieve 100 ABELL 2142:[OHF95] 273 15h57m03.4s +27d18m14s G 28220 0.094132   16.8 1 0 0 0 0 Retrieve 101 ABELL 2142:[OHF95] 330 15h58m31.7s +26d56m33s G 25607 0.085416   17.3 1 0 0 0 0 Retrieve 102 ABELL 2142:[OHF95] 287 15h57m44.6s +27d29m26s G 26298 0.087721   17.4 1 0 0 0 0 Retrieve 103 [HB89] 1557+272 15h59m22.2s +27d03m40s G 19374 0.064625   17.7 17 1 3 0 1 Retrieve 104 ABELL 2142:[OHF95] 366 15h57m08.9s +27d23m16s G 27985 0.093348   17.9 1 0 0 0 0 Retrieve 105 ABELL 2142:[OHF95] 263 15h56m55.2s +27d12m52s G 27660 0.092264   18.0 1 0 0 0 0 Retrieve 106 ABELL 2142:[OHF95] 267 15h56m53.9s +27d15m51s G >30000 0.152859   18.4 1 0 0 0 0 Retrieve 107 ABELL 2142:[OHF95] 373 15h57m24.7s +27d28m19s G 29519 0.098465   18.7 1 0 0 0 0 Retrieve 108 ABELL 2142:[OHF95] 292 15h58m01.1s +27d32m09s G 26880 0.089662   19.0 1 0 0 0 0 Retrieve 109 PGC 056523 15h58m18.9s +27d32m42s G 9495 0.031672   19.2 2 0 0 0 1 Retrieve 110 PGC 056565 15h58m56.6s +27d30m40s G 27097 0.090386   19.4 2 0 0 0 1 Retrieve 111 ABELL 2142:[OHF95] 294 15h58m08.1s +27d32m59s G 27344 0.091210   19.6 1 0 0 0 0 Retrieve 112 ABELL 2142:[OHF95] 270 15h56m49.0s +27d17m14s G 28589 0.095362   19.7 1 0 0 0 0 Retrieve 113 ABELL 2142:[OHF95] 318 15h56m57.0s +27d03m00s G 27619 0.092127   20.5 1 0 0 0 0 Retrieve 114 CGCG 167-008 15h58m34.8s +27d37m06s G 9379 0.031285   24.0 4 0 0 2 1 Retrieve 115 ABELL 2142:[OHF95] 376 15h57m00.6s +27d31m04s G 24652 0.082230   24.3 1 0 0 0 0 Retrieve 116 MRK 0492 15h58m43.7s +26d49m05s G 4267 0.014233   25.1 18 0 14 7 4 Retrieve HTML-TableParser-0.43/data/table2.html0000644000040700040100000001663713255011270016533 0ustar djcxcoptics
Snookums x0 y0 z0 p k rho0 theta0 az_mis el_mis l node z_f z_a rho_f rho_a
mirror x0 y0 z0 p k rho0 theta0 az_mis el_mis l node z_f z_a rho_f rho_a
h33 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919
0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541
h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380
0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580
h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604
0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487
h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219
0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396
p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918


842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299
p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011


842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417
p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404


842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293
p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789


842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745
h1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919
0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541
h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380
0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580
h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604
0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487
h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219
0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396
p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918


842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299
p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011


842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417
p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404


842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293
p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789


842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745
HTML-TableParser-0.43/data/table2-1.Trim.data0000644000040700040100000000242113255011270017532 0ustar djcxcopticsh33 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/table2.Default.data0000644000040700040100000000254313255011270020052 0ustar djcxcoptics h1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/table2.Trim.data0000644000040700040100000000242113255011270017374 0ustar djcxcopticsh1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/table.Trim.data0000644000040700040100000000242013255011270017311 0ustar djcxcopticsh1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/table2-1.hdr0000644000040700040100000000011113255011270016456 0ustar djcxcopticsmirror x0 y0 z0 p k rho0 theta0 az_mis el_mis l node z_f z_a rho_f rho_a HTML-TableParser-0.43/data/screwy.hdr0000644000040700040100000000012613255011270016471 0ustar djcxcopticsWidget A Widget B Snacks Sn 1 Snacks Sn 2 Prices 1 Prices 2 Prices 3 3.1 Prices 3 3.2 HTML-TableParser-0.43/data/screwy.Decode.data0000644000040700040100000000016413255011270020011 0ustar djcxcoptics Both Both MM1 MB1 11.1 22.2 1-3.1.1 1-3.2.1  A B MM2 MB2 11.1 33.3 2-3.1.1 2-3.2.1 HTML-TableParser-0.43/data/ned.Default.data0000644000040700040100000004401413255011270017446 0ustar djcxcoptics1 PGC 056527 15h58m20.0s +27d14m02s G 27092 0.090369   1.0 9 0 0 0 2 Retrieve 2 ABELL 2142:[HCW85] 2 15h58m18.8s +27d14m21s G 24247 0.080879   1.1 1 0 0 0 0 Retrieve 3 PGC 056515 15h58m13.3s +27d14m55s G 28936 0.096520   1.6 3 0 0 0 1 Retrieve 4 ABELL 2142:[OHF95] 216 15h58m23.1s +27d14m04s G 27658 0.092257   1.7 1 0 0 0 0 Retrieve 5 ABELL 2142:[OHF95] 244 15h58m24.7s +27d13m47s G 26470 0.088294   1.9 1 0 0 0 0 Retrieve 6 ABELL 2142:[OHF95] 246 15h58m07.6s +27d14m45s G 26817 0.089452   2.3 1 0 0 0 0 Retrieve 7 ABELL 2142:[OHF95] 218 15h58m25.5s +27d14m46s G 27154 0.090576   2.5 1 0 0 0 0 Retrieve 8 ABELL 2142:[HS79] 103 15h58m17.5s +27d16m10s G 25161 0.083928   2.7 1 0 0 0 0 Retrieve 9 ABELL 2142:[OHF95] 214 15h58m28.4s +27d13m48s G 27403 0.091406   2.7 1 0 0 0 0 Retrieve 10 ABELL 2142:[OHF95] 209 15h58m24.6s +27d11m26s G 27350 0.091230   2.8 1 0 0 0 0 Retrieve 11 ABELL 2142:[OHF95] 208 15h58m08.0s +27d11m13s G >30000 0.102341   2.9 1 0 0 0 0 Retrieve 12 PGC 056516 15h58m14.0s +27d16m22s G 28644 0.095546   2.9 16 0 4 3 1 Retrieve 13 ABELL 2142:[OHF95] 211 15h58m04.8s +27d11m50s G 24764 0.082604   3.0 1 0 0 0 0 Retrieve 14 ABELL 2142:[OHF95] 228 15h58m13.8s +27d16m46s G 27029 0.090159   3.3 1 0 0 0 0 Retrieve 15 ABELL 2142:[OHF95] 207 15h58m09.0s +27d10m24s G 26209 0.087424   3.5 1 0 0 0 0 Retrieve 16 ABELL 2142:[OHF95] 230 15h58m12.8s +27d17m00s G 25793 0.086036   3.6 1 0 0 0 0 Retrieve 17 ABELL 2142:[OHF95] 221 15h58m01.3s +27d15m03s G 25561 0.085262   3.6 1 0 0 0 0 Retrieve 18 ABELL 2142:[OHF95] 227 15h58m06.5s +27d16m28s G 26107 0.087083   3.7 1 0 0 0 0 Retrieve 19 ABELL 2142:[OHF95] 205 15h58m20.2s +27d09m49s G 25289 0.084355   3.8 1 0 0 0 0 Retrieve 20 ABELL 2142:[OHF95] 204 15h58m17.9s +27d09m38s G 20093 0.067023   3.9 1 0 0 0 0 Retrieve 21 ABELL 2142:[OHF95] 213 15h57m56.2s +27d13m27s G 26695 0.089045   4.4 1 0 0 0 0 Retrieve 22 ABELL 2142:[OHF95] 222 15h58m33.9s +27d15m38s G 25251 0.084228   4.5 1 0 0 0 0 Retrieve 23 [HB91] 1556+274 15h58m29.2s +27d17m08s G 26981 0.090000   4.7 3 0 0 0 0 Retrieve 24 ABELL 2142:[OHF95] 203 15h58m19.2s +27d08m49s G >30000 0.147802   4.7 1 0 0 0 0 Retrieve 25 ABELL 2142:[OHF95] 206 15h57m58.6s +27d10m44s G 26779 0.089325   4.8 1 0 0 0 0 Retrieve 26 ABELL 2142:[OHF95] 212 15h57m54.9s +27d11m52s G 25246 0.084211   5.0 1 0 0 0 0 Retrieve 27 ABELL 2142:[OHF95] 243 15h58m39.1s +27d14m02s G 27034 0.090176   5.1 1 0 0 0 0 Retrieve 28 ABELL 2142:[OHF95] 242 15h58m39.6s +27d13m53s G 26930 0.089829   5.2 1 0 0 0 0 Retrieve 29 ABELL 2142:[OHF95] 224 15h58m39.3s +27d16m19s G 26769 0.089292   5.9 1 0 0 0 0 Retrieve 30 ABELL 2142:[OHF95] 220 15h58m41.5s +27d15m11s G 26486 0.088348   5.9 1 0 0 0 0 Retrieve 31 ABELL 2142:[OHF95] 225 15h57m51.7s +27d16m06s G 27356 0.091250   6.0 1 0 0 0 0 Retrieve 32 ABELL 2142:[OHF95] 234 15h58m26.7s +27d19m13s G 27760 0.092597   6.2 1 0 0 0 0 Retrieve 33 PGC 056530 15h58m21.0s +27d20m03s G 26178 0.087320   6.7 2 0 0 0 1 Retrieve 34 ABELL 2142:[OHF95] 210 15h58m45.4s +27d11m53s G 26182 0.087334   6.7 1 0 0 0 0 Retrieve 35 ABELL 2142:[OHF95] 202 15h58m37.2s +27d08m18s G 27117 0.090452   7.0 1 0 0 0 0 Retrieve 36 ABELL 2142:[OHF95] 343 15h58m32.7s +27d07m26s G >30000 0.106904   7.1 1 0 0 0 0 Retrieve 37 ABELL 2142:[OHF95] 342 15h58m29.6s +27d06m56s G 25466 0.084945   7.2 1 0 0 0 0 Retrieve 38 ABELL 2142:[OHF95] 252 15h58m47.0s +27d15m53s G 24443 0.081533   7.3 1 0 0 0 0 Retrieve 39 ABELL 2142:[OHF95] 215 15h57m43.2s +27d13m38s G 25977 0.086650   7.3 1 0 0 0 0 Retrieve 40 ABELL 2142:[OHF95] 344 15h57m55.7s +27d07m41s G 29091 0.097037   7.4 1 0 0 0 0 Retrieve 41 ABELL 2142:[OHF95] 238 15h58m16.8s +27d20m55s G 27102 0.090402   7.4 1 0 0 0 0 Retrieve 42 ABELL 2142:[OHF95] 231 15h57m49.8s +27d18m14s G 28075 0.093648   7.5 1 0 0 0 0 Retrieve 43 ABELL 2142:[OHF95] 229 15h57m43.7s +27d16m38s G 26615 0.088778   7.9 1 0 0 0 0 Retrieve 44 ABELL 2142:[OHF95] 338 15h58m21.1s +27d05m27s G 25406 0.084745   8.1 1 0 0 0 0 Retrieve 45 ABELL 2142:[OHF95] 232 15h58m43.7s +27d19m00s G 19311 0.064414   8.2 1 0 0 0 0 Retrieve 46 ABELL 2142:[OHF95] 340 15h58m05.1s +27d05m32s G 27222 0.090803   8.3 1 0 0 0 0 Retrieve 47 ABELL 2142:[OHF95] 266 15h57m40.4s +27d15m57s G 26628 0.088821   8.3 1 0 0 0 0 Retrieve 48 IRAS F15566+2716 15h58m42.9s +27d07m38s G 26003 0.086737   8.3 1 0 4 1 0 Retrieve 49 ABELL 2142:[OHF95] 233 15h57m47.1s +27d18m58s G >30000 0.100860   8.5 1 0 0 0 0 Retrieve 50 ABELL 2142:[OHF95] 341 15h58m40.0s +27d06m21s G 27399 0.091393   8.9 1 0 0 0 0 Retrieve 51 ABELL 2142:[OHF95] 240 15h58m31.6s +27d21m44s G >30000 0.100082   8.9 1 0 0 0 0 Retrieve 52 ABELL 2142:[OHF95] 241 15h58m01.0s +27d21m49s G 28364 0.094612   9.0 1 0 0 0 0 Retrieve 53 ABELL 2142:[OHF95] 235 15h58m43.6s +27d20m07s G 28324 0.094479   9.0 1 0 0 0 0 Retrieve 54 ABELL 2142:[OHF95] 260 15h58m55.8s +27d16m41s G 28182 0.094005   9.4 1 0 0 0 0 Retrieve 55 ABELL 2142:[OHF95] 264 15h57m32.9s +27d15m07s G 25805 0.086076   9.7 1 0 0 0 0 Retrieve 56 ABELL 2142:[OHF95] 337 15h58m12.2s +27d03m37s G 20461 0.068250   9.9 1 0 0 0 0 Retrieve 57 ABELL 2142:[OHF95] 255 15h58m56.6s +27d18m24s G 29279 0.097664   10.3 1 0 0 0 0 Retrieve 58 ABELL 2142:[OHF95] 327 15h57m39.3s +27d06m58s G 28561 0.095269   10.5 1 0 0 0 0 Retrieve 59 ABELL 2142:[OHF95] 326 15h57m40.3s +27d06m24s G >30000 0.111520   10.7 1 0 0 0 0 Retrieve 60 ABELL 2142:[OHF95] 253 15h59m04.5s +27d16m08s G 27306 0.091083   11.1 1 0 0 0 0 Retrieve 61 ABELL 2142:[OHF95] 309 15h58m49.6s +27d05m17s G 26241 0.087530   11.1 1 0 0 0 0 Retrieve 62 ABELL 2142:[OHF95] 279 15h57m49.9s +27d23m01s G 27401 0.091400   11.2 1 0 0 0 0 Retrieve 63 ABELL 2142:[OHF95] 277 15h57m37.5s +27d20m39s G 28339 0.094529   11.2 1 0 0 0 0 Retrieve 64 ABELL 2142:[OHF95] 256 15h58m59.0s +27d19m23s G 24511 0.081760   11.2 1 0 0 0 0 Retrieve 65 ABELL 2142:[OHF95] 281 15h57m56.5s +27d23m53s G 27214 0.090776   11.3 1 0 0 0 0 Retrieve 66 ABELL 2142:[OHF95] 280 15h57m51.2s +27d23m33s G 29263 0.097611   11.5 1 0 0 0 0 Retrieve 67 ABELL 2142:[OHF95] 275 15h57m30.2s +27d18m57s G 27585 0.092013   11.6 1 0 0 0 0 Retrieve 68 ABELL 2142:[OHF95] 365 15h57m40.0s +27d22m50s G 27373 0.091306   12.3 1 0 0 0 0 Retrieve 69 IRAS 15567+2731 15h58m50.5s +27d23m26s G 28237 0.094188   12.6 3 0 4 2 0 Retrieve 70 ABELL 2142:[OHF95] 274 15h57m24.3s +27d18m49s G 27093 0.090372   12.7 1 0 0 0 0 Retrieve 71 ABELL 2142:[OHF95] 269 15h57m19.4s +27d16m32s G 29438 0.098194   13.0 1 0 0 0 0 Retrieve 72 ABELL 2142:[OHF95] 350 15h58m47.3s +27d24m29s G 28567 0.095289   13.0 1 0 0 0 0 Retrieve 73 ABELL 2142:[OHF95] 248 15h59m14.9s +27d10m24s G 27189 0.090693   13.4 1 0 0 0 0 Retrieve 74 ABELL 2142:[OHF95] 254 15h59m14.7s +27d17m25s G 27439 0.091526   13.6 1 0 0 0 0 Retrieve 75 ABELL 2142:[OHF95] 317 15h57m42.0s +27d02m05s G 27226 0.090816   13.7 1 0 0 0 0 Retrieve 76 ABELL 2142:[OHF95] 335 15h57m45.0s +27d01m22s G 29208 0.097427   14.0 1 0 0 0 0 Retrieve 77 ABELL 2142:[OHF95] 282 15h57m49.7s +27d26m12s G 26655 0.088911   14.0 1 0 0 0 0 Retrieve 78 ABELL 2142:[OHF95] 284 15h58m29.4s +27d27m35s G 28433 0.094842   14.4 1 0 0 0 0 Retrieve 79 ABELL 2142:[OHF95] 310 15h59m12.4s +27d06m00s G 25884 0.086340   14.6 1 0 0 0 0 Retrieve 80 ABELL 2142:[OHF95] 249 15h59m21.5s +27d11m49s G 27382 0.091336   14.6 1 0 0 0 0 Retrieve 81 ABELL 2142:[OHF95] 320 15h57m26.5s +27d03m48s G 20745 0.069198   14.7 1 0 0 0 0 Retrieve 82 PGC 056556 15h58m49.7s +27d26m40s G 25467 0.084949   15.2 2 0 0 0 1 Retrieve 83 ABELL 2142:[HS79] 204 15h57m42.4s +27d00m18s G 25116 0.083778   15.2 1 0 0 0 0 Retrieve 84 ABELL 2142:[OHF95] 251 15h59m24.0s +27d15m18s G 27308 0.091090   15.2 1 0 0 0 0 Retrieve 85 ABELL 2142:[OHF95] 250 15h59m24.6s +27d13m01s G 27948 0.093224   15.2 1 0 0 0 0 Retrieve 86 ABELL 2142:[OHF95] 304 15h58m54.6s +27d00m50s G 19322 0.064451   15.3 1 0 0 0 0 Retrieve 87 KUG 1556+276 15h58m32.0s +27d28m24s G 9333 0.031131   15.3 4 0 0 2 1 Retrieve 88 ABELL 2142:[OHF95] 258 15h59m18.8s +27d20m04s G 26885 0.089679   15.4 1 0 0 0 0 Retrieve 89 CGCG 167-007 15h58m34.4s +26d58m30s GPair 19860 0.066246   15.5 9 0 0 2 0 Retrieve 90 ABELL 2142:[OHF95] 334 15h58m43.1s +26d59m08s G 27078 0.090322   15.5 1 0 0 0 0 Retrieve 91 ABELL 2142:[OHF95] 322 15h57m19.4s +27d04m18s G 20388 0.068007   15.6 1 0 0 0 0 Retrieve 92 CGCG 167-007 NED01 15h58m39.0s +26d58m37s G 19839 0.066176   15.7 2 0 0 1 0 Retrieve 93 ABELL 2142:[OHF95] 347 15h58m40.0s +26d58m41s G 19321 0.064448   15.7 1 0 0 0 0 Retrieve 94 ABELL 2142:[OHF95] 351 15h58m55.9s +27d26m31s G 27042 0.090202   15.8 1 0 0 0 0 Retrieve 95 IRAS 15556+2736 15h57m43.6s +27d27m55s G 9350 0.031188   16.1 4 0 4 2 0 Retrieve 96 ABELL 2142:[OHF95] 367 15h57m28.9s +27d25m46s G 26229 0.087490   16.1 1 0 0 0 0 Retrieve 97 ABELL 2142:[OHF95] 259 15h59m22.9s +27d20m49s G 27146 0.090549   16.6 1 0 0 0 0 Retrieve 98 ABELL 2142:[OHF95] 328 15h57m06.6s +27d07m10s G 20277 0.067637   16.7 1 0 0 0 0 Retrieve 99 ABELL 2142:[OHF95] 372 15h57m36.8s +27d27m51s G 26790 0.089362   16.8 1 0 0 0 0 Retrieve 100 ABELL 2142:[OHF95] 273 15h57m03.4s +27d18m14s G 28220 0.094132   16.8 1 0 0 0 0 Retrieve 101 ABELL 2142:[OHF95] 330 15h58m31.7s +26d56m33s G 25607 0.085416   17.3 1 0 0 0 0 Retrieve 102 ABELL 2142:[OHF95] 287 15h57m44.6s +27d29m26s G 26298 0.087721   17.4 1 0 0 0 0 Retrieve 103 [HB89] 1557+272 15h59m22.2s +27d03m40s G 19374 0.064625   17.7 17 1 3 0 1 Retrieve 104 ABELL 2142:[OHF95] 366 15h57m08.9s +27d23m16s G 27985 0.093348   17.9 1 0 0 0 0 Retrieve 105 ABELL 2142:[OHF95] 263 15h56m55.2s +27d12m52s G 27660 0.092264   18.0 1 0 0 0 0 Retrieve 106 ABELL 2142:[OHF95] 267 15h56m53.9s +27d15m51s G >30000 0.152859   18.4 1 0 0 0 0 Retrieve 107 ABELL 2142:[OHF95] 373 15h57m24.7s +27d28m19s G 29519 0.098465   18.7 1 0 0 0 0 Retrieve 108 ABELL 2142:[OHF95] 292 15h58m01.1s +27d32m09s G 26880 0.089662   19.0 1 0 0 0 0 Retrieve 109 PGC 056523 15h58m18.9s +27d32m42s G 9495 0.031672   19.2 2 0 0 0 1 Retrieve 110 PGC 056565 15h58m56.6s +27d30m40s G 27097 0.090386   19.4 2 0 0 0 1 Retrieve 111 ABELL 2142:[OHF95] 294 15h58m08.1s +27d32m59s G 27344 0.091210   19.6 1 0 0 0 0 Retrieve 112 ABELL 2142:[OHF95] 270 15h56m49.0s +27d17m14s G 28589 0.095362   19.7 1 0 0 0 0 Retrieve 113 ABELL 2142:[OHF95] 318 15h56m57.0s +27d03m00s G 27619 0.092127   20.5 1 0 0 0 0 Retrieve 114 CGCG 167-008 15h58m34.8s +27d37m06s G 9379 0.031285   24.0 4 0 0 2 1 Retrieve 115 ABELL 2142:[OHF95] 376 15h57m00.6s +27d31m04s G 24652 0.082230   24.3 1 0 0 0 0 Retrieve 116 MRK 0492 15h58m43.7s +26d49m05s G 4267 0.014233   25.1 18 0 14 7 4 Retrieve HTML-TableParser-0.43/data/ned.Trim.data0000644000040700040100000002434213255011270016777 0ustar djcxcoptics1 PGC 056527 15h58m20.0s +27d14m02s G 27092 0.090369   1.0 9 0 0 0 2 Retrieve2 ABELL 2142:[HCW85] 2 15h58m18.8s +27d14m21s G 24247 0.080879   1.1 1 0 0 0 0 Retrieve3 PGC 056515 15h58m13.3s +27d14m55s G 28936 0.096520   1.6 3 0 0 0 1 Retrieve4 ABELL 2142:[OHF95] 216 15h58m23.1s +27d14m04s G 27658 0.092257   1.7 1 0 0 0 0 Retrieve5 ABELL 2142:[OHF95] 244 15h58m24.7s +27d13m47s G 26470 0.088294   1.9 1 0 0 0 0 Retrieve6 ABELL 2142:[OHF95] 246 15h58m07.6s +27d14m45s G 26817 0.089452   2.3 1 0 0 0 0 Retrieve7 ABELL 2142:[OHF95] 218 15h58m25.5s +27d14m46s G 27154 0.090576   2.5 1 0 0 0 0 Retrieve8 ABELL 2142:[HS79] 103 15h58m17.5s +27d16m10s G 25161 0.083928   2.7 1 0 0 0 0 Retrieve9 ABELL 2142:[OHF95] 214 15h58m28.4s +27d13m48s G 27403 0.091406   2.7 1 0 0 0 0 Retrieve10 ABELL 2142:[OHF95] 209 15h58m24.6s +27d11m26s G 27350 0.091230   2.8 1 0 0 0 0 Retrieve11 ABELL 2142:[OHF95] 208 15h58m08.0s +27d11m13s G >30000 0.102341   2.9 1 0 0 0 0 Retrieve12 PGC 056516 15h58m14.0s +27d16m22s G 28644 0.095546   2.9 16 0 4 3 1 Retrieve13 ABELL 2142:[OHF95] 211 15h58m04.8s +27d11m50s G 24764 0.082604   3.0 1 0 0 0 0 Retrieve14 ABELL 2142:[OHF95] 228 15h58m13.8s +27d16m46s G 27029 0.090159   3.3 1 0 0 0 0 Retrieve15 ABELL 2142:[OHF95] 207 15h58m09.0s +27d10m24s G 26209 0.087424   3.5 1 0 0 0 0 Retrieve16 ABELL 2142:[OHF95] 230 15h58m12.8s +27d17m00s G 25793 0.086036   3.6 1 0 0 0 0 Retrieve17 ABELL 2142:[OHF95] 221 15h58m01.3s +27d15m03s G 25561 0.085262   3.6 1 0 0 0 0 Retrieve18 ABELL 2142:[OHF95] 227 15h58m06.5s +27d16m28s G 26107 0.087083   3.7 1 0 0 0 0 Retrieve19 ABELL 2142:[OHF95] 205 15h58m20.2s +27d09m49s G 25289 0.084355   3.8 1 0 0 0 0 Retrieve20 ABELL 2142:[OHF95] 204 15h58m17.9s +27d09m38s G 20093 0.067023   3.9 1 0 0 0 0 Retrieve21 ABELL 2142:[OHF95] 213 15h57m56.2s +27d13m27s G 26695 0.089045   4.4 1 0 0 0 0 Retrieve22 ABELL 2142:[OHF95] 222 15h58m33.9s +27d15m38s G 25251 0.084228   4.5 1 0 0 0 0 Retrieve23 [HB91] 1556+274 15h58m29.2s +27d17m08s G 26981 0.090000   4.7 3 0 0 0 0 Retrieve24 ABELL 2142:[OHF95] 203 15h58m19.2s +27d08m49s G >30000 0.147802   4.7 1 0 0 0 0 Retrieve25 ABELL 2142:[OHF95] 206 15h57m58.6s +27d10m44s G 26779 0.089325   4.8 1 0 0 0 0 Retrieve26 ABELL 2142:[OHF95] 212 15h57m54.9s +27d11m52s G 25246 0.084211   5.0 1 0 0 0 0 Retrieve27 ABELL 2142:[OHF95] 243 15h58m39.1s +27d14m02s G 27034 0.090176   5.1 1 0 0 0 0 Retrieve28 ABELL 2142:[OHF95] 242 15h58m39.6s +27d13m53s G 26930 0.089829   5.2 1 0 0 0 0 Retrieve29 ABELL 2142:[OHF95] 224 15h58m39.3s +27d16m19s G 26769 0.089292   5.9 1 0 0 0 0 Retrieve30 ABELL 2142:[OHF95] 220 15h58m41.5s +27d15m11s G 26486 0.088348   5.9 1 0 0 0 0 Retrieve31 ABELL 2142:[OHF95] 225 15h57m51.7s +27d16m06s G 27356 0.091250   6.0 1 0 0 0 0 Retrieve32 ABELL 2142:[OHF95] 234 15h58m26.7s +27d19m13s G 27760 0.092597   6.2 1 0 0 0 0 Retrieve33 PGC 056530 15h58m21.0s +27d20m03s G 26178 0.087320   6.7 2 0 0 0 1 Retrieve34 ABELL 2142:[OHF95] 210 15h58m45.4s +27d11m53s G 26182 0.087334   6.7 1 0 0 0 0 Retrieve35 ABELL 2142:[OHF95] 202 15h58m37.2s +27d08m18s G 27117 0.090452   7.0 1 0 0 0 0 Retrieve36 ABELL 2142:[OHF95] 343 15h58m32.7s +27d07m26s G >30000 0.106904   7.1 1 0 0 0 0 Retrieve37 ABELL 2142:[OHF95] 342 15h58m29.6s +27d06m56s G 25466 0.084945   7.2 1 0 0 0 0 Retrieve38 ABELL 2142:[OHF95] 252 15h58m47.0s +27d15m53s G 24443 0.081533   7.3 1 0 0 0 0 Retrieve39 ABELL 2142:[OHF95] 215 15h57m43.2s +27d13m38s G 25977 0.086650   7.3 1 0 0 0 0 Retrieve40 ABELL 2142:[OHF95] 344 15h57m55.7s +27d07m41s G 29091 0.097037   7.4 1 0 0 0 0 Retrieve41 ABELL 2142:[OHF95] 238 15h58m16.8s +27d20m55s G 27102 0.090402   7.4 1 0 0 0 0 Retrieve42 ABELL 2142:[OHF95] 231 15h57m49.8s +27d18m14s G 28075 0.093648   7.5 1 0 0 0 0 Retrieve43 ABELL 2142:[OHF95] 229 15h57m43.7s +27d16m38s G 26615 0.088778   7.9 1 0 0 0 0 Retrieve44 ABELL 2142:[OHF95] 338 15h58m21.1s +27d05m27s G 25406 0.084745   8.1 1 0 0 0 0 Retrieve45 ABELL 2142:[OHF95] 232 15h58m43.7s +27d19m00s G 19311 0.064414   8.2 1 0 0 0 0 Retrieve46 ABELL 2142:[OHF95] 340 15h58m05.1s +27d05m32s G 27222 0.090803   8.3 1 0 0 0 0 Retrieve47 ABELL 2142:[OHF95] 266 15h57m40.4s +27d15m57s G 26628 0.088821   8.3 1 0 0 0 0 Retrieve48 IRAS F15566+2716 15h58m42.9s +27d07m38s G 26003 0.086737   8.3 1 0 4 1 0 Retrieve49 ABELL 2142:[OHF95] 233 15h57m47.1s +27d18m58s G >30000 0.100860   8.5 1 0 0 0 0 Retrieve50 ABELL 2142:[OHF95] 341 15h58m40.0s +27d06m21s G 27399 0.091393   8.9 1 0 0 0 0 Retrieve51 ABELL 2142:[OHF95] 240 15h58m31.6s +27d21m44s G >30000 0.100082   8.9 1 0 0 0 0 Retrieve52 ABELL 2142:[OHF95] 241 15h58m01.0s +27d21m49s G 28364 0.094612   9.0 1 0 0 0 0 Retrieve53 ABELL 2142:[OHF95] 235 15h58m43.6s +27d20m07s G 28324 0.094479   9.0 1 0 0 0 0 Retrieve54 ABELL 2142:[OHF95] 260 15h58m55.8s +27d16m41s G 28182 0.094005   9.4 1 0 0 0 0 Retrieve55 ABELL 2142:[OHF95] 264 15h57m32.9s +27d15m07s G 25805 0.086076   9.7 1 0 0 0 0 Retrieve56 ABELL 2142:[OHF95] 337 15h58m12.2s +27d03m37s G 20461 0.068250   9.9 1 0 0 0 0 Retrieve57 ABELL 2142:[OHF95] 255 15h58m56.6s +27d18m24s G 29279 0.097664   10.3 1 0 0 0 0 Retrieve58 ABELL 2142:[OHF95] 327 15h57m39.3s +27d06m58s G 28561 0.095269   10.5 1 0 0 0 0 Retrieve59 ABELL 2142:[OHF95] 326 15h57m40.3s +27d06m24s G >30000 0.111520   10.7 1 0 0 0 0 Retrieve60 ABELL 2142:[OHF95] 253 15h59m04.5s +27d16m08s G 27306 0.091083   11.1 1 0 0 0 0 Retrieve61 ABELL 2142:[OHF95] 309 15h58m49.6s +27d05m17s G 26241 0.087530   11.1 1 0 0 0 0 Retrieve62 ABELL 2142:[OHF95] 279 15h57m49.9s +27d23m01s G 27401 0.091400   11.2 1 0 0 0 0 Retrieve63 ABELL 2142:[OHF95] 277 15h57m37.5s +27d20m39s G 28339 0.094529   11.2 1 0 0 0 0 Retrieve64 ABELL 2142:[OHF95] 256 15h58m59.0s +27d19m23s G 24511 0.081760   11.2 1 0 0 0 0 Retrieve65 ABELL 2142:[OHF95] 281 15h57m56.5s +27d23m53s G 27214 0.090776   11.3 1 0 0 0 0 Retrieve66 ABELL 2142:[OHF95] 280 15h57m51.2s +27d23m33s G 29263 0.097611   11.5 1 0 0 0 0 Retrieve67 ABELL 2142:[OHF95] 275 15h57m30.2s +27d18m57s G 27585 0.092013   11.6 1 0 0 0 0 Retrieve68 ABELL 2142:[OHF95] 365 15h57m40.0s +27d22m50s G 27373 0.091306   12.3 1 0 0 0 0 Retrieve69 IRAS 15567+2731 15h58m50.5s +27d23m26s G 28237 0.094188   12.6 3 0 4 2 0 Retrieve70 ABELL 2142:[OHF95] 274 15h57m24.3s +27d18m49s G 27093 0.090372   12.7 1 0 0 0 0 Retrieve71 ABELL 2142:[OHF95] 269 15h57m19.4s +27d16m32s G 29438 0.098194   13.0 1 0 0 0 0 Retrieve72 ABELL 2142:[OHF95] 350 15h58m47.3s +27d24m29s G 28567 0.095289   13.0 1 0 0 0 0 Retrieve73 ABELL 2142:[OHF95] 248 15h59m14.9s +27d10m24s G 27189 0.090693   13.4 1 0 0 0 0 Retrieve74 ABELL 2142:[OHF95] 254 15h59m14.7s +27d17m25s G 27439 0.091526   13.6 1 0 0 0 0 Retrieve75 ABELL 2142:[OHF95] 317 15h57m42.0s +27d02m05s G 27226 0.090816   13.7 1 0 0 0 0 Retrieve76 ABELL 2142:[OHF95] 335 15h57m45.0s +27d01m22s G 29208 0.097427   14.0 1 0 0 0 0 Retrieve77 ABELL 2142:[OHF95] 282 15h57m49.7s +27d26m12s G 26655 0.088911   14.0 1 0 0 0 0 Retrieve78 ABELL 2142:[OHF95] 284 15h58m29.4s +27d27m35s G 28433 0.094842   14.4 1 0 0 0 0 Retrieve79 ABELL 2142:[OHF95] 310 15h59m12.4s +27d06m00s G 25884 0.086340   14.6 1 0 0 0 0 Retrieve80 ABELL 2142:[OHF95] 249 15h59m21.5s +27d11m49s G 27382 0.091336   14.6 1 0 0 0 0 Retrieve81 ABELL 2142:[OHF95] 320 15h57m26.5s +27d03m48s G 20745 0.069198   14.7 1 0 0 0 0 Retrieve82 PGC 056556 15h58m49.7s +27d26m40s G 25467 0.084949   15.2 2 0 0 0 1 Retrieve83 ABELL 2142:[HS79] 204 15h57m42.4s +27d00m18s G 25116 0.083778   15.2 1 0 0 0 0 Retrieve84 ABELL 2142:[OHF95] 251 15h59m24.0s +27d15m18s G 27308 0.091090   15.2 1 0 0 0 0 Retrieve85 ABELL 2142:[OHF95] 250 15h59m24.6s +27d13m01s G 27948 0.093224   15.2 1 0 0 0 0 Retrieve86 ABELL 2142:[OHF95] 304 15h58m54.6s +27d00m50s G 19322 0.064451   15.3 1 0 0 0 0 Retrieve87 KUG 1556+276 15h58m32.0s +27d28m24s G 9333 0.031131   15.3 4 0 0 2 1 Retrieve88 ABELL 2142:[OHF95] 258 15h59m18.8s +27d20m04s G 26885 0.089679   15.4 1 0 0 0 0 Retrieve89 CGCG 167-007 15h58m34.4s +26d58m30s GPair 19860 0.066246   15.5 9 0 0 2 0 Retrieve90 ABELL 2142:[OHF95] 334 15h58m43.1s +26d59m08s G 27078 0.090322   15.5 1 0 0 0 0 Retrieve91 ABELL 2142:[OHF95] 322 15h57m19.4s +27d04m18s G 20388 0.068007   15.6 1 0 0 0 0 Retrieve92 CGCG 167-007 NED01 15h58m39.0s +26d58m37s G 19839 0.066176   15.7 2 0 0 1 0 Retrieve93 ABELL 2142:[OHF95] 347 15h58m40.0s +26d58m41s G 19321 0.064448   15.7 1 0 0 0 0 Retrieve94 ABELL 2142:[OHF95] 351 15h58m55.9s +27d26m31s G 27042 0.090202   15.8 1 0 0 0 0 Retrieve95 IRAS 15556+2736 15h57m43.6s +27d27m55s G 9350 0.031188   16.1 4 0 4 2 0 Retrieve96 ABELL 2142:[OHF95] 367 15h57m28.9s +27d25m46s G 26229 0.087490   16.1 1 0 0 0 0 Retrieve97 ABELL 2142:[OHF95] 259 15h59m22.9s +27d20m49s G 27146 0.090549   16.6 1 0 0 0 0 Retrieve98 ABELL 2142:[OHF95] 328 15h57m06.6s +27d07m10s G 20277 0.067637   16.7 1 0 0 0 0 Retrieve99 ABELL 2142:[OHF95] 372 15h57m36.8s +27d27m51s G 26790 0.089362   16.8 1 0 0 0 0 Retrieve100 ABELL 2142:[OHF95] 273 15h57m03.4s +27d18m14s G 28220 0.094132   16.8 1 0 0 0 0 Retrieve101 ABELL 2142:[OHF95] 330 15h58m31.7s +26d56m33s G 25607 0.085416   17.3 1 0 0 0 0 Retrieve102 ABELL 2142:[OHF95] 287 15h57m44.6s +27d29m26s G 26298 0.087721   17.4 1 0 0 0 0 Retrieve103 [HB89] 1557+272 15h59m22.2s +27d03m40s G 19374 0.064625   17.7 17 1 3 0 1 Retrieve104 ABELL 2142:[OHF95] 366 15h57m08.9s +27d23m16s G 27985 0.093348   17.9 1 0 0 0 0 Retrieve105 ABELL 2142:[OHF95] 263 15h56m55.2s +27d12m52s G 27660 0.092264   18.0 1 0 0 0 0 Retrieve106 ABELL 2142:[OHF95] 267 15h56m53.9s +27d15m51s G >30000 0.152859   18.4 1 0 0 0 0 Retrieve107 ABELL 2142:[OHF95] 373 15h57m24.7s +27d28m19s G 29519 0.098465   18.7 1 0 0 0 0 Retrieve108 ABELL 2142:[OHF95] 292 15h58m01.1s +27d32m09s G 26880 0.089662   19.0 1 0 0 0 0 Retrieve109 PGC 056523 15h58m18.9s +27d32m42s G 9495 0.031672   19.2 2 0 0 0 1 Retrieve110 PGC 056565 15h58m56.6s +27d30m40s G 27097 0.090386   19.4 2 0 0 0 1 Retrieve111 ABELL 2142:[OHF95] 294 15h58m08.1s +27d32m59s G 27344 0.091210   19.6 1 0 0 0 0 Retrieve112 ABELL 2142:[OHF95] 270 15h56m49.0s +27d17m14s G 28589 0.095362   19.7 1 0 0 0 0 Retrieve113 ABELL 2142:[OHF95] 318 15h56m57.0s +27d03m00s G 27619 0.092127   20.5 1 0 0 0 0 Retrieve114 CGCG 167-008 15h58m34.8s +27d37m06s G 9379 0.031285   24.0 4 0 0 2 1 Retrieve115 ABELL 2142:[OHF95] 376 15h57m00.6s +27d31m04s G 24652 0.082230   24.3 1 0 0 0 0 Retrieve116 MRK 0492 15h58m43.7s +26d49m05s G 4267 0.014233   25.1 18 0 14 7 4 RetrieveHTML-TableParser-0.43/data/screwy.Trim.data0000644000040700040100000000012213255011270017533 0ustar djcxcopticsBoth Both MM1 MB1 11.1 22.2 1-3.1.1 1-3.2.1A B MM2 MB2 11.1 33.3 2-3.1.1 2-3.2.1HTML-TableParser-0.43/data/ned.Chomp.data0000644000040700040100000004050013255011270017124 0ustar djcxcoptics1 PGC 056527 15h58m20.0s +27d14m02s G 27092 0.090369   1.0 9 0 0 0 2 Retrieve2 ABELL 2142:[HCW85] 2 15h58m18.8s +27d14m21s G 24247 0.080879   1.1 1 0 0 0 0 Retrieve3 PGC 056515 15h58m13.3s +27d14m55s G 28936 0.096520   1.6 3 0 0 0 1 Retrieve4 ABELL 2142:[OHF95] 216 15h58m23.1s +27d14m04s G 27658 0.092257   1.7 1 0 0 0 0 Retrieve5 ABELL 2142:[OHF95] 244 15h58m24.7s +27d13m47s G 26470 0.088294   1.9 1 0 0 0 0 Retrieve6 ABELL 2142:[OHF95] 246 15h58m07.6s +27d14m45s G 26817 0.089452   2.3 1 0 0 0 0 Retrieve7 ABELL 2142:[OHF95] 218 15h58m25.5s +27d14m46s G 27154 0.090576   2.5 1 0 0 0 0 Retrieve8 ABELL 2142:[HS79] 103 15h58m17.5s +27d16m10s G 25161 0.083928   2.7 1 0 0 0 0 Retrieve9 ABELL 2142:[OHF95] 214 15h58m28.4s +27d13m48s G 27403 0.091406   2.7 1 0 0 0 0 Retrieve10 ABELL 2142:[OHF95] 209 15h58m24.6s +27d11m26s G 27350 0.091230   2.8 1 0 0 0 0 Retrieve11 ABELL 2142:[OHF95] 208 15h58m08.0s +27d11m13s G >30000 0.102341   2.9 1 0 0 0 0 Retrieve12 PGC 056516 15h58m14.0s +27d16m22s G 28644 0.095546   2.9 16 0 4 3 1 Retrieve13 ABELL 2142:[OHF95] 211 15h58m04.8s +27d11m50s G 24764 0.082604   3.0 1 0 0 0 0 Retrieve14 ABELL 2142:[OHF95] 228 15h58m13.8s +27d16m46s G 27029 0.090159   3.3 1 0 0 0 0 Retrieve15 ABELL 2142:[OHF95] 207 15h58m09.0s +27d10m24s G 26209 0.087424   3.5 1 0 0 0 0 Retrieve16 ABELL 2142:[OHF95] 230 15h58m12.8s +27d17m00s G 25793 0.086036   3.6 1 0 0 0 0 Retrieve17 ABELL 2142:[OHF95] 221 15h58m01.3s +27d15m03s G 25561 0.085262   3.6 1 0 0 0 0 Retrieve18 ABELL 2142:[OHF95] 227 15h58m06.5s +27d16m28s G 26107 0.087083   3.7 1 0 0 0 0 Retrieve19 ABELL 2142:[OHF95] 205 15h58m20.2s +27d09m49s G 25289 0.084355   3.8 1 0 0 0 0 Retrieve20 ABELL 2142:[OHF95] 204 15h58m17.9s +27d09m38s G 20093 0.067023   3.9 1 0 0 0 0 Retrieve21 ABELL 2142:[OHF95] 213 15h57m56.2s +27d13m27s G 26695 0.089045   4.4 1 0 0 0 0 Retrieve22 ABELL 2142:[OHF95] 222 15h58m33.9s +27d15m38s G 25251 0.084228   4.5 1 0 0 0 0 Retrieve23 [HB91] 1556+274 15h58m29.2s +27d17m08s G 26981 0.090000   4.7 3 0 0 0 0 Retrieve24 ABELL 2142:[OHF95] 203 15h58m19.2s +27d08m49s G >30000 0.147802   4.7 1 0 0 0 0 Retrieve25 ABELL 2142:[OHF95] 206 15h57m58.6s +27d10m44s G 26779 0.089325   4.8 1 0 0 0 0 Retrieve26 ABELL 2142:[OHF95] 212 15h57m54.9s +27d11m52s G 25246 0.084211   5.0 1 0 0 0 0 Retrieve27 ABELL 2142:[OHF95] 243 15h58m39.1s +27d14m02s G 27034 0.090176   5.1 1 0 0 0 0 Retrieve28 ABELL 2142:[OHF95] 242 15h58m39.6s +27d13m53s G 26930 0.089829   5.2 1 0 0 0 0 Retrieve29 ABELL 2142:[OHF95] 224 15h58m39.3s +27d16m19s G 26769 0.089292   5.9 1 0 0 0 0 Retrieve30 ABELL 2142:[OHF95] 220 15h58m41.5s +27d15m11s G 26486 0.088348   5.9 1 0 0 0 0 Retrieve31 ABELL 2142:[OHF95] 225 15h57m51.7s +27d16m06s G 27356 0.091250   6.0 1 0 0 0 0 Retrieve32 ABELL 2142:[OHF95] 234 15h58m26.7s +27d19m13s G 27760 0.092597   6.2 1 0 0 0 0 Retrieve33 PGC 056530 15h58m21.0s +27d20m03s G 26178 0.087320   6.7 2 0 0 0 1 Retrieve34 ABELL 2142:[OHF95] 210 15h58m45.4s +27d11m53s G 26182 0.087334   6.7 1 0 0 0 0 Retrieve35 ABELL 2142:[OHF95] 202 15h58m37.2s +27d08m18s G 27117 0.090452   7.0 1 0 0 0 0 Retrieve36 ABELL 2142:[OHF95] 343 15h58m32.7s +27d07m26s G >30000 0.106904   7.1 1 0 0 0 0 Retrieve37 ABELL 2142:[OHF95] 342 15h58m29.6s +27d06m56s G 25466 0.084945   7.2 1 0 0 0 0 Retrieve38 ABELL 2142:[OHF95] 252 15h58m47.0s +27d15m53s G 24443 0.081533   7.3 1 0 0 0 0 Retrieve39 ABELL 2142:[OHF95] 215 15h57m43.2s +27d13m38s G 25977 0.086650   7.3 1 0 0 0 0 Retrieve40 ABELL 2142:[OHF95] 344 15h57m55.7s +27d07m41s G 29091 0.097037   7.4 1 0 0 0 0 Retrieve41 ABELL 2142:[OHF95] 238 15h58m16.8s +27d20m55s G 27102 0.090402   7.4 1 0 0 0 0 Retrieve42 ABELL 2142:[OHF95] 231 15h57m49.8s +27d18m14s G 28075 0.093648   7.5 1 0 0 0 0 Retrieve43 ABELL 2142:[OHF95] 229 15h57m43.7s +27d16m38s G 26615 0.088778   7.9 1 0 0 0 0 Retrieve44 ABELL 2142:[OHF95] 338 15h58m21.1s +27d05m27s G 25406 0.084745   8.1 1 0 0 0 0 Retrieve45 ABELL 2142:[OHF95] 232 15h58m43.7s +27d19m00s G 19311 0.064414   8.2 1 0 0 0 0 Retrieve46 ABELL 2142:[OHF95] 340 15h58m05.1s +27d05m32s G 27222 0.090803   8.3 1 0 0 0 0 Retrieve47 ABELL 2142:[OHF95] 266 15h57m40.4s +27d15m57s G 26628 0.088821   8.3 1 0 0 0 0 Retrieve48 IRAS F15566+2716 15h58m42.9s +27d07m38s G 26003 0.086737   8.3 1 0 4 1 0 Retrieve49 ABELL 2142:[OHF95] 233 15h57m47.1s +27d18m58s G >30000 0.100860   8.5 1 0 0 0 0 Retrieve50 ABELL 2142:[OHF95] 341 15h58m40.0s +27d06m21s G 27399 0.091393   8.9 1 0 0 0 0 Retrieve51 ABELL 2142:[OHF95] 240 15h58m31.6s +27d21m44s G >30000 0.100082   8.9 1 0 0 0 0 Retrieve52 ABELL 2142:[OHF95] 241 15h58m01.0s +27d21m49s G 28364 0.094612   9.0 1 0 0 0 0 Retrieve53 ABELL 2142:[OHF95] 235 15h58m43.6s +27d20m07s G 28324 0.094479   9.0 1 0 0 0 0 Retrieve54 ABELL 2142:[OHF95] 260 15h58m55.8s +27d16m41s G 28182 0.094005   9.4 1 0 0 0 0 Retrieve55 ABELL 2142:[OHF95] 264 15h57m32.9s +27d15m07s G 25805 0.086076   9.7 1 0 0 0 0 Retrieve56 ABELL 2142:[OHF95] 337 15h58m12.2s +27d03m37s G 20461 0.068250   9.9 1 0 0 0 0 Retrieve57 ABELL 2142:[OHF95] 255 15h58m56.6s +27d18m24s G 29279 0.097664   10.3 1 0 0 0 0 Retrieve58 ABELL 2142:[OHF95] 327 15h57m39.3s +27d06m58s G 28561 0.095269   10.5 1 0 0 0 0 Retrieve59 ABELL 2142:[OHF95] 326 15h57m40.3s +27d06m24s G >30000 0.111520   10.7 1 0 0 0 0 Retrieve60 ABELL 2142:[OHF95] 253 15h59m04.5s +27d16m08s G 27306 0.091083   11.1 1 0 0 0 0 Retrieve61 ABELL 2142:[OHF95] 309 15h58m49.6s +27d05m17s G 26241 0.087530   11.1 1 0 0 0 0 Retrieve62 ABELL 2142:[OHF95] 279 15h57m49.9s +27d23m01s G 27401 0.091400   11.2 1 0 0 0 0 Retrieve63 ABELL 2142:[OHF95] 277 15h57m37.5s +27d20m39s G 28339 0.094529   11.2 1 0 0 0 0 Retrieve64 ABELL 2142:[OHF95] 256 15h58m59.0s +27d19m23s G 24511 0.081760   11.2 1 0 0 0 0 Retrieve65 ABELL 2142:[OHF95] 281 15h57m56.5s +27d23m53s G 27214 0.090776   11.3 1 0 0 0 0 Retrieve66 ABELL 2142:[OHF95] 280 15h57m51.2s +27d23m33s G 29263 0.097611   11.5 1 0 0 0 0 Retrieve67 ABELL 2142:[OHF95] 275 15h57m30.2s +27d18m57s G 27585 0.092013   11.6 1 0 0 0 0 Retrieve68 ABELL 2142:[OHF95] 365 15h57m40.0s +27d22m50s G 27373 0.091306   12.3 1 0 0 0 0 Retrieve69 IRAS 15567+2731 15h58m50.5s +27d23m26s G 28237 0.094188   12.6 3 0 4 2 0 Retrieve70 ABELL 2142:[OHF95] 274 15h57m24.3s +27d18m49s G 27093 0.090372   12.7 1 0 0 0 0 Retrieve71 ABELL 2142:[OHF95] 269 15h57m19.4s +27d16m32s G 29438 0.098194   13.0 1 0 0 0 0 Retrieve72 ABELL 2142:[OHF95] 350 15h58m47.3s +27d24m29s G 28567 0.095289   13.0 1 0 0 0 0 Retrieve73 ABELL 2142:[OHF95] 248 15h59m14.9s +27d10m24s G 27189 0.090693   13.4 1 0 0 0 0 Retrieve74 ABELL 2142:[OHF95] 254 15h59m14.7s +27d17m25s G 27439 0.091526   13.6 1 0 0 0 0 Retrieve75 ABELL 2142:[OHF95] 317 15h57m42.0s +27d02m05s G 27226 0.090816   13.7 1 0 0 0 0 Retrieve76 ABELL 2142:[OHF95] 335 15h57m45.0s +27d01m22s G 29208 0.097427   14.0 1 0 0 0 0 Retrieve77 ABELL 2142:[OHF95] 282 15h57m49.7s +27d26m12s G 26655 0.088911   14.0 1 0 0 0 0 Retrieve78 ABELL 2142:[OHF95] 284 15h58m29.4s +27d27m35s G 28433 0.094842   14.4 1 0 0 0 0 Retrieve79 ABELL 2142:[OHF95] 310 15h59m12.4s +27d06m00s G 25884 0.086340   14.6 1 0 0 0 0 Retrieve80 ABELL 2142:[OHF95] 249 15h59m21.5s +27d11m49s G 27382 0.091336   14.6 1 0 0 0 0 Retrieve81 ABELL 2142:[OHF95] 320 15h57m26.5s +27d03m48s G 20745 0.069198   14.7 1 0 0 0 0 Retrieve82 PGC 056556 15h58m49.7s +27d26m40s G 25467 0.084949   15.2 2 0 0 0 1 Retrieve83 ABELL 2142:[HS79] 204 15h57m42.4s +27d00m18s G 25116 0.083778   15.2 1 0 0 0 0 Retrieve84 ABELL 2142:[OHF95] 251 15h59m24.0s +27d15m18s G 27308 0.091090   15.2 1 0 0 0 0 Retrieve85 ABELL 2142:[OHF95] 250 15h59m24.6s +27d13m01s G 27948 0.093224   15.2 1 0 0 0 0 Retrieve86 ABELL 2142:[OHF95] 304 15h58m54.6s +27d00m50s G 19322 0.064451   15.3 1 0 0 0 0 Retrieve87 KUG 1556+276 15h58m32.0s +27d28m24s G 9333 0.031131   15.3 4 0 0 2 1 Retrieve88 ABELL 2142:[OHF95] 258 15h59m18.8s +27d20m04s G 26885 0.089679   15.4 1 0 0 0 0 Retrieve89 CGCG 167-007 15h58m34.4s +26d58m30s GPair 19860 0.066246   15.5 9 0 0 2 0 Retrieve90 ABELL 2142:[OHF95] 334 15h58m43.1s +26d59m08s G 27078 0.090322   15.5 1 0 0 0 0 Retrieve91 ABELL 2142:[OHF95] 322 15h57m19.4s +27d04m18s G 20388 0.068007   15.6 1 0 0 0 0 Retrieve92 CGCG 167-007 NED01 15h58m39.0s +26d58m37s G 19839 0.066176   15.7 2 0 0 1 0 Retrieve93 ABELL 2142:[OHF95] 347 15h58m40.0s +26d58m41s G 19321 0.064448   15.7 1 0 0 0 0 Retrieve94 ABELL 2142:[OHF95] 351 15h58m55.9s +27d26m31s G 27042 0.090202   15.8 1 0 0 0 0 Retrieve95 IRAS 15556+2736 15h57m43.6s +27d27m55s G 9350 0.031188   16.1 4 0 4 2 0 Retrieve96 ABELL 2142:[OHF95] 367 15h57m28.9s +27d25m46s G 26229 0.087490   16.1 1 0 0 0 0 Retrieve97 ABELL 2142:[OHF95] 259 15h59m22.9s +27d20m49s G 27146 0.090549   16.6 1 0 0 0 0 Retrieve98 ABELL 2142:[OHF95] 328 15h57m06.6s +27d07m10s G 20277 0.067637   16.7 1 0 0 0 0 Retrieve99 ABELL 2142:[OHF95] 372 15h57m36.8s +27d27m51s G 26790 0.089362   16.8 1 0 0 0 0 Retrieve100 ABELL 2142:[OHF95] 273 15h57m03.4s +27d18m14s G 28220 0.094132   16.8 1 0 0 0 0 Retrieve101 ABELL 2142:[OHF95] 330 15h58m31.7s +26d56m33s G 25607 0.085416   17.3 1 0 0 0 0 Retrieve102 ABELL 2142:[OHF95] 287 15h57m44.6s +27d29m26s G 26298 0.087721   17.4 1 0 0 0 0 Retrieve103 [HB89] 1557+272 15h59m22.2s +27d03m40s G 19374 0.064625   17.7 17 1 3 0 1 Retrieve104 ABELL 2142:[OHF95] 366 15h57m08.9s +27d23m16s G 27985 0.093348   17.9 1 0 0 0 0 Retrieve105 ABELL 2142:[OHF95] 263 15h56m55.2s +27d12m52s G 27660 0.092264   18.0 1 0 0 0 0 Retrieve106 ABELL 2142:[OHF95] 267 15h56m53.9s +27d15m51s G >30000 0.152859   18.4 1 0 0 0 0 Retrieve107 ABELL 2142:[OHF95] 373 15h57m24.7s +27d28m19s G 29519 0.098465   18.7 1 0 0 0 0 Retrieve108 ABELL 2142:[OHF95] 292 15h58m01.1s +27d32m09s G 26880 0.089662   19.0 1 0 0 0 0 Retrieve109 PGC 056523 15h58m18.9s +27d32m42s G 9495 0.031672   19.2 2 0 0 0 1 Retrieve110 PGC 056565 15h58m56.6s +27d30m40s G 27097 0.090386   19.4 2 0 0 0 1 Retrieve111 ABELL 2142:[OHF95] 294 15h58m08.1s +27d32m59s G 27344 0.091210   19.6 1 0 0 0 0 Retrieve112 ABELL 2142:[OHF95] 270 15h56m49.0s +27d17m14s G 28589 0.095362   19.7 1 0 0 0 0 Retrieve113 ABELL 2142:[OHF95] 318 15h56m57.0s +27d03m00s G 27619 0.092127   20.5 1 0 0 0 0 Retrieve114 CGCG 167-008 15h58m34.8s +27d37m06s G 9379 0.031285   24.0 4 0 0 2 1 Retrieve115 ABELL 2142:[OHF95] 376 15h57m00.6s +27d31m04s G 24652 0.082230   24.3 1 0 0 0 0 Retrieve116 MRK 0492 15h58m43.7s +26d49m05s G 4267 0.014233   25.1 18 0 14 7 4 RetrieveHTML-TableParser-0.43/data/table.hdr0000644000040700040100000000011113255011270016236 0ustar djcxcopticsmirror x0 y0 z0 p k rho0 theta0 az_mis el_mis l node z_f z_a rho_f rho_a HTML-TableParser-0.43/data/table.Chomp.data0000644000040700040100000000254013255011270017447 0ustar djcxcopticsh1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/table2-1.Decode.data0000644000040700040100000000254113255011270020005 0ustar djcxcopticsh33 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/ned.hdr0000644000040700040100000000043213255011270015723 0ustar djcxcopticsNo. Object Name (* => Essential Note) Equatorial J2000.0 RA Equatorial J2000.0 DEC Object Type Velocity/Redshift km/s Velocity/Redshift z Velocity/Redshift Qual Distance from Central Posn. (arcmin) Number of Refs Number of Notes Number of Phot Number of Posn Number of Vel/z Images HTML-TableParser-0.43/data/table2.Decode.data0000644000040700040100000000254313255011270017651 0ustar djcxcoptics h1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/table2-1.Chomp.data0000644000040700040100000000254113255011270017670 0ustar djcxcopticsh33 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/screwy.Chomp.data0000644000040700040100000000014413255011270017672 0ustar djcxcoptics Both Both MM1 MB1 11.1 22.2 1-3.1.1 1-3.2.1  A B MM2 MB2 11.1 33.3 2-3.1.1 2-3.2.1 HTML-TableParser-0.43/data/ned.html0000644000040700040100000030125213255011270016116 0ustar djcxcoptics Your NED Search Results
Help | Comment | NED home

Searching NED within 30.0 arcmin of object "ABELL 2142"


116 object(s) found in NED.    Skyplot(first 100)

Object list is sorted on Distance to search center

No. Object Name
(* => Essential Note)
Equatorial J2000.0 Object Type Velocity/Redshift Distance from Central Posn. (arcmin) Number of Images
RA DEC km/s z Qual Refs Notes Phot Posn Vel/z
1 PGC 056527 15h58m20.0s +27d14m02s G 27092 0.090369   1.0 9 0 0 0 2 Retrieve
2 ABELL 2142:[HCW85] 2 15h58m18.8s +27d14m21s G 24247 0.080879   1.1 1 0 0 0 0 Retrieve
3 PGC 056515 15h58m13.3s +27d14m55s G 28936 0.096520   1.6 3 0 0 0 1 Retrieve
4 ABELL 2142:[OHF95] 216 15h58m23.1s +27d14m04s G 27658 0.092257   1.7 1 0 0 0 0 Retrieve
5 ABELL 2142:[OHF95] 244 15h58m24.7s +27d13m47s G 26470 0.088294   1.9 1 0 0 0 0 Retrieve
6 ABELL 2142:[OHF95] 246 15h58m07.6s +27d14m45s G 26817 0.089452   2.3 1 0 0 0 0 Retrieve
7 ABELL 2142:[OHF95] 218 15h58m25.5s +27d14m46s G 27154 0.090576   2.5 1 0 0 0 0 Retrieve
8 ABELL 2142:[HS79] 103 15h58m17.5s +27d16m10s G 25161 0.083928   2.7 1 0 0 0 0 Retrieve
9 ABELL 2142:[OHF95] 214 15h58m28.4s +27d13m48s G 27403 0.091406   2.7 1 0 0 0 0 Retrieve
10 ABELL 2142:[OHF95] 209 15h58m24.6s +27d11m26s G 27350 0.091230   2.8 1 0 0 0 0 Retrieve
11 ABELL 2142:[OHF95] 208 15h58m08.0s +27d11m13s G >30000 0.102341   2.9 1 0 0 0 0 Retrieve
12 PGC 056516 15h58m14.0s +27d16m22s G 28644 0.095546   2.9 16 0 4 3 1 Retrieve
13 ABELL 2142:[OHF95] 211 15h58m04.8s +27d11m50s G 24764 0.082604   3.0 1 0 0 0 0 Retrieve
14 ABELL 2142:[OHF95] 228 15h58m13.8s +27d16m46s G 27029 0.090159   3.3 1 0 0 0 0 Retrieve
15 ABELL 2142:[OHF95] 207 15h58m09.0s +27d10m24s G 26209 0.087424   3.5 1 0 0 0 0 Retrieve
16 ABELL 2142:[OHF95] 230 15h58m12.8s +27d17m00s G 25793 0.086036   3.6 1 0 0 0 0 Retrieve
17 ABELL 2142:[OHF95] 221 15h58m01.3s +27d15m03s G 25561 0.085262   3.6 1 0 0 0 0 Retrieve
18 ABELL 2142:[OHF95] 227 15h58m06.5s +27d16m28s G 26107 0.087083   3.7 1 0 0 0 0 Retrieve
19 ABELL 2142:[OHF95] 205 15h58m20.2s +27d09m49s G 25289 0.084355   3.8 1 0 0 0 0 Retrieve
20 ABELL 2142:[OHF95] 204 15h58m17.9s +27d09m38s G 20093 0.067023   3.9 1 0 0 0 0 Retrieve
21 ABELL 2142:[OHF95] 213 15h57m56.2s +27d13m27s G 26695 0.089045   4.4 1 0 0 0 0 Retrieve
22 ABELL 2142:[OHF95] 222 15h58m33.9s +27d15m38s G 25251 0.084228   4.5 1 0 0 0 0 Retrieve
23 [HB91] 1556+274 15h58m29.2s +27d17m08s G 26981 0.090000   4.7 3 0 0 0 0 Retrieve
24 ABELL 2142:[OHF95] 203 15h58m19.2s +27d08m49s G >30000 0.147802   4.7 1 0 0 0 0 Retrieve
25 ABELL 2142:[OHF95] 206 15h57m58.6s +27d10m44s G 26779 0.089325   4.8 1 0 0 0 0 Retrieve
26 ABELL 2142:[OHF95] 212 15h57m54.9s +27d11m52s G 25246 0.084211   5.0 1 0 0 0 0 Retrieve
27 ABELL 2142:[OHF95] 243 15h58m39.1s +27d14m02s G 27034 0.090176   5.1 1 0 0 0 0 Retrieve
28 ABELL 2142:[OHF95] 242 15h58m39.6s +27d13m53s G 26930 0.089829   5.2 1 0 0 0 0 Retrieve
29 ABELL 2142:[OHF95] 224 15h58m39.3s +27d16m19s G 26769 0.089292   5.9 1 0 0 0 0 Retrieve
30 ABELL 2142:[OHF95] 220 15h58m41.5s +27d15m11s G 26486 0.088348   5.9 1 0 0 0 0 Retrieve
31 ABELL 2142:[OHF95] 225 15h57m51.7s +27d16m06s G 27356 0.091250   6.0 1 0 0 0 0 Retrieve
32 ABELL 2142:[OHF95] 234 15h58m26.7s +27d19m13s G 27760 0.092597   6.2 1 0 0 0 0 Retrieve
33 PGC 056530 15h58m21.0s +27d20m03s G 26178 0.087320   6.7 2 0 0 0 1 Retrieve
34 ABELL 2142:[OHF95] 210 15h58m45.4s +27d11m53s G 26182 0.087334   6.7 1 0 0 0 0 Retrieve
35 ABELL 2142:[OHF95] 202 15h58m37.2s +27d08m18s G 27117 0.090452   7.0 1 0 0 0 0 Retrieve
36 ABELL 2142:[OHF95] 343 15h58m32.7s +27d07m26s G >30000 0.106904   7.1 1 0 0 0 0 Retrieve
37 ABELL 2142:[OHF95] 342 15h58m29.6s +27d06m56s G 25466 0.084945   7.2 1 0 0 0 0 Retrieve
38 ABELL 2142:[OHF95] 252 15h58m47.0s +27d15m53s G 24443 0.081533   7.3 1 0 0 0 0 Retrieve
39 ABELL 2142:[OHF95] 215 15h57m43.2s +27d13m38s G 25977 0.086650   7.3 1 0 0 0 0 Retrieve
40 ABELL 2142:[OHF95] 344 15h57m55.7s +27d07m41s G 29091 0.097037   7.4 1 0 0 0 0 Retrieve
41 ABELL 2142:[OHF95] 238 15h58m16.8s +27d20m55s G 27102 0.090402   7.4 1 0 0 0 0 Retrieve
42 ABELL 2142:[OHF95] 231 15h57m49.8s +27d18m14s G 28075 0.093648   7.5 1 0 0 0 0 Retrieve
43 ABELL 2142:[OHF95] 229 15h57m43.7s +27d16m38s G 26615 0.088778   7.9 1 0 0 0 0 Retrieve
44 ABELL 2142:[OHF95] 338 15h58m21.1s +27d05m27s G 25406 0.084745   8.1 1 0 0 0 0 Retrieve
45 ABELL 2142:[OHF95] 232 15h58m43.7s +27d19m00s G 19311 0.064414   8.2 1 0 0 0 0 Retrieve
46 ABELL 2142:[OHF95] 340 15h58m05.1s +27d05m32s G 27222 0.090803   8.3 1 0 0 0 0 Retrieve
47 ABELL 2142:[OHF95] 266 15h57m40.4s +27d15m57s G 26628 0.088821   8.3 1 0 0 0 0 Retrieve
48 IRAS F15566+2716 15h58m42.9s +27d07m38s G 26003 0.086737   8.3 1 0 4 1 0 Retrieve
49 ABELL 2142:[OHF95] 233 15h57m47.1s +27d18m58s G >30000 0.100860   8.5 1 0 0 0 0 Retrieve
50 ABELL 2142:[OHF95] 341 15h58m40.0s +27d06m21s G 27399 0.091393   8.9 1 0 0 0 0 Retrieve
51 ABELL 2142:[OHF95] 240 15h58m31.6s +27d21m44s G >30000 0.100082   8.9 1 0 0 0 0 Retrieve
52 ABELL 2142:[OHF95] 241 15h58m01.0s +27d21m49s G 28364 0.094612   9.0 1 0 0 0 0 Retrieve
53 ABELL 2142:[OHF95] 235 15h58m43.6s +27d20m07s G 28324 0.094479   9.0 1 0 0 0 0 Retrieve
54 ABELL 2142:[OHF95] 260 15h58m55.8s +27d16m41s G 28182 0.094005   9.4 1 0 0 0 0 Retrieve
55 ABELL 2142:[OHF95] 264 15h57m32.9s +27d15m07s G 25805 0.086076   9.7 1 0 0 0 0 Retrieve
56 ABELL 2142:[OHF95] 337 15h58m12.2s +27d03m37s G 20461 0.068250   9.9 1 0 0 0 0 Retrieve
57 ABELL 2142:[OHF95] 255 15h58m56.6s +27d18m24s G 29279 0.097664   10.3 1 0 0 0 0 Retrieve
58 ABELL 2142:[OHF95] 327 15h57m39.3s +27d06m58s G 28561 0.095269   10.5 1 0 0 0 0 Retrieve
59 ABELL 2142:[OHF95] 326 15h57m40.3s +27d06m24s G >30000 0.111520   10.7 1 0 0 0 0 Retrieve
60 ABELL 2142:[OHF95] 253 15h59m04.5s +27d16m08s G 27306 0.091083   11.1 1 0 0 0 0 Retrieve
61 ABELL 2142:[OHF95] 309 15h58m49.6s +27d05m17s G 26241 0.087530   11.1 1 0 0 0 0 Retrieve
62 ABELL 2142:[OHF95] 279 15h57m49.9s +27d23m01s G 27401 0.091400   11.2 1 0 0 0 0 Retrieve
63 ABELL 2142:[OHF95] 277 15h57m37.5s +27d20m39s G 28339 0.094529   11.2 1 0 0 0 0 Retrieve
64 ABELL 2142:[OHF95] 256 15h58m59.0s +27d19m23s G 24511 0.081760   11.2 1 0 0 0 0 Retrieve
65 ABELL 2142:[OHF95] 281 15h57m56.5s +27d23m53s G 27214 0.090776   11.3 1 0 0 0 0 Retrieve
66 ABELL 2142:[OHF95] 280 15h57m51.2s +27d23m33s G 29263 0.097611   11.5 1 0 0 0 0 Retrieve
67 ABELL 2142:[OHF95] 275 15h57m30.2s +27d18m57s G 27585 0.092013   11.6 1 0 0 0 0 Retrieve
68 ABELL 2142:[OHF95] 365 15h57m40.0s +27d22m50s G 27373 0.091306   12.3 1 0 0 0 0 Retrieve
69 IRAS 15567+2731 15h58m50.5s +27d23m26s G 28237 0.094188   12.6 3 0 4 2 0 Retrieve
70 ABELL 2142:[OHF95] 274 15h57m24.3s +27d18m49s G 27093 0.090372   12.7 1 0 0 0 0 Retrieve
71 ABELL 2142:[OHF95] 269 15h57m19.4s +27d16m32s G 29438 0.098194   13.0 1 0 0 0 0 Retrieve
72 ABELL 2142:[OHF95] 350 15h58m47.3s +27d24m29s G 28567 0.095289   13.0 1 0 0 0 0 Retrieve
73 ABELL 2142:[OHF95] 248 15h59m14.9s +27d10m24s G 27189 0.090693   13.4 1 0 0 0 0 Retrieve
74 ABELL 2142:[OHF95] 254 15h59m14.7s +27d17m25s G 27439 0.091526   13.6 1 0 0 0 0 Retrieve
75 ABELL 2142:[OHF95] 317 15h57m42.0s +27d02m05s G 27226 0.090816   13.7 1 0 0 0 0 Retrieve
76 ABELL 2142:[OHF95] 335 15h57m45.0s +27d01m22s G 29208 0.097427   14.0 1 0 0 0 0 Retrieve
77 ABELL 2142:[OHF95] 282 15h57m49.7s +27d26m12s G 26655 0.088911   14.0 1 0 0 0 0 Retrieve
78 ABELL 2142:[OHF95] 284 15h58m29.4s +27d27m35s G 28433 0.094842   14.4 1 0 0 0 0 Retrieve
79 ABELL 2142:[OHF95] 310 15h59m12.4s +27d06m00s G 25884 0.086340   14.6 1 0 0 0 0 Retrieve
80 ABELL 2142:[OHF95] 249 15h59m21.5s +27d11m49s G 27382 0.091336   14.6 1 0 0 0 0 Retrieve
81 ABELL 2142:[OHF95] 320 15h57m26.5s +27d03m48s G 20745 0.069198   14.7 1 0 0 0 0 Retrieve
82 PGC 056556 15h58m49.7s +27d26m40s G 25467 0.084949   15.2 2 0 0 0 1 Retrieve
83 ABELL 2142:[HS79] 204 15h57m42.4s +27d00m18s G 25116 0.083778   15.2 1 0 0 0 0 Retrieve
84 ABELL 2142:[OHF95] 251 15h59m24.0s +27d15m18s G 27308 0.091090   15.2 1 0 0 0 0 Retrieve
85 ABELL 2142:[OHF95] 250 15h59m24.6s +27d13m01s G 27948 0.093224   15.2 1 0 0 0 0 Retrieve
86 ABELL 2142:[OHF95] 304 15h58m54.6s +27d00m50s G 19322 0.064451   15.3 1 0 0 0 0 Retrieve
87 KUG 1556+276 15h58m32.0s +27d28m24s G 9333 0.031131   15.3 4 0 0 2 1 Retrieve
88 ABELL 2142:[OHF95] 258 15h59m18.8s +27d20m04s G 26885 0.089679   15.4 1 0 0 0 0 Retrieve
89 CGCG 167-007 15h58m34.4s +26d58m30s GPair 19860 0.066246   15.5 9 0 0 2 0 Retrieve
90 ABELL 2142:[OHF95] 334 15h58m43.1s +26d59m08s G 27078 0.090322   15.5 1 0 0 0 0 Retrieve
91 ABELL 2142:[OHF95] 322 15h57m19.4s +27d04m18s G 20388 0.068007   15.6 1 0 0 0 0 Retrieve
92 CGCG 167-007 NED01 15h58m39.0s +26d58m37s G 19839 0.066176   15.7 2 0 0 1 0 Retrieve
93 ABELL 2142:[OHF95] 347 15h58m40.0s +26d58m41s G 19321 0.064448   15.7 1 0 0 0 0 Retrieve
94 ABELL 2142:[OHF95] 351 15h58m55.9s +27d26m31s G 27042 0.090202   15.8 1 0 0 0 0 Retrieve
95 IRAS 15556+2736 15h57m43.6s +27d27m55s G 9350 0.031188   16.1 4 0 4 2 0 Retrieve
96 ABELL 2142:[OHF95] 367 15h57m28.9s +27d25m46s G 26229 0.087490   16.1 1 0 0 0 0 Retrieve
97 ABELL 2142:[OHF95] 259 15h59m22.9s +27d20m49s G 27146 0.090549   16.6 1 0 0 0 0 Retrieve
98 ABELL 2142:[OHF95] 328 15h57m06.6s +27d07m10s G 20277 0.067637   16.7 1 0 0 0 0 Retrieve
99 ABELL 2142:[OHF95] 372 15h57m36.8s +27d27m51s G 26790 0.089362   16.8 1 0 0 0 0 Retrieve
100 ABELL 2142:[OHF95] 273 15h57m03.4s +27d18m14s G 28220 0.094132   16.8 1 0 0 0 0 Retrieve
101 ABELL 2142:[OHF95] 330 15h58m31.7s +26d56m33s G 25607 0.085416   17.3 1 0 0 0 0 Retrieve
102 ABELL 2142:[OHF95] 287 15h57m44.6s +27d29m26s G 26298 0.087721   17.4 1 0 0 0 0 Retrieve
103 [HB89] 1557+272 15h59m22.2s +27d03m40s G 19374 0.064625   17.7 17 1 3 0 1 Retrieve
104 ABELL 2142:[OHF95] 366 15h57m08.9s +27d23m16s G 27985 0.093348   17.9 1 0 0 0 0 Retrieve
105 ABELL 2142:[OHF95] 263 15h56m55.2s +27d12m52s G 27660 0.092264   18.0 1 0 0 0 0 Retrieve
106 ABELL 2142:[OHF95] 267 15h56m53.9s +27d15m51s G >30000 0.152859   18.4 1 0 0 0 0 Retrieve
107 ABELL 2142:[OHF95] 373 15h57m24.7s +27d28m19s G 29519 0.098465   18.7 1 0 0 0 0 Retrieve
108 ABELL 2142:[OHF95] 292 15h58m01.1s +27d32m09s G 26880 0.089662   19.0 1 0 0 0 0 Retrieve
109 PGC 056523 15h58m18.9s +27d32m42s G 9495 0.031672   19.2 2 0 0 0 1 Retrieve
110 PGC 056565 15h58m56.6s +27d30m40s G 27097 0.090386   19.4 2 0 0 0 1 Retrieve
111 ABELL 2142:[OHF95] 294 15h58m08.1s +27d32m59s G 27344 0.091210   19.6 1 0 0 0 0 Retrieve
112 ABELL 2142:[OHF95] 270 15h56m49.0s +27d17m14s G 28589 0.095362   19.7 1 0 0 0 0 Retrieve
113 ABELL 2142:[OHF95] 318 15h56m57.0s +27d03m00s G 27619 0.092127   20.5 1 0 0 0 0 Retrieve
114 CGCG 167-008 15h58m34.8s +27d37m06s G 9379 0.031285   24.0 4 0 0 2 1 Retrieve
115 ABELL 2142:[OHF95] 376 15h57m00.6s +27d31m04s G 24652 0.082230   24.3 1 0 0 0 0 Retrieve
116 MRK 0492 15h58m43.7s +26d49m05s G 4267 0.014233   25.1 18 0 14 7 4 Retrieve

Back to NED home HTML-TableParser-0.43/data/screwy.Default.data0000644000040700040100000000016413255011270020212 0ustar djcxcoptics Both Both MM1 MB1 11.1 22.2 1-3.1.1 1-3.2.1  A B MM2 MB2 11.1 33.3 2-3.1.1 2-3.2.1 HTML-TableParser-0.43/data/table2-1.Default.data0000644000040700040100000000254113255011270020206 0ustar djcxcopticsh33 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/table2.hdr0000644000040700040100000000011313255011270016322 0ustar djcxcopticsSnookums x0 y0 z0 p k rho0 theta0 az_mis el_mis l node z_f z_a rho_f rho_a HTML-TableParser-0.43/data/screwy.html0000644000040700040100000000154013255011270016661 0ustar djcxcoptics screwy table

screwy table

Widget Snacks Prices
A B 1 2 3
Sn 1 Sn 2 3.1 3.2
Both MM1 MB1 11.1 22.2 1-3.1.1 1-3.2.1
A B MM2 MB2 33.3 2-3.1.1 2-3.2.1

Diab Jerius
Last modified: Fri Dec 10 10:31:57 EST 1999 HTML-TableParser-0.43/data/table.html0000644000040700040100000000727413255011270016446 0ustar djcxcoptics
mirror x0 y0 z0 p k rho0 theta0 az_mis el_mis l node z_f z_a rho_f rho_a
h1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919
0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541
h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380
0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580
h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604
0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487
h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219
0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396
p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918


842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299
p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011


842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417
p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404


842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293
p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789


842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745
HTML-TableParser-0.43/data/table.Decode.data0000644000040700040100000000254013255011270017564 0ustar djcxcopticsh1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/data/table2.Chomp.data0000644000040700040100000000254213255011270017533 0ustar djcxcoptics h1 -1.154e-01 -2.060e-01 481.0146 -1.7797716637950735E-03 -26.0506034413416841 579.89015840093919 0.000672059134040231 0.00123484664976509 842.1920 24.9555 59.9186 902.1106 598.5083 560.6541h3 -8.365e-02 -2.345e-01 480.9282 -1.1532395834759916E-03 -16.875942397594130 466.64379784205380 0.000515063949465614 0.00138731246068735 842.1970 24.9555 59.8297 902.0267 481.6319 451.1580h4 -8.386e-02 -2.065e-01 480.8279 -8.9864417477996457E-04 -13.150318066441841 411.91935912458604 0.000513002156880169 0.00123195192376053 842.2250 24.9555 59.7154 901.9404 425.1507 398.2487h6 -1.096e-01 -2.067e-01 479.2152 -4.9625995845653374E-04 -7.2620248152618760 306.09851668776219 0.000658904663372658 0.00124699759199671 842.2000 24.9555 58.1152 900.3152 315.9310 295.9396p1 1.239e-01 2.151e-01 -426.5761 0.0 -8.9333113530131421 606.86080963697918 842.2150 24.9555 -847.6836 -5.4686 613.0284 600.6299p3 8.675e-02 2.437e-01 -436.7098 0.0 -5.7939624154424676 488.46244215611011 842.2080 24.9555 -857.8138 -15.6058 493.4321 483.4417p4 8.634e-02 2.168e-01 -440.3572 0.0 -4.5165799273846270 431.26225933154404 842.2080 24.9555 -861.4612 -19.2532 435.6501 426.8293p6 8.625e-02 2.245e-01 -445.0821 0.0 -2.4957050467401789 320.56977725634789 842.2090 24.9555 -866.1866 -23.9776 323.8316 317.2745HTML-TableParser-0.43/MANIFEST0000644000040700040100000000252113255011270014677 0ustar djcxcoptics# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.010. Changes LICENSE MANIFEST META.json META.yml Makefile.PL README cpanfile data/ned.Chomp.data data/ned.Decode.data data/ned.Default.data data/ned.Trim.data data/ned.hdr data/ned.html data/screwy.Chomp.data data/screwy.Decode.data data/screwy.Default.data data/screwy.Trim.data data/screwy.hdr data/screwy.html data/table.Chomp.data data/table.Decode.data data/table.Default.data data/table.Trim.data data/table.hdr data/table.html data/table2-1.Chomp.data data/table2-1.Decode.data data/table2-1.Default.data data/table2-1.Trim.data data/table2-1.hdr data/table2.Chomp.data data/table2.Decode.data data/table2.Default.data data/table2.Trim.data data/table2.hdr data/table2.html dist.ini lib/HTML/TableParser.pm lib/HTML/TableParser/Table.pm t/00-compile.t t/00-report-prereqs.dd t/00-report-prereqs.t t/class-01.t t/class.t t/common.pl t/contents.t t/counts.pl t/end_table.t t/funcs.t t/methods.t t/req_order.t tdata/end_table.html weaver.ini xt/author/clean-namespaces.t xt/author/critic.t xt/author/no-breakpoints.t xt/author/no-tabs.t xt/author/pod-coverage.t xt/author/pod-spell.t xt/author/pod-syntax.t xt/author/test-version.t xt/release/check-manifest.t xt/release/cpan-changes.t xt/release/fixme.t xt/release/meta-json.t xt/release/trailing-space.t xt/release/unused-vars.t HTML-TableParser-0.43/weaver.ini0000644000040700040100000000057313255011270015545 0ustar djcxcoptics[@CorePrep] [Name] [Version] [Region / prelude] [Generic / SYNOPSIS] [Generic / DESCRIPTION] [Generic / RATIONALE] [Generic / QUICKSTART] [Generic / OVERVIEW] [Collect / ATTRIBUTES] command = attr [Collect / METHODS] command = method [Collect / SUBROUTINES] command = sub [Leftovers] [Region / postlude] [Bugs] [SourceGitHub] [SeeAlso] [Authors] [Contributors] [Legal] HTML-TableParser-0.43/LICENSE0000644000040700040100000010477213255011270014566 0ustar djcxcopticsThis software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. This is free software, licensed under: The GNU General Public License, Version 3, June 2007 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . HTML-TableParser-0.43/Changes0000644000040700040100000000754713255011270015056 0ustar djcxcopticsRevision history for HTML-TableParser 0.43 2018-03-22 15:19:44-04:00 America/New_York [ BUILD ] * switch to Dist::Zilla 0.42 2017-04-20T16:28:40-0400 * second attempt at fixing no '.' in @inc for perl 5.25.11+ 0.41 2017-04-18T10:00:19-0400 * fix no . in @INC for perl 5.25+ 0.40 2014-08-22T14:02:33-0400 * fix typo in docs RT#82224 0.39 2014-08-22T13:45:47-0400 * CPAN::testers all green; upgrade to release. 0.38_02 2014-08-18T15:17:53-0400 [PACKAGING] * don't distribute MYMETA files * update ChangeLog 0.38_01 2014-08-18T10:55:06-0400 [BUILD FIXES] * move author tests to xt/ RT98127 * remove deprecated syntax in t/contents.t RT97725 * use cpanfile to manage dependencies * add repository link to metadata 0.38 2008-05-13T22:28:38-0400 * no code changes -- CPAN distribution had bad META.yml file 0.37 2007-09-20T09:30:35-0400 * incorrect setting of plans if Test::Pod::Coverage wasn't available * quiet inappropriate perlcritic warning 0.36 2007-09-20T09:30:35-0400 * add version to Table.pm to fix PAUSE indexer error 0.35 2007-09-19T21:22:22-0400 * fix test to work with Test::More 0.71 * reorganize to a more modern layout * new pod & perlcritic tests 0.34 2002-09-07T01:25:01-0400 * HTML::Parser v. 3.25 didn't handle croaks in callbacks correctly. 3.26 does; Makefile.PL was updated to require it. 0.33 2002-09-03T14:15:13-0400 * MANIFEST was out of date. oops. 0.32 2002-09-03T11:32:20-0400 * extra tags were not handled properly. it now croaks if it hits an extra tag. 0.31 2002-04-20T01:56:28-0400 * was using features of Test::More v0.32 and didn't specify a version in Makefile.PL, causing problems with earlier versions. Ooops. 0.3 2002-04-17T11:26:31-0400 * specification of ids and column names in matches has been extended and simplified. id and cols now may take arrayrefs of things to match. colre is deprecated. * matches can be made using literals, subroutines and qr// created regexps. the latter two are automatically recognized. * explicit exclusions and skipping of tables is now possible * improved docs (a bit) * decode_entitites was being called too late in fix_texts, so Trim was less than effectual. * added DecodeNBSP attribute to fix nbsp decoding issues. * callbacks for methods and classes can be turned off by assigning an undef value to the appropriate key in the table request. * the warn callback is also passed the line number now. this is an incompatible change in the API. 0.2 2002-01-30T19:54:14-0500 * one could not use id=DEFAULT as a fall through if a column name match didn't work. in fact, one couldn't intersperse id's in a request list; they all had to be at the beginning. there's now a well defined order in how requests are processed. * fixing this uncovered another subtle bug. a header line was originally recognized only after finishing the first non-header line. this lead to the situation that if an embedded table was in the first non-header row, it would be matched against column name match requests before the enclosing table, because it would be completely parsed before the enclosing table's header was even recognized. to fix this, we finish off a header in the first non-header column if the previous row was a header and the current row isn't a header. * added an embedded table test in t/contents.t * format of comparison data was wrong. wanted embedded tab between columns, got character sequence '\t' * checking whether a request had been used was 99% foobared. 0.1 2001-12-12T17:12:22-0500 * total rewrite. the only thing left of the old code is probably the header/row column&row spanning code. 0.01 1999-12-10T14:36:39-0500 * original version; created by h2xs 1.18 HTML-TableParser-0.43/Makefile.PL0000644000040700040100000000240413255011270015520 0ustar djcxcoptics# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.010. use strict; use warnings; use ExtUtils::MakeMaker; my %WriteMakefileArgs = ( "ABSTRACT" => "HTML::TableParser - Extract data from an HTML table", "AUTHOR" => "Diab Jerius ", "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => 0 }, "DISTNAME" => "HTML-TableParser", "LICENSE" => "gpl", "NAME" => "HTML::TableParser", "PREREQ_PM" => { "HTML::Entities" => 0, "HTML::Parser" => "3.26" }, "TEST_REQUIRES" => { "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "IO::Handle" => 0, "IPC::Open3" => 0, "Test::More" => "0.32" }, "VERSION" => "0.43", "test" => { "TESTS" => "t/*.t" } ); my %FallbackPrereqs = ( "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "HTML::Entities" => 0, "HTML::Parser" => "3.26", "IO::Handle" => 0, "IPC::Open3" => 0, "Test::More" => "0.32" ); unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { delete $WriteMakefileArgs{TEST_REQUIRES}; delete $WriteMakefileArgs{BUILD_REQUIRES}; $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs; } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); HTML-TableParser-0.43/xt/0000755000040700040100000000000013255011270014201 5ustar djcxcopticsHTML-TableParser-0.43/xt/author/0000755000040700040100000000000013255011270015503 5ustar djcxcopticsHTML-TableParser-0.43/xt/author/pod-syntax.t0000644000040700040100000000025213255011270017775 0ustar djcxcoptics#!perl # This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests. use strict; use warnings; use Test::More; use Test::Pod 1.41; all_pod_files_ok(); HTML-TableParser-0.43/xt/author/pod-spell.t0000644000040700040100000000054413255011270017572 0ustar djcxcopticsuse strict; use warnings; use Test::More; # generated by Dist::Zilla::Plugin::Test::PodSpelling 2.007004 use Test::Spelling 0.12; use Pod::Wordlist; add_stopwords(); all_pod_files_spelling_ok( qw( bin lib ) ); __DATA__ Astrophysical DecodeNBSP Diab HTML Jerius MultiMatch Observatory Smithsonian Table TableParser colre djerius hdr lib ol reqular HTML-TableParser-0.43/xt/author/clean-namespaces.t0000644000040700040100000000036113255011270021067 0ustar djcxcopticsuse strict; use warnings; # this test was generated with Dist::Zilla::Plugin::Test::CleanNamespaces 0.006 use Test::More 0.94; use Test::CleanNamespaces 0.15; subtest all_namespaces_clean => sub { all_namespaces_clean() }; done_testing; HTML-TableParser-0.43/xt/author/no-tabs.t0000644000040700040100000000101113255011270017224 0ustar djcxcopticsuse strict; use warnings; # this test was generated with Dist::Zilla::Plugin::Test::NoTabs 0.15 use Test::More 0.88; use Test::NoTabs; my @files = ( 'lib/HTML/TableParser.pm', 'lib/HTML/TableParser/Table.pm', 't/00-compile.t', 't/00-report-prereqs.dd', 't/00-report-prereqs.t', 't/class-01.t', 't/class.t', 't/common.pl', 't/contents.t', 't/counts.pl', 't/end_table.t', 't/funcs.t', 't/methods.t', 't/req_order.t' ); notabs_ok($_) foreach @files; done_testing; HTML-TableParser-0.43/xt/author/no-breakpoints.t0000644000040700040100000000031413255011270020621 0ustar djcxcopticsuse strict; use warnings; # this test was generated with Dist::Zilla::Plugin::Test::NoBreakpoints 0.0.2 use Test::More 0.88; use Test::NoBreakpoints 0.15; all_files_no_breakpoints_ok(); done_testing; HTML-TableParser-0.43/xt/author/test-version.t0000644000040700040100000000063713255011270020340 0ustar djcxcopticsuse strict; use warnings; use Test::More; # generated by Dist::Zilla::Plugin::Test::Version 1.09 use Test::Version; my @imports = qw( version_all_ok ); my $params = { is_strict => 0, has_version => 1, multiple => 0, }; push @imports, $params if version->parse( $Test::Version::VERSION ) >= version->parse('1.002'); Test::Version->import(@imports); version_all_ok; done_testing; HTML-TableParser-0.43/xt/author/critic.t0000644000040700040100000000020113255011270017136 0ustar djcxcoptics#!perl use strict; use warnings; use Test::Perl::Critic (-profile => "perlcritic.rc") x!! -e "perlcritic.rc"; all_critic_ok(); HTML-TableParser-0.43/xt/author/pod-coverage.t0000644000040700040100000000033413255011270020243 0ustar djcxcoptics#!perl # This file was automatically generated by Dist::Zilla::Plugin::PodCoverageTests. use Test::Pod::Coverage 1.08; use Pod::Coverage::TrustPod; all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' }); HTML-TableParser-0.43/xt/release/0000755000040700040100000000000013255011270015621 5ustar djcxcopticsHTML-TableParser-0.43/xt/release/unused-vars.t0000644000040700040100000000036213255011270020263 0ustar djcxcoptics#!perl use Test::More 0.96 tests => 1; eval { require Test::Vars }; SKIP: { skip 1 => 'Test::Vars required for testing for unused vars' if $@; Test::Vars->import; subtest 'unused vars' => sub { all_vars_ok(); }; }; HTML-TableParser-0.43/xt/release/meta-json.t0000644000040700040100000000006413255011270017703 0ustar djcxcoptics#!perl use Test::CPAN::Meta::JSON; meta_json_ok(); HTML-TableParser-0.43/xt/release/check-manifest.t0000644000040700040100000000050113255011270020663 0ustar djcxcoptics#!perl -T BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::CheckManifest 1.24"; plan skip_all => "Test::CheckManifest 1.24 required for testing MANIFEST" if $@; ok_manifest(); HTML-TableParser-0.43/xt/release/trailing-space.t0000644000040700040100000000103413255011270020706 0ustar djcxcoptics#!perl use strict; use warnings; use Test::More; eval "use Test::TrailingSpace"; if ($@) { plan skip_all => "Test::TrailingSpace required for trailing space test."; } else { plan tests => 1; } # TODO: add .pod, .PL, the README/Changes/TODO/etc. documents and possibly # some other stuff. my $finder = Test::TrailingSpace->new( { root => '.', filename_regex => qr#(?:\.(?:t|pm|pl|xs|c|h|txt|pod|PL)|README|Changes|TODO|LICENSE)\z#, }, ); # TEST $finder->no_trailing_space( "No trailing space was found." ); HTML-TableParser-0.43/xt/release/cpan-changes.t0000644000040700040100000000034413255011270020336 0ustar djcxcopticsuse strict; use warnings; # this test was generated with Dist::Zilla::Plugin::Test::CPAN::Changes 0.012 use Test::More 0.96 tests => 1; use Test::CPAN::Changes; subtest 'changes_ok' => sub { changes_file_ok('Changes'); }; HTML-TableParser-0.43/xt/release/fixme.t0000644000040700040100000000017613255011270017122 0ustar djcxcoptics#!perl # This test is generated by Dist::Zilla::Plugin::Test::Fixme use strict; use warnings; use Test::Fixme; run_tests(); HTML-TableParser-0.43/t/0000755000040700040100000000000013255011270014011 5ustar djcxcopticsHTML-TableParser-0.43/t/00-report-prereqs.t0000644000040700040100000001342613255011270017413 0ustar djcxcoptics#!perl use strict; use warnings; # This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.027 use Test::More tests => 1; use ExtUtils::MakeMaker; use File::Spec; # from $version::LAX my $lax_version_re = qr/(?: undef | (?: (?:[0-9]+) (?: \. | (?:\.[0-9]+) (?:_[0-9]+)? )? | (?:\.[0-9]+) (?:_[0-9]+)? ) | (?: v (?:[0-9]+) (?: (?:\.[0-9]+)+ (?:_[0-9]+)? )? | (?:[0-9]+)? (?:\.[0-9]+){2,} (?:_[0-9]+)? ) )/x; # hide optional CPAN::Meta modules from prereq scanner # and check if they are available my $cpan_meta = "CPAN::Meta"; my $cpan_meta_pre = "CPAN::Meta::Prereqs"; my $HAS_CPAN_META = eval "require $cpan_meta; $cpan_meta->VERSION('2.120900')" && eval "require $cpan_meta_pre"; ## no critic # Verify requirements? my $DO_VERIFY_PREREQS = 1; sub _max { my $max = shift; $max = ( $_ > $max ) ? $_ : $max for @_; return $max; } sub _merge_prereqs { my ($collector, $prereqs) = @_; # CPAN::Meta::Prereqs object if (ref $collector eq $cpan_meta_pre) { return $collector->with_merged_prereqs( CPAN::Meta::Prereqs->new( $prereqs ) ); } # Raw hashrefs for my $phase ( keys %$prereqs ) { for my $type ( keys %{ $prereqs->{$phase} } ) { for my $module ( keys %{ $prereqs->{$phase}{$type} } ) { $collector->{$phase}{$type}{$module} = $prereqs->{$phase}{$type}{$module}; } } } return $collector; } my @include = qw( ); my @exclude = qw( ); # Add static prereqs to the included modules list my $static_prereqs = do './t/00-report-prereqs.dd'; # Merge all prereqs (either with ::Prereqs or a hashref) my $full_prereqs = _merge_prereqs( ( $HAS_CPAN_META ? $cpan_meta_pre->new : {} ), $static_prereqs ); # Add dynamic prereqs to the included modules list (if we can) my ($source) = grep { -f } 'MYMETA.json', 'MYMETA.yml'; my $cpan_meta_error; if ( $source && $HAS_CPAN_META && (my $meta = eval { CPAN::Meta->load_file($source) } ) ) { $full_prereqs = _merge_prereqs($full_prereqs, $meta->prereqs); } else { $cpan_meta_error = $@; # capture error from CPAN::Meta->load_file($source) $source = 'static metadata'; } my @full_reports; my @dep_errors; my $req_hash = $HAS_CPAN_META ? $full_prereqs->as_string_hash : $full_prereqs; # Add static includes into a fake section for my $mod (@include) { $req_hash->{other}{modules}{$mod} = 0; } for my $phase ( qw(configure build test runtime develop other) ) { next unless $req_hash->{$phase}; next if ($phase eq 'develop' and not $ENV{AUTHOR_TESTING}); for my $type ( qw(requires recommends suggests conflicts modules) ) { next unless $req_hash->{$phase}{$type}; my $title = ucfirst($phase).' '.ucfirst($type); my @reports = [qw/Module Want Have/]; for my $mod ( sort keys %{ $req_hash->{$phase}{$type} } ) { next if $mod eq 'perl'; next if grep { $_ eq $mod } @exclude; my $file = $mod; $file =~ s{::}{/}g; $file .= ".pm"; my ($prefix) = grep { -e File::Spec->catfile($_, $file) } @INC; my $want = $req_hash->{$phase}{$type}{$mod}; $want = "undef" unless defined $want; $want = "any" if !$want && $want == 0; my $req_string = $want eq 'any' ? 'any version required' : "version '$want' required"; if ($prefix) { my $have = MM->parse_version( File::Spec->catfile($prefix, $file) ); $have = "undef" unless defined $have; push @reports, [$mod, $want, $have]; if ( $DO_VERIFY_PREREQS && $HAS_CPAN_META && $type eq 'requires' ) { if ( $have !~ /\A$lax_version_re\z/ ) { push @dep_errors, "$mod version '$have' cannot be parsed ($req_string)"; } elsif ( ! $full_prereqs->requirements_for( $phase, $type )->accepts_module( $mod => $have ) ) { push @dep_errors, "$mod version '$have' is not in required range '$want'"; } } } else { push @reports, [$mod, $want, "missing"]; if ( $DO_VERIFY_PREREQS && $type eq 'requires' ) { push @dep_errors, "$mod is not installed ($req_string)"; } } } if ( @reports ) { push @full_reports, "=== $title ===\n\n"; my $ml = _max( map { length $_->[0] } @reports ); my $wl = _max( map { length $_->[1] } @reports ); my $hl = _max( map { length $_->[2] } @reports ); if ($type eq 'modules') { splice @reports, 1, 0, ["-" x $ml, "", "-" x $hl]; push @full_reports, map { sprintf(" %*s %*s\n", -$ml, $_->[0], $hl, $_->[2]) } @reports; } else { splice @reports, 1, 0, ["-" x $ml, "-" x $wl, "-" x $hl]; push @full_reports, map { sprintf(" %*s %*s %*s\n", -$ml, $_->[0], $wl, $_->[1], $hl, $_->[2]) } @reports; } push @full_reports, "\n"; } } } if ( @full_reports ) { diag "\nVersions for all modules listed in $source (including optional ones):\n\n", @full_reports; } if ( $cpan_meta_error || @dep_errors ) { diag "\n*** WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING ***\n"; } if ( $cpan_meta_error ) { my ($orig_source) = grep { -f } 'MYMETA.json', 'MYMETA.yml'; diag "\nCPAN::Meta->load_file('$orig_source') failed with: $cpan_meta_error\n"; } if ( @dep_errors ) { diag join("\n", "\nThe following REQUIRED prerequisites were not satisfied:\n", @dep_errors, "\n" ); } pass; # vim: ts=4 sts=4 sw=4 et: HTML-TableParser-0.43/t/req_order.t0000644000040700040100000000166213255011270016165 0ustar djcxcopticsuse Test::More tests => 3; BEGIN { use_ok( 'HTML::TableParser' ); } require './t/common.pl'; my $header = []; my @parse_data; sub start { @parse_data = (); } sub row { my ( $tbl_id, $line_no, $data, $udata ) = @_; my $data_s = join("\t", @$data); push @parse_data, $data_s; } sub header { my ( $tbl_id, $line_no, $col_names, $udata ) = @_; $header = $col_names; } @reqs = ( { colre => [ qr/NO MATCH POSSIBLE/ ], }, { id => 'DEFAULT', start => \&start, hdr => \&header, row => \&row }, ) ; my $html = 'data/ned.html'; my @data_t = ( 'Default' ); my ($columns, $data, $datafile ) = read_table_data( $html, \@data_t ); my $p = HTML::TableParser->new( \@reqs ); $p->parse_file( 'data/ned.html' ) || die; ok( eq_array( $header, $columns ), "$html header" ); ok( eq_array( $data->{Default}, \@parse_data ), "$html data" ); HTML-TableParser-0.43/t/methods.t0000644000040700040100000000067313255011270015647 0ustar djcxcopticsuse Test::More tests => 6; BEGIN { use_ok( 'HTML::TableParser' ); } require './t/counts.pl'; { package Foo; sub new { my $this = shift; my $class = ref($this) || $this; my $self = {}; bless $self, $class; } sub start { shift; &::start } sub end { shift; &::end } sub hdr { shift; &::hdr } sub row { shift; &::row } } my $foo = Foo->new(); our %req = ( id => 'DEFAULT', obj => $foo ); run( %req ); HTML-TableParser-0.43/t/class-01.t0000644000040700040100000000320213255011270015516 0ustar djcxcopticsuse Test::More tests => 4; BEGIN { use_ok( 'HTML::TableParser' ); } our ( $start, $end, $hdr, $nrow, $ncols ); sub start { $hdr = 0; $nrow = 0; $ncols = 0; $end = 0; $start++; }; sub end{ $end++ }; sub hdr { my( $tbl_id, $line_no, $col_names, $udata ) = @_; $hdr++; $ncols = @$col_names; }; sub row { my( $tbl_id, $line_no, $data ) = @_; $nrow++; }; sub run { my ( %req ) = @_; #------------------------------------------------------ } { package Foo; sub new { my $this = shift; my $class = ref($this) || $this; my $self = {}; bless $self, $class; } sub start { shift; &::start } sub end { shift; &::end } sub hdr { shift; &::hdr } sub row { shift; &::row } } { my $p = HTML::TableParser->new( [ { id => 'DEFAULT', class => 'Foo' } ] ) or die; $p->parse_file( 'data/ned.html' ) || die; ok( 1 == $end, "class method check" ); } { my $p = HTML::TableParser->new( [{ id => 'DEFAULT', class => 'Foo', end => undef }] ) or die; $p->parse_file( 'data/ned.html' ) || die; ok( 0 == $end, "class method undef check" ); } { my $foo = Foo->new(); my $p = HTML::TableParser->new( [{ id => 'DEFAULT', obj => $foo, end => undef }] ) or die; $p->parse_file( 'data/ned.html' ) || die; ok( 0 == $end, "object method undef check" ); } HTML-TableParser-0.43/t/counts.pl0000644000040700040100000000372613255011270015671 0ustar djcxcopticsour ( $start, $end, $hdr, $nrow, $ncols ); sub start { $hdr = 0; $nrow = 0; $ncols = 0; $end = 0; $start++; }; sub end{ $end++ }; sub hdr { my( $tbl_id, $line_no, $col_names, $udata ) = @_; $hdr++; $ncols = @$col_names; }; sub row { my( $tbl_id, $line_no, $data ) = @_; $nrow++; }; sub run { my ( %req ) = @_; #------------------------------------------------------ { my $p = HTML::TableParser->new( [ \%req ] ) or die; $p->parse_file( 'data/ned.html' ) || die; ok( 1 == $start && 1 == $end && 1 == $hdr && 15 == $ncols && 116 == $nrow, "ned check" ); } #------------------------------------------------------ $start = 0; { my $p = HTML::TableParser->new( [ \%req ] ) or die; $p->parse_file( 'data/screwy.html' ) || die; ok( 1 == $start && 1 == $end && 1 == $hdr && 8 == $ncols && 2 == $nrow, "screwy check" ); } #------------------------------------------------------ $start = 0; { my $p = HTML::TableParser->new( [ \%req ] ) or die; $p->parse_file( 'data/table.html' ) || die; ok( 1 == $start && 1 == $end && 1 == $hdr && 16 == $ncols && 8 == $nrow, "table check" ); } #------------------------------------------------------ $req{id} = 1; $start = 0; { my $p = HTML::TableParser->new( [ \%req ] ); $p->parse_file( 'data/table2.html' ) || die; ok( 1 == $start && 1 == $end && 1 == $hdr && 16 == $ncols && 9 == $nrow, "table2 check1" ); } #------------------------------------------------------ $req{id} = 1.1; $start = 0; { my $p = HTML::TableParser->new( [ \%req ] ) or die; $p->parse_file( 'data/table2.html' ) || die; ok( 1 == $start && 1 == $end && 1 == $hdr && 16 == $ncols && 8 == $nrow, "table2 check2" ); } } 1; HTML-TableParser-0.43/t/contents.t0000644000040700040100000002126213255011270016036 0ustar djcxcopticsuse strict; use warnings; use Test::More tests => 131; use IO::File; use File::Basename; BEGIN { use_ok( 'HTML::TableParser' ); } require './t/common.pl'; our $verbose = 0; our $create = 1; our $header; our $columns; our @parse_data; my $fh; sub start { my ( $tbl_id, $line_no, $udata ) = @_; print STDERR "start: $tbl_id\n" if $verbose; die( "whoops! we're already in the middle of a table!\n" ) if @parse_data; @parse_data = (); } sub start_create { @parse_data = (); my ( $tbl_id, $line_no, $udata ) = @_; print STDERR "start_create: $tbl_id\n" if $verbose; $fh = IO::File->new( $udata->{data}, 'w' ) or die( "unable to create $udata->{data}\n" ); } sub end_create { my ( $tbl_id, $line_no, $udata ) = @_; print STDERR "end_create: $tbl_id\n" if $verbose; $fh->close; } sub row { my ( $tbl_id, $line_no, $data, $udata ) = @_; print STDERR "row: $tbl_id\n" if $verbose; my $data_s = join("\t", @$data); print $fh $data_s, $; if $create; push @parse_data, $data_s; } sub header { my ( $tbl_id, $line_no, $col_names, $udata ) = @_; print STDERR "header: $tbl_id\n" if $verbose; $header = $col_names; if ( $create ) { open FILE, ">$udata->{hdr}" or die; print FILE "$_\n" foreach @$col_names; close FILE; @$columns = @$col_names; } } our @data_t = qw( Default Chomp Trim Decode ); opendir( DDIR, 'data' ) or die( "error reading dir data\n" ); my @html = map { "data/$_" } grep { /.html$/ } readdir( DDIR ); closedir DDIR; for my $html ( @html ) { ( my $hdrfile = $html ) =~ s/.html/.hdr/; my %req = ( hdr => \&header, row => \&row, udata => { hdr => $hdrfile } ); my $data; unless( $create ) { ($columns, $data ) = read_table_data( $html, \@data_t ); $req{start} = \&start; } else { $req{start} = \&start_create; $req{end} = \&end_create; } foreach my $type ( @data_t ) { my %attr = $type eq 'Default' ? () : ( $type => 1 ); ( my $datafile = $html ) =~ s/.html/.$type.data/; $req{udata}{data} = $datafile; { local $req{id} = 1; my $p = HTML::TableParser->new( [ \%req ], \%attr ); undef @parse_data; $header = undef; $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$html id" ); $data->{$type} = [@parse_data] if $create; ok( eq_array( $data->{$type}, \@parse_data ), "$html($type) id data" ); } { local $req{cols} = [ $columns->[0] ]; my $p = HTML::TableParser->new( [ \%req ], \%attr ); undef @parse_data; $header = undef; $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$html cols" ); ok( eq_array( $data->{$type}, \@parse_data ), "$html($type) cols data" ); } { my $re = $columns->[-1]; substr($re, -1, 1, ''); local $req{colre} = [ $re ]; undef @parse_data; $header = undef; my $p = HTML::TableParser->new( [ \%req ], \%attr ); $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$html colre" ); ok( eq_array( $data->{$type}, \@parse_data ), "$html($type) colre data" ); } { $header = undef; local $req{cols} = [ "this column doesn't exist" ]; undef @parse_data; $header = undef; my $p = HTML::TableParser->new( [ \%req ], \%attr ); $p->parse_file( $html ) || die; ok( !defined $header, "$html($type) cols: no match" ); } } } # table2.html has an embedded table. check that out now. { my $html = 'data/table2.html'; my $fakehtml = 'data/table2-1.html'; my $hdrfile = 'data/table2-1.hdr'; my %req = ( hdr => \&header, row => \&row, udata => { hdr => $hdrfile } ); my $data; my $datafile; unless( $create ) { ($columns, $data, $datafile ) = read_table_data( $fakehtml, \@data_t ); $req{start} = \&start; } else { $req{start} = \&start_create; $req{end} = \&end_create; } foreach my $type ( @data_t ) { my %attr = $type eq 'Default' ? () : ( $type => 1 ); ( my $datafile = $fakehtml ) =~ s/.html/.$type.data/; $req{udata}{data} = $datafile; $header = undef; { local $req{id} = 1.1; my $p = HTML::TableParser->new( [ \%req ], \%attr ); undef @parse_data; $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$fakehtml id" ); $data->{$type} = [@parse_data] if $create; ok( eq_array( $data->{$type}, \@parse_data ), "$fakehtml($type) id data" ); } } } # check id coderef mode. no need to do the create bit, # as we're reusing stuff from just above here { local $create = 0; my $html = 'data/table2.html'; my $fakehtml = 'data/table2-1.html'; my $hdrfile = 'data/table2-1.hdr'; my %req = ( hdr => \&header, row => \&row, start => \&start, id => sub { $_[0] eq '1.1' }, udata => { hdr => $hdrfile, data => 'data/table2-1.Default.data' } ); my ( $data, $datafile ); ($columns, $data, $datafile ) = read_table_data( $fakehtml, [ 'Default' ] ); $header = undef; my $p = HTML::TableParser->new( [ \%req ] ); undef @parse_data; $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$fakehtml id = coderef" ); ok( eq_array( $data->{Default}, \@parse_data ), "$fakehtml(Default) id = coderef data" ); } # check id exclude mode. no need to do the create bit, # as we're reusing stuff from just above here { local $create = 0; my $html = 'data/table2.html'; my $fakehtml = 'data/table2-1.html'; my $hdrfile = 'data/table2-1.hdr'; my %req = ( hdr => \&header, row => \&row, start => \&start, id => [ '-', sub { $_[0] eq '1' }, 'DEFAULT' ], udata => { hdr => $hdrfile, data => 'data/table2-1.Default.data' } ); my ( $data, $datafile ); ($columns, $data, $datafile ) = read_table_data( $fakehtml, [ 'Default' ] ); $header = undef; my $p = HTML::TableParser->new( [ \%req ] ); undef @parse_data; $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$fakehtml id exclude" ); ok( eq_array( $data->{Default}, \@parse_data ), "$fakehtml(Default) id exclude data" ); } # check id skip mode. # no need to do the create bit, # as we're reusing stuff from just above here { local $create = 0; my $html = 'data/table2.html'; my $fakehtml = 'data/table2-1.html'; my $hdrfile = 'data/table2-1.hdr'; my @reqs = ( { id => [ '--', '1' ] }, { hdr => \&header, row => \&row, start => \&start, id => 'DEFAULT', udata => { hdr => $hdrfile, data => 'data/table2-1.Default.data' } } ); my ( $data, $datafile ); ($columns, $data, $datafile ) = read_table_data( $fakehtml, [ 'Default' ] ); $header = undef; my $p = HTML::TableParser->new( \@reqs ); undef @parse_data; $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$fakehtml id skip" ); ok( eq_array( $data->{Default}, \@parse_data ), "$fakehtml(Default) id skip data" ); } # check id re mode. no need to do the create bit, # as we're reusing stuff from just above here { local $create = 0; my $html = 'data/table2.html'; my $fakehtml = 'data/table2-1.html'; my $hdrfile = 'data/table2-1.hdr'; my %req = ( hdr => \&header, row => \&row, start => \&start, id => qr/\.1$/, udata => { hdr => $hdrfile, data => 'data/table2-1.Default.data' } ); my ( $data, $datafile ); ($columns, $data, $datafile ) = read_table_data( $fakehtml, [ 'Default' ] ); $header = undef; my $p = HTML::TableParser->new( [ \%req ] ); undef @parse_data; $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$fakehtml idre" ); ok( eq_array( $data->{Default}, \@parse_data ), "$fakehtml(Default) idre data" ); } # check cols coderef mode. no need to do the create bit, # as we're reusing stuff from just above here { use Data::Dumper; local $create = 0; my $html = 'data/screwy.html'; my $datafile = 'data/screwy.Default.data'; my $hdrfile = 'data/screwy.hdr'; my %req = ( hdr => \&header, row => \&row, start => \&start, cols => sub { grep { /Widget A/ } @{$_[2]} }, udata => { hdr => $hdrfile, data => $datafile } ); my $data; ($columns, $data, $datafile ) = read_table_data( $html, [ 'Default' ] ); $header = undef; my $p = HTML::TableParser->new( [ \%req ] ); undef @parse_data; $p->parse_file( $html ) || die; ok( eq_array( $header, $columns ), "$html cols = coderef" ); ok( eq_array( $data->{Default}, \@parse_data ), "$html(Default) cols = coderef data" ); } HTML-TableParser-0.43/t/funcs.t0000644000040700040100000000035013255011270015312 0ustar djcxcopticsuse Test::More tests => 6; BEGIN { use_ok( 'HTML::TableParser' ); } require './t/counts.pl'; %req = ( id => 'DEFAULT', start => \&start, end => \&end, hdr => \&hdr, row => \&row ); run(%req); HTML-TableParser-0.43/t/end_table.t0000644000040700040100000000036513255011270016117 0ustar djcxcopticsuse Test::More tests => 2; BEGIN { use_ok( 'HTML::TableParser' ); } my $p = HTML::TableParser->new( [ { id => 'DEFAULT' } ] ); eval { $p->parse_file( 'tdata/end_table.html' ); }; ok ( $@ && $@ =~ m{too many }, 'extra tags' ); HTML-TableParser-0.43/t/00-compile.t0000644000040700040100000000270213255011270016044 0ustar djcxcopticsuse 5.006; use strict; use warnings; # this test was generated with Dist::Zilla::Plugin::Test::Compile 2.057 use Test::More; plan tests => 2 + ($ENV{AUTHOR_TESTING} ? 1 : 0); my @module_files = ( 'HTML/TableParser.pm', 'HTML/TableParser/Table.pm' ); # no fake home requested my @switches = ( -d 'blib' ? '-Mblib' : '-Ilib', ); use File::Spec; use IPC::Open3; use IO::Handle; open my $stdin, '<', File::Spec->devnull or die "can't open devnull: $!"; my @warnings; for my $lib (@module_files) { # see L my $stderr = IO::Handle->new; diag('Running: ', join(', ', map { my $str = $_; $str =~ s/'/\\'/g; q{'} . $str . q{'} } $^X, @switches, '-e', "require q[$lib]")) if $ENV{PERL_COMPILE_TEST_DEBUG}; my $pid = open3($stdin, '>&STDERR', $stderr, $^X, @switches, '-e', "require q[$lib]"); binmode $stderr, ':crlf' if $^O eq 'MSWin32'; my @_warnings = <$stderr>; waitpid($pid, 0); is($?, 0, "$lib loaded ok"); shift @_warnings if @_warnings and $_warnings[0] =~ /^Using .*\bblib/ and not eval { +require blib; blib->VERSION('1.01') }; if (@_warnings) { warn @_warnings; push @warnings, @_warnings; } } is(scalar(@warnings), 0, 'no warnings found') or diag 'got warnings: ', ( Test::More->can('explain') ? Test::More::explain(\@warnings) : join("\n", '', @warnings) ) if $ENV{AUTHOR_TESTING}; HTML-TableParser-0.43/t/class.t0000644000040700040100000000067613255011270015314 0ustar djcxcopticsuse Test::More tests => 6; BEGIN { use_ok( 'HTML::TableParser' ); } require './t/counts.pl'; { package Foo; sub new { my $this = shift; my $class = ref($this) || $this; my $self = {}; bless $self, $class; } sub start { shift; &::start } sub end { shift; &::end } sub hdr { shift; &::hdr } sub row { shift; &::row } } my $foo = Foo->new(); our %req = ( id => 'DEFAULT', class => 'Foo' ); run( %req ); HTML-TableParser-0.43/t/00-report-prereqs.dd0000644000040700040100000001325713255011270017541 0ustar djcxcopticsdo { my $x = { 'configure' => { 'requires' => { 'ExtUtils::MakeMaker' => '0' } }, 'develop' => { 'requires' => { 'Dist::Zilla' => '5', 'Dist::Zilla::Plugin::AutoMetaResources' => '0', 'Dist::Zilla::Plugin::BumpVersionAfterRelease' => '0', 'Dist::Zilla::Plugin::CPANFile' => '0', 'Dist::Zilla::Plugin::CheckMetaResources' => '0', 'Dist::Zilla::Plugin::CopyFilesFromRelease' => '0', 'Dist::Zilla::Plugin::Encoding' => '0', 'Dist::Zilla::Plugin::EnsureChangesHasContent' => '0', 'Dist::Zilla::Plugin::EnsurePrereqsInstalled' => '0', 'Dist::Zilla::Plugin::GatherDir' => '0', 'Dist::Zilla::Plugin::InsertCopyright' => '0', 'Dist::Zilla::Plugin::InsertExample' => '0', 'Dist::Zilla::Plugin::MetaJSON' => '0', 'Dist::Zilla::Plugin::MetaNoIndex' => '0', 'Dist::Zilla::Plugin::MetaProvides::Package' => '0', 'Dist::Zilla::Plugin::NextRelease' => '0', 'Dist::Zilla::Plugin::PodCoverageTests' => '0', 'Dist::Zilla::Plugin::PodSyntaxTests' => '0', 'Dist::Zilla::Plugin::PodWeaver' => '0', 'Dist::Zilla::Plugin::Prereqs' => '0', 'Dist::Zilla::Plugin::Prereqs::AuthorDeps' => '0', 'Dist::Zilla::Plugin::Readme::Brief' => '0', 'Dist::Zilla::Plugin::ReadmeAnyFromPod' => '0', 'Dist::Zilla::Plugin::Regenerate' => '0', 'Dist::Zilla::Plugin::RewriteVersion' => '0', 'Dist::Zilla::Plugin::RunExtraTests' => '0', 'Dist::Zilla::Plugin::Test::CPAN::Changes' => '0', 'Dist::Zilla::Plugin::Test::CPAN::Meta::JSON' => '0', 'Dist::Zilla::Plugin::Test::CheckManifest' => '0', 'Dist::Zilla::Plugin::Test::CleanNamespaces' => '0', 'Dist::Zilla::Plugin::Test::Compile' => '0', 'Dist::Zilla::Plugin::Test::Fixme' => '0', 'Dist::Zilla::Plugin::Test::NoBreakpoints' => '0', 'Dist::Zilla::Plugin::Test::NoTabs' => '0', 'Dist::Zilla::Plugin::Test::Perl::Critic' => '0', 'Dist::Zilla::Plugin::Test::PodSpelling' => '0', 'Dist::Zilla::Plugin::Test::ReportPrereqs' => '0', 'Dist::Zilla::Plugin::Test::TrailingSpace' => '0', 'Dist::Zilla::Plugin::Test::UnusedVars' => '0', 'Dist::Zilla::Plugin::Test::Version' => '0', 'Dist::Zilla::PluginBundle::Basic' => '0', 'Dist::Zilla::PluginBundle::Filter' => '0', 'Pod::Coverage::TrustPod' => '0', 'Pod::Weaver::Section::BugsAndLimitations' => '0', 'Pod::Weaver::Section::SeeAlso' => '0', 'Software::License::GPL_3' => '0', 'Test::CPAN::Changes' => '0.19', 'Test::CPAN::Meta::JSON' => '0.16', 'Test::CleanNamespaces' => '0.15', 'Test::More' => '0.88', 'Test::NoBreakpoints' => '0.15', 'Test::NoTabs' => '0', 'Test::Perl::Critic' => '0', 'Test::Pod' => '1.41', 'Test::Pod::Coverage' => '1.08', 'Test::Spelling' => '0.12', 'Test::TrailingSpace' => '0.0203', 'Test::Version' => '1' } }, 'runtime' => { 'requires' => { 'HTML::Entities' => '0', 'HTML::Parser' => '3.26' } }, 'test' => { 'recommends' => { 'CPAN::Meta' => '2.120900' }, 'requires' => { 'ExtUtils::MakeMaker' => '0', 'File::Spec' => '0', 'IO::Handle' => '0', 'IPC::Open3' => '0', 'Test::More' => '0.32' } } }; $x; }HTML-TableParser-0.43/t/common.pl0000644000040700040100000000076113255011270015642 0ustar djcxcopticssub read_table_data { my ( $html, $data_t ) = @_; ( my $hdrfile = $html ) =~ s/.html/.hdr/; open FILE, $hdrfile or die( "unable to open $hdrfile\n" ); @columns = ; chomp(@columns); my %data; foreach my $type ( @$data_t ) { ( my $datafile = $html ) =~ s/.html/.$type.data/; open FILE, $datafile or die( "couldn't open datafile $datafile{$type}\n"); local $/ = $; ; $data{$type} = []; chomp(@{$data{$type}}); } \@columns, \%data; } 1; HTML-TableParser-0.43/cpanfile0000644000040700040100000000671213255011270015260 0ustar djcxcopticsrequires "HTML::Entities" => "0"; requires "HTML::Parser" => "3.26"; on 'test' => sub { requires "ExtUtils::MakeMaker" => "0"; requires "File::Spec" => "0"; requires "IO::Handle" => "0"; requires "IPC::Open3" => "0"; requires "Test::More" => "0.32"; }; on 'test' => sub { recommends "CPAN::Meta" => "2.120900"; }; on 'configure' => sub { requires "ExtUtils::MakeMaker" => "0"; }; on 'develop' => sub { requires "Dist::Zilla" => "5"; requires "Dist::Zilla::Plugin::AutoMetaResources" => "0"; requires "Dist::Zilla::Plugin::BumpVersionAfterRelease" => "0"; requires "Dist::Zilla::Plugin::CPANFile" => "0"; requires "Dist::Zilla::Plugin::CheckMetaResources" => "0"; requires "Dist::Zilla::Plugin::CopyFilesFromRelease" => "0"; requires "Dist::Zilla::Plugin::Encoding" => "0"; requires "Dist::Zilla::Plugin::EnsureChangesHasContent" => "0"; requires "Dist::Zilla::Plugin::EnsurePrereqsInstalled" => "0"; requires "Dist::Zilla::Plugin::GatherDir" => "0"; requires "Dist::Zilla::Plugin::InsertCopyright" => "0"; requires "Dist::Zilla::Plugin::InsertExample" => "0"; requires "Dist::Zilla::Plugin::MetaJSON" => "0"; requires "Dist::Zilla::Plugin::MetaNoIndex" => "0"; requires "Dist::Zilla::Plugin::MetaProvides::Package" => "0"; requires "Dist::Zilla::Plugin::NextRelease" => "0"; requires "Dist::Zilla::Plugin::PodCoverageTests" => "0"; requires "Dist::Zilla::Plugin::PodSyntaxTests" => "0"; requires "Dist::Zilla::Plugin::PodWeaver" => "0"; requires "Dist::Zilla::Plugin::Prereqs" => "0"; requires "Dist::Zilla::Plugin::Prereqs::AuthorDeps" => "0"; requires "Dist::Zilla::Plugin::Readme::Brief" => "0"; requires "Dist::Zilla::Plugin::ReadmeAnyFromPod" => "0"; requires "Dist::Zilla::Plugin::Regenerate" => "0"; requires "Dist::Zilla::Plugin::RewriteVersion" => "0"; requires "Dist::Zilla::Plugin::RunExtraTests" => "0"; requires "Dist::Zilla::Plugin::Test::CPAN::Changes" => "0"; requires "Dist::Zilla::Plugin::Test::CPAN::Meta::JSON" => "0"; requires "Dist::Zilla::Plugin::Test::CheckManifest" => "0"; requires "Dist::Zilla::Plugin::Test::CleanNamespaces" => "0"; requires "Dist::Zilla::Plugin::Test::Compile" => "0"; requires "Dist::Zilla::Plugin::Test::Fixme" => "0"; requires "Dist::Zilla::Plugin::Test::NoBreakpoints" => "0"; requires "Dist::Zilla::Plugin::Test::NoTabs" => "0"; requires "Dist::Zilla::Plugin::Test::Perl::Critic" => "0"; requires "Dist::Zilla::Plugin::Test::PodSpelling" => "0"; requires "Dist::Zilla::Plugin::Test::ReportPrereqs" => "0"; requires "Dist::Zilla::Plugin::Test::TrailingSpace" => "0"; requires "Dist::Zilla::Plugin::Test::UnusedVars" => "0"; requires "Dist::Zilla::Plugin::Test::Version" => "0"; requires "Dist::Zilla::PluginBundle::Basic" => "0"; requires "Dist::Zilla::PluginBundle::Filter" => "0"; requires "Pod::Coverage::TrustPod" => "0"; requires "Pod::Weaver::Section::BugsAndLimitations" => "0"; requires "Pod::Weaver::Section::SeeAlso" => "0"; requires "Software::License::GPL_3" => "0"; requires "Test::CPAN::Changes" => "0.19"; requires "Test::CPAN::Meta::JSON" => "0.16"; requires "Test::CleanNamespaces" => "0.15"; requires "Test::More" => "0.88"; requires "Test::NoBreakpoints" => "0.15"; requires "Test::NoTabs" => "0"; requires "Test::Perl::Critic" => "0"; requires "Test::Pod" => "1.41"; requires "Test::Pod::Coverage" => "1.08"; requires "Test::Spelling" => "0.12"; requires "Test::TrailingSpace" => "0.0203"; requires "Test::Version" => "1"; };