From b7c15c31519dc44c1f691e0466badd556ffe9423 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 18:18:56 +0200 Subject: Adding upstream version 3.7.10. Signed-off-by: Daniel Baumann --- mantools/get_anchors.pl | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 mantools/get_anchors.pl (limited to 'mantools/get_anchors.pl') diff --git a/mantools/get_anchors.pl b/mantools/get_anchors.pl new file mode 100644 index 0000000..436c6a1 --- /dev/null +++ b/mantools/get_anchors.pl @@ -0,0 +1,50 @@ +#! /usr/bin/perl -w +# +# Copyright (c) 2004 Liviu Daia +# 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); +} + -- cgit v1.2.3