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

..03-May-2022-

lib/XML/H19-Apr-2006-1,175428

scripts/H19-Apr-2006-13259

t/H19-Apr-2006-735515

COPYINGH A D19-Apr-200617.6 KiB341281

ChangesH A D19-Apr-2006337 148

MANIFESTH A D19-Apr-2006533 3130

MANIFEST.SKIPH A D19-Apr-2006120 87

META.ymlH A D19-Apr-2006420 1412

Makefile.PLH A D19-Apr-2006523 1513

READMEH A D19-Apr-20061.1 KiB3523

README

1XML::Validate v1.025
2
3(c) BBC 2005. This program is free software; you can redistribute it and/or
4modify it under the GNU GPL.
5
6See the file COPYING in this distribution, or http://www.gnu.org/licenses/gpl.txt
7
8QUICK START:
9
10Install XML::Validate by unpacking the tarball and running the following
11commands in the source directory:
12
13    perl Makefile.PL
14    make
15    make test
16    make install
17    Then delete the source directory tree since it's no longer needed.
18
19    run 'perldoc XML::Validate' to read the full documentation.
20
21AVAILABLE BACKENDS:
22
23Backends for the following validators are included with this distribution:
24
25    LibXML (& you'll need XML::LibXML)
26    Xerces (& you'll need XML::Xerces)
27    MSXML  (for Win32 platforms, needs Win32::OLE)
28
29The default order of preference if all 3 are available is: Xerces, MSXML, LibXML
30
31DEPENDENCIES:
32
33Other than the modules for use with the backends, the XML::Validate modules themselves
34don't depend on other CPAN distributions.  However the unit tests distributed with
35them use Test::Assertions and Log::Trace (as indicated in the Makefile.PL).