blob: 09c52219678d2058886a6b80ca24473e3ec86379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
package Bundle::W3C::Validator;
use 5.008;
use strict;
use warnings;
use vars qw($VERSION);
$VERSION = '1.3';
1;
__END__
=head1 NAME
Bundle::W3C::Validator - Bundle of modules required by the W3C Markup Validator
=head1 SYNOPSIS
C<perl -MCPAN -e "install Bundle::W3C::Validator">
=head1 CONTENTS
CGI 3.40
CGI::Carp
Config
Config::General 2.32
Encode
Encode::Alias
Encode::HanExtra
Encode::JIS2K - (optional)
File::Spec::Functions
HTML::Encoding 0.52
HTML::HeadParser 3.60
HTML::Parser 3.24
HTML::Template 2.6
HTML::Tidy - (optional)
HTTP::Headers::Auth
HTTP::Headers::Util
HTTP::Message 1.52
HTTP::Negotiate
HTTP::Request
JSON 2.00
LWP::UserAgent 2.032
Net::IP
Net::hostent
SGML::Parser::OpenSP 0.991
Socket
URI 1.53
URI::Escape
URI::file
URI::Heuristic
XML::LibXML 1.73
=head1 DESCRIPTION
This bundle contains the prerequisite CPAN modules for running the
W3C Markup Validator, L<http://validator.w3.org/>.
=head1 SEE ALSO
L<http://validator.w3.org/>
perl(1)
=head1 AUTHOR
W3C QA-dev Team, E<lt>public-qa-dev@w3.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 1994-2013 World Wide Web Consortium, (Massachusetts
Institute of Technology, European Research Consortium for Informatics
and Mathematics, Keio University). All Rights Reserved. This work is
distributed under the W3C(R) Software License [1] in the hope that it
will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[1] L<http://www.w3.org/Consortium/Legal/copyright-software>
=cut
|