mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
Improve documentation
This commit is contained in:
parent
6202257fc2
commit
88a0af8ba1
25 changed files with 207 additions and 76 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue