#!/usr/local/bin/perl =head1 Spelling =head1 SYNOPSIS This is a perl program that gives the example use of the Google-Hack function to retrieve a spelling suggestion. =head1 DESCRIPTION This program basically gives an example call to the phraseSpelling function in the Google-Hack. =head1 AUTHOR Pratheepan Raveendranathan, Erave0029@d.umn.eduE Ted Pedersen, Etpederse@d.umn.eduE =head1 BUGS =head1 SEE ALSO L L L Google-Hack Maling List Egoogle-hack-users@lists.sourceforge.netE =head1 COPYRIGHT AND LICENSE Copyright (c) 2003 by Pratheepan Raveendranathan, Ted Pedersen 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 2 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, write to The Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut #Make sure to give path to the perl library if it is a local installation use lib "/home/vold/47/rave0029/lib/perl5/site_perl/5.8.0"; ############################################################### #include GoogleHack, so that it can be used use GoogleHack; =head1 INITIALIZATION FUNCTIONS =cut =head2 INIT METHOD 1 - init(\%args) Set your GoogleAPI Key $key=""; Give the Entire location of your WSDL file eg "/dirname/dirname/GoogleSearch.wsdl" $wsdl=""; Create an Object of type WebService::GoogleHack $google = new WebService::GoogleHack; Initialize WebService::GoogleHack object to the key and WSDL config file path. $google->init( "$key","$wsdl"); Issuing a search request to the spelling suggestion function Retrieve a spelling suggestion for the search String "dulut" $correction=$google->phraseSpelling("dulut"); If the string is "No Spelling Suggested", that means there was no spelling suggestions from Google. I am just printing the suggested spelling print "\n\n The suggested spelling for dulut is : $correction\n\n"; =cut ####################################################################### # Your Google=hack key should go here # This is only if you intend to use the function init("$key","$wsdl") # Not when to using the initConfig file ####################################################################### $key=""; ####################################################################### # The path to the WSDL file should go here # eg: /home/dirname/GoogleSearch.wsdl ####################################################################### $wsdl=""; #create an instance of GoogleHack called "Search". $google = new WebService::GoogleHack; # initialize GoogleHack to the key and WSDL file path. $google->init( "$key","$wsdl"); # Retrieve a spelling suggestion for the search String "dulut" # The suggested spelling will be stored in the variable correction # as a string. If the string is "No Spelling Suggested", that means there was no # suggestions from Google. #issuing a search request to the spelling suggestion function $correction=$google->phraseSpelling("dulut"); # I am just printing the suggested spelling print "\n\n The suggested spelling for dulut is : $correction\n\n"; $correction=$google->phraseSpelling("briney"); print "\n\n The suggested spelling for briney is : $correction\n\n";