Changeset 1194
- Timestamp:
- 11/06/07 22:40:06 (6 years ago)
- Location:
- lang/perl/Net-Twitter-Friend-Finder/trunk
- Files:
-
- 1 added
- 4 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
lib/Net/Twitter/Friend/Finder.pm (modified) (3 diffs)
-
lib/Net/Twitter/Friend/Finder/FromGoogle.pm (modified) (3 diffs)
-
lib/Net/Twitter/Friend/Finder/FromTwitter.pm (added)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Net-Twitter-Friend-Finder/trunk/Changes
r1189 r1194 1 1 Revision history for Net-Twitter-Friend-Finder 2 2 3 0.01_01 2007-11-06/22:33 4 - notice for changing interface. 5 - add FromTwitter 3 6 0.01 2007-11-06/17:09 4 7 First version, released on an unsuspecting world. -
lang/perl/Net-Twitter-Friend-Finder/trunk/MANIFEST
r1189 r1194 5 5 lib/Net/Twitter/Friend/Finder.pm 6 6 lib/Net/Twitter/Friend/Finder/FromGoogle.pm 7 lib/Net/Twitter/Friend/Finder/FromTwitter.pm 7 8 sbin/sample.pl 8 9 t/00-load.t -
lang/perl/Net-Twitter-Friend-Finder/trunk/lib/Net/Twitter/Friend/Finder.pm
r1189 r1194 6 6 use Net::Twitter; 7 7 8 our $VERSION ='0.01 ';8 our $VERSION ='0.01_01'; 9 9 10 10 __PACKAGE__->mk_accessors(qw/limit ids username password on_echo/); … … 51 51 =head1 DESCRIPTION 52 52 53 IMPORTANT! Interface is under development. It will be change future. Planning 54 to convert plaggable interface. 55 53 56 This package is just template so that you should not use this directly , instead use it as base. 54 57 … … 79 82 L<Net::Twitter::Friend::Finder::FromGoogle> 80 83 84 L<Net::Twitter::Friend::Finder::FromTwitter> 85 86 sbin/sample.pl 87 81 88 =head1 AUTHOR 82 89 -
lang/perl/Net-Twitter-Friend-Finder/trunk/lib/Net/Twitter/Friend/Finder/FromGoogle.pm
r1192 r1194 8 8 use URI::Escape; 9 9 use Text::SimpleTable ; 10 use Net::Twitter;11 10 12 __PACKAGE__->mk_accessors(qw/lang _ count_keyword/);11 __PACKAGE__->mk_accessors(qw/lang _score _keyword/); 13 12 14 13 my $url = "http://www.google.com/search?q=%s+site:.twitter.com&num=%d&start=%d&hl=%s"; … … 54 53 } 55 54 $self->{ids} = \@ids; 56 $self->{_ count} = $data;55 $self->{_score} = $data; 57 56 58 57 … … 78 77 my $cnt = 1; 79 78 for my $id ( @{ $self->{ids} } ) { 80 $t3->row( $cnt, $id, $self->{_ count}{ $id } );79 $t3->row( $cnt, $id, $self->{_score}{ $id } ); 81 80 $cnt++; 82 81 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)