Skip Menu |

This queue is for tickets about the DBD-google CPAN distribution.

Report information
The Basics
Id: 16394
Status: resolved
Priority: 0/
Queue: DBD-google

People
Owner: darren [...] cpan.org
Requestors: jpierce [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: Missing columns
Only the snippet and title columns contain data, in addition URL is missing, although an empty _u_r_l field exists.
[JPIERCE - Fri Dec 9 11:40:26 2005]: Show quoted text
> Only the snippet and title columns contain data, in addition URL is
missing, Show quoted text
> although an empty _u_r_l field exists.
Will investigate.
From: chad-bitcard.org [...] superfrink.net
Show quoted text
> in addition URL is missing, although an empty _u_r_l field exists.
I posted a work-around / patch at http://perlmonks.org/?node_id=428285 Here it is: # diff -u parser.pm.orig parser.pm --- parser.pm.orig 2004-03-04 18:48:54.000000000 -0500 +++ parser.pm 2009-01-29 13:56:06.000000000 -0500 @@ -31,7 +31,7 @@ $FUNC_RE = qr/$FIELD_RE*(?:::$FIELD_RE*)*(?:[-]>$FIELD_RE*)?/; # methods? $FIELD_RE = qr/$FIELD_RE*/; -my @default_columns = sort qw( title URL snippet summary +my @default_columns = sort qw( title url snippet summary cachedSize directoryTitle hostName directoryCategory );
Subject: Re: [rt.cpan.org #16394] Missing columns
Date: Sat, 14 Mar 2009 20:11:48 -0400
To: bug-DBD-google [...] rt.cpan.org
From: Darren Chamberlain <darren [...] cpan.org>
I updated DBD::Google with this change, and uploaded version 0.50. I was under the impression that Google stopped responding to this search API, so I'm not sure if the release helps anyone, but it should propagate to your favorite CPAN mirror soon. On Thu, Jan 29, 2009 at 15:09, Chad Clark via RT <bug-DBD-google@rt.cpan.org> wrote: Show quoted text
>       Queue: DBD-google >  Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=16394 > >
>> in addition URL is missing, although an empty _u_r_l field exists.
> > I posted a work-around / patch at http://perlmonks.org/?node_id=428285 > > Here it is: > > # diff -u parser.pm.orig parser.pm > --- parser.pm.orig      2004-03-04 18:48:54.000000000 -0500 > +++ parser.pm   2009-01-29 13:56:06.000000000 -0500 > @@ -31,7 +31,7 @@ >  $FUNC_RE = qr/$FIELD_RE*(?:::$FIELD_RE*)*(?:[-]>$FIELD_RE*)?/; # > methods? >  $FIELD_RE = qr/$FIELD_RE*/; > > -my @default_columns = sort qw( title URL snippet summary > +my @default_columns = sort qw( title url snippet summary >                                cachedSize directoryTitle >                                hostName directoryCategory >                              ); >
-- (darren)