Add docs for handlers, app handler
This commit is contained in:
parent
6b110e567a
commit
4a7729a702
13 changed files with 153 additions and 14 deletions
|
@ -25,9 +25,9 @@ Glossary
|
|||
virtual environment.
|
||||
|
||||
app handler
|
||||
Python object representing the core of the :term:`app`. There is
|
||||
normally just one "global" app handler, which is an instance of
|
||||
:class:`~wuttjamaican.app.AppHandler`.
|
||||
Python object representing the core :term:`handler` for the
|
||||
:term:`app`. There is normally just one "global" app handler;
|
||||
see also :doc:`narr/handlers/app`.
|
||||
|
||||
app name
|
||||
Code-friendly name for the underlying app/config system
|
||||
|
@ -85,6 +85,14 @@ Glossary
|
|||
|
||||
.. _Python Packaging User Guide: https://packaging.python.org/en/latest/specifications/entry-points/
|
||||
|
||||
handler
|
||||
Similar to a "plugin" concept but only *one* handler may be used
|
||||
for a given purpose. See also :doc:`narr/handlers/index`.
|
||||
|
||||
package
|
||||
Generally refers to a proper Python package, i.e. a collection of
|
||||
modules etc. which is installed via ``pip``.
|
||||
|
||||
settings table
|
||||
Table in the :term:`app database` which is used to store
|
||||
:term:`config settings<config setting>`.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue