home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / HTML2HTMLPS.pm < prev    next >
Encoding:
Perl POD Document  |  2002-03-21  |  729 b   |  49 lines

  1.  
  2. package DocSet::Doc::HTML2HTMLPS;
  3.  
  4. use strict;
  5. use warnings;
  6.  
  7. use DocSet::Util;
  8.  
  9. use vars qw(@ISA);
  10. require DocSet::Doc::HTML2HTML;
  11. @ISA = qw(DocSet::Doc::HTML2HTML);
  12.  
  13. use DocSet::Doc::Common ();
  14. *postprocess = \&DocSet::Doc::Common::postprocess_ps_pdf;
  15.  
  16. 1;
  17. __END__
  18.  
  19. =head1 NAME
  20.  
  21. C<DocSet::Doc::HTML2HTMLPS> - HTML source to PS (intermediate HTML) target converter
  22.  
  23. =head1 SYNOPSIS
  24.  
  25.  
  26.  
  27. =head1 DESCRIPTION
  28.  
  29. See C<DocSet::Doc::HTML2HTML>. This sub-class only extends the
  30. postprocess() method.
  31.  
  32. =head1 METHODS
  33.  
  34. For the rest of the super class methods see C<DocSet::Doc::HTML2HTML>.
  35.  
  36. =over
  37.  
  38. =item * postprocess()
  39.  
  40. Convert the generated HTML doc to PS and PDF.
  41.  
  42. =back
  43.  
  44. =head1 AUTHORS
  45.  
  46. Stas Bekman E<lt>stas (at) stason.orgE<gt>
  47.  
  48. =cut
  49.