summaryrefslogtreecommitdiffstats
path: root/doc/development
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-13 16:07:30 -0500
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-14 15:12:49 -0500
commitad66b2e22eb64299d2f4dcd29e15e7083887813f (patch)
tree34fd1daa5e74129d913dc8f0258c367c81979b76 /doc/development
parent3a0618331e009439ce6b9c664915669884cd4aed (diff)
downloadbcfg2-ad66b2e22eb64299d2f4dcd29e15e7083887813f.tar.gz
bcfg2-ad66b2e22eb64299d2f4dcd29e15e7083887813f.tar.bz2
bcfg2-ad66b2e22eb64299d2f4dcd29e15e7083887813f.zip
added docs for Bcfg2.Utils
Diffstat (limited to 'doc/development')
-rw-r--r--doc/development/client-driver.txt9
-rw-r--r--doc/development/plugins.txt6
-rw-r--r--doc/development/utils.txt15
3 files changed, 28 insertions, 2 deletions
diff --git a/doc/development/client-driver.txt b/doc/development/client-driver.txt
index 29216acd5..5977f2a91 100644
--- a/doc/development/client-driver.txt
+++ b/doc/development/client-driver.txt
@@ -65,6 +65,11 @@ Base Classes
Helper Classes
--------------
-.. autoclass:: Bcfg2.Client.Tools.ClassName
-.. autoclass:: Bcfg2.Client.Tools.Executor
.. autoclass:: Bcfg2.Client.Tools.ToolInstantiationError
+
+See Also
+--------
+
+* :ref:`development-compat`
+* :ref:`development-utils`
+
diff --git a/doc/development/plugins.txt b/doc/development/plugins.txt
index 04b9ff7b1..3ca137159 100644
--- a/doc/development/plugins.txt
+++ b/doc/development/plugins.txt
@@ -210,3 +210,9 @@ Plugin Exceptions
-----------------
.. automodule:: Bcfg2.Server.Plugin.exceptions
+
+See Also
+--------
+
+* :ref:`development-compat`
+* :ref:`development-utils
diff --git a/doc/development/utils.txt b/doc/development/utils.txt
new file mode 100644
index 000000000..a4c158bf0
--- /dev/null
+++ b/doc/development/utils.txt
@@ -0,0 +1,15 @@
+.. -*- mode: rst -*-
+
+.. _development-utils:
+
+================
+Common Utilities
+================
+
+Some helper functions, classes, etc., are useful to both the client
+and server. Some of these are used to maintain
+:ref:`development-compat`, and should go in ``Bcfg2.Compat``. Those
+that aren't strictly for Python compatibility go in ``Bcfg2.Utils``,
+which is documented below.
+
+.. automodule:: Bcfg2.Utils