/usr/share/perl5/Pod/PseudoPod/DocBook.pm is in libpod-pseudopod-perl 0.18-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Pod::PseudoPod::DocBook;
use strict;
use vars qw( $VERSION );
$VERSION = '0.18';
use Carp ();
use base qw( Pod::PseudoPod );
use HTML::Entities 'encode_entities';
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sub new {
my $self = shift;
my $new = $self->SUPER::new(@_);
$new->{'output_fh'} ||= *STDOUT{IO};
$new->accept_targets( 'docbook', 'DocBook' );
$new->accept_targets_as_text( qw(blockquote caution
epigraph example figure important literal note
production screen sidebar table tip warning) );
$new->nbsp_for_S(1);
# $new->nix_Z_codes(1);
$new->codes_in_verbatim(1);
$new->chapter_type('chapter'); # default chapter type
$new->{'scratch'} = '';
$new->{'sections'} = (); # a stack for tracking section nesting
$new->{'sectionnum'} = (); # a list for tracking section number
$new->{'sectionname'} = ['chapter','sect1', 'sect2', 'sect3', 'sect4'];
return $new;
}
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sub handle_text {
my ($self) = @_;
# escape special characters in DocBook (<, >, &, etc)
my $text = encode_entities( $_[1] );
if ($self->{'in_filename'}) {
$self->{'figure_file'} = $text;
} else {
$self->{'scratch'} .= $text;
}
}
sub start_Para { $_[0]{'scratch'} = '<para>' unless $_[0]{'in_figure'} }
sub start_Verbatim {
$_[0]{'scratch'} = "<programlisting>\n" unless ($_[0]{'in_screen'});
$_[0]{'in_verbatim'} = 1;
}
sub start_head0 { $_[0]->set_section(0); }
sub start_head1 { $_[0]->set_section(1); }
sub start_head2 { $_[0]->set_section(2); }
sub start_head3 { $_[0]->set_section(3); }
sub start_head4 { $_[0]->set_section(4); }
sub set_section {
my ($self, $level) = @_;
$self->{'scratch'} = $self->close_sections($level);
$self->{'sectionnum'}[$level]++ if ($level > 0);
my $id = $self->chapter_id();
if ($level > 0) {
my @sectionnum = @{$self->{'sectionnum'}};
$id .= '-SECT-';
$id .= join '.', @sectionnum[1 .. $#sectionnum];
}
$self->{'scratch'} .= '<' . $self->{'sectionname'}[$level];
$self->{'scratch'} .= ' id="' . $id . '">';
$self->{'scratch'} .= "\n<title>";
push @{$self->{'sections'}}, $level;
}
sub close_sections {
my ($self, $level) = @_;
my $scratch = '';
my $sections = $self->{'sections'};
# Are we starting a new section that isn't a subsection?
while (defined $sections
&& @$sections > 0
&& $level <= $sections->[-1]) {
my $closing = pop @$sections;
delete $self->{'sectionnum'}[$closing + 1];
$scratch .= "</" . $self->{'sectionname'}[$closing] . ">\n";
}
return $scratch;
}
sub start_over_bullet { $_[0]{'scratch'} = '<itemizedlist>'; $_[0]->emit() }
sub start_over_block { $_[0]{'scratch'} = '<itemizedlist>'; $_[0]->emit() }
sub start_over_number { $_[0]{'scratch'} = '<orderedlist>'; $_[0]->emit() }
sub start_over_text { $_[0]{'scratch'} = '<variablelist>'; $_[0]->emit() }
sub end_over_bullet { $_[0]{'scratch'} .= '</itemizedlist>'; $_[0]->emit() }
sub end_over_block { $_[0]{'scratch'} .= '</itemizedlist>'; $_[0]->emit() }
sub end_over_number {
$_[0]{'scratch'} .= "</para></listitem>\n" if ($_[0]{'in_numlist'});
$_[0]{'scratch'} .= '</orderedlist>';
$_[0]{'in_numlist'} = 0;
$_[0]->emit();
}
sub end_over_text {
$_[0]{'scratch'} .= "</listitem>\n</varlistentry>\n" if ($_[0]{'in_varlist'});
$_[0]{'scratch'} .= '</variablelist>';
$_[0]{'in_varlist'} = 0;
$_[0]->emit();
}
sub start_item_bullet { $_[0]{'scratch'} = '<listitem><para>' }
sub end_item_bullet { $_[0]{'scratch'} .= '</para></listitem>'; $_[0]->emit() }
sub start_item_number {
$_[0]{'scratch'} .= "</para></listitem>\n" if ($_[0]{'in_numlist'});
$_[0]{'scratch'} .= "<listitem><para>";
$_[0]{'in_numlist'} = 1;
}
sub end_item_number {
$_[0]->emit()
}
sub start_item_text {
$_[0]{'scratch'} .= "</listitem>\n</varlistentry>\n" if ($_[0]{'in_varlist'});
$_[0]{'scratch'} .= "<varlistentry>\n<term>";
$_[0]{'in_varlist'} = 1;
}
sub end_item_text {
$_[0]{'scratch'} .= "</term>\n<listitem>";
$_[0]->emit()
}
# . . . . . Now the actual formatters:
sub end_Para {
unless ($_[0]{'in_figure'}) {
$_[0]{'scratch'} .= '</para>';
$_[0]->emit();
}
}
sub end_Verbatim {
$_[0]{'scratch'} .= "\n</programlisting>" unless ($_[0]{'in_screen'});
$_[0]{'in_verbatim'} = 0;
$_[0]->emit();
}
sub end_head0 { $_[0]{'scratch'} .= '</title>'; $_[0]->emit() }
sub end_head1 { $_[0]{'scratch'} .= '</title>'; $_[0]->emit() }
sub end_head2 { $_[0]{'scratch'} .= '</title>'; $_[0]->emit() }
sub end_head3 { $_[0]{'scratch'} .= '</title>'; $_[0]->emit() }
sub end_head4 { $_[0]{'scratch'} .= '</title>'; $_[0]->emit() }
sub start_sidebar {
my ($self, $flags) = @_;
$self->{'scratch'} = '<sidebar>';
if ($flags->{'title'}) {
# small hack for encoded entities in sidebar titles
$flags->{'title'} =~ s/E<(\w+)>/&$1;/g;
$self->{'scratch'} .= "\n<title>" . $flags->{'title'} . "</title>";
}
$self->emit();
}
sub end_sidebar { $_[0]{'scratch'} .= '</sidebar>'; $_[0]->emit() }
sub start_figure {
my ($self, $flags) = @_;
$self->{'in_figure'} = 1;
$self->{'figure_file'} = '';
# $self->{'scratch'} .= '<figure>';
# $self->{'scratch'} .= '<title>' . $flags->{'title'} . '</title>' if $flags->{'title'};
}
sub end_figure {
my ($self, $flags) = @_;
if ($self->{'figure_file'}) {
my $filepath = $self->{'figure_file'};
my $fileformat = '';
if ($filepath =~ m/\.(\w+$)/) {
$fileformat = uc($1);
}
$self->{'scratch'} .= <<"XMLBLOCK";
<mediaobject>
<imageobject role="print">
<imagedata fileref="$filepath" format="$fileformat"/>
</imageobject>
<imageobject role="web">
<imagedata fileref="$filepath" format="$fileformat"/>
</imageobject>
</mediaobject>
XMLBLOCK
# $self->{'scratch'} .= "</figure>";
$self->emit();
}
$self->{'in_figure'} = 0;
$self->{'figure_file'} = '';
}
# This handles =begin and =for blocks of all kinds.
sub start_for {
my ($self, $flags) = @_;
my $target = $flags->{'target'};
if ($target eq "production") {
$self->{'scratch'} .= "<important><para>Note for Production:</para>";
} else {
$self->{'scratch'} .= "<$target>";
}
$self->{"in_$target"} = 1;
$self->emit();
}
sub end_for {
my ($self, $flags) = @_;
my $target = $flags->{'target'};
if ($target eq "production") {
$self->{'scratch'} .= "</important>";
} else {
$self->{'scratch'} .= "</$target>";
}
$self->{"in_$target"} = 0;
$self->emit();
}
sub start_table {
my ($self, $flags) = @_;
my $id = $self->chapter_id() . '-TABLE-'. $self->table_next();
$self->{'scratch'} .= '<table id="'.$id.'" label="" frame="topbot" ';
$self->{'scratch'} .= 'colsep="0" rowsep="0">';
if ($flags->{'title'}) {
$self->{'scratch'} .= "\n<title>" . $flags->{'title'} . '</title>';
}
$self->{'scratch'} .= "\n" . '<tgroup cols="">';
$self->emit();
}
sub table_next { ++$_[0]{'table_count'} }
sub end_table { $_[0]{'scratch'} .= '</tbody></tgroup></table>'; $_[0]->emit() }
sub start_headrow { $_[0]{'scratch'} .= "<thead>\n"; $_[0]{'headrow'} = 1 }
sub start_bodyrows {
my ($self, $flags) = @_;
$self->{'scratch'} .= "</thead>\n" if ($self->{'headrow'});
$self->{'headrow'} = 0;
$self->{'scratch'} .= "<tbody>\n";
}
sub start_row {$_[0]{'scratch'} .= "<row>\n" }
sub end_row { $_[0]{'scratch'} .= '</row>'; $_[0]->emit() }
sub start_cell {
$_[0]{'scratch'} .= '<entry align="left"><para>';
}
sub end_cell {
my $self = shift;
$self->{'scratch'} .= '</para></entry>';
$self->emit();
}
sub start_Document {
my ($self) = @_;
}
sub end_Document {
my ($self) = @_;
$self->{'scratch'} .= $self->close_sections(-1);
$self->emit();
}
# Handling entity tags
sub start_L { $_[0]{'scratch'} .= '<xref linkend="' }
sub end_L { $_[0]{'scratch'} .= '"/>' }
sub start_A { my $self = shift @_; $self->start_L(@_) }
sub end_A { my $self = shift @_; $self->end_L(@_) }
sub start_B { $_[0]{'scratch'} .= '<emphasis role="strong">' }
sub end_B { $_[0]{'scratch'} .= '</emphasis>' }
sub start_C { $_[0]{'scratch'} .= '<literal>' }
sub end_C { $_[0]{'scratch'} .= '</literal>' }
sub start_E { $_[0]{'scratch'} .= '&' }
sub end_E { $_[0]{'scratch'} .= ';' }
sub start_F {
my ($self) = @_;
if ($self->{'in_figure'}) {
$self->{'in_filename'} = 1;
} else {
$self->{'scratch'} .= '<filename>';
}
}
sub end_F {
my ($self) = @_;
if ($self->{'in_figure'}) {
$self->{'in_filename'} = 0;
} else {
$self->{'scratch'} .= '</filename>';
}
}
sub start_G { $_[0]{'scratch'} .= '<superscript>' }
sub end_G { $_[0]{'scratch'} .= '</superscript>' }
sub start_H { $_[0]{'scratch'} .= '<subscript>' }
sub end_H { $_[0]{'scratch'} .= '</subscript>' }
sub start_I { $_[0]{'scratch'} .= '<emphasis>' }
sub end_I { $_[0]{'scratch'} .= '</emphasis>' }
sub start_N {
my ($self) = @_;
my $id = $self->chapter_id() . '-FNOTE-'. $self->footnote_next();
$self->{'scratch'} .= '<footnote id="'.$id.'" label="*"><para>';
}
sub end_N {
my ($self) = @_;
$self->{'scratch'} .= '</para></footnote>';
}
sub footnote_next { ++$_[0]{'footnote_count'} }
sub start_M { $_[0]{'scratch'} .= '<firstterm>' }
sub end_M { $_[0]{'scratch'} .= '</firstterm>' }
sub start_R { $_[0]{'scratch'} .= '<replaceable>' }
sub end_R { $_[0]{'scratch'} .= '</replaceable>' }
sub start_U { $_[0]{'scratch'} .= '<ulink url="' }
sub end_U { $_[0]{'scratch'} .= '"/>' }
sub start_X {
my ($self) = @_;
my $id = $self->chapter_id() . '-IDX-' . $self->index_next();
$self->{'scratch'} .= '<indexterm id="'.$id.'"><primary>';
}
sub end_X { $_[0]{'scratch'} .= '</primary></indexterm>' }
sub index_next {
my ($self) = @_;
my $idx = ++$self->{'index_count'};
return sprintf("%04d", $idx);
}
sub start_Z { $_[0]{'scratch'} .= '<anchor id="' }
sub end_Z { $_[0]{'scratch'} .= '"/>' }
sub emit {
my($self) = @_;
if ($self->{'scratch'}) {
my $out = $self->{'scratch'} . "\n";
print {$self->{'output_fh'}} $out;
$self->{'scratch'} = '';
}
return;
}
sub book_id { $_[0]{'book_id'} = $_[1] }
sub index_count {
$_[0]{'index_count'} = $_[1] if ($_[1]);
return $_[0]{'index_count'};
}
sub chapter_num {
my ($self, $number) = @_;
$self->{'chapter_num'} = $number;
$self->{'sectionnum'}[0] = $number;
}
sub chapter_type {
my ($self, $type) = @_;
$self->{'chapter_type'} = $type;
$self->{'sectionname'}[0] = $type;
}
sub chapter_id {
my ($self) = @_;
unless ($self->{'chapter_id'}) {
my $id;
$id = $self->{'book_id'} . '-' if ($self->{'book_id'});
if ($self->{'chapter_type'} eq 'preface') {
$id .= 'PREFACE';
$id .= '-' . $self->{'chapter_num'} if ($self->{'chapter_num'});
} elsif ($self->{'chapter_type'} eq 'colophon') {
$id .= 'COLOPHON';
} elsif ($self->{'chapter_type'} eq 'appendix') {
$id .= 'APP-' . $self->{'chapter_num'};
} elsif ($self->{'chapter_type'} eq 'chapter') {
$id .= 'CHP-' . $self->{'chapter_num'};
}
$self->{'chapter_id'} = $id;
}
return $self->{'chapter_id'};
}
# bypass built-in E<> handling to preserve entity encoding
sub _treat_Es {}
1;
__END__
=head1 NAME
Pod::PseudoPod::DocBook -- format PseudoPod as DocBook
=head1 SYNOPSIS
use Pod::PseudoPod::DocBook;
my $parser = Pod::PseudoPod::DocBook->new();
...
$parser->parse_file('path/to/file.pod');
Before sending in your manuscript, check that the formatter produced a
well-formed DocBook file with I<xmllint>:
$ xmllint --noout --valid book.xml
=head1 DESCRIPTION
This class is a formatter that takes PseudoPod and renders it as
DocBook 4.4.
This is a subclass of L<Pod::PseudoPod> and inherits all its methods.
=head1 SEE ALSO
L<Pod::PseudoPod>, L<Pod::Simple>
=head1 COPYRIGHT
Copyright (c) 2003-2006 Allison Randal. All rights reserved.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. The full text of the license
can be found in the LICENSE file included with this module.
This library 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.
=head1 AUTHOR
Allison Randal <allison@perl.org>
=cut
|