File: pod2help

package info (click to toggle)
lavaps 2.7-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,824 kB
  • ctags: 1,190
  • sloc: cpp: 6,382; sh: 3,227; ansic: 1,649; tcl: 707; makefile: 312; perl: 202
file content (211 lines) | stat: -rwxr-xr-x 6,934 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#!/usr/bin/perl -w

#
# pod2help
# $Id: pod2help,v 1.9 2004/06/07 00:57:30 johnh Exp $
#
# Copyright (C) 1999 by John Heidemann
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License,
# version 2, as published by the Free Software Foundation.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
#



sub usage {
    print STDERR <<END;
usage: $0 [-m mode] sections

Convert pod to my own help format.

This program just does the SUBSET of pod that I needed.

options:

-m MODE	    specify mode (tcl or gtk, default is tcl)
END
    exit 1;
}

use strict;

use Getopt::Long;
&usage if ($#ARGV >= 0 && $ARGV[0] eq '-?');
my(%opts);
&GetOptions(\%opts, qw(k m=s));
&usage if ($#ARGV < 0);
my($mode) = $opts{'m'};
$mode = 'tcl' if (!defined($mode));
die "$0: unknown mode $mode.\n" if (!($mode eq 'tcl' || $mode eq 'gtk'));

my($section) = $ARGV[0];
my($over) = 0;
my($item) = '';

$/ = "\n\n";  # paragraph slurping

my(%HTML_Escapes) = (
    'amp'	=>	'&',	#   ampersand
    'lt'	=>	'<',	#   left chevron, less-than
    'gt'	=>	'>',	#   right chevron, greater-than
    'quot'	=>	'"',	#   double quote

    "Aacute"	=>	"\xC1",	#   capital A, acute accent
    "aacute"	=>	"\xE1",	#   small a, acute accent
    "Acirc"	=>	"\xC2",	#   capital A, circumflex accent
    "acirc"	=>	"\xE2",	#   small a, circumflex accent
    "AElig"	=>	"\xC6",	#   capital AE diphthong (ligature)
    "aelig"	=>	"\xE6",	#   small ae diphthong (ligature)
    "Agrave"	=>	"\xC0",	#   capital A, grave accent
    "agrave"	=>	"\xE0",	#   small a, grave accent
    "Aring"	=>	"\xC5",	#   capital A, ring
    "aring"	=>	"\xE5",	#   small a, ring
    "Atilde"	=>	"\xC3",	#   capital A, tilde
    "atilde"	=>	"\xE3",	#   small a, tilde
    "Auml"	=>	"\xC4",	#   capital A, dieresis or umlaut mark
    "auml"	=>	"\xE4",	#   small a, dieresis or umlaut mark
    "Ccedil"	=>	"\xC7",	#   capital C, cedilla
    "ccedil"	=>	"\xE7",	#   small c, cedilla
    "Eacute"	=>	"\xC9",	#   capital E, acute accent
    "eacute"	=>	"\xE9",	#   small e, acute accent
    "Ecirc"	=>	"\xCA",	#   capital E, circumflex accent
    "ecirc"	=>	"\xEA",	#   small e, circumflex accent
    "Egrave"	=>	"\xC8",	#   capital E, grave accent
    "egrave"	=>	"\xE8",	#   small e, grave accent
    "ETH"	=>	"\xD0",	#   capital Eth, Icelandic
    "eth"	=>	"\xF0",	#   small eth, Icelandic
    "Euml"	=>	"\xCB",	#   capital E, dieresis or umlaut mark
    "euml"	=>	"\xEB",	#   small e, dieresis or umlaut mark
    "Iacute"	=>	"\xCD",	#   capital I, acute accent
    "iacute"	=>	"\xED",	#   small i, acute accent
    "Icirc"	=>	"\xCE",	#   capital I, circumflex accent
    "icirc"	=>	"\xEE",	#   small i, circumflex accent
    "Igrave"	=>	"\xCD",	#   capital I, grave accent
    "igrave"	=>	"\xED",	#   small i, grave accent
    "Iuml"	=>	"\xCF",	#   capital I, dieresis or umlaut mark
    "iuml"	=>	"\xEF",	#   small i, dieresis or umlaut mark
    "Ntilde"	=>	"\xD1",		#   capital N, tilde
    "ntilde"	=>	"\xF1",		#   small n, tilde
    "Oacute"	=>	"\xD3",	#   capital O, acute accent
    "oacute"	=>	"\xF3",	#   small o, acute accent
    "Ocirc"	=>	"\xD4",	#   capital O, circumflex accent
    "ocirc"	=>	"\xF4",	#   small o, circumflex accent
    "Ograve"	=>	"\xD2",	#   capital O, grave accent
    "ograve"	=>	"\xF2",	#   small o, grave accent
    "Oslash"	=>	"\xD8",	#   capital O, slash
    "oslash"	=>	"\xF8",	#   small o, slash
    "Otilde"	=>	"\xD5",	#   capital O, tilde
    "otilde"	=>	"\xF5",	#   small o, tilde
    "Ouml"	=>	"\xD6",	#   capital O, dieresis or umlaut mark
    "ouml"	=>	"\xF6",	#   small o, dieresis or umlaut mark
    "szlig"	=>	"\xDF",		#   small sharp s, German (sz ligature)
    "THORN"	=>	"\xDE",	#   capital THORN, Icelandic
    "thorn"	=>	"\xFE",	#   small thorn, Icelandic
    "Uacute"	=>	"\xDA",	#   capital U, acute accent
    "uacute"	=>	"\xFA",	#   small u, acute accent
    "Ucirc"	=>	"\xDB",	#   capital U, circumflex accent
    "ucirc"	=>	"\xFB",	#   small u, circumflex accent
    "Ugrave"	=>	"\xD9",	#   capital U, grave accent
    "ugrave"	=>	"\xF9",	#   small u, grave accent
    "Uuml"	=>	"\xDC",	#   capital U, dieresis or umlaut mark
    "uuml"	=>	"\xFC",	#   small u, dieresis or umlaut mark
    "Yacute"	=>	"\xDD",	#   capital Y, acute accent
    "yacute"	=>	"\xFD",	#   small y, acute accent
    "yuml"	=>	"\xFF",	#   small y, dieresis or umlaut mark

    "lchevron"	=>	"\xAB",	#   left chevron (double less than)
    "rchevron"	=>	"\xBB",	#   right chevron (double greater than));
);

&main;

exit 0;






sub tag {
    my($name, $value) = @_;
    if ($name eq 'C' || $name eq 'F') {
	return "<computer>$value</computer>" if ($mode eq 'tcl');
	return "<tt>$value</tt>" if ($mode eq 'gtk');
	die;
    } elsif ($name eq 'Z') {
	return '';
    } elsif ($name eq 'L') {
	return "<i>$value</i>" if ($mode eq 'gtk');
	return $value;
    } elsif ($name eq 'I') {
	return "<italic>$value</italic>" if ($mode eq 'tcl');
	return "<i>$value</i>" if ($mode eq 'gtk');
    } elsif ($name eq 'B') {
	return "<italic>$value</italic>" if ($mode eq 'tcl');
	return "<b>$value</b>" if ($mode eq 'gtk');
    } else {
	die "unknown tag $name<$value>\n";
    };
}

sub output {
    local($_) = @_;

    s/(\w)<([^>]+)>/tag($1,$2)/ge;
    s/\n/ /g;
    s/"/\\"/g if ($mode eq 'gtk');
    print "$_\n\n" if ($mode eq 'tcl');
    print "\t\"$_\\n\\n\"\n" if ($mode eq 'gtk');
}

sub main {
    print "\tset help($section) {" if ($mode eq 'tcl');
    print "static gtk_lava_help_text glht_$section(O_(\"$section\"),\n\tN_(\n" if ($mode eq 'gtk');

    my($first_title) = undef;
    while (<STDIN>) {
	chomp;
	s/^\n//g;
	if (!/^=/) {
	    output($_);
	    next;    
	};
	s/^=(\S+)\s*(.*)$//m;
	my($cmd, $args) = ($1, $2);
	my($rest) = $_;
	# directives
	if ($cmd eq 'head1') {
	    my($title, $w) = '';
	    foreach $w (split(/ /, $args)) {
		$title .= ucfirst(lc($w)) . " ";
	    };
	    $title =~ s/ $//;
	    print "\n<big>$title</big>\n\n" if ($mode eq 'tcl');
	    print "\t\"\\n<big>$title</big>\\n\\n\"\n" if ($mode eq 'gtk');
	    $first_title = $title if (!defined($first_title));
	} elsif ($cmd eq 'over') {
	    $over = $args;
	} elsif ($cmd eq 'back') {
	    $over = 0;
	} elsif ($cmd eq 'item') {
	    $item = $args;
	    output("$item\n$rest");
	} else {
	    die "unknown cmd ``$cmd''.\n";
	};
    };
    die "$0: unknown title.\n" if (!defined($first_title) && $mode eq 'gtk');
    print "\t), N_(\"$first_title\"));\n\n" if ($mode eq 'gtk');

    print "}\n" if ($mode eq 'tcl');
}