fix documentation issues

- add autotask directives for pgsqltasks and mysqltasks
- remove duplicate Celery_ link target
This commit is contained in:
Jan Dittberner 2015-01-04 22:47:14 +01:00
parent 8e498c3e44
commit 706a4ef177
2 changed files with 13 additions and 1 deletions

View file

@ -116,6 +116,12 @@ provides some functionality that is common to all gnuviechadmin subprojects.
.. automodule:: mysqltasks.tasks .. automodule:: mysqltasks.tasks
:members: :members:
.. autotask:: mysqltasks.tasks.create_mysql_database
.. autotask:: mysqltasks.tasks.create_mysql_user
.. autotask:: mysqltasks.tasks.delete_mysql_database
.. autotask:: mysqltasks.tasks.delete_mysql_user
.. autotask:: mysqltasks.tasks.set_mysql_userpassword
:py:mod:`osusers` app :py:mod:`osusers` app
===================== =====================
@ -176,6 +182,12 @@ provides some functionality that is common to all gnuviechadmin subprojects.
.. automodule:: pgsqltasks.tasks .. automodule:: pgsqltasks.tasks
.. autotask:: pgsqltasks.tasks.create_pgsql_database
.. autotask:: pgsqltasks.tasks.create_pgsql_user
.. autotask:: pgsqltasks.tasks.delete_pgsql_database
.. autotask:: pgsqltasks.tasks.delete_pgsql_user
.. autotask:: pgsqltasks.tasks.set_pgsql_userpassword
:py:mod:`taskresults` app :py:mod:`taskresults` app
========================= =========================

View file

@ -1,5 +1,5 @@
""" """
This is the taskresults app that is used for storing the results from This is the taskresults app that is used for storing the results from
asynchronous `Celery <http://www.celeryproject.org>`_ tasks. asynchronous Celery_ tasks.
""" """