summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-10-28 09:24:03 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-10-28 09:24:03 +0000
commit2f0ad7212cb62c079658cf0a8bacaf3579824679 (patch)
treeec8ec925cd109c54f41ee78f854c0904eadebab3
parentef0e88fb4850aaf382cdbd020ae62600e94ff116 (diff)
downloadperl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.tar
perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.tar.gz
perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.tar.bz2
perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.tar.xz
perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.zip
Fix module name in docs
-rw-r--r--lib/MDV/Distribconf.pm16
-rw-r--r--lib/MDV/Distribconf/Build.pm8
2 files changed, 12 insertions, 12 deletions
diff --git a/lib/MDV/Distribconf.pm b/lib/MDV/Distribconf.pm
index e94a852..d43a62c 100644
--- a/lib/MDV/Distribconf.pm
+++ b/lib/MDV/Distribconf.pm
@@ -6,13 +6,13 @@ our $VERSION = '1.00';
=head1 NAME
-Distribconf - perl module to get config from a Mandriva Linux distribution tree
+MDV::Distribconf - perl module to get config from a Mandriva Linux distribution tree
=head1 SYNOPSIS
- use Distribconf;
+ use MDV::Distribconf;
- my $d = Distribconf->new("/path/to/the/distribution/root");
+ my $d = MDV::Distribconf->new("/path/to/the/distribution/root");
$d->load()
or die "This doesn't seem to be a distribution tree\n";
@@ -23,7 +23,7 @@ Distribconf - perl module to get config from a Mandriva Linux distribution tree
=head1 DESCRIPTION
-Distribconf is a module to get/write the configuration of a Mandriva Linux
+MDV::Distribconf is a module to get/write the configuration of a Mandriva Linux
distribution tree. This configuration is stored in a file called F<media.cfg>,
aimed at replacing the old-style F<hdlists> file.
@@ -102,13 +102,13 @@ F<media.cfg>, can't be owerwritten, and is only used internally.
=item B<mediadir>
The default path relative to the 'root' path where media are
-located. Distribconf is supposed to configure this automatically
+located. MDV::Distribconf is supposed to configure this automatically
to C<Mandrake> or to C<media>, depending on the OS version.
=item B<infodir>
The default path relative to the 'root' path where distrib metadata
-are located. Distribconf is supposed to configure this automatically
+are located. MDV::Distribconf is supposed to configure this automatically
to C<Mandrake/base> or to C<media/media_info>, depending on the OS
version.
@@ -158,9 +158,9 @@ use strict;
use warnings;
use Config::IniFiles;
-=head2 Distribconf->new($root)
+=head2 MDV::Distribconf->new($root)
-Returns a new Distribconf object, C<$root> being the top level
+Returns a new MDV::Distribconf object, C<$root> being the top level
directory of the tree.
=cut
diff --git a/lib/MDV/Distribconf/Build.pm b/lib/MDV/Distribconf/Build.pm
index c5eda27..bac09ed 100644
--- a/lib/MDV/Distribconf/Build.pm
+++ b/lib/MDV/Distribconf/Build.pm
@@ -20,7 +20,7 @@ package MDV::Distribconf::Build;
=head1 NAME
-Distribconf::Build - Extension to Distribconf to build configuration
+MDV::Distribconf::Build - Subclass to MDV::Distribconf to build configuration
=head1 METHODS
@@ -35,9 +35,9 @@ use MDV::Distribconf;
our @ISA = qw(MDV::Distribconf);
our $VERSION = $MDV::Distribconf::VERSION;
-=item Distribconf::Build->new($root_of_distrib)
+=item MDV::Distribconf::Build->new($root_of_distrib)
-Returns a new Distribconf::Build object.
+Returns a new MDV::Distribconf::Build object.
=cut
@@ -229,6 +229,6 @@ __END__
=head1 SEE ALSO
-L<Distribconf>
+L<MDV::Distribconf>
=cut