summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSiddharth Ravikumar <sravik@bgsu.edu>2016-01-02 15:23:41 -0500
committerSiddharth Ravikumar <sravik@bgsu.edu>2016-01-02 15:23:41 -0500
commit5e3c9e1d2f70ab327a165eacd78b0ad9004e810d (patch)
tree0cfb04750ac66fe95d432e3a2c6089806300f85e
parentbb18796f01bf3f60afb07c585bc2a09a37e0b19e (diff)
Added api docs for combox.events combox.silo.
-rw-r--r--docs/api/combox.events.rst8
-rw-r--r--docs/api/combox.silo.rst6
-rw-r--r--docs/api/index.rst2
-rw-r--r--docs/conf.py5
4 files changed, 20 insertions, 1 deletions
diff --git a/docs/api/combox.events.rst b/docs/api/combox.events.rst
new file mode 100644
index 0000000..8946427
--- /dev/null
+++ b/docs/api/combox.events.rst
@@ -0,0 +1,8 @@
+====================
+combox.events module
+====================
+
+.. automodule:: combox.events
+ :members:
+ :show-inheritance:
+ :inherited-members:
diff --git a/docs/api/combox.silo.rst b/docs/api/combox.silo.rst
new file mode 100644
index 0000000..39dd1f6
--- /dev/null
+++ b/docs/api/combox.silo.rst
@@ -0,0 +1,6 @@
+====================
+combox.silo module
+====================
+
+.. automodule:: combox.silo
+ :members:
diff --git a/docs/api/index.rst b/docs/api/index.rst
index 1c0a359..ea1399f 100644
--- a/docs/api/index.rst
+++ b/docs/api/index.rst
@@ -6,4 +6,6 @@ api reference
:maxdepth: 2
combox.crypto
+ combox.events
combox.file
+ combox.silo
diff --git a/docs/conf.py b/docs/conf.py
index 89600a9..04727fc 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -300,4 +300,7 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'https://docs.python.org/': None}
+intersphinx_mapping = {
+ 'https://docs.python.org/': None,
+ 'https://pythonhosted.org/watchdog/': None
+}