/usr/lib/perl5/HTML/Tidy.pm is in libhtml-tidy-perl 1.56-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | package HTML::Tidy;
use 5.008;
use strict;
use warnings;
use Carp ();
use HTML::Tidy::Message;
=head1 NAME
HTML::Tidy - (X)HTML validation in a Perl object
=head1 VERSION
Version 1.56
=cut
our $VERSION = '1.56';
=head1 SYNOPSIS
use HTML::Tidy;
my $tidy = HTML::Tidy->new( {config_file => 'path/to/config'} );
$tidy->ignore( type => TIDY_WARNING, type => TIDY_INFO );
$tidy->parse( "foo.html", $contents_of_foo );
for my $message ( $tidy->messages ) {
print $message->as_string;
}
=head1 DESCRIPTION
C<HTML::Tidy> is an HTML checker in a handy dandy object. It's meant as
a replacement for L<HTML::Lint|HTML::Lint>. If you're currently an L<HTML::Lint|HTML::Lint>
user looking to migrate, see the section L</Converting from HTML::Lint>.
=head1 EXPORTS
Message types C<TIDY_ERROR>, C<TIDY_WARNING> and C<TIDY_INFO>.
Everything else is an object method.
=cut
use base 'Exporter';
use constant TIDY_ERROR => 3;
use constant TIDY_WARNING => 2;
use constant TIDY_INFO => 1;
our @EXPORT = qw( TIDY_ERROR TIDY_WARNING TIDY_INFO );
=head1 METHODS
=head2 new()
Create an HTML::Tidy object.
my $tidy = HTML::Tidy->new();
Optionally you can give a hashref of configuration parms.
my $tidy = HTML::Tidy->new( {config_file => 'path/to/tidy.cfg'} );
This configuration file will be read and used when you clean or parse an HTML file.
You can also pass options directly to tidyp.
my $tidy = HTML::Tidy->new( {
output_xhtml => 1,
tidy_mark => 0,
} );
See C<tidyp -help-config> for the list of options supported by tidyp.
The following options are not supported by C<HTML::Tidy>:
=over 4
=item * quiet
=back
=cut
sub new {
my $class = shift;
my $args = shift || {};
my @unsupported_options = qw(
force-output
gnu-emacs-file
gnu-emacs
keep-time
quiet
slide-style
write-back
); # REVIEW perhaps a list of supported options would be better
my $self = bless {
messages => [],
ignore_type => [],
ignore_text => [],
config_file => '',
tidy_options => {},
}, $class;
for my $key (keys %{$args} ) {
if ($key eq 'config_file') {
$self->{config_file} = $args->{$key};
next;
}
my $newkey = $key;
$newkey =~ tr/_/-/;
if ( grep {$newkey eq $_} @unsupported_options ) {
Carp::croak( "Unsupported option: $newkey" );
}
$self->{tidy_options}->{$newkey} = $args->{$key};
}
return $self;
}
=head2 messages()
Returns the messages accumulated.
=cut
sub messages {
my $self = shift;
return @{$self->{messages}};
}
=head2 clear_messages()
Clears the list of messages, in case you want to print and clear, print
and clear. If you don't clear the messages, then each time you call
L<parse()|parse( $filename, $str [, $str...] )> you'll be accumulating more in the list.
=cut
sub clear_messages {
my $self = shift;
$self->{messages} = [];
return;
}
=head2 ignore( parm => value [, parm => value ] )
Specify types of messages to ignore. Note that the ignore flags must be
set B<before> calling C<parse()>. You can call C<ignore()> as many times
as necessary to set up all your restrictions; the options will stack up.
=over 4
=item * type => TIDY_INFO|TIDY_WARNING|TIDY_ERROR
Specifies the type of messages you want to ignore, either info or warnings
or errors. If you wanted, you could call ignore on all three and get
no messages at all.
$tidy->ignore( type => TIDY_WARNING );
=item * text => qr/regex/
=item * text => [ qr/regex1/, qr/regex2/, ... ]
Checks the text of the message against the specified regex or regexes,
and ignores the message if there's a match. The value for the I<text>
parm may be either a regex, or a reference to a list of regexes.
$tidy->ignore( text => qr/DOCTYPE/ );
$tidy->ignore( text => [ qr/unsupported/, qr/proprietary/i ] );
=back
=cut
sub ignore {
my $self = shift;
my @parms = @_;
while ( @parms ) {
my $parm = shift @parms;
my $value = shift @parms;
my @values = ref($value) eq 'ARRAY' ? @{$value} : ($value);
Carp::croak( qq{Invalid ignore type of "$parm"} )
unless ($parm eq 'text') or ($parm eq 'type');
push( @{$self->{"ignore_$parm"}}, @values );
} # while
return;
} # ignore
=head2 parse( $filename, $str [, $str...] )
Parses a string, or list of strings, that make up a single HTML file.
The I<$filename> parm is only used as an identifier for your use.
The file is not actually read and opened.
Returns true if all went OK, or false if there was some problem calling
tidy, or parsing tidy's output.
=cut
sub parse {
my $self = shift;
my $filename = shift;
if (@_ == 0) {
Carp::croak('Usage: parser($filename,$str [, $str...])') ## no critic
}
my $html = join( '', @_ );
utf8::encode($html) if utf8::is_utf8($html);
my ($errorblock,$newline) = _tidy_messages( $html, $self->{config_file}, $self->{tidy_options} );
return 1 unless defined $errorblock;
utf8::decode($errorblock);
return !$self->_parse_errors($filename, $errorblock, $newline);
}
sub _parse_errors {
my $self = shift;
my $filename = shift;
my $errs = shift;
my $newline = shift;
my $parse_errors;
my @lines = split( /$newline/, $errs );
for my $line ( @lines ) {
chomp $line;
my $message;
if ( $line =~ /^line (\d+) column (\d+) - (Warning|Error|Info): (.+)$/ ) {
my ($line, $col, $type, $text) = ($1, $2, $3, $4);
$type =
($type eq 'Warning') ? TIDY_WARNING :
($type eq 'Info') ? TIDY_INFO :
TIDY_ERROR;
$message = HTML::Tidy::Message->new( $filename, $type, $line, $col, $text );
}
elsif ( $line =~ m/^Info: (.+)$/ ) {
# Info line we don't want
my $text = $1;
$message = HTML::Tidy::Message->new( $filename, TIDY_INFO, undef, undef, $text );
}
elsif ( $line =~ /^\d+ warnings?, \d+ errors? were found!/ ) {
# Summary line we don't want
}
elsif ( $line eq 'No warnings or errors were found.' ) {
# Summary line we don't want
}
elsif ( $line eq 'This document has errors that must be fixed before' ) {
# Summary line we don't want
}
elsif ( $line eq 'using HTML Tidy to generate a tidied up version.' ) {
# Summary line we don't want
}
elsif ( $line =~ m/^\s*$/ ) {
# Blank line we don't want
}
else {
Carp::carp "HTML::Tidy: Unknown error type: $line";
++$parse_errors;
}
push( @{$self->{messages}}, $message )
if $message && $self->_is_keeper( $message );
} # for
return $parse_errors;
}
=head2 clean( $str [, $str...] )
Cleans a string, or list of strings, that make up a single HTML file.
Returns the cleaned string as a single string.
=cut
sub clean {
my $self = shift;
if (@_ == 0) {
Carp::croak('Usage: clean($str [, $str...])') ## no critic
}
my $text = join( '', @_ );
utf8::encode($text) if utf8::is_utf8($text);
if ( defined $text ) {
$text .= "\n";
}
my ($cleaned, $errbuf, $newline) = _tidy_clean( $text,
$self->{config_file},
$self->{tidy_options});
utf8::decode($cleaned);
utf8::decode($errbuf);
$self->_parse_errors('', $errbuf, $newline);
return $cleaned;
}
# Tells whether a given message object is one that we should keep.
sub _is_keeper {
my $self = shift;
my $message = shift;
my @ignore_types = @{$self->{ignore_type}};
if ( @ignore_types ) {
return if grep { $message->type == $_ } @ignore_types;
}
my @ignore_texts = @{$self->{ignore_text}};
if ( @ignore_texts ) {
return if grep { $message->text =~ $_ } @ignore_texts;
}
return 1;
}
require XSLoader;
XSLoader::load('HTML::Tidy', $VERSION);
1;
__END__
=head1 INSTALLING TIDYP
C<HTML::Tidy> requires that C<tidyp> be installed on your system.
You can obtain tidyp through your distribution's package manager
(make sure you install the development package with headers), or from
the tidyp Git repository at L<http://github.com/petdance/tidyp>.
=head1 CONVERTING FROM C<HTML::Lint>
C<HTML::Tidy> is different from C<HTML::Lint> in a number of crucial ways.
=over 4
=item * It's not pure Perl
C<HTML::Tidy> is mostly a happy wrapper around tidyp.
=item * The real work is done by someone else
Changes to tidyp may come down the pipe that I don't have control over.
That's the price we pay for having it do a darn good job.
=item * It's no longer bundled with its C<Test::> counterpart
L<HTML::Lint|HTML::Lint> came bundled with C<Test::HTML::Lint>, but
L<Test::HTML::Tidy|Test::HTML::Tidy> is a separate distribution. This saves the people
who don't want the C<Test::> framework from pulling it in, and all its
prerequisite modules.
=back
=head1 BUGS & FEEDBACK
Please report any bugs or feature requests at the issue tracker on github
L<http://github.com/petdance/html-tidy/issues>. I will be notified,
and then you'll automatically be notified of progress on your bug as I
make changes.
Please do NOT use L<http://rt.cpan.org>.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc HTML::Tidy
You can also look for information at:
=over 4
=item * HTML::Tidy's issue queue at github
L<http://github.com/petdance/html-tidy/issues>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/HTML-Tidy>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/HTML-Tidy>
=item * search.cpan.org
L<http://search.cpan.org/dist/HTML-Tidy>
=item * Git source code repository
L<http://github.com/petdance/html-tidy>
=back
=head1 ACKNOWLEDGEMENTS
Thanks to Jonathan Rockway and Robert Bachmann for contributions.
=head1 AUTHOR
Andy Lester, C<< <andy at petdance.com> >>
=head1 COPYRIGHT & LICENSE
Copyright (C) 2005-2013 by Andy Lester
This library is free software. You mean modify or distribute it under
the Artistic License v2.0.
=cut
|