# common subroutines for MyLibrary administration # Eric Lease Morgan sub footer { # get the version number my $version = MyLibrary->version; # return a simple footer return <

Managed with MyLibrary version $version

EOF } sub popup { my %items = shift; my $rv = "'; return $rv; } sub escape { my $text = shift; $text =~ s/&/&/g; $text =~ s//>/g; return($text); } # return true or die 1;