@@ -0,0 +1,46 @@ | |||||
config Package | |||||
============== | |||||
:mod:`config` Package | |||||
--------------------- | |||||
.. automodule:: earwigbot.config | |||||
:members: | |||||
:undoc-members: | |||||
:mod:`formatter` Module | |||||
----------------------- | |||||
.. automodule:: earwigbot.config.formatter | |||||
:members: | |||||
:undoc-members: | |||||
:show-inheritance: | |||||
:mod:`node` Module | |||||
------------------ | |||||
.. automodule:: earwigbot.config.node | |||||
:members: | |||||
:undoc-members: | |||||
:mod:`ordered_yaml` Module | |||||
-------------------------- | |||||
.. automodule:: earwigbot.config.ordered_yaml | |||||
:members: | |||||
:undoc-members: | |||||
:show-inheritance: | |||||
:mod:`permissions` Module | |||||
------------------------- | |||||
.. automodule:: earwigbot.config.permissions | |||||
:members: | |||||
:undoc-members: | |||||
:mod:`script` Module | |||||
-------------------- | |||||
.. automodule:: earwigbot.config.script | |||||
:members: | |||||
:undoc-members: |
@@ -15,13 +15,6 @@ earwigbot Package | |||||
:members: | :members: | ||||
:undoc-members: | :undoc-members: | ||||
:mod:`config` Module | |||||
.. automodule:: earwigbot.config | |||||
:members: | |||||
:undoc-members: | |||||
:mod:`exceptions` Module | :mod:`exceptions` Module | ||||
------------------------ | ------------------------ | ||||
@@ -30,6 +23,13 @@ earwigbot Package | |||||
:undoc-members: | :undoc-members: | ||||
:show-inheritance: | :show-inheritance: | ||||
:mod:`lazy` Module | |||||
------------------ | |||||
.. automodule:: earwigbot.lazy | |||||
:members: | |||||
:undoc-members: | |||||
:mod:`managers` Module | :mod:`managers` Module | ||||
---------------------- | ---------------------- | ||||
@@ -51,6 +51,7 @@ Subpackages | |||||
.. toctree:: | .. toctree:: | ||||
earwigbot.commands | earwigbot.commands | ||||
earwigbot.config | |||||
earwigbot.irc | earwigbot.irc | ||||
earwigbot.tasks | earwigbot.tasks | ||||
earwigbot.wiki | earwigbot.wiki |
@@ -22,8 +22,10 @@ | |||||
""" | """ | ||||
Based on: | Based on: | ||||
* https://gist.github.com/844388 | * https://gist.github.com/844388 | ||||
* http://pyyaml.org/attachment/ticket/161/use_ordered_dict.py | * http://pyyaml.org/attachment/ticket/161/use_ordered_dict.py | ||||
with modifications. | with modifications. | ||||
""" | """ | ||||