From a848231ae0f346dc7cc000973fbeb65b0894ee92 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 21:59:03 +0200 Subject: Adding upstream version 3.8.5. Signed-off-by: Daniel Baumann --- mantools/postconf2html | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100755 mantools/postconf2html (limited to 'mantools/postconf2html') diff --git a/mantools/postconf2html b/mantools/postconf2html new file mode 100755 index 0000000..5ad038f --- /dev/null +++ b/mantools/postconf2html @@ -0,0 +1,99 @@ +#!/usr/bin/perl + +# postconf2html - add HTML paragraphs + +# Basic operation: +# +# - Process input as text blocks separated by one or more empty +# (or all whitespace) lines. +# +# - Remove text between ; each may be on a different line. +# +# - Optionally remove pass-through requests (unless +# the -n option is specified). +# +# - Don't touch blocks that start with `<' in column zero. +# +# The only changes made are: +# +# - Emit "
parametername...
" at +# the top of each parameter description. +# +# All other non-comment input is flagged as an error. + +use Getopt::Std; + +$opt_h = undef; +$opt_v = undef; +$opt_n = undef; +getopts("hnv"); + +die "Usage: $0 [-nv]\n" if ($opt_h); + +#push @ARGV, "/dev/null"; # XXX + +while(<>) { + + # Skip comments. + next if /^#/; + + # Skip blank lines before text block. + next unless (/\S/); + + # Gobble up the next text block. + $block = ""; + $comment = 0; + do { + $_ =~ s/\s+\n$/\n/; + $block .= $_; + if ($_ =~ //) + { $comment = 0; $block =~ s///sg; } + } while((($_ = <>) && /\S/) || $comment); + + # Strip nroff escapes. + $block =~ s/<\s*nroffescape[^>]+>//g unless $opt_n; + + # Skip blanks after comment elimination. + if ($block =~ /^\s/) { + $block =~ s/^\s+//s; + next if ($block eq ""); + } + + # Don't touch a text block starting with < in column zero. + if ($block =~ /^\n\n" if ($param); + print "\n
\n\n" if ($need_dl); + $need_dl = 0; + ($junk, $param, $defval) = split(/\s+/, $block, 3); + $defval =~ s/\s+$//s; + $defval = "empty" if ($defval eq ""); + $defval = "default: $defval" unless ($defval eq "read-only"); + print "
$param\n($defval)
\n\n"; + } + + # Meta block. Emit upper case tags for html2man. + elsif ($block =~ /^%CLASS/) { + print "\n
\n\n" if ($param); + print "\n
\n\n" if ($class); + $param =""; + ($junk, $class, $text) = split(/\s+/, $block, 3); + $text =~ s/\s+$//s; + print "

$text

\n\n"; + $need_dl = 1; + } + + # Can't happen. + else { + die "Unrecognized text block:\n$block"; + } +} + +print "\n
\n\n" if ($param); +print "\n\n\n" if ($class); -- cgit v1.2.3