Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

www::finger::fingerpoint(3pm) [debian man page]

WWW::Finger::Fingerpoint(3pm)				User Contributed Perl Documentation			     WWW::Finger::Fingerpoint(3pm)

NAME
WWW::Finger::Fingerpoint - Investigate E-mail Addresses using Fingerpoint SYNOPSIS
## Using WWW::Finger use WWW::Finger; my $finger = WWW::Finger->new("joe@example.com"); if ($finger) { if ($finger->isa('WWW::Finger::Fingerpoint')) { print "WWW::Finger used WWW::Fingerpoint "; } print $finger->name . " "; # print person's name. } ## Using WWW::Finger::Fingerpoint directly use RDF::Query::Client; use WWW::Finger::Fingerpoint; my $fingerpoint = WWW::Finger::Fingerpoint->new("joe@example.com"); if ($fingerpoint->webid) { my $sparql = sprintf( "SELECT * WHERE {<%s> <http://xmlns.com/foaf/0.1/homepage> ?page.}", $fingerpoint->webid); my $query = RDF::Query::Client->new($sparql); my $results = $query->execute($fingerpoint->endpoint); while (my $row = $results->next) { print "Found page: " . $row->{'page'}->uri . " "; } } DESCRIPTION
As well as the standard WWW::Finger methods, WWW::Finger::Fingerpoint provides this additional method: "get($p1, $p2, ...)" $p1, $p2 and are RDF predicate URIs. Returns a list of values which are non-bnode objects of triples where the predicate URI is one of the parameters and the subject URI is the person/agent fingered. # Returns phone numbers... $finger->get('http://xmlns.com/foaf/0.1/phone', 'http://rdf.data-vocabulary.org/#tel'); SEE ALSO
WWW::Finger. RDF::Query::Client, RDF::Trine. <http://buzzword.org.uk/2009/fingerpoint/spec>. <http://www.perlrdf.org/>. AUTHOR
Toby Inkster, <tobyink@cpan.org> COPYRIGHT AND LICENCE
Copyright (C) 2009-2012 by Toby Inkster This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. perl v5.14.2 2012-02-23 WWW::Finger::Fingerpoint(3pm)

Check Out this Related Man Page

WWW::Search::Yahoo::News::Advanced(3pm) 		User Contributed Perl Documentation		   WWW::Search::Yahoo::News::Advanced(3pm)

NAME
WWW::Search::Yahoo::News::Advanced - search Yahoo!News using the "advanced" interface SYNOPSIS
use WWW::Search; my $oSearch = new WWW::Search('Yahoo::News::Advanced'); my $sQuery = WWW::Search::escape_query("George Lucas"); $oSearch->date_from('7 days ago'); $oSearch->date_to ('now'); $oSearch->native_query($sQuery); while (my $oResult = $oSearch->next_result()) print $oResult->url, " "; DESCRIPTION
This class is a Yahoo! News specialization of WWW::Search. It handles making and interpreting searches on Yahoo! News http://news.yahoo.com using the Advanced search interface. This class exports no public interface; all interaction should be done through WWW::Search objects. NOTES
This backend supports narrowing the search by date-range. Use date_from() and date_to() to set the endpoints of the desired date range. You can use any date format supported by the Date::Manip module. NOTE that Yahoo only seems to keep the last 60 days worth of news in its searchable index. At one time, News.yahoo.com would die if the unescaped query is longer than 485 characters or so. This backend does NOT check for that. SEE ALSO
To make new back-ends, see WWW::Search. BUGS
To report a new bug, please use https://rt.cpan.org/Ticket/Create.html?Queue=WWW-Search-Yahoo AUTHOR
"WWW::Search::Yahoo::News::Advanced" is maintained by Martin Thurn (mthurn@cpan.org). LEGALESE
Copyright (C) 1998-2009 Martin 'Kingpin' Thurn THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. perl v5.12.4 2011-11-02 WWW::Search::Yahoo::News::Advanced(3pm)
Man Page