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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
# This code is a part of Slash, and is released under the GPL.
# Copyright 1997-2001 by Open Source Development Network. See README
# and COPYING for more information, or see http://slashcode.com/.
# $Id: Utility.pm,v 1.2.2.13 2001/05/23 16:32:36 pudge Exp $
package Slash::Utility;
=head1 NAME
Slash::Utility - Generic Perl routines for Slash
=head1 SYNOPSIS
use Slash::Utility;
=head1 DESCRIPTION
Slash::Utility comprises methods that are safe
to call both within and without Apache.
=head1 FUNCTIONS
Unless otherwise noted, they are publically available functions.
=cut
use strict;
use Slash::Utility::Access;
use Slash::Utility::Anchor;
use Slash::Utility::Data;
use Slash::Utility::Display;
use Slash::Utility::Environment;
use Slash::Utility::System;
use base 'Exporter';
use vars qw($VERSION @EXPORT);
($VERSION) = ' $Revision: 1.2.2.13 $ ' =~ /\$Revision:\s+([^\s]+)/;
@EXPORT = (
@Slash::Utility::Access::EXPORT,
@Slash::Utility::Anchor::EXPORT,
@Slash::Utility::Data::EXPORT,
@Slash::Utility::Display::EXPORT,
@Slash::Utility::Environment::EXPORT,
@Slash::Utility::System::EXPORT,
);
# LEELA: We're going to deliver this crate like professionals.
# FRY: Aww, can't we just dump it in the sewer and say we delivered it?
# BENDER: Too much work! I say we burn it, then *say* we dumped it in the sewer!
1;
__END__
=head1 SEE ALSO
Slash(3).
=cut
|