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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
|
#!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if $running_under_some_shell;
# Pod::RefEntry -- Convert POD data to DocBook RefEntry
#
# Copyright 2005, 2006 by Chas Williams <chas@cmf.nrl.navy.mil>
#
# This program is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
# based on:
#
# Pod::PlainText -- Convert POD data to formatted ASCII text.
# $Id: Text.pm,v 2.1 1999/09/20 11:53:33 eagle Exp $
#
# Copyright 1999-2000 by Russ Allbery <rra@stanford.edu>
#
# This program is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
package Pod::RefEntry;
require 5.005;
use Carp qw(carp);
use Pod::Select ();
use strict;
use vars qw(@ISA %ESCAPES $VERSION);
# We inherit from Pod::Select instead of Pod::Parser so that we can be used
# by Pod::Usage.
@ISA = qw(Pod::Select);
$VERSION = '0.06';
# This table is taken near verbatim from Pod::PlainText in Pod::Parser,
# which got it near verbatim from the original Pod::Text. It is therefore
# credited to Tom Christiansen, and I'm glad I didn't have to write it. :)
%ESCAPES = (
'amp' => '&', # ampersand
'lt' => '<', # left chevron, less-than
'gt' => '>', # right chevron, greater-than
'quot' => '"', # double quote
);
# Initialize the object. Must be sure to call our parent initializer.
sub initialize {
my $self = shift;
$$self{hlevel} = 0 unless defined $$self{hlevel};
$$self{ltype} = 0 unless defined $$self{ltype};
$$self{lopen} = 0 unless defined $$self{lopen};
$$self{indent} = 2 unless defined $$self{indent};
$$self{width} = 76 unless defined $$self{width};
$$self{refnamediv} = 0;
$$self{LSTATE} = [];
$$self{MARGIN} = 0; # Current left margin in spaces.
$self->SUPER::initialize;
}
sub begin_pod {
my $self = shift;
$self->output ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
}
sub end_pod {
my $self = shift;
my $i;
for($i = 4; $i > 0; --$i) {
if ($$self{hlevel} >= $i) {
$self->{MARGIN} -= 2;
#$self->output ("</refsection>\n");
$self->output (sprintf "</refsect%d>\n", $i);
};
};
$self->{MARGIN} -= 2;
$self->output ("</refentry>\n");
}
# Called for each command paragraph. Gets the command, the associated
# paragraph, the line number, and a Pod::Paragraph object. Just dispatches
# the command to a method named the same as the command. =cut is handled
# internally by Pod::Parser.
sub command {
my $self = shift;
my $command = shift;
return if $command eq 'pod';
return if ($$self{EXCLUDE} && $command ne 'end');
$self->item ("\n") if defined $$self{ITEM};
$command = 'cmd_' . $command;
$self->$command (@_);
}
# Called for a verbatim paragraph. Gets the paragraph, the line number, and
# a Pod::Paragraph object. Just output it verbatim, but with tabs converted
# to spaces.
sub verbatim {
my $self = shift;
return if $$self{EXCLUDE};
$self->item if defined $$self{ITEM};
local $_ = shift;
return if /^\s*$/;
$$self{MARGIN} += 2;
s/&/&/g; # do & first to avoid "fixing" the & in <
s/</</g;
s/>/>/g;
my $saved = $$self{MARGIN};
$$self{MARGIN} = 0;
$self->output ("<programlisting>\n");
$self->output ($_);
$self->output ("</programlisting>\n");
$$self{MARGIN} = $saved;
}
sub escapes {
(undef, local $_) = @_;
s/(&)/\&/g;
s/(<)/\</g;
s/(>)/\>/g;
$_;
}
# Called for interior sequences. Gets a Pod::InteriorSequence object
# and is expected to return the resulting text.
sub sequence {
my ($self, $seq) = @_;
my $cmd_name = $seq->cmd_name;
$seq->left_delimiter( '' );
$seq->right_delimiter( '' );
$seq->cmd_name( '' );
$_ = $seq->raw_text;
if ($cmd_name eq 'B') {
$_ = sprintf "<emphasis role=\"bold\">%s</emphasis>", $_;
} elsif ($cmd_name eq 'C') {
$_ = sprintf "<computeroutput>%s</computeroutput>", $_;
} elsif ($cmd_name eq 'F') {
$_ = sprintf "<replaceable>%s</replaceable>", $_;
} elsif ($cmd_name eq 'I') {
$_ = sprintf "<emphasis>%s</emphasis>", $_;
} elsif ($cmd_name eq 'S') {
# perhaps translate ' ' to
$_ = sprintf "%s", $_;
} elsif ($cmd_name eq 'L') {
$_ = $self->seq_l ($seq);
} elsif ($cmd_name eq 'E') {
if (defined $ESCAPES{$_}) {
$_ = $ESCAPES{$_} if defined $ESCAPES{$_};
} else {
carp "Unknown escape: E<$_>";
}
} else {
carp "\nUnknown sequence $cmd_name<$_>\n";
}
my $parent = $seq->nested;
if (defined $parent) {
if ($parent->cmd_name eq 'B') {
$_ = sprintf "</emphasis>%s<emphasis role=\"bold\">", $_;
} elsif ($parent->cmd_name eq 'C') {
$_ = sprintf "</computeroutput>%s<computeroutput>", $_;
} elsif ($parent->cmd_name eq 'F') {
$_ = sprintf "</replaceable>%s<replaceable>", $_;
} elsif ($parent->cmd_name eq 'I') {
$_ = sprintf "</emphasis>%s<emphasis>", $_;
}
}
return $_;
}
# Called for a regular text block. Gets the paragraph, the line number, and
# a Pod::Paragraph object. Perform parse_text and output the results.
sub textblock {
my $self = shift;
return if $$self{EXCLUDE};
$self->output ($_[0]), return if $$self{VERBATIM};
local $_ = shift;
my $line = shift;
my $name;
my $purpose;
# /<http:.*>/ && do {
# s/<http:([^>]+)\>/<ulink url=\"http:\1\">http:\1<\/ulink>/;
# };
#
# /<.*@.*>/ && do {
# s/<([^>]+@[^>]+)>/<email>\1<\/email>/g;
# };
$_ = $self->parse_text(
{ -expand_text => q(escapes),
-expand_seq => q(sequence) },
$_, $line ) -> raw_text();
if (defined $$self{ITEM}) {
$self->item ($_ . "\n");
} elsif ($self->{refnamediv}) {
($name, $purpose) = /(.+)\s+\-\s+(.+)/;
my $id = $name;
$id =~ s/,.*$//; # only reference by first entry?
$id =~ s/[ \.,\(\)]/_/g;
if (defined $$self{section}) {
$id = sprintf "%s%d", $id, $$self{section};
}
$self->output ("<refentry id=\"$id\">\n");
$self->{MARGIN} += 2;
if (defined $$self{section}) {
$self->output ("<refmeta>\n");
$self->{MARGIN} += 2;
$self->output (sprintf "<refentrytitle>%s</refentrytitle>\n", $name);
$self->output (sprintf "<manvolnum>%d</manvolnum>\n", $$self{section});
$self->{MARGIN} -= 2;
$self->output ("</refmeta>\n");
}
$self->output ("<refnamediv>\n");
$self->{MARGIN} += 2;
$self->output ("<refname>$name</refname>\n");
$self->output ("<refpurpose>$purpose</refpurpose>\n");
$self->{MARGIN} -= 2;
$self->output ("</refnamediv>\n");
$self->{refnamediv} = 0;
} else {
s/\n+$//;
$self->output ("<para>" . $_ . "<\/para>" . "\n\n");
}
}
# Level headings.
sub cmd_head {
my $self = shift;
local $_ = shift;
my $line = shift;
my $level = $self->{level};
my $i;
for($i = 4; $i > 0; --$i) {
if ($level <= $i) {
if ($$self{hlevel} >= $i) {
$$self{MARGIN} -= 2;
#$self->output (sprintf "</refsection>\n", $i);
$self->output (sprintf "</refsect%d>\n", $i);
}
}
}
# special, output next <para> as <refnamediv>
if ($level == 1 && $_ =~ /NAME/) {
$self->{refnamediv} = 1;
return;
}
#$self->output (sprintf "<refsection>\n", $level);
$self->output (sprintf "<refsect%d>\n", $level);
$$self{MARGIN} += 2;
s/\s+$//;
$_ = $self->parse_text(
{ -expand_text => q(escapes),
-expand_seq => q(sequence) },
$_, $line ) -> raw_text();
if (/^[A-Z ]+$/) {
s/(\w+)/\u\L$1/g if $level == 1; # kill capitalization
}
$self->output ("<title>" . $_ . "<\/title>" . "\n");
$$self{hlevel} = $level;
}
# First level heading.
sub cmd_head1 {
my $self = shift;
$self->{level} = 1;
$self->cmd_head (@_);
}
# Second level heading.
sub cmd_head2 {
my $self = shift;
$self->{level} = 2;
$self->cmd_head (@_);
}
# Third level heading.
sub cmd_head3 {
my $self = shift;
$self->{level} = 3;
$self->cmd_head (@_);
}
sub cmd_head4 {
my $self = shift;
# <refsect4> doesnt exist -- we would use <refsection>
# when it becomes available in 4.4
printf STDERR "=head4 being rendered as <refsect3>\n";
$self->{level} = 3;
$self->cmd_head (@_);
}
# Start a list.
sub cmd_over {
my $self = shift;
local $_ = shift;
unless (/^[-+]?\d+\s+$/) { $_ = $$self{indent} }
push (@{ $$self{LSTATE} }, $$self{lopen});
push (@{ $$self{LSTATE} }, $$self{ltype});
undef $self->{ltype};
$$self{lopen} = 0;
}
# End a list.
sub cmd_back {
my $self = shift;
if ($self->{ltype} == 2) {
$self->{MARGIN} -= 2;
$self->output ("</listitem>\n");
$self->{MARGIN} -= 2;
$self->output ("</orderedlist>\n");
} elsif ($self->{ltype} == 1) {
$self->{MARGIN} -= 2;
$self->output ("</listitem>\n");
$self->{MARGIN} -= 2;
$self->output ("</itemizedlist>\n");
} else {
$self->{MARGIN} -= 2;
$self->output ("</listitem>\n");
$self->{MARGIN} -= 2;
$self->output ("</varlistentry>\n");
$self->{MARGIN} -= 2;
$self->output ("</variablelist>\n");
}
$$self{ltype} = pop @{ $$self{LSTATE} };
$$self{lopen} = pop @{ $$self{LSTATE} };
unless (defined $$self{LSTATE}) {
carp "Unmatched =back";
$$self{MARGIN} = $$self{indent};
}
}
# An individual list item.
sub cmd_item {
my $self = shift;
if (defined $$self{ITEM}) { $self->item }
local $_ = shift;
my $line = shift;
s/\s+$//;
$$self{ITEM} = $self->parse_text(
{ -expand_text => q(escapes),
-expand_seq => q(sequence) },
$_, $line ) -> raw_text();
}
# Begin a block for a particular translator. Setting VERBATIM triggers
# special handling in textblock().
sub cmd_begin {
my $self = shift;
local $_ = shift;
my ($kind) = /^(\S+)/ or return;
if ($kind eq 'text') {
$$self{VERBATIM} = 1;
} else {
$$self{EXCLUDE} = 1;
}
}
# End a block for a particular translator. We assume that all =begin/=end
# pairs are properly closed.
sub cmd_end {
my $self = shift;
$$self{EXCLUDE} = 0;
$$self{VERBATIM} = 0;
}
# One paragraph for a particular translator. Ignore it unless it's intended
# for text, in which case we treat it as a verbatim text block.
sub cmd_for {
my $self = shift;
local $_ = shift;
my $line = shift;
return unless s/^text\b[ \t]*\n?//;
$self->verbatim ($_, $line);
}
# The complicated one. Handle links. Since this is plain text, we can't
# actually make any real links, so this is all to figure out what text we
# print out.
sub seq_l {
my ($self, $seq) = @_;
s/>$//; # remove trailing >
# Smash whitespace in case we were split across multiple lines.
s/\s+/ /g;
# If we were given any explicit text, just output it.
if (/^([^|]+)\|/) { return $1 }
# Okay, leading and trailing whitespace isn't important; get rid of it.
s/^\s+//;
s/\s+$//;
# Default to using the whole content of the link entry as a section
# name. Note that L<manpage/> forces a manpage interpretation, as does
# something looking like L<manpage(section)>. The latter is an
# enhancement over the original Pod::Text.
my ($manpage, $section) = ('', $_);
if (/^(?:https?|ftp|news):/) {
# a URL
return $_;
} elsif (/^"\s*(.*?)\s*"$/) {
$section = '"' . $1 . '"';
} elsif (m/^[-:.\w]+(?:\(\S+\))?$/) {
($manpage, $section) = ($_, '');
} elsif (m%/%) {
($manpage, $section) = split (/\s*\/\s*/, $_, 2);
}
$seq->cmd_name("");
# Now build the actual output text.
if (length $section) {
$section =~ s/^\"\s*//;
$section =~ s/\s*\"$//;
$_ = $section;
$_ .= " in $manpage" if length $manpage;
}
if (length $manpage) {
my $linkend = $manpage;
$linkend =~ s/[\(\)]//g;
$linkend =~ s/[ ,\.]/_/g; # this needs to match <refentry id=
$seq->prepend("<link linkend=\"$linkend\">");
$seq->append("</link>");
return $seq;
} else {
return $_;
}
}
# This method is called whenever an =item command is complete (in other
# words, we've seen its associated paragraph or know for certain that it
# doesn't have one). It gets the paragraph associated with the item as an
# argument. If that argument is empty, just output the item tag; if it
# contains a newline, output the item tag followed by the newline.
# Otherwise, see if there's enough room for us to output the item tag in the
# margin of the text or if we have to put it on a separate line.
sub item {
my $self = shift;
local $_ = shift;
my $tag = $$self{ITEM};
unless (defined $tag) {
carp "item called without tag";
return;
}
undef $$self{ITEM};
if ($$self{lopen}) {
if ($self->{ltype} == 1 || $self->{ltype} == 2) {
$self->{MARGIN} -= 2;
$self->output ("</listitem>\n");
} else {
$self->{MARGIN} -= 2;
$self->output ("</listitem>\n");
$self->{MARGIN} -= 2;
$self->output ("</varlistentry>\n");
}
}
my $output = $_;
$output =~ s/\n*$/\n/;
if (!defined $self->{ltype}) {
if ($tag =~ /[0-9]+\./) {
$self->{ltype} = 2;
$self->output ("<orderedlist>\n");
} elsif ($tag =~ /^\*$/) {
$self->{ltype} = 1;
$self->output ("<itemizedlist>\n");
} else {
$self->{ltype} = 0;
$self->output ("<variablelist>\n");
}
$self->{MARGIN} += 2;
}
if ($self->{ltype} == 1 || $self->{ltype} == 2) {
$self->output ("<listitem>\n");
$self->{MARGIN} += 2;
s/\n+$//;
$self->output ("<para>" . $_ . "<\/para>" . "\n\n");
} else {
$self->output ("<varlistentry>\n");
$self->{MARGIN} += 2;
$self->output ("<term>" . $tag . "</term>" . "\n");
$self->output ("<listitem>\n");
$self->{MARGIN} += 2;
s/\n+$//;
$self->output ("<para>" . $_ . "<\/para>" . "\n\n");
}
$$self{lopen} = 1;
}
# Output text to the output device.
sub output {
my $self = shift;
local $_ = shift;
s/^(\s*\S+)/(' ' x $$self{MARGIN}) . $1/gme;
print { $self->output_handle } $_;
}
1;
# pod2refentry -- Convert POD data to DocBook RefEntry
#
# Copyright 2005, 2006 by Chas Williams <chas@cmf.nrl.navy.mil>
#
# This program is free software; you may redistribute it and/or modify it
# under the same terms as Perl itself.
#
# based on:
#
# pod2text -- Convert POD data to formatted ASCII text.
#
# Copyright 1999, 2000, 2001 by Russ Allbery <rra@stanford.edu>
#
# This program is free software; you may redistribute it and/or modify it
# under the same terms as Perl itself.
package main;
require 5.004;
use Getopt::Long qw(GetOptions);
use Pod::Usage qw(pod2usage);
use strict;
# Silence -w warnings.
use vars qw($running_under_some_shell);
# Insert -- into @ARGV before any single dash argument to hide it from
# Getopt::Long; we want to interpret it as meaning stdin (which Pod::Parser
# does correctly).
my $stdin;
@ARGV = map { $_ eq '-' && !$stdin++ ? ('--', $_) : $_ } @ARGV;
# Parse our options.
my %options;
GetOptions (\%options, 'help|h', 'indent|i=i', 'section|s=i' ) or exit 1;
pod2usage (1) if $options{help};
# Initialize and run the formatter.
my $parser = Pod::RefEntry->new (%options);
$parser->parse_from_file (@ARGV);
|