=begin comment
-Converts a curldown file to nroff (man page).
+Converts a curldown file to nroff (manpage).
=end comment
=cut
# convert backslash-'<' or '> to just the second character
$d =~ s/\\([<>])/$1/g;
- # mentions of curl symbols with man pages use italics by default
+ # mentions of curl symbols with manpages use italics by default
$d =~ s/((lib|)curl([^ ]*\(3\)))/\\fI$1\\fP/gi;
# backticked becomes italics
my $indent = 4;
-# get the long name version, return the man page string
+# get the long name version, return the manpage string
sub manpageify {
my ($k)=@_;
my $l;
# remove backticks from headers
$word =~ s/\`//g;
- # if there is a space, it needs quotes for man page
+ # if there is a space, it needs quotes for manpage
if(($word =~ / /) && $manpage) {
$word = "\"$word\"";
}
.\\" *
.\\" **************************************************************************
.\\"
-.\\" DO NOT EDIT. Generated by the curl project managen man page generator.
+.\\" DO NOT EDIT. Generated by the curl project managen manpage generator.
.\\"
.TH curl 1 "$date" "curl $version" "curl Manual"
HEADER
</server>
<name>
-Man page syntax checks
+Manpage syntax checks
</name>
<command type="perl">
.\" *
.\" **************************************************************************
.\"
-.\" DO NOT EDIT. Generated by the curl project managen man page generator.
+.\" DO NOT EDIT. Generated by the curl project managen manpage generator.
.\"
.TH curl 1 "%DATE" "curl %VERNUM" "curl Manual"
.SH DESCRIPTION
###########################################################################
#
# Scan symbols-in-version (which is verified to be correct by test 1119), then
-# verify that each option mention in there that should have its own man page
+# verify that each option mention in there that should have its own manpage
# actually does.
#
# In addition, make sure that every current option to curl_easy_setopt,
# curl_easy_getinfo and curl_multi_setopt are also mentioned in their
-# corresponding main (index) man page.
+# corresponding main (index) manpage.
#
# src/tool_getparam.c lists all options curl can parse
# docs/curl.1 documents all command line options
close($r);
#########################################################################
-# parse the curl.1 man page, extract all documented command line options
-# The man page may or may not be rebuilt, so check both possible locations
+# parse the curl.1 manpage, extract all documented command line options
+# The manpage may or may not be rebuilt, so check both possible locations
open($r, "<", "$buildroot/docs/cmdline-opts/curl.1") || open($r, "<", "$root/docs/cmdline-opts/curl.1") ||
die "failed getting curl.1";
my @manpage; # store all parsed parameters
###########################################################################
#
# scan manpages to find basic syntactic problems such as unbalanced \f
-# codes or references to non-existing curl man pages.
+# codes or references to non-existing curl manpages.
my $docsroot = $ARGV[0];
my $man = "$1.3";
$man =~ s/\\//g; # cut off backslashes
if(!manpresent($man)) {
- print "error: $f:$line: referring to non-existing man page $man\n";
+ print "error: $f:$line: referring to non-existing manpage $man\n";
$errors++;
}
if($pre ne "I") {
my $man = "$1.3";
$man =~ s/\\//g; # cut off backslashes
if(!manpresent($man)) {
- print "error: $f:$line: referring to non-existing man page $man\n";
+ print "error: $f:$line: referring to non-existing manpage $man\n";
$errors++;
}
}
#
###########################################################################
#
-# Scan man page(s) and detect some simple and yet common formatting mistakes.
+# Scan manpage(s) and detect some simple and yet common formatting mistakes.
#
# Output all deviances to stderr.
open(my $m, "<", "$file") ||
die "test1173.pl could not open $file";
if($file =~ /[\/\\](CURL|curl_)([^\/\\]*).3/) {
- # This is a man page for libcurl. It requires an example unless it's
+ # This is a manpage for libcurl. It requires an example unless it's
# considered deprecated.
$reqex = 1 unless defined $deprecated{'CURL'.$2};
if($1 eq "CURL") {
while(<$m>) {
chomp;
if($_ =~ /^.so /) {
- # this man page is just a referral
+ # this manpage is just a referral
close($m);
return;
}
if(($_ =~ /^\.SH SYNOPSIS/i) && ($reqex)) {
- # this is for libcurl man page SYNOPSIS checks
+ # this is for libcurl manpage SYNOPSIS checks
$insynop = 1;
$inex = 0;
}
if($optpage && $SH && ($SH !~ /^(SYNOPSIS|EXAMPLE|NAME|SEE ALSO)/i) &&
($_ =~ /(.*)(CURL(OPT_|MOPT_|INFO_|SHOPT_)[A-Z0-9_]*)/)) {
- # an option with its own man page, check that it is tagged
+ # an option with its own manpage, check that it is tagged
# for linking
my ($pref, $symbol) = ($1, $2);
if($deprecated{$symbol}) {
}
if($shcount < 3) {
- print STDERR "$file:$line too few man page sections!\n";
+ print STDERR "$file:$line too few manpage sections!\n";
$errors++;
return;
}
###########################################################################
#
# Check that the deprecated statuses of functions and enum values in header
-# files, man pages and symbols-in-versions are in sync.
+# files, manpages and symbols-in-versions are in sync.
use strict;
use warnings;
# x.yy.z Deprecated in version x.yy.z
my %syminver; # Symbols-in-versions deprecations.
my %hdr; # Public header files deprecations.
-my %funcman; # Function man pages deprecations.
-my %optman; # Option man pages deprecations.
+my %funcman; # Function manpages deprecations.
+my %optman; # Option manpages deprecations.
# Scan header file for public function and enum values. Flag them with
close $h;
}
-# Scan function man page for options.
+# Scan function manpage for options.
# Each option has to be declared as ".IP <option>" where <option> starts with
# the prefix. Flag each option with its deprecation version, if some.
sub scan_man_for_opts {
close $m;
}
-# Scan man page for deprecation in DESCRIPTION and/or AVAILABILITY sections.
+# Scan manpage for deprecation in DESCRIPTION and/or AVAILABILITY sections.
sub scan_man_page {
my ($path, $sym, $table)=@_;
my $version = "X";
while(<$fh>) {
if($_ =~ /\.so\s+man3\/(.*\.3\b)/) {
- # Handle man page inclusion.
+ # Handle manpage inclusion.
scan_man_page(dirname($path) . "/$1", $sym, $table);
$version = exists($$table{$sym})? $$table{$sym}: $version;
}
# Flag deprecation status.
if($version ne "X" && $version ne "?") {
if($1 && $1 ne $version) {
- print "error: $sym man page lists unmatching deprecation versions $version and $1\n";
+ print "error: $sym manpage lists unmatching deprecation versions $version and $1\n";
$errcode++;
}
}
scan_header("$incdir/$_");
}
-# Get function statuses from man pages.
+# Get function statuses from manpages.
foreach my $sym (keys %hdr) {
if($sym =~/^(?:curl|curlx)_\w/) {
scan_man_page("$libdocdir/$sym.3", $sym, \%funcman);
}
}
-# Get options from function man pages.
+# Get options from function manpages.
scan_man_for_opts("$libdocdir/curl_easy_setopt.3", "CURLOPT");
scan_man_for_opts("$libdocdir/curl_easy_getinfo.3", "CURLINFO");
-# Get deprecation status from option man pages.
+# Get deprecation status from option manpages.
foreach my $sym (keys %syminver) {
if($sym =~ /^(?:CURLOPT|CURLINFO)_\w+$/) {
scan_man_page("$libdocdir/opts/$sym.3", $sym, \%optman);
print "Result\n";
for my $h (sort @hnames) {
if(!$manfrom{$h}) {
- printf "$h from %s, not in man page\n", $wherefrom{$h};
+ printf "$h from %s, not in manpage\n", $wherefrom{$h};
}
}