/[Grep]/lib/Grep/Source/Wikipedia.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /lib/Grep/Source/Wikipedia.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 87 - (show annotations)
Fri Feb 23 21:17:54 2007 UTC (17 years, 2 months ago) by dpavlin
File size: 405 byte(s)
added two variants of MediaWiki
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5
6 package Grep::Source::Wikipedia;
7
8 =head1 NAME
9
10 Grep::Source::Wikipedia - scraiper for Wikipeda's variat of MediaWiki search results
11
12 =cut
13
14 sub content_have {
15 qr(MediaWiki.*<li)s;
16 }
17
18 sub fetch {
19 my $self = shift;
20 my $parent = shift;
21
22 $parent->scrape(
23 wrapper => [ qw/div id bodyContent/ ],
24 results => 'li',
25 scrape => [ qw/div id content/ ],
26 );
27
28 }
29
30 1;

  ViewVC Help
Powered by ViewVC 1.1.26