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::Source::Project - A class presenting sourceforge projects.

SYNOPSIS

use strict; use WWW::SourceForge::Project; use Data::Dumper;

my $pname = 'gaim';

my $proj = WWW::SourceForge::Project->new($pname);

print Dumper $proj->Member;

DESCRIPTION

This object use WWW::Mechanize to grab any informations of a project from sourceforge website.

METHODS

new($unixname)

Return an object of project with given unixname.

Admin

Return a list, or arrayref, of member objects who are project administrators.

Member($param)

Return a hashref of all project members. Organized as

$pm->{<Position>}->{<field>}

FetchCVSRepository( )

Fetch and save the cvs repository tarball into current working directory.