aboutsummaryrefslogtreecommitdiff
path: root/perl/Wallet/Admin.pm
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2010-02-08 15:47:04 -0800
committerRuss Allbery <rra@stanford.edu>2010-02-08 15:47:04 -0800
commit346660359be7666e8629c14b2d12cebf794f6f26 (patch)
tree9d05f0b347d82be4ac42af9a4e8edfe33025ec95 /perl/Wallet/Admin.pm
parent04b875599b1d4559dbcd356726035416081c6b48 (diff)
Coding style and whitespace fixes
Combine a long series of eval blocks into a single block and a single error check. Remove trailing whitespace, and in some cases remove trailing () on method calls where the parens aren't useful.
Diffstat (limited to 'perl/Wallet/Admin.pm')
-rw-r--r--perl/Wallet/Admin.pm28
1 files changed, 14 insertions, 14 deletions
diff --git a/perl/Wallet/Admin.pm b/perl/Wallet/Admin.pm
index c86cbba..ff87b94 100644
--- a/perl/Wallet/Admin.pm
+++ b/perl/Wallet/Admin.pm
@@ -477,11 +477,11 @@ actions on the object it returns.
=item list_acls(TYPE, SEARCH)
-Returns a list of all ACLs matching a search type and string in the
-database, or all ACLs if no search information is given. The return value
-is a list of references to pairs of ACL ID and name. For example, if
-there are two ACLs in the database, one with name "ADMIN" and ID 1 and one
-with name "group/admins" and ID 3, list_acls() with no arguments would
+Returns a list of all ACLs matching a search type and string in the
+database, or all ACLs if no search information is given. The return value
+is a list of references to pairs of ACL ID and name. For example, if
+there are two ACLs in the database, one with name "ADMIN" and ID 1 and one
+with name "group/admins" and ID 3, list_acls() with no arguments would
return:
([ 1, 'ADMIN' ], [ 3, 'group/admins' ])
@@ -492,18 +492,18 @@ database with no ACLs by calling error(). error() is guaranteed to return
the error message if there was an error and undef if there was no error.
There are currently two search types. 'empty' takes no arguments, and will
-return only those acls that have no entries within them. 'entry' takes two
-arguments -- an entry scheme and an entry identifier -- and will return
+return only those acls that have no entries within them. 'entry' takes two
+arguments -- an entry scheme and an entry identifier -- and will return
any ACLs with an entry that matches the given scheme and contains the
given identifier.
=item list_objects(TYPE, SEARCH)
-Returns a list of all objects matching a search type and string in the
-database, or all objects in the database if no search information is
-given. The return value is a list of references to pairs of type and
-name. For example, if two objects existed in the database, both of type
-"keytab" and with values "host/example.com" and "foo", list_objects()
+Returns a list of all objects matching a search type and string in the
+database, or all objects in the database if no search information is
+given. The return value is a list of references to pairs of type and
+name. For example, if two objects existed in the database, both of type
+"keytab" and with values "host/example.com" and "foo", list_objects()
with no arguments would return:
([ 'keytab', 'host/example.com' ], [ 'keytab', 'foo' ])
@@ -516,8 +516,8 @@ if there was no error.
There are four types of searches currently. 'type' (with a given type)
will return only those entries where the type matches the given type.
'owner', with a given owner, will only return those objects owned by the
-given acl name. 'flag', with a given flag name, will only return those
-items with a flag set to the given value. 'acl' operates like 'owner',
+given acl name. 'flag', with a given flag name, will only return those
+items with a flag set to the given value. 'acl' operates like 'owner',
but will return only those objects that have the given acl name on any
of the possible acl settings, not just owner.