diff options
author | ot <ot@localhost> | 2007-07-10 03:30:14 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-07-10 03:30:14 +0000 |
commit | 5f02b9d83527845988938ace8161c62f8953c03e (patch) | |
tree | 590dd278c3f7ee768dabe7d58d40d1e83e1873e7 | |
parent | 0c4abf455ae1174c727b723fe3b3d530a9d1498a (diff) | |
download | markup-validator-5f02b9d83527845988938ace8161c62f8953c03e.zip markup-validator-5f02b9d83527845988938ace8161c62f8953c03e.tar.gz markup-validator-5f02b9d83527845988938ace8161c62f8953c03e.tar.bz2 |
requiring extra perl libs for CJK character encodings, and documenting the new requirements
-rwxr-xr-x | htdocs/docs/install.html | 10 | ||||
-rw-r--r-- | htdocs/docs/install_win.html | 7 | ||||
-rwxr-xr-x | httpd/cgi-bin/check | 6 | ||||
-rw-r--r-- | misc/bundle/META.yml | 5 | ||||
-rw-r--r-- | misc/bundle/Makefile.PL | 4 | ||||
-rw-r--r-- | misc/bundle/lib/Bundle/W3C/Validator.pm | 4 |
6 files changed, 27 insertions, 9 deletions
diff --git a/htdocs/docs/install.html b/htdocs/docs/install.html index b0c92fe..5c7c16d 100755 --- a/htdocs/docs/install.html +++ b/htdocs/docs/install.html @@ -1,5 +1,5 @@ -<!--#set var="revision" value="\$Id: install.html,v 1.22 2007-05-24 03:38:24 ot Exp $" ---><!--#set var="date" value="\$Date: 2007-05-24 03:38:24 $" +<!--#set var="revision" value="\$Id: install.html,v 1.23 2007-07-10 03:30:13 ot Exp $" +--><!--#set var="date" value="\$Date: 2007-07-10 03:30:13 $" --><!--#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-05-24 03:38:24 $</code>. <tt>:-)</tt> + <code>$Date: 2007-07-10 03:30:13 $</code>. <tt>:-)</tt> </p> <p> One easy - and strongly recommended - way to take care of all these @@ -137,6 +137,10 @@ <dd> Configuration file handling. </dd> + <dt><a href="http://search.cpan.org/dist/Encode/">Encode</a>, <a href="http://search.cpan.org/dist/Encode-HanExtra/">Encode-HanExtra</a> and <a href="http://search.cpan.org/dist/Encode-JIS2K/">Encode-JIS2k</a></dt> + <dd> + Support for multiple character encodings. + </dd> <dt><a href="http://search.cpan.org/dist/HTML-Parser/">HTML-Parser</a> >= 3.25</dt> <dd> Minimal HTML parser used for preparse and finding metadata. diff --git a/htdocs/docs/install_win.html b/htdocs/docs/install_win.html index 6713aaa..8925277 100644 --- a/htdocs/docs/install_win.html +++ b/htdocs/docs/install_win.html @@ -1,5 +1,5 @@ -<!--#set var="revision" value="\$Id: install_win.html,v 1.13 2007-05-14 08:46:46 dtibbe Exp $" ---><!--#set var="date" value="\$Date: 2007-05-14 08:46:46 $" +<!--#set var="revision" value="\$Id: install_win.html,v 1.14 2007-07-10 03:30:13 ot Exp $" +--><!--#set var="date" value="\$Date: 2007-07-10 03:30:13 $" --><!--#set var="title" value="Installation Documentation for The W3C Markup Validation Service (Windows, Apache)" --><!--#set var="relroot" value="../" --><!--#include virtual="../header.html" --> @@ -70,6 +70,7 @@ At <a href="http://ppm.activestate.com/">Active State</a>, <li>XML-NamespaceSupport</li> <li>XML-SAX</li> <li>XML-LibXML-Common</li> + <li>Encode, Encode::HanExtra and Encode::JIS2K</li> </ul> <p>You can get each of them in a single package at ActiveState. They are also packed ready-to-install <a href="http://www.myhpi.de/~dtibbe/download/ppm.zip">in a single zip-file</a>, @@ -273,7 +274,7 @@ Base = C:/www/validator <pre># # Main Configuration File for the W3C Markup Validation Service. # -# $Id: install_win.html,v 1.13 2007-05-14 08:46:46 dtibbe Exp $ +# $Id: install_win.html,v 1.14 2007-07-10 03:30:13 ot Exp $ # # See 'perldoc Config::General' for the syntax, and be aware that the # 'SplitPolicy' is 'equalsign', ie. keys and values are separated by '\s*=\s*', diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 76d4ddb..7aa210a 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.536 2007-07-09 04:56:27 ot Exp $ +# $Id: check,v 1.537 2007-07-10 03:30:13 ot Exp $ # # Disable buffering on STDOUT! @@ -55,6 +55,8 @@ use URI qw(); use URI::Escape qw(uri_escape); use Encode qw(); use Encode::Alias qw(); +use Encode::HanExtra qw(); #for some chinese character encodings, e.g gb18030 +use Encode::JIS2K qw(); # ditto extra japanese encodings use HTML::Encoding 0.52 qw(); use SGML::Parser::OpenSP qw(); @@ -181,7 +183,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.536 $; + $VERSION = q$Revision: 1.537 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # diff --git a/misc/bundle/META.yml b/misc/bundle/META.yml index 3a28c16..33b6f8b 100644 --- a/misc/bundle/META.yml +++ b/misc/bundle/META.yml @@ -14,6 +14,9 @@ requires: Set::IntSpan: 0 Text::Iconv: 0 URI: 0 - + Encode: 0 + Encode::HanExtra: 0 + Encode::JIS2K: 0 + File::Spec: 0 distribution_type: module generated_by: ExtUtils::MakeMaker version 6.17 diff --git a/misc/bundle/Makefile.PL b/misc/bundle/Makefile.PL index 92e53e8..208da38 100644 --- a/misc/bundle/Makefile.PL +++ b/misc/bundle/Makefile.PL @@ -17,6 +17,10 @@ WriteMakefile( SGML::Parser::OpenSP => 0 URI => 0, XML::LibXML => 0, + Encode => 0, + Encode::HanExtra => 0, + Encode::JIS2K => 0, + File::Spec => 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 c38bedf..8b2ff2f 100644 --- a/misc/bundle/lib/Bundle/W3C/Validator.pm +++ b/misc/bundle/lib/Bundle/W3C/Validator.pm @@ -26,6 +26,10 @@ C<perl -MCPAN -e "install Bundle::W3C::Validator"> HTML::Parser 3.25 HTML::Template 2.6 LWP::UserAgent 1.90 + Encode + Encode::HanExtra + Encode::JIS2K + File::Spec Net::IP SGML::Parser::OpenSP URI |