summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorville <ville@localhost>2007-07-25 17:41:54 +0000
committerville <ville@localhost>2007-07-25 17:41:54 +0000
commitb488015b073a084510bf2107c32e96fe3e574258 (patch)
tree9e7dabd6760e9cafc352f9bb49d7f15760f554da
parentb1305cd5ebd0b37220191c1ff5ea8ca7fecea812 (diff)
downloadmarkup-validator-b488015b073a084510bf2107c32e96fe3e574258.zip
markup-validator-b488015b073a084510bf2107c32e96fe3e574258.tar.gz
markup-validator-b488015b073a084510bf2107c32e96fe3e574258.tar.bz2
XML::LibXML >= 1.53 is needed for load_catalog().
-rwxr-xr-xhtdocs/docs/install.html8
-rwxr-xr-xhttpd/cgi-bin/check6
-rw-r--r--misc/bundle/Makefile.PL2
-rw-r--r--misc/bundle/lib/Bundle/W3C/Validator.pm10
4 files changed, 13 insertions, 13 deletions
diff --git a/htdocs/docs/install.html b/htdocs/docs/install.html
index 3cea67c..dd57854 100755
--- a/htdocs/docs/install.html
+++ b/htdocs/docs/install.html
@@ -1,5 +1,5 @@
-<!--#set var="revision" value="\$Id: install.html,v 1.26 2007-07-24 15:47:59 ville Exp $"
---><!--#set var="date" value="\$Date: 2007-07-24 15:47:59 $"
+<!--#set var="revision" value="\$Id: install.html,v 1.27 2007-07-25 17:41:54 ville Exp $"
+--><!--#set var="date" value="\$Date: 2007-07-25 17:41:54 $"
--><!--#set var="title" value="Installation Documentation for The W3C Markup Validation Service"
--><!--#set var="relroot" value="../"
--><!--#include virtual="../header.html" -->
@@ -94,7 +94,7 @@
title="Comprehensive Perl Archive Network">CPAN</acronym></a>
(minimum versions in parenthesis after the name). The following
list was complete when CVS spit out:
- <code>$Date: 2007-07-24 15:47:59 $</code>. <tt>:-)</tt>
+ <code>$Date: 2007-07-25 17:41:54 $</code>. <tt>:-)</tt>
</p>
<p>
One easy - and strongly recommended - way to take care of all these
@@ -178,7 +178,7 @@
<dd>
Library to handle URIs and escaping special characters in them.
</dd>
- <dt><a href="http://search.cpan.org/dist/XML-LibXML/">XML-LibXML</a></dt>
+ <dt><a href="http://search.cpan.org/dist/XML-LibXML/">XML-LibXML</a> &gt;= 1.53</dt>
<dd>
The perl binding for libxml2, used to check the syntax of XML-based document types.
</dd>
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check
index f47f1bd..07ba9a8 100755
--- a/httpd/cgi-bin/check
+++ b/httpd/cgi-bin/check
@@ -14,7 +14,7 @@
# This source code is available under the license at:
# http://www.w3.org/Consortium/Legal/copyright-software
#
-# $Id: check,v 1.547 2007-07-25 17:37:25 ville Exp $
+# $Id: check,v 1.548 2007-07-25 17:41:54 ville Exp $
#
# Disable buffering on STDOUT!
@@ -61,7 +61,7 @@ use HTTP::Headers::Auth qw(); # Needs to be imported after other HTTP::*.
use SGML::Parser::OpenSP qw();
use URI qw();
use URI::Escape qw(uri_escape);
-use XML::LibXML qw();
+use XML::LibXML 1.53 qw(); # Need 1.53 for $p->load_catalog.
###############################################################################
#### Constant definitions. ####################################################
@@ -186,7 +186,7 @@ Directory not readable (permission denied): @_r
#
# Strings
- $VERSION = q$Revision: 1.547 $;
+ $VERSION = q$Revision: 1.548 $;
$VERSION =~ s/Revision: ([\d\.]+) /$1/;
#
diff --git a/misc/bundle/Makefile.PL b/misc/bundle/Makefile.PL
index 0b39fe9..7fb0bce 100644
--- a/misc/bundle/Makefile.PL
+++ b/misc/bundle/Makefile.PL
@@ -16,7 +16,7 @@ WriteMakefile(
Net::IP => 0,
SGML::Parser::OpenSP => 0,
URI => 0,
- XML::LibXML => 0,
+ XML::LibXML => 1.53,
Encode => 0,
Encode::HanExtra => 0,
Encode::JIS2K => 0,
diff --git a/misc/bundle/lib/Bundle/W3C/Validator.pm b/misc/bundle/lib/Bundle/W3C/Validator.pm
index 8b2ff2f..8c35f0b 100644
--- a/misc/bundle/lib/Bundle/W3C/Validator.pm
+++ b/misc/bundle/lib/Bundle/W3C/Validator.pm
@@ -22,18 +22,18 @@ C<perl -MCPAN -e "install Bundle::W3C::Validator">
CGI 2.81
Config::General 2.19
- HTML::Encoding 0.52
- HTML::Parser 3.25
- HTML::Template 2.6
- LWP::UserAgent 1.90
Encode
Encode::HanExtra
Encode::JIS2K
File::Spec
+ HTML::Encoding 0.52
+ HTML::Parser 3.25
+ HTML::Template 2.6
+ LWP::UserAgent 1.90
Net::IP
SGML::Parser::OpenSP
URI
- XML::LibXML
+ XML::LibXML 1.53
=head1 DESCRIPTION