SIOC::Community - SIOC Community class


SIOC documentation Contained in the SIOC distribution.

Index


Code Index:

NAME

Top

SIOC::Community -- SIOC Community class

VERSION

Top

This documentation refers to SIOC::Community version 1.0.0.

SYNOPSIS

Top

   use SIOC::Community;

DESCRIPTION

Top

Community is a high-level concept that defines an online community and what it consists of.

A Community may consist of different types of objects (people, sites, etc.) joined by a common topic, interests or goals.

A Community is different from a Site: a Site describes a single community site whilst a Community can consist of a number of Sites and other resources described in SIOC or other ontologies (e.g., FOAF). Community is linked to its constituent parts using the property dcterms:hasPart.

SUBROUTINES/METHODS

Top

This class has no own methods.

DIAGNOSTICS

Top

For diagnostics information, see the SIOC base class.

CONFIGURATION AND ENVIRONMENT

Top

This module doesn't need configuration.

DEPENDENCIES

Top

This module depends on the following modules:

INCOMPATIBILITIES

Top

There are no known incompatibilities.

BUGS AND LIMITATIONS

Top

There are no known bugs in this module.

Please report problems via the bug tracking system on the perl-SIOC project website: http://developer.berlios.de/projects/perl-sioc/.

Patches are welcome.

AUTHOR

Top

Jochen Lillich <geewiz@cpan.org>

LICENSE AND COPYRIGHT

Top


SIOC documentation Contained in the SIOC distribution.

###########################################################
# SIOC::Community
# Community class in the SIOC ontology
###########################################################
#
# $Id: Community.pm 10 2008-03-01 21:38:39Z geewiz $
#

package SIOC::Community;

use strict;
use warnings;

use version; our $VERSION = qv(1.0.0);

use Moose;

extends 'SIOC';

1;
__END__