Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated documents #24

Merged
merged 1 commit into from
Jun 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aries_cloudagent/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async def make_message(self, parsed_msg: dict) -> AgentMessage:
Raises:
MessageParseError: If the message doesn't specify @type
MessageParseError: If there is no message class registered to handle
the given type
the given type

"""

Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/logging/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def print_banner(
public_did: Public DID
banner_length: (Default value = 40) Length of the banner
border_character: (Default value = ":") Character to use in banner
border
border
"""

def lr_pad(content: str):
Expand Down
6 changes: 3 additions & 3 deletions aries_cloudagent/messaging/agent_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ async def verify_signed_field(
ValueError: If field_name does not exist on this message
ValueError: If the verification fails
ValueError: If the verkey of the signature does not match the
provided verkey
provided verkey

"""
sig = self.get_signature(field_name)
Expand Down Expand Up @@ -334,9 +334,9 @@ def extract_decorators(self, data):

Raises:
ValidationError: If a field signature does not correlate
to a field in the message
to a field in the message
ValidationError: If the message defines both a field signature
and a value for the same field
and a value for the same field
ValidationError: If there is a missing field signature

"""
Expand Down
4 changes: 2 additions & 2 deletions aries_cloudagent/messaging/protocol_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def register_message_types(self, *typesets):
Add new supported message types.

Args:
*typesets: Mappings of message types to register
typesets: Mappings of message types to register

"""
for typeset in typesets:
Expand All @@ -66,7 +66,7 @@ def register_controllers(self, *controller_sets):
Add new controllers.

Args:
*controller_sets: Mappings of message families to coroutines
controller_sets: Mappings of message families to coroutines

"""
for controlset in controller_sets:
Expand Down
17 changes: 16 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
## How to generate documentation

Ensure the `sphinx_rtd_theme` theme is installed

```
pip install -U sphinx-rtd-theme
```

Ensure the sphinx tool is installed and run:

To rebuild the project and settings from scratch:
```
sphinx-apidoc -f -o . ..
sphinx-apidoc -f -M -F -o . .. '../setup.py'
```

```
sphinx-apidoc -f -M -o . .. '../setup.py'
```

To auto-generate the module documentation then run:

```
make html
```
or
```
sphinx-build -b html -a -E -c ./ ./ ./_build
```

To build the html.
52 changes: 24 additions & 28 deletions docs/aries_cloudagent.admin.rst
Original file line number Diff line number Diff line change
@@ -1,54 +1,50 @@
aries\_cloudagent.admin package
===============================

.. automodule:: aries_cloudagent.admin
:members:
:undoc-members:
:show-inheritance:

Subpackages
-----------

.. toctree::

aries_cloudagent.admin.tests

Submodules
----------

aries\_cloudagent.admin.base\_server module
-------------------------------------------

.. automodule:: aries_cloudagent.admin.base_server
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.admin.error module
------------------------------------

.. automodule:: aries_cloudagent.admin.error
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.admin.routes module
-------------------------------------

.. automodule:: aries_cloudagent.admin.routes
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.admin.server module
-------------------------------------

.. automodule:: aries_cloudagent.admin.server
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.admin.service module
--------------------------------------

.. automodule:: aries_cloudagent.admin.service
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: aries_cloudagent.admin
:members:
:undoc-members:
:show-inheritance:
19 changes: 19 additions & 0 deletions docs/aries_cloudagent.admin.tests.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
aries\_cloudagent.admin.tests package
=====================================

.. automodule:: aries_cloudagent.admin.tests
:members:
:undoc-members:
:show-inheritance:

Submodules
----------

aries\_cloudagent.admin.tests.test\_admin\_server module
--------------------------------------------------------

.. automodule:: aries_cloudagent.admin.tests.test_admin_server
:members:
:undoc-members:
:show-inheritance:

27 changes: 12 additions & 15 deletions docs/aries_cloudagent.cache.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
aries\_cloudagent.cache package
===============================

.. automodule:: aries_cloudagent.cache
:members:
:undoc-members:
:show-inheritance:

Subpackages
-----------

.. toctree::

aries_cloudagent.cache.tests
aries_cloudagent.cache.tests

Submodules
----------
Expand All @@ -15,23 +20,15 @@ aries\_cloudagent.cache.base module
-----------------------------------

.. automodule:: aries_cloudagent.cache.base
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.cache.basic module
------------------------------------

.. automodule:: aries_cloudagent.cache.basic
:members:
:undoc-members:
:show-inheritance:

:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

.. automodule:: aries_cloudagent.cache
:members:
:undoc-members:
:show-inheritance:
19 changes: 8 additions & 11 deletions docs/aries_cloudagent.cache.tests.rst
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
aries\_cloudagent.cache.tests package
=====================================

.. automodule:: aries_cloudagent.cache.tests
:members:
:undoc-members:
:show-inheritance:

Submodules
----------

aries\_cloudagent.cache.tests.test\_basic\_cache module
-------------------------------------------------------

.. automodule:: aries_cloudagent.cache.tests.test_basic_cache
:members:
:undoc-members:
:show-inheritance:

:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

.. automodule:: aries_cloudagent.cache.tests
:members:
:undoc-members:
:show-inheritance:
45 changes: 21 additions & 24 deletions docs/aries_cloudagent.config.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
aries\_cloudagent.config package
================================

.. automodule:: aries_cloudagent.config
:members:
:undoc-members:
:show-inheritance:

Subpackages
-----------

.. toctree::

aries_cloudagent.config.tests
aries_cloudagent.config.tests

Submodules
----------
Expand All @@ -15,47 +20,39 @@ aries\_cloudagent.config.base module
------------------------------------

.. automodule:: aries_cloudagent.config.base
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.config.injection\_context module
--------------------------------------------------

.. automodule:: aries_cloudagent.config.injection_context
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.config.injector module
----------------------------------------

.. automodule:: aries_cloudagent.config.injector
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.config.provider module
----------------------------------------

.. automodule:: aries_cloudagent.config.provider
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.config.settings module
----------------------------------------

.. automodule:: aries_cloudagent.config.settings
:members:
:undoc-members:
:show-inheritance:

:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

.. automodule:: aries_cloudagent.config
:members:
:undoc-members:
:show-inheritance:
Loading