Subject: | parse() can't find members, errors out |
Using Net::Google::Code with App::SD, it cannot parse my y2038 project.
parse() appears to be looking for an anchor tag with the id "members"...
my @members_tags =
$tree->look_down( id => 'members' )->find_by_tag_name('a');
This tag appears to no longer exist (there's evidence it did in the
CSS). See http://y2038.googlecode.com/ for an example.
Rather than continuing with the parsing, it causes an error:
Can't call method "find_by_tag_name" on an undefined value at
/usr/local/lib/perl5/site_perl/Net/Google/Code.pm line 109.
It should continue gracefully, possibly by the simple expedient of
putting the search in an eval block.