• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H18-Jan-2012-4424

lib/WebService/Validator/HTML/H18-Jan-2012-741272

t/H03-May-2022-973773

Build.PLH A D18-Jan-20121.2 KiB5244

ChangesH A D18-Jan-20123.7 KiB10577

MANIFESTH A D18-Jan-2012536 3130

META.jsonH A D18-Jan-20121.4 KiB5655

META.ymlH A D18-Jan-2012865 3231

Makefile.PLH A D03-May-20221.3 KiB5545

READMEH A D18-Jan-20121.1 KiB4730

README

1WebService::Validator::HTML::W3C provides access to the W3Cs online HTML
2validator. It's nothing to do with the W3C so please don't report any problems
3with it to them. Also, please use it wisely and don't abuse the W3Cs
4validator service. If you need to do a lot of validation consider
5downloading and installing the Validator on your own machine.
6
7PREREQUISITES
8
9Class::Accessor
10XML::XPath if you want detailed information on errors.
11
12INSTALLATION
13
14You should be able to install WebService::Validator::HTML::W3C in any of the usual ways:
15
16    perl -MCPAN -e 'install WebService::Validator::HTML::W3C'
17
18or
19
20    perl -MCPANPLUS -e 'install WebService::Validator::HTML::W3C'
21
22or
23
24    perl Makefile.PL
25    make
26    make test
27    make install
28
29or
30
31    perl Build.PL
32    ./Build
33    ./Build test
34    ./Build install
35
36TESTS
37
38Some of the tests for this module require a live internet connection. If one
39isn't present then they'll be skipped.
40
41Test::Without:Module is required for one of the tests. If it's
42not there then that test should be skipped.
43
44For everything else see the POD.
45
46$Id$
47