- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 18 Nov 2005 08:03:18 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/perl/modules/WebService/Validator/Feed
In directory hutz:/tmp/cvs-serv25066
Added Files:
Changes MANIFEST META.yml Makefile.PL
Log Message:
first commit of this module. Based on Bjoern's WebService::Validator::CSS::W3C.
--- NEW FILE: META.yml ---
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: WebService-Validator-Feed-W3C
version: 0.1
version_from: lib/WebService/Validator/Feed/W3C.pm
installdirs: site
requires:
Carp: 0
Class::Accessor: 0
LWP::UserAgent: 0
SOAP::Lite: 0
URI: 0
URI::QueryParam: 0
distribution_type: module
--- NEW FILE: Changes ---
Revision history for Perl extension WebService::Validator::Feed::W3C.
0.1 Fri Oct 28, 2005
- original version
--- NEW FILE: Makefile.PL ---
use 5.006;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'WebService::Validator::Feed::W3C',
VERSION_FROM => 'lib/WebService/Validator/Feed/W3C.pm', # finds $VERSION
PREREQ_PM => {
SOAP::Lite => 0,
LWP::UserAgent => 0,
URI => 0,
URI::QueryParam => 0,
Carp => 0,
Class::Accessor => 0,
}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/WebService/Validator/Feed/W3C.pm', # retrieve abstract from module
AUTHOR => 'olivier Thereaux <ot@w3.org>') : ()),
);
--- NEW FILE: MANIFEST ---
README Do it! Read it.
Changes Changes for this module
Makefile.PL Module build meta-data
MANIFEST
t/WebService-Validator-Feed-W3C.t automated (mini) test suite
lib/WebService/Validator/Feed/W3C.pm W3C Feed Validation service Web Service access class
META.yml Module meta-data (added by MakeMaker)
bin/feedvalidate.pl validate RSS or atom feeds from the command line
Received on Friday, 18 November 2005 08:03:22 UTC