The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::SherlockSearch - Parse and execute Apple Sherlock 2 plugins

VERSION

This document describes version 0.12 of WWW::SherlockSearch, released December 25, 2002.

SYNOPSIS

    use WWW::SherlockSearch;

    my $sherlock = WWW::SherlockSearch->new('google.src');
    my $text = $sherlock->asString;
    my $rss  = $sherlock->asRssString;
    my $src  = $sherlock->asSherlockString;

    # fiind 'test' with limit '10'
    my $results = $sherlock->find("test", 10);

    my $text = $results->asString;
    my $rss  = $results->asRssString;
    my $html = $results->asHtmlString;

DESCRIPTION

This module parses and executes Apple Sherlock 2 plugin files, and generate a result set that can be expressed in text, HTML or RSS format. It is a repackaged and cleaned-up version of Damian Steer's Sherch service at http://www.sherch.com/.

Please see http://mycroft.mozdev.org/ for a repository and detailed description of Sherlock 2 plugins.

SEE ALSO

sherch

LWP, XML::RSS

AUTHORS

  • Damian Steer <D.M.Steer@lse.ac.uk>

  • Kang-min Liu <gugod@gugod.org<gt>

  • Autrijus Tang <autrijus@autrijus.org>

COPYRIGHT

Copyright 1999, 2000, 2001 by Damian Steer.

Copyright 2002 by Kang-min Liu, Autrijus Tang.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html