aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2010-03-03 22:44:53 -0800
committerRuss Allbery <rra@stanford.edu>2010-03-03 22:44:53 -0800
commitacc73c988b845448230942de0f07263546763420 (patch)
tree86b06a59919870a8c7a0ab4beb31d7363d826163
parente9fcc6b23337b206e4b2ff810e7ecf5258107604 (diff)
Use L<> links instead of man page references for modules
Do this only in the main text, not in the SEE ALSO section, since the latter is more for conventional man pages. This will produce better results for some POD to HTML converters (although not mine, yet).
-rw-r--r--perl/Wallet/ACL/NetDB.pm4
-rw-r--r--perl/Wallet/Admin.pm4
-rw-r--r--perl/Wallet/Config.pm12
-rw-r--r--perl/Wallet/Database.pm4
-rw-r--r--perl/Wallet/Kadmin/Heimdal.pm4
-rw-r--r--perl/Wallet/Kadmin/MIT.pm4
-rw-r--r--perl/Wallet/Object/File.pm4
-rw-r--r--perl/Wallet/Object/Keytab.pm6
-rw-r--r--perl/Wallet/Report.pm4
-rw-r--r--perl/Wallet/Server.pm2
10 files changed, 24 insertions, 24 deletions
diff --git a/perl/Wallet/ACL/NetDB.pm b/perl/Wallet/ACL/NetDB.pm
index 2096ba8..0fb5a2c 100644
--- a/perl/Wallet/ACL/NetDB.pm
+++ b/perl/Wallet/ACL/NetDB.pm
@@ -23,7 +23,7 @@ use Wallet::Config;
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.04';
+$VERSION = '0.05';
##############################################################################
# Interface
@@ -163,7 +163,7 @@ only if that principal has one of the roles user, admin, or team for that
node.
To use this object, several configuration parameters must be set. See
-Wallet::Config(3) for details on those configuration parameters and
+L<Wallet::Config> for details on those configuration parameters and
information about how to set wallet configuration.
=head1 METHODS
diff --git a/perl/Wallet/Admin.pm b/perl/Wallet/Admin.pm
index e835713..f208e13 100644
--- a/perl/Wallet/Admin.pm
+++ b/perl/Wallet/Admin.pm
@@ -183,8 +183,8 @@ its actions.
To use this object, several configuration variables must be set (at least
the database configuration). For information on those variables and how
-to set them, see Wallet::Config(3). For more information on the normal
-user interface to the wallet server, see Wallet::Server(3).
+to set them, see L<Wallet::Config>. For more information on the normal
+user interface to the wallet server, see L<Wallet::Server>.
=head1 CLASS METHODS
diff --git a/perl/Wallet/Config.pm b/perl/Wallet/Config.pm
index 2991361..c86fb80 100644
--- a/perl/Wallet/Config.pm
+++ b/perl/Wallet/Config.pm
@@ -90,7 +90,7 @@ Sets the Perl database driver to use for the wallet database. Common
values would be C<SQLite> or C<MySQL>. Less common values would be
C<Oracle>, C<Sybase>, or C<ODBC>. The appropriate DBD::* Perl module for
the chosen driver must be installed and will be dynamically loaded by the
-wallet. For more information, see DBI(3).
+wallet. For more information, see L<DBI>.
This variable must be set.
@@ -104,7 +104,7 @@ Sets the remaining contents for the DBI DSN (everything after the driver).
Using this variable provides full control over the connect string passed
to DBI. When using SQLite, set this variable to the path to the SQLite
database. If this variable is set, DB_NAME, DB_HOST, and DB_PORT are
-ignored. For more information, see DBI(3) and the documentation for the
+ignored. For more information, see L<DBI> and the documentation for the
database driver you're using.
Either DB_INFO or DB_NAME must be set. If you don't need to pass any
@@ -119,7 +119,7 @@ our $DB_INFO;
If DB_INFO is not set, specifies the database name. The third part of the
DBI connect string will be set to C<database=DB_NAME>, possibly with a
host and port appended if DB_HOST and DB_PORT are set. For more
-information, see DBI(3) and the documentation for the database driver
+information, see L<DBI> and the documentation for the database driver
you're using.
Either DB_INFO or DB_NAME must be set.
@@ -131,7 +131,7 @@ our $DB_NAME;
=item DB_HOST
If DB_INFO is not set, specifies the database host. C<;host=DB_HOST> will
-be appended to the DBI connect string. For more information, see DBI(3)
+be appended to the DBI connect string. For more information, see L<DBI>
and the documentation for the database driver you're using.
=cut
@@ -142,7 +142,7 @@ our $DB_HOST;
If DB_PORT is not set, specifies the database port. C<;port=DB_PORT> will
be appended to the DBI connect string. If this variable is set, DB_HOST
-should also be set. For more information, see DBI(3) and the
+should also be set. For more information, see L<DBI> and the
documentation for the database driver you're using.
=cut
@@ -179,7 +179,7 @@ C<file> object type (the Wallet::Object::File class).
=item FILE_BUCKET
The directory into which to store file objects. File objects will be
-stored in subdirectories of this directory. See Wallet::Object::File(3)
+stored in subdirectories of this directory. See L<Wallet::Object::File>
for the full details of the naming scheme. This directory must be
writable by the wallet server and the wallet server must be able to create
subdirectories of it.
diff --git a/perl/Wallet/Database.pm b/perl/Wallet/Database.pm
index 7b3474a..7daab9f 100644
--- a/perl/Wallet/Database.pm
+++ b/perl/Wallet/Database.pm
@@ -39,7 +39,7 @@ use Wallet::Config;
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.02';
+$VERSION = '0.03';
##############################################################################
# Core overrides
@@ -101,7 +101,7 @@ methods should work the same as in DBI and Wallet::Database objects should
be usable exactly as if they were DBI objects.
connect() will obtain the database connection information from the wallet
-configuration; see Wallet::Config(3) for more details. It will also
+configuration; see L<Wallet::Config> for more details. It will also
automatically set the RaiseError attribute to true and the PrintError and
AutoCommit attributes to false, matching the assumptions made by the
wallet database code.
diff --git a/perl/Wallet/Kadmin/Heimdal.pm b/perl/Wallet/Kadmin/Heimdal.pm
index d1eecda..658ac04 100644
--- a/perl/Wallet/Kadmin/Heimdal.pm
+++ b/perl/Wallet/Kadmin/Heimdal.pm
@@ -24,7 +24,7 @@ use Wallet::Kadmin ();
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.03';
+$VERSION = '0.04';
##############################################################################
# Utility functions
@@ -254,7 +254,7 @@ Wallet::Kadmin::Heimdal - Wallet Kerberos administration API for Heimdal
Wallet::Kadmin::Heimdal implements the Wallet::Kadmin API for Heimdal,
providing an interface to create and delete principals and create keytabs.
-It provides the API documented in Wallet::Kadmin(3) for a Heimdal KDC.
+It provides the API documented in L<Wallet::Kadmin> for a Heimdal KDC.
To use this class, several configuration parameters must be set. See
L<Wallet::Config/"KEYTAB OBJECT CONFIGURATION"> for details.
diff --git a/perl/Wallet/Kadmin/MIT.pm b/perl/Wallet/Kadmin/MIT.pm
index 434e93d..fc4d271 100644
--- a/perl/Wallet/Kadmin/MIT.pm
+++ b/perl/Wallet/Kadmin/MIT.pm
@@ -25,7 +25,7 @@ use Wallet::Kadmin ();
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.02';
+$VERSION = '0.03';
##############################################################################
# kadmin Interaction
@@ -275,7 +275,7 @@ Wallet::Kadmin::MIT - Wallet Kerberos administration API for MIT
Wallet::Kadmin::MIT implements the Wallet::Kadmin API for MIT Kerberos,
providing an interface to create and delete principals and create keytabs.
-It provides the API documented in Wallet::Kadmin(3) for an MIT Kerberos
+It provides the API documented in L<Wallet::Kadmin> for an MIT Kerberos
KDC.
MIT Kerberos does not provide any method via the kadmin network protocol
diff --git a/perl/Wallet/Object/File.pm b/perl/Wallet/Object/File.pm
index c655b44..47c8ac2 100644
--- a/perl/Wallet/Object/File.pm
+++ b/perl/Wallet/Object/File.pm
@@ -24,7 +24,7 @@ use Wallet::Object::Base;
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.02';
+$VERSION = '0.03';
##############################################################################
# File naming
@@ -159,7 +159,7 @@ it when the file object is deleted. A file object must be stored before
it can be retrieved with get.
To use this object, the configuration option specifying where on the
-wallet server to store file objects must be set. See Wallet::Config(3)
+wallet server to store file objects must be set. See L<Wallet::Config>
for details on this configuration parameter and information about how to
set wallet configuration.
diff --git a/perl/Wallet/Object/Keytab.pm b/perl/Wallet/Object/Keytab.pm
index edb26b3..b7c2805 100644
--- a/perl/Wallet/Object/Keytab.pm
+++ b/perl/Wallet/Object/Keytab.pm
@@ -25,7 +25,7 @@ use Wallet::Kadmin;
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.08';
+$VERSION = '0.09';
##############################################################################
# Enctype restriction
@@ -379,7 +379,7 @@ This implementation generates a new random key (and hence invalidates all
existing keytabs) each time the keytab is retrieved with the get() method.
To use this object, several configuration parameters must be set. See
-Wallet::Config(3) for details on those configuration parameters and
+L<Wallet::Config> for details on those configuration parameters and
information about how to set wallet configuration.
=head1 METHODS
@@ -456,7 +456,7 @@ configuration. If the principal already exists, create() still succeeds
wallet). Otherwise, if the Kerberos principal could not be created,
create() fails. The principal is created with the randomized keys. NAME
must not contain the realm; instead, the KEYTAB_REALM configuration
-variable should be set. See Wallet::Config(3) for more information.
+variable should be set. See L<Wallet::Config> for more information.
If create() fails, it throws an exception.
diff --git a/perl/Wallet/Report.pm b/perl/Wallet/Report.pm
index ff4fa8b..462cd6f 100644
--- a/perl/Wallet/Report.pm
+++ b/perl/Wallet/Report.pm
@@ -360,8 +360,8 @@ tuples identifying objects, ACLs, or ACL entries.
To use this object, several configuration variables must be set (at least
the database configuration). For information on those variables and how
-to set them, see Wallet::Config(3). For more information on the normal
-user interface to the wallet server, see Wallet::Server(3).
+to set them, see L<Wallet::Config>. For more information on the normal
+user interface to the wallet server, see L<Wallet::Server>.
=head1 CLASS METHODS
diff --git a/perl/Wallet/Server.pm b/perl/Wallet/Server.pm
index dd596c4..5f36c28 100644
--- a/perl/Wallet/Server.pm
+++ b/perl/Wallet/Server.pm
@@ -739,7 +739,7 @@ object.
To use this object, several configuration variables must be set (at least
the database configuration). For information on those variables and how
-to set them, see Wallet::Config(3).
+to set them, see L<Wallet::Config>.
=head1 CLASS METHODS