summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xhtdocs/docs/install.html6
-rwxr-xr-xhttpd/cgi-bin/check9
-rw-r--r--misc/bundle/META.yml2
-rw-r--r--misc/bundle/Makefile.PL2
-rw-r--r--misc/bundle/lib/Bundle/W3C/Validator.pm2
5 files changed, 10 insertions, 11 deletions
diff --git a/htdocs/docs/install.html b/htdocs/docs/install.html
index eb02146..1261079 100755
--- a/htdocs/docs/install.html
+++ b/htdocs/docs/install.html
@@ -1,5 +1,5 @@
-<!--#set var="revision" value="\$Id: install.html,v 1.57 2009-12-11 18:40:24 ville Exp $"
---><!--#set var="date" value="\$Date: 2009-12-11 18:40:24 $"
+<!--#set var="revision" value="\$Id: install.html,v 1.58 2009-12-14 22:03:54 ville Exp $"
+--><!--#set var="date" value="\$Date: 2009-12-14 22:03:54 $"
--><!--#set var="title" value="Installation Documentation for The W3C Markup Validation Service"
--><!--#set var="relroot" value="../"
--><!--#include virtual="../header.html" -->
@@ -182,7 +182,7 @@ install Bundle::W3C::Validator
<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.56</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 a332c29..22708d5 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.753 2009-12-14 21:18:33 ville Exp $
+# $Id: check,v 1.754 2009-12-14 22:03:54 ville Exp $
#
# We need Perl 5.8.0+.
@@ -60,7 +60,7 @@ use JSON 2.00 qw();
use SGML::Parser::OpenSP 0.991 qw();
use URI qw();
use URI::Escape qw(uri_escape);
-use XML::LibXML qw();
+use XML::LibXML 1.56 qw(); # Need 1.56 for line_numbers()
###############################################################################
#### Constant definitions. ####################################################
@@ -197,7 +197,7 @@ EOF
#
# Strings
- $VERSION = q$Revision: 1.753 $;
+ $VERSION = q$Revision: 1.754 $;
$VERSION =~ s/Revision: ([\d\.]+) /$1/;
# Read friendly error message file
@@ -611,8 +611,7 @@ if (&is_xml($File)) {
$xmlparser->load_ext_dtd(0);
# [NOT] loading the XML catalog for entities resolution as it seems to
- # cause a lot of unnecessary DTD/entities fetching (requires >= 1.53 if
- # enabled)
+ # cause a lot of unnecessary DTD/entities fetching
#$xmlparser->load_catalog(catfile($CFG->{Paths}->{SGML}->{Library}, 'xml.soc'));
my $xml_string = join "\n", @{$File->{Content}};
diff --git a/misc/bundle/META.yml b/misc/bundle/META.yml
index 9ef3237..5063c70 100644
--- a/misc/bundle/META.yml
+++ b/misc/bundle/META.yml
@@ -33,7 +33,7 @@ requires:
Socket: 0
URI: 0
URI::Escape: 0
- XML::LibXML: 0
+ XML::LibXML: 1.56
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.3.html
version: 1.3
diff --git a/misc/bundle/Makefile.PL b/misc/bundle/Makefile.PL
index a2e5d09..69b5375 100644
--- a/misc/bundle/Makefile.PL
+++ b/misc/bundle/Makefile.PL
@@ -36,7 +36,7 @@ WriteMakefile(
"Socket" => 0,
"URI" => 0,
"URI::Escape" => 0,
- "XML::LibXML" => 0,
+ "XML::LibXML" => 1.56,
# Optional:
"Encode::JIS2K" => 0,
diff --git a/misc/bundle/lib/Bundle/W3C/Validator.pm b/misc/bundle/lib/Bundle/W3C/Validator.pm
index 0aaf7db..4792d27 100644
--- a/misc/bundle/lib/Bundle/W3C/Validator.pm
+++ b/misc/bundle/lib/Bundle/W3C/Validator.pm
@@ -46,7 +46,7 @@ C<perl -MCPAN -e "install Bundle::W3C::Validator">
Socket
URI
URI::Escape
- XML::LibXML
+ XML::LibXML 1.56
=head1 DESCRIPTION