2020-05-12 14:29:53 +03:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2023-01-02 15:51:48 +03:00
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2020-05-12 14:29:53 +03:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 16:02:01 +03:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-05-12 14:29:53 +03:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 12:16:50 +03:00
|
|
|
#
|
2020-05-12 14:29:53 +03:00
|
|
|
###########################################################################
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# - Get all options mentioned in the $cmddir.
|
2020-05-25 22:44:04 +03:00
|
|
|
# - Make sure they're all mentioned in the $opts document
|
2023-10-03 17:44:13 +03:00
|
|
|
# - Make sure that the version in $opts matches the version in the file in
|
2020-05-12 14:29:53 +03:00
|
|
|
# $cmddir
|
|
|
|
#
|
|
|
|
|
|
|
|
my $opts = $ARGV[0];
|
|
|
|
my $cmddir = $ARGV[1];
|
|
|
|
|
|
|
|
sub cmdfiles {
|
|
|
|
my ($dir)=@_;
|
|
|
|
|
|
|
|
opendir(my $dh, $dir) || die "Can't opendir $dir: $!";
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 01:18:43 +03:00
|
|
|
my @opts = grep { /[a-z0-9].*\.md$/ && -f "$dir/$_" } readdir($dh);
|
2020-05-12 14:29:53 +03:00
|
|
|
closedir $dh;
|
|
|
|
|
|
|
|
for(@opts) {
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 01:18:43 +03:00
|
|
|
$_ =~ s/\.md$//;
|
2020-05-12 14:29:53 +03:00
|
|
|
$file{$_}=1;
|
|
|
|
}
|
|
|
|
return @opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub mentions {
|
|
|
|
my ($f) = @_;
|
|
|
|
my @options;
|
2023-03-28 23:29:36 +03:00
|
|
|
open(my $fh, "<", "$f");
|
|
|
|
while(<$fh>) {
|
2020-05-12 14:29:53 +03:00
|
|
|
chomp;
|
|
|
|
if(/(.*) +([0-9.]+)/) {
|
|
|
|
my ($flag, $version)=($1, $2);
|
|
|
|
|
|
|
|
# store the name without the leading dashes
|
|
|
|
$flag =~ s/^--//;
|
|
|
|
|
|
|
|
# cut out short option (if present)
|
|
|
|
$flag =~ s/ \(-.\)//;
|
|
|
|
|
|
|
|
# store the name without trailing space
|
|
|
|
$flag =~ s/ +$//;
|
|
|
|
|
|
|
|
push @options, $flag;
|
|
|
|
|
|
|
|
# options-in-versions says...
|
|
|
|
$oiv{$flag} = $version;
|
|
|
|
}
|
|
|
|
}
|
2023-03-28 23:29:36 +03:00
|
|
|
close($fh);
|
2020-05-12 14:29:53 +03:00
|
|
|
return @options;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub versioncheck {
|
|
|
|
my ($f, $v)=@_;
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 01:18:43 +03:00
|
|
|
open(my $fh, "<", "$cmddir/$f.md");
|
2023-03-28 23:29:36 +03:00
|
|
|
while(<$fh>) {
|
2020-05-12 14:29:53 +03:00
|
|
|
chomp;
|
|
|
|
if(/^Added: ([0-9.]+)/) {
|
|
|
|
if($1 ne $v) {
|
|
|
|
print STDERR "$f lists $v in doc but $1 in file\n";
|
|
|
|
$error++;
|
|
|
|
}
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
2023-03-28 23:29:36 +03:00
|
|
|
close($fh);
|
2020-05-12 14:29:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
# get all the files
|
|
|
|
my @cmdopts = cmdfiles($cmddir);
|
|
|
|
|
|
|
|
# get all the options mentioned in $o
|
|
|
|
my @veropts = mentions($opts);
|
|
|
|
|
|
|
|
# check if all files are in the doc
|
|
|
|
for my $c (sort @cmdopts) {
|
|
|
|
if($oiv{$c}) {
|
|
|
|
# present, but at same version?
|
|
|
|
versioncheck($c, $oiv{$c});
|
|
|
|
}
|
|
|
|
else {
|
2020-09-02 10:25:50 +03:00
|
|
|
print STDERR "--$c is in the option directory but not in $opts!\n";
|
2020-05-12 14:29:53 +03:00
|
|
|
$error++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# check if the all options in the doc have files
|
|
|
|
for my $v (sort @veropts) {
|
|
|
|
if($file{$v}) {
|
|
|
|
# present
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print STDERR "$v is in the doc but NOT as a file!\n";
|
|
|
|
$error++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-02 10:25:50 +03:00
|
|
|
print STDERR "ok\n" if(!$error);
|
|
|
|
|
2020-05-12 14:29:53 +03:00
|
|
|
exit $error;
|