/[Grep]/lib/Grep/Source/MediaWiki.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

Annotation of /lib/Grep/Source/MediaWiki.pm

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.26