Help for this page

Select Code to Download


  1. or download this
    sub new {
        my ($class) = @_;
    ...
        $self->{_html} = $html if defined($html);
        return ( $self->{_html} );
    }
    
  2. or download this
        my $template = eval { new Template(); } or die ($@);
        $template->header($html, $header, $time);
    
  3. or download this
    sub header {
        my $html     = shift;
        my $header     = shift;
        my $time    = shift;
        open (OUT,">$html") or die ("No html file: $!\n");