X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fxml2man.pl;h=79d52076474367d4ec64aaff3181ab2865d937f9;hb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e;hp=e6b69d7834f9242e3d379dd4934d12c27d33a717;hpb=13dbc569cdc6e29019722c0ef9b932a925efbcad;p=xscreensaver diff --git a/hacks/xml2man.pl b/hacks/xml2man.pl index e6b69d78..79d52076 100755 --- a/hacks/xml2man.pl +++ b/hacks/xml2man.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright © 2002 Jamie Zawinski +# Copyright © 2002-2014 Jamie Zawinski # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that @@ -24,7 +24,7 @@ use strict; use Text::Wrap; my $progname = $0; $progname =~ s@.*/@@g; -my $version = q{ $Revision: 1.2 $ }; $version =~ s/^[^0-9]+([0-9.]+).*$/$1/; +my ($version) = ('$Revision: 1.6 $' =~ m/\s(\d[.\d]+)\s/s); my $verbose = 0; @@ -60,7 +60,7 @@ my $man_suffix = (".SH ENVIRONMENT\n" . ".BR X (1),\n" . ".BR xscreensaver (1)\n" . ".SH COPYRIGHT\n" . - "Copyright \\(co 2002 by %AUTHOR%. " . + "Copyright \\(co %YEAR% by %AUTHOR%. " . "Permission to use, copy, modify, \n" . "distribute, and sell this software and its " . "documentation for any purpose is \n" . @@ -76,8 +76,9 @@ my $man_suffix = (".SH ENVIRONMENT\n" . ".SH AUTHOR\n" . "%AUTHOR%.\n"); -sub xml2man { +sub xml2man($) { my ($exe) = @_; + $exe =~ s/\.xml$//s; my $cfgdir = (-d "config" ? "config" : "../config"); my $xml = "$cfgdir/$exe.xml"; my $man = "$exe.man"; @@ -118,6 +119,7 @@ sub xml2man { my $carg = $arg; my $boolp = m/^= 10000) { $label = "Per-frame delay, in microseconds."; - $def = sprintf ("%d (%0.2f seconds.)", $def, ($def/1000000.0)); + $def = sprintf ("%d (%0.2f seconds)", $def, ($def/1000000.0)); $low = $hi = undef; + } elsif ($carg eq '-speed \fInumber\fP') { + $label = "Animation speed. 2.0 means twice as fast, " . + "0.5 means half as fast."; + $novalsp = 1; } elsif ($boolp) { $label .= ". Boolean."; } elsif ($label) { @@ -164,8 +170,10 @@ sub xml2man { $args .= "[\\$carg]\n"; - $label .= " $low - $hi." if (defined($low) && defined($hi)); - $label .= " Default: $def." if (defined ($def)); + if (! $novalsp) { + $label .= " $low - $hi." if (defined($low) && defined($hi)); + $label .= " Default: $def." if (defined ($def)); + } $label = wrap ("", "", $label); $body .= ".TP 8\n.B \\$arg\n$label"; @@ -173,6 +181,7 @@ sub xml2man { } elsif (m@^<_description>\s*(.*)\s*@) { $desc = $1; + } elsif (m@^