W3C-Validator-Server

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

        # rewrite config to defaults
        $ w3c-validator-install.sh config

    The files will be installed to your home directory, or current directory
    if "Makefile.PL" is found. See
    <http://validator.w3.org/docs/install.html> for more details.

SYNOPSIS
        $ w3c-validator-server.psgi
        $ plackup /usr/bin/w3c-validator-server.psgi
        $ starman path/to/w3c-validator-server.psgi
        $ ./bin/w3c-validator-server.psgi

METHODS
  build_app
        $app = $class->build_app({
                   home => '/path/to/...', # W3C_HOME
                   htdocs => '/path/to/...', # W3C_HOME/root/htdocs
                   cgi_bin => '/path/to/...', # W3C_HOME/root/cgi-bin
                   validator_config => '/path/to/...', # W3C_VALIDATOR_CFG
               });

lib/W3C/Validator/Server.pm  view on Meta::CPAN

    $ w3c-validator-install.sh config

The files will be installed to your home directory, or current directory
if C<Makefile.PL> is found. See L<http://validator.w3.org/docs/install.html>
for more details.

=head1 SYNOPSIS

    $ w3c-validator-server.psgi
    $ plackup /usr/bin/w3c-validator-server.psgi
    $ starman path/to/w3c-validator-server.psgi
    $ ./bin/w3c-validator-server.psgi

=cut

use strict;
use warnings;
use Plack::Builder;
use Plack::App::File;
use Plack::App::CGIBin;
use base 'Plack::Runner';



( run in 2.420 seconds using v1.01-cache-2.11-cpan-e93a5daba3e )