summaryrefslogtreecommitdiffstats
path: root/MDK
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-08-03 20:35:52 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-08-03 20:35:52 +0000
commit06ea945b48c180796782dd7e59895a5e0f9b9c0a (patch)
treee49470cb247ff17bf50537b08cbc130bc8ad49ca /MDK
parent73c066a92e42204f41144965f7527e09c1a89081 (diff)
downloadperl_checker-06ea945b48c180796782dd7e59895a5e0f9b9c0a.tar
perl_checker-06ea945b48c180796782dd7e59895a5e0f9b9c0a.tar.gz
perl_checker-06ea945b48c180796782dd7e59895a5e0f9b9c0a.tar.bz2
perl_checker-06ea945b48c180796782dd7e59895a5e0f9b9c0a.tar.xz
perl_checker-06ea945b48c180796782dd7e59895a5e0f9b9c0a.zip
generate the doc in Common.pm from Common/*.pm
Diffstat (limited to 'MDK')
-rw-r--r--MDK/Common.pm60
1 files changed, 0 insertions, 60 deletions
diff --git a/MDK/Common.pm b/MDK/Common.pm
deleted file mode 100644
index 5819b01..0000000
--- a/MDK/Common.pm
+++ /dev/null
@@ -1,60 +0,0 @@
-=head1 NAME
-
-MDK::Common - miscellaneous functions
-
-=head1 SYNOPSIS
-
- use MDK::Common;
- # exports all functions, equivalent to
-
- use MDK::Common::DataStructure qw(:all);
- use MDK::Common::File qw(:all);
- use MDK::Common::Func qw(:all);
- use MDK::Common::Math qw(:all);
- use MDK::Common::String qw(:all);
- use MDK::Common::System qw(:all);
- use MDK::Common::Various qw(:all);
-
-=head1 DESCRIPTION
-
-C<MDK::Common> is a collection of packages containing various simple functions:
-L<MDK::Common::DataStructure>,
-L<MDK::Common::File>,
-L<MDK::Common::Func>,
-L<MDK::Common::Globals>,
-L<MDK::Common::Math>,
-L<MDK::Common::String>,
-L<MDK::Common::System>,
-L<MDK::Common::Various>.
-
-=head1 EXPORTS
-
-C<MDK::Common> exports the functions in the package mentioned above. See their
-manpage for more.
-
-=head1 COPYRIGHT
-
-Copyright (c) 2001 MandrakeSoft <pixel@mandrakesoft.com>. All rights reserved.
-This program is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
-
-=cut
-
-package MDK::Common;
-
-use MDK::Common::DataStructure qw(:all);
-use MDK::Common::File qw(:all);
-use MDK::Common::Func qw(:all);
-use MDK::Common::Math qw(:all);
-use MDK::Common::String qw(:all);
-use MDK::Common::System qw(:all);
-use MDK::Common::Various qw(:all);
-
-use vars qw(@ISA @EXPORT $VERSION); #);
-@ISA = qw(Exporter);
-# perl_checker: RE-EXPORT-ALL
-@EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::;
-
-$VERSION = "1.0";
-
-1;