File: xmlcomments

package info (click to toggle)
libxml-parser-perl 2.47-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,268 kB
  • sloc: xml: 3,937; perl: 2,026; makefile: 38; ansic: 27
file content (44 lines) | stat: -rwxr-xr-x 690 bytes parent folder | download | duplicates (3)
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: