Data::Domain::URI::http - Data domain class for http URIs


Data-Domain-URI documentation Contained in the Data-Domain-URI distribution.

Index


Code Index:

NAME

Top

Data::Domain::URI::http - Data domain class for http URIs

VERSION

Top

version 1.100850

DESCRIPTION

Top

This value class uses the Data::Domain mechanism and is an adapter for Data::Semantic::URI::http - see there for more information.

INSTALLATION

Top

See perlmodinstall for information and options on installing Perl modules.

BUGS AND LIMITATIONS

Top

No bugs have been reported.

Please report any bugs or feature requests through the web interface at http://rt.cpan.org/Public/Dist/Display.html?Name=Data-Domain-URI.

AVAILABILITY

Top

The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit http://www.perl.com/CPAN/ to find a CPAN site near you, or see http://search.cpan.org/dist/Data-Domain-URI/.

The development version lives at http://github.com/hanekomu/Data-Domain-URI/. Instead of sending patches, please fork this project using the standard git and github infrastructure.

AUTHOR

Top

  Marcel Gruenauer <marcel@cpan.org>

COPYRIGHT AND LICENSE

Top


Data-Domain-URI documentation Contained in the Data-Domain-URI distribution.

use 5.008;
use strict;
use warnings;

package Data::Domain::URI::http;
our $VERSION = '1.100850';
# ABSTRACT: Data domain class for http URIs
use parent 'Data::Domain::SemanticAdapter';
use constant OPTIONS => qw(
  -scheme
);
1;


__END__