Html.pm
上传用户:qdrechuli
上传日期:2022-08-01
资源大小:917k
文件大小:1k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. package Jpc::Html;
  2. use strict;
  3. use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  4. require Exporter;
  5. @ISA = qw(Exporter AutoLoader);
  6. # Items to export into callers namespace by default. Note: do not export
  7. # names by default without a very good reason. Use EXPORT_OK instead.
  8. # Do not simply export all your public functions/methods/constants.
  9. @EXPORT = qw(Document
  10. );
  11. $VERSION = '0.01';
  12. # Preloaded methods go here.
  13. sub Document
  14. {
  15. print "Content-type: text/htmln";
  16. print "n";
  17. print '<HTML>',"n";
  18.   print '<HEAD>',"n";
  19.    print '<TITLE>',$_[0],'</TITLE>',"n";
  20.   print '</HEAD>',"n";
  21. print '<BODY BGCOLOR="#FFFFFF" BACKGROUND="/NetAdmin/images/fond2.jpg">',"n";
  22. }
  23. # Autoload methods go after =cut, and are processed by the autosplit program.
  24. 1;
  25. __END__
  26. # Below is the stub of documentation for your module. You better edit it!
  27. =head1 NAME
  28. Jpc::Html - Perl extension for blah blah blah
  29. =head1 SYNOPSIS
  30.   use Jpc::Html;
  31.   blah blah blah
  32. =head1 DESCRIPTION
  33. Stub documentation for Jpc::Html was created by h2xs. It looks like the
  34. author of the extension was negligent enough to leave the stub
  35. unedited.
  36. Blah blah blah.
  37. =head1 AUTHOR
  38. A. U. Thor, a.u.thor@a.galaxy.far.far.away
  39. =head1 SEE ALSO
  40. perl(1).
  41. =cut