summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xhtdocs/docs/install.html8
-rwxr-xr-xhttpd/cgi-bin/check8
-rw-r--r--misc/bundle/Makefile.PL2
-rw-r--r--misc/bundle/lib/Bundle/W3C/Validator.pm2
4 files changed, 10 insertions, 10 deletions
diff --git a/htdocs/docs/install.html b/htdocs/docs/install.html
index dd57854..2f4a6d9 100755
--- a/htdocs/docs/install.html
+++ b/htdocs/docs/install.html
@@ -1,5 +1,5 @@
-<!--#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="revision" value="\$Id: install.html,v 1.28 2007-07-26 21:41:50 ville Exp $"
+--><!--#set var="date" value="\$Date: 2007-07-26 21:41:50 $"
--><!--#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-25 17:41:54 $</code>. <tt>:-)</tt>
+ <code>$Date: 2007-07-26 21:41:50 $</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> &gt;= 1.53</dt>
+ <dt><a href="http://search.cpan.org/dist/XML-LibXML/">XML-LibXML</a></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 de87877..6971fd8 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.550 2007-07-26 03:49:40 ot Exp $
+# $Id: check,v 1.551 2007-07-26 21:41:51 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 1.53 qw(); # Need 1.53 for $p->load_catalog.
+use XML::LibXML qw();
###############################################################################
#### Constant definitions. ####################################################
@@ -186,7 +186,7 @@ Directory not readable (permission denied): @_r
#
# Strings
- $VERSION = q$Revision: 1.550 $;
+ $VERSION = q$Revision: 1.551 $;
$VERSION =~ s/Revision: ([\d\.]+) /$1/;
#
@@ -634,7 +634,7 @@ if (&is_xml($File)) {
$xmlparser->line_numbers(1);
$xmlparser->validation(0);
$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
+ # [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)
#$xmlparser->load_catalog( File::Spec->catfile($CFG->{Paths}->{SGML}->{Library}, 'xml.soc') );
my $xml_string = join"\n",@{$File->{Content}};
# the XML parser will check the value of encoding attribute in XML declaration
diff --git a/misc/bundle/Makefile.PL b/misc/bundle/Makefile.PL
index 446b317..eaa6c9b 100644
--- a/misc/bundle/Makefile.PL
+++ b/misc/bundle/Makefile.PL
@@ -20,7 +20,7 @@ WriteMakefile(
Net::IP => 0,
SGML::Parser::OpenSP => 0,
URI => 0,
- XML::LibXML => 1.53,
+ XML::LibXML => 0,
},
dist => { TARFLAGS => '--owner=0 --group=0 -cvf' },
clean => { FILES => 'ChangeLog.bak' },
diff --git a/misc/bundle/lib/Bundle/W3C/Validator.pm b/misc/bundle/lib/Bundle/W3C/Validator.pm
index 8c35f0b..fb8fd6e 100644
--- a/misc/bundle/lib/Bundle/W3C/Validator.pm
+++ b/misc/bundle/lib/Bundle/W3C/Validator.pm
@@ -33,7 +33,7 @@ C<perl -MCPAN -e "install Bundle::W3C::Validator">
Net::IP
SGML::Parser::OpenSP
URI
- XML::LibXML 1.53
+ XML::LibXML
=head1 DESCRIPTION