WWW::Ohloh::API::Factoid - A factoid about an Ohloh project


WWW-Ohloh-API documentation  | view source Contained in the WWW-Ohloh-API distribution.

Index


NAME

Top

WWW::Ohloh::API::Factoid - A factoid about an Ohloh project

SYNOPSIS

Top

    use WWW::Ohloh::API;

    my $ohloh = WWW::Ohloh::API->new( api_key => $my_api_key );
    my @factoids =  $ohloh->get_factoids( $project_id );

    print join "\n", map { $_->type } @factoids;

DESCRIPTION

Top

W::O::A::Factoid is a bit of information about a project.

METHODS

Top

API Data Accessors

id

    $id = $factoid->id;

Return the id of the factoid. Note that the ids change every time that a project is reanalyzed.

analysis_id

    $id = $factoid->analysis_id;

Return the id of the analysis used to create the factoid.

type

    $type = $factoid->type;

Return the factoid type.

description

    $desc = $factoid->description;

Return a description of the factoid type.

severity

    $sev = $factoid->severity;

Return the factoid's severity (ranges between -3 and +3).

license_id

    $license_id = $factoid->license_id;

If the factoid's type is FactoidGplConflict, return the id of the conflicting license.

Other Methods

as_xml

Return the activity fact information as an XML string. Note that this is not the exact xml document as returned by the Ohloh server.

SEE ALSO

Top

*

WWW::Ohloh::API.

*

Ohloh API reference: http://www.ohloh.net/api/getting_started

*

Ohloh Account API reference: http://www.ohloh.net/api/reference/activity_fact

VERSION

Top

This document describes WWW::Ohloh::API version 0.3.1

BUGS AND LIMITATIONS

Top

WWW::Ohloh::API is very extremely alpha quality. It'll improve, but till then: Caveat emptor.

The as_xml() method returns a re-encoding of the activity fact data, which can differ of the original xml document sent by the Ohloh server.

Please report any bugs or feature requests to bug-www-ohloh-api@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

Top

Yanick Champoux <yanick@cpan.org>

LICENCE AND COPYRIGHT

Top


WWW-Ohloh-API documentation  | view source Contained in the WWW-Ohloh-API distribution.