NAME
Net::Google::Code::Wiki - Google Code Wiki
SYNOPSIS
use Net::Google::Code::Wiki;
my $wiki = Net::Google::Code::Wiki->new( project => 'net-google-code' );
my @entries = $wiki->all_entries;
foreach my $item ( @entries ) {
my $entry = $wiki->entry($item);
print $entry->source, "\n";
}
DESCRIPTION
get Wiki details from Google Code Project
METHODS
all_entries
get all entries (name ONLY) from wiki svn
entry
return a instance of Net::Google::Code::WikiEntry
AUTHOR
Fayland Lam, <fayland at gmail.com>
LICENCE AND COPYRIGHT
Copyright 2008-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.