Improve documentation

This commit is contained in:
Unrud 2020-01-12 23:32:28 +01:00
parent 6202257fc2
commit 88a0af8ba1
25 changed files with 207 additions and 76 deletions

View file

@ -20,7 +20,8 @@
"""
Radicale WSGI application.
Can be used with an external WSGI server or the built-in server.
Can be used with an external WSGI server (see ``radicale.application()``) or
the built-in server (see ``radicale.server`` module).
"""
@ -63,10 +64,14 @@ class Application(
ApplicationPropfindMixin, ApplicationProppatchMixin,
ApplicationPutMixin, ApplicationReportMixin):
"""WSGI application managing collections."""
"""WSGI application."""
def __init__(self, configuration):
"""Initialize application."""
"""Initialize application.
``configuration`` see ``radicale.config`` module.
"""
super().__init__()
self.configuration = configuration
self.auth = auth.load(configuration)