uawdijnntqw1x1x1
IP : 216.73.216.23
Hostname : web17.us.cloudlogin.co
Kernel : Linux web17.us.cloudlogin.co 5.10.238-xeon-hst #1 SMP Thu Jun 5 12:15:42 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
.
/
..
/
bin
/
weblint
/
/
#!/usr/bin/perl -w use warnings; use strict; use Getopt::Long; use HTML::Lint; use HTML::Lint::Error; use HTML::Lint::HTML4; my $help; my $context; my $structure = 1; my $helper = 1; my $fluff = 1; GetOptions( 'help' => \$help, 'context:i' => \$context, 'only' => sub { $structure = $helper = $fluff = 0; }, 'structure!' => \$structure, 'helper!' => \$helper, 'fluff!' => \$fluff, ) or $help = 1; if ( !@ARGV || $help ) { print "weblint v$HTML::Lint::VERSION\n"; print <DATA>; exit 1; } my @types; push( @types, HTML::Lint::Error::STRUCTURE ) if $structure; push( @types, HTML::Lint::Error::HELPER ) if $helper; push( @types, HTML::Lint::Error::FLUFF ) if $fluff; my $lint = HTML::Lint->new; $lint->only_types( @types ) if @types; for my $url ( @ARGV ) { my @lines; $lint->newfile( $url ); if ( $url =~ /^https?:/ ) { if ( !eval { require LWP::Simple; 1; } ) { warn q{Can't retrieve URLs without LWP::Simple installed}; next; } my $content = LWP::Simple::get( $url ); if ( $content ) { @lines = split( /\n/, $content ); $_ = "$_\n" for @lines; } else { warn "Unable to fetch $url\n"; next; } } elsif ( $url eq '-' ) { @lines = <STDIN>; } else { open( my $fh, '<', $url ) or die "Can't open $url: $!"; @lines = <$fh>; close $fh or die $!; } $lint->parse( $_ ) for @lines; $lint->eof(); for my $error ( $lint->errors() ) { print $error->as_string(), "\n"; if ( defined $context ) { $context += 0; my $lineno = $error->line - 1; my $start = $lineno-$context; $start = 0 if $start < 0; my $end = $lineno+$context; $end = $#lines if $end > $#lines; print " $_\n" for @lines[$start..$end]; print "\n"; } } $lint->clear_errors(); } # for files __END__ Usage: weblint [filename or url]... (filename - reads STDIN) --help This message --context[=n] Show the offending line (and n surrounding lines) Error types: (default: all on) --[no]structure Structural issues, like unclosed tag pairs --[no]helper Helper issues, like missing HEIGHT & WIDTH --[no]fluff Fluff that can be removed, like bad tag attributes --only Turns off all other error types, as in --only --fluff
/home/./../bin/weblint