File: Html.pm

package info (click to toggle)
debbugs 2.6.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,800 kB
  • sloc: perl: 19,270; makefile: 81; sh: 75
file content (25 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (5)
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
# TODO: Implement 'stale' checks, so that there is no need to explicitly
#	write out a record, before closing.

package Debbugs::DBase::Log::Html;

use strict;

BEGIN {
	Debbugs::DBase::Log::Register("\6", "Html", "Debbugs::DBase::Log::Html");
}


sub new
{
    my $self  = {};
    $self->{TYPE}	= "Html";
    $self->{MSG}	= shift;
    bless ($self);
    return $self;
}

END { }       # module clean-up code here (global destructor)


1;