Compare commits
No commits in common. "c25325f7d09b1143fd4cdd2023d2f5eb9200e5a8" and "1debacd1608b6152e1baafda939832977aa696c9" have entirely different histories.
c25325f7d0
...
1debacd160
12
docs/api/index.rst
Normal file
12
docs/api/index.rst
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
Package API
|
||||||
|
===========
|
||||||
|
|
||||||
|
This is the "raw" API documentation for the ``wuttjamaican`` package. It hopefully
|
||||||
|
contains all pertinent info regarding available functions, classes and their
|
||||||
|
attributes and method signatures etc.
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
wuttjamaican/index
|
33
docs/api/wuttjamaican/index.rst
Normal file
33
docs/api/wuttjamaican/index.rst
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
|
||||||
|
``wuttjamaican``
|
||||||
|
================
|
||||||
|
|
||||||
|
.. automodule:: wuttjamaican
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 1
|
||||||
|
|
||||||
|
app
|
||||||
|
auth
|
||||||
|
cli
|
||||||
|
cli.base
|
||||||
|
cli.make_uuid
|
||||||
|
conf
|
||||||
|
db
|
||||||
|
db.conf
|
||||||
|
db.model
|
||||||
|
db.model.auth
|
||||||
|
db.model.base
|
||||||
|
db.model.upgrades
|
||||||
|
db.sess
|
||||||
|
db.util
|
||||||
|
email
|
||||||
|
email.handler
|
||||||
|
email.message
|
||||||
|
enum
|
||||||
|
exc
|
||||||
|
install
|
||||||
|
people
|
||||||
|
progress
|
||||||
|
testing
|
||||||
|
util
|
|
@ -30,54 +30,24 @@ Features
|
||||||
|
|
||||||
See also these projects which build on WuttJamaican:
|
See also these projects which build on WuttJamaican:
|
||||||
|
|
||||||
* `WuttaWeb <https://rattailproject.org/docs/wuttaweb/>`_ - web app
|
* :doc:`wutta-continuum:index`
|
||||||
framework
|
* `WuttaWeb <https://rattailproject.org/docs/wuttaweb/>`_
|
||||||
* `WuttaSync <https://rattailproject.org/docs/wuttasync/>`_ - data
|
|
||||||
import/export and real-time sync
|
|
||||||
* :doc:`wutta-continuum:index` - data versioning with
|
|
||||||
SQLAchemy-Continuum
|
|
||||||
|
|
||||||
|
|
||||||
Contents
|
Contents
|
||||||
--------
|
--------
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 3
|
||||||
:caption: Documentation
|
|
||||||
|
|
||||||
glossary
|
glossary
|
||||||
narr/install/index
|
narr/index
|
||||||
narr/config/index
|
api/index
|
||||||
narr/cli/index
|
|
||||||
narr/handlers/index
|
|
||||||
narr/providers/index
|
|
||||||
narr/db/index
|
|
||||||
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 1
|
|
||||||
:caption: API
|
|
||||||
|
|
||||||
api/wuttjamaican.app
|
Indices and tables
|
||||||
api/wuttjamaican.auth
|
==================
|
||||||
api/wuttjamaican.cli
|
|
||||||
api/wuttjamaican.cli.base
|
* :ref:`genindex`
|
||||||
api/wuttjamaican.cli.make_uuid
|
* :ref:`modindex`
|
||||||
api/wuttjamaican.conf
|
* :ref:`search`
|
||||||
api/wuttjamaican.db
|
|
||||||
api/wuttjamaican.db.conf
|
|
||||||
api/wuttjamaican.db.model
|
|
||||||
api/wuttjamaican.db.model.auth
|
|
||||||
api/wuttjamaican.db.model.base
|
|
||||||
api/wuttjamaican.db.model.upgrades
|
|
||||||
api/wuttjamaican.db.sess
|
|
||||||
api/wuttjamaican.db.util
|
|
||||||
api/wuttjamaican.email
|
|
||||||
api/wuttjamaican.email.handler
|
|
||||||
api/wuttjamaican.email.message
|
|
||||||
api/wuttjamaican.enum
|
|
||||||
api/wuttjamaican.exc
|
|
||||||
api/wuttjamaican.install
|
|
||||||
api/wuttjamaican.people
|
|
||||||
api/wuttjamaican.progress
|
|
||||||
api/wuttjamaican.testing
|
|
||||||
api/wuttjamaican.util
|
|
||||||
|
|
13
docs/narr/index.rst
Normal file
13
docs/narr/index.rst
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
Documentation
|
||||||
|
=============
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
install/index
|
||||||
|
config/index
|
||||||
|
cli/index
|
||||||
|
handlers/index
|
||||||
|
providers/index
|
||||||
|
db/index
|
|
@ -25,14 +25,9 @@ Data Models
|
||||||
|
|
||||||
This is the default :term:`app model` module.
|
This is the default :term:`app model` module.
|
||||||
|
|
||||||
This namespace exposes the following:
|
The ``wuttjamaican.db.model`` namespace contains the following:
|
||||||
|
|
||||||
* :class:`~wuttjamaican.db.model.base.Base`
|
* :class:`~wuttjamaican.db.model.base.Base`
|
||||||
* :func:`~wuttjamaican.db.util.uuid_column()`
|
|
||||||
* :func:`~wuttjamaican.db.util.uuid_fk_column()`
|
|
||||||
|
|
||||||
And the :term:`data models <data model>`:
|
|
||||||
|
|
||||||
* :class:`~wuttjamaican.db.model.base.Setting`
|
* :class:`~wuttjamaican.db.model.base.Setting`
|
||||||
* :class:`~wuttjamaican.db.model.base.Person`
|
* :class:`~wuttjamaican.db.model.base.Person`
|
||||||
* :class:`~wuttjamaican.db.model.auth.Role`
|
* :class:`~wuttjamaican.db.model.auth.Role`
|
||||||
|
@ -42,6 +37,7 @@ And the :term:`data models <data model>`:
|
||||||
* :class:`~wuttjamaican.db.model.upgrades.Upgrade`
|
* :class:`~wuttjamaican.db.model.upgrades.Upgrade`
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# TODO: remove these
|
||||||
from wuttjamaican.db.util import uuid_column, uuid_fk_column
|
from wuttjamaican.db.util import uuid_column, uuid_fk_column
|
||||||
|
|
||||||
from .base import Base, Setting, Person
|
from .base import Base, Setting, Person
|
||||||
|
|
Loading…
Reference in a new issue