diff options
author | Fred Drake <fdrake@acm.org> | 1998-07-24 20:34:59 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-07-24 20:34:59 (GMT) |
commit | 7313b034697d45eb147e4f944edb7679bc560899 (patch) | |
tree | 14c6cf137d8b7dbe41ae8479a2756946eb7d4b15 | |
parent | 246837d0f589a81edc9e0055321dc4fb10364634 (diff) | |
download | cpython-7313b034697d45eb147e4f944edb7679bc560899.zip cpython-7313b034697d45eb147e4f944edb7679bc560899.tar.gz cpython-7313b034697d45eb147e4f944edb7679bc560899.tar.bz2 |
My first Perl object. ;-)
SynopsisTable objects are used to store the table of module synopses for
a single chapter it the manual.
-rw-r--r-- | Doc/perl/SynopsisTable.pm | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/Doc/perl/SynopsisTable.pm b/Doc/perl/SynopsisTable.pm new file mode 100644 index 0000000..282a9dc --- /dev/null +++ b/Doc/perl/SynopsisTable.pm @@ -0,0 +1,72 @@ +package SynopsisTable; + +sub new{ + return bless {names=>'', info=>{}}; +} + +sub declare{ + my($self,$name,$key,$type) = @_; + if ($self->{names}) { + $self->{names} .= ",$name"; + } + else { + $self->{names} .= "$name"; + } + $self->{info}{$name} = "$key,$type,"; +} + +sub set_synopsis{ + my($self,$name,$synopsis) = @_; + my($key,$type,$unused) = split ',', $self->{info}{$name}, 3; + $self->{info}{$name} = "$key,$type,$synopsis"; +} + +sub get{ + my($self,$name) = @_; + return split /,/, $self->{info}{$name}, 3; +} + +sub show{ + my $self = shift; + my $name; + print "names: ", $self->{names}, "\n\n"; + foreach $name (split /,/, $self->{names}) { + my($key,$type,$synopsis) = $self->get($name); + print "$name($key) is $type: $synopsis\n"; + } +} + +sub tohtml{ + my $self = shift; + my $data = "<dl>\n"; + my $name; + foreach $name (split /,/, $self->{names}) { + my($key,$type,$synopsis) = $self->get($name); + $data .= "<dt><b><tt>$name</tt></b>\n<dd>$synopsis\n"; + } + $data .= "</dl>\n"; + $data; +} + + +package testSynopsisTable; + +sub test{ + # this little test is mostly to debug the stuff above, since this is + # my first Perl "object". + my $st = SynopsisTable->new(); + $st->declare("sample", "sample", "standard"); + $st->set_synopsis("sample", "This is a little synopsis...."); + $st->declare("copy_reg", "copyreg", "standard"); + $st->set_synopsis("copy_reg", "pickle support stuff"); + $st->show(); + + print "\n\n"; + + my $st2 = SynopsisTable->new(); + $st2->declare("st2module", "st2module", "built-in"); + $st2->set_synopsis("st2module", "silly little synopsis"); + $st2->show(); +} + +1; # This must be the last line -- Perl is bogus! |