diff options
author | ville <ville@localhost> | 2009-01-07 22:19:31 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2009-01-07 22:19:31 +0000 |
commit | d994292022a10afcbd3d0ff8e228e856de909eba (patch) | |
tree | f056a1abaf8ed4913e6259fc25015212b4a4e831 /misc | |
parent | 772f028e8abeb36b639ee5e5e84e90c4b6ddd5d6 (diff) | |
download | markup-validator-d994292022a10afcbd3d0ff8e228e856de909eba.zip markup-validator-d994292022a10afcbd3d0ff8e228e856de909eba.tar.gz markup-validator-d994292022a10afcbd3d0ff8e228e856de909eba.tar.bz2 |
Improve doctype preparse performance by aborting as soon as possible, fix required HTML::Parser version.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/bundle/META.yml | 2 | ||||
-rw-r--r-- | misc/bundle/Makefile.PL | 2 | ||||
-rw-r--r-- | misc/bundle/lib/Bundle/W3C/Validator.pm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/misc/bundle/META.yml b/misc/bundle/META.yml index 44292e2..da67bd7 100644 --- a/misc/bundle/META.yml +++ b/misc/bundle/META.yml @@ -15,7 +15,7 @@ requires: Encode::JIS2K: 0 File::Spec::Functions: 0 HTML::Encoding: 0.52 - HTML::Parser: 3.25 + HTML::Parser: 3.24 HTML::Template: 2.6 LWP::UserAgent: 2.032 Net::IP: 0 diff --git a/misc/bundle/Makefile.PL b/misc/bundle/Makefile.PL index 6f2f549..cc04879 100644 --- a/misc/bundle/Makefile.PL +++ b/misc/bundle/Makefile.PL @@ -14,7 +14,7 @@ WriteMakefile( Encode::JIS2K => 0, File::Spec::Functions => 0, HTML::Encoding => 0.52, - HTML::Parser => 3.25, + HTML::Parser => 3.24, HTML::Template => 2.6, LWP::UserAgent => 2.032, Net::IP => 0, diff --git a/misc/bundle/lib/Bundle/W3C/Validator.pm b/misc/bundle/lib/Bundle/W3C/Validator.pm index 2800a10..8a12751 100644 --- a/misc/bundle/lib/Bundle/W3C/Validator.pm +++ b/misc/bundle/lib/Bundle/W3C/Validator.pm @@ -27,7 +27,7 @@ C<perl -MCPAN -e "install Bundle::W3C::Validator"> Encode::JIS2K File::Spec::Functions HTML::Encoding 0.52 - HTML::Parser 3.25 + HTML::Parser 3.24 HTML::Template 2.6 LWP::UserAgent 2.032 Net::IP |