123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- my $docsroot = $ARGV[0];
- if(!$docsroot || ($docsroot eq "-g")) {
- print "Usage: nroff-scan.pl <docs root dir> [nroff files]\n";
- exit;
- }
- shift @ARGV;
- my @f = @ARGV;
- my %manp;
- sub manpresent {
- my ($man) = @_;
- if($manp{$man}) {
- return 1;
- }
- elsif(-r "$docsroot/$man" ||
- -r "$docsroot/libcurl/$man" ||
- -r "$docsroot/libcurl/opts/$man") {
- $manp{$man}=1;
- return 1;
- }
- return 0;
- }
- sub file {
- my ($f) = @_;
- open(F, "<$f") ||
- die "no file";
- my $line = 1;
- while(<F>) {
- chomp;
- my $l = $_;
- while($l =~ s/\\f(.)([^ ]*)\\f(.)//) {
- my ($pre, $str, $post)=($1, $2, $3);
- if($post ne "P") {
- print STDERR "error: $f:$line: missing \\fP after $str\n";
- $errors++;
- }
- if($str =~ /((libcurl|curl)([^ ]*))\(3\)/i) {
- my $man = "$1.3";
- if(!manpresent($man)) {
- print STDERR "error: $f:$line: referring to non-existing man page $man\n";
- $errors++;
- }
- if($pre ne "I") {
- print STDERR "error: $f:$line: use \\fI before $str\n";
- $errors++;
- }
- }
- }
- if($l =~ /(curl([^ ]*)\(3\))/i) {
- print STDERR "error: $f:$line: non-referencing $1\n";
- $errors++;
- }
- if($l =~ /^\.BR (.*)/) {
- my $i= $1;
- while($i =~ s/((lib|)curl([^ ]*)) *\"\(3\)(,|) *\" *//i ) {
- my $man = "$1.3";
- if(!manpresent($man)) {
- print STDERR "error: $f:$line: referring to non-existing man page $man\n";
- $errors++;
- }
- }
- }
- $line++;
- }
- close(F);
- }
- foreach my $f (@f) {
- file($f);
- }
- exit $errors?1:0;
|