summaryrefslogtreecommitdiff
path: root/samples/xmlcomments
blob: 3b066ae2c1709d0dfa65ce504e0fd795a65ab410 (plain)
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
#!/usr/local/bin/perl -w
#
# $Revision: 1.1.1.1 $
#
# $Date: 2003-07-27 11:07:11 $

use XML::Parser;

my $file = shift;

die "Can't find file \"$file\""
  unless -f $file;
    
my $count = 0;

my $parser = new XML::Parser(ErrorContext => 2,
			     ParseParamEnt => 0
			    );

$parser->setHandlers(Comment => \&comments);

$parser->parsefile($file);

print "Found $count comments.\n";

################
## End of main
################

sub comments
{
    my ($p, $data) = @_;

    my $line = $p->current_line;
    $data =~ s/\n/\n\t/g;
    print "$line:\t<!--$data-->\n";
    $count++;

}  # End comments

# Tell Emacs that this is really a perl script
# Local Variables:
# mode:perl
# End: