diff options
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/__init__.py | 2 | ||||
-rw-r--r-- | ipalib/plugins/b_kerberos.py | 2 | ||||
-rw-r--r-- | ipalib/plugins/b_xmlrpc.py | 5 |
3 files changed, 5 insertions, 4 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py index 956e4610..46edb822 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -The IPA Library. +Package containing core library. To learn about the ``ipalib`` library, you should read the code in this order: diff --git a/ipalib/plugins/b_kerberos.py b/ipalib/plugins/b_kerberos.py index 4b3a9a5b..cc820497 100644 --- a/ipalib/plugins/b_kerberos.py +++ b/ipalib/plugins/b_kerberos.py @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -Kerberos backend. +Backend plugin for Kerberos. This wraps the python-kerberos and python-krbV bindings. """ diff --git a/ipalib/plugins/b_xmlrpc.py b/ipalib/plugins/b_xmlrpc.py index d7cbd856..feb87556 100644 --- a/ipalib/plugins/b_xmlrpc.py +++ b/ipalib/plugins/b_xmlrpc.py @@ -18,9 +18,10 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -XML-RPC client plugin. +Backend plugin for XML-RPC client. -Lightwieght XML-RPC client using Python standard library xmlrpclib. +This provides a lightwieght XML-RPC client using Python standard library +``xmlrpclib`` module. """ import xmlrpclib |