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
|
#! /usr/bin/perl -w
#
# Copyright (c) 2004 Liviu Daia <Liviu.Daia@imar.ro>
# All rights reserved.
#
# $Revision$
# $Id$
# $Source$
#
use HTML::Parser;
use strict;
use Carp ();
local $SIG{__WARN__} = \&Carp::cluck;
my ($p, $fn, %a);
sub
html_parse_start ($$)
{
my ($t, $attr) = @_;
push @{$a{$attr->{name}}}, $fn
if ($t eq 'a' and defined $attr->{name});
}
$p = HTML::Parser->new(api_version => 3);
$p->strict_comment (0);
$p->report_tags (qw(a));
$p->ignore_elements (qw(script style));
$p->handler (start => \&html_parse_start, 'tagname, attr');
while ($fn = shift)
{
$p->parse_file ($fn);
$p->eof;
}
for (keys %a)
{
print "$_\t\tdefined in ", (join ', ', @{$a{$_}}), "\n"
if (@{$a{$_}} > 1);
print "$_\t\tnumerical in ", (join ', ', @{$a{$_}}), "\n"
if (m/^[\d.]+$/o);
}
|