Lint markdown

This commit is contained in:
Unrud 2021-12-14 00:25:31 +01:00
parent 96ba4472f9
commit c73b7466be
4 changed files with 407 additions and 428 deletions

4
.mdl.style Normal file
View file

@ -0,0 +1,4 @@
all
rule 'MD026', :punctuation => '.,;:!'
exclude_rule 'MD001'
exclude_rule 'MD024'

1
.mdlrc Normal file
View file

@ -0,0 +1 @@
style File.join(File.dirname(__FILE__), '.mdl.style')

View file

@ -1,5 +1,7 @@
# Documentation # Documentation
## Getting started ## Getting started
#### About Radicale #### About Radicale
Radicale is a small but powerful CalDAV (calendars, to-do lists) and CardDAV Radicale is a small but powerful CalDAV (calendars, to-do lists) and CardDAV
@ -21,11 +23,11 @@ Radicale is a small but powerful CalDAV (calendars, to-do lists) and CardDAV
Radicale is really easy to install and works out-of-the-box. Radicale is really easy to install and works out-of-the-box.
```bash ```bash
$ python3 -m pip install --upgrade radicale python3 -m pip install --upgrade radicale
$ python3 -m radicale --storage-filesystem-folder=~/.var/lib/radicale/collections python3 -m radicale --storage-filesystem-folder=~/.var/lib/radicale/collections
``` ```
When the server is launched, open http://localhost:5232/ in your browser! When the server is launched, open <http://localhost:5232> in your browser!
You can login with any username and password. You can login with any username and password.
Want more? Check the [tutorials](#tutorials) and the Want more? Check the [tutorials](#tutorials) and the
@ -37,6 +39,7 @@ Read the
[changelog on GitHub.](https://github.com/Kozea/Radicale/blob/v3/NEWS.md) [changelog on GitHub.](https://github.com/Kozea/Radicale/blob/v3/NEWS.md)
## Tutorials ## Tutorials
### Simple 5-minute setup ### Simple 5-minute setup
You want to try Radicale but only have 5 minutes free in your calendar? Let's You want to try Radicale but only have 5 minutes free in your calendar? Let's
@ -65,7 +68,7 @@ $ python3 -m pip install --upgrade radicale
$ python3 -m radicale --storage-filesystem-folder=~/.var/lib/radicale/collections $ python3 -m radicale --storage-filesystem-folder=~/.var/lib/radicale/collections
``` ```
Victory! Open http://localhost:5232/ in your browser! Victory! Open <http://localhost:5232> in your browser!
You can log in with any username and password. You can log in with any username and password.
#### Windows #### Windows
@ -83,7 +86,7 @@ C:\Users\User> python -m pip install --upgrade radicale
C:\Users\User> python -m radicale --storage-filesystem-folder=~/radicale/collections C:\Users\User> python -m radicale --storage-filesystem-folder=~/radicale/collections
``` ```
Victory! Open http://localhost:5232/ in your browser! Victory! Open <http://localhost:5232> in your browser!
You can log in with any username and password. You can log in with any username and password.
### Basic Configuration ### Basic Configuration
@ -213,8 +216,8 @@ requirements.
#### Linux with systemd system-wide #### Linux with systemd system-wide
Create the **radicale** user and group for the Radicale service. Create the **radicale** user and group for the Radicale service. (Run
(Run `useradd --system --user-group --home-dir / --shell /sbin/nologin radicale` as root.) `useradd --system --user-group --home-dir / --shell /sbin/nologin radicale` as root.)
The storage folder must be writable by **radicale**. (Run The storage folder must be writable by **radicale**. (Run
`mkdir -p /var/lib/radicale/collections && chown -R radicale:radicale /var/lib/radicale/collections` `mkdir -p /var/lib/radicale/collections && chown -R radicale:radicale /var/lib/radicale/collections`
as root.) as root.)
@ -250,6 +253,7 @@ ReadWritePaths=/var/lib/radicale/collections
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target
``` ```
Radicale will load the configuration file from `/etc/radicale/config`. Radicale will load the configuration file from `/etc/radicale/config`.
To enable and manage the service run: To enable and manage the service run:
@ -438,8 +442,10 @@ information about the certificate, the values don't matter and you can keep the
defaults. defaults.
```bash ```bash
$ openssl req -x509 -newkey rsa:4096 -keyout server_key.pem -out server_cert.pem -nodes -days 9999 openssl req -x509 -newkey rsa:4096 -keyout server_key.pem -out server_cert.pem \
$ openssl req -x509 -newkey rsa:4096 -keyout client_key.pem -out client_cert.pem -nodes -days 9999 -nodes -days 9999
openssl req -x509 -newkey rsa:4096 -keyout client_key.pem -out client_cert.pem \
-nodes -days 9999
``` ```
Use the following configuration for Radicale: Use the following configuration for Radicale:
@ -487,7 +493,8 @@ env = RADICALE_CONFIG=/etc/radicale/config
Example **Gunicorn** configuration: Example **Gunicorn** configuration:
```bash ```bash
gunicorn --bind '127.0.0.1:5232' --workers 8 --env 'RADICALE_CONFIG=/etc/radicale/config' radicale gunicorn --bind '127.0.0.1:5232' --env 'RADICALE_CONFIG=/etc/radicale/config' \
--workers 8 radicale
``` ```
#### Manage user accounts with the WSGI server #### Manage user accounts with the WSGI server
@ -505,7 +512,7 @@ The repository must be initialized by running `git init` in the file
system folder. Internal files of Radicale can be excluded by creating the system folder. Internal files of Radicale can be excluded by creating the
file `.gitignore` with the following content: file `.gitignore` with the following content:
``` ```gitignore
.Radicale.cache .Radicale.cache
.Radicale.lock .Radicale.lock
.Radicale.tmp-* .Radicale.tmp-*
@ -522,6 +529,7 @@ The command gets executed after every change to the storage and commits
the changes into the **git** repository. the changes into the **git** repository.
## Documentation ## Documentation
### Configuration ### Configuration
Radicale can be configured with a configuration file or with Radicale can be configured with a configuration file or with
@ -553,7 +561,9 @@ Paths that start with `?` are optional.
The same example configuration via command line arguments looks like: The same example configuration via command line arguments looks like:
```bash ```bash
python3 -m radicale --server-hosts 0.0.0.0:5232,[::]:5232 --auth-type htpasswd --auth-htpasswd-filename ~/.config/radicale/users --auth-htpasswd-encryption md5 python3 -m radicale --server-hosts 0.0.0.0:5232,[::]:5232 \
--auth-type htpasswd --auth-htpasswd-filename ~/.config/radicale/users \
--auth-htpasswd-encryption md5
``` ```
Add the argument `--config ""` to stop Radicale from loading the default Add the argument `--config ""` to stop Radicale from loading the default
@ -618,6 +628,7 @@ authentication plugin that extracts the user name from the certificate.
Default: Default:
#### encoding #### encoding
##### request ##### request
Encoding for responding requests. Encoding for responding requests.
@ -631,6 +642,7 @@ Encoding for storing local collections
Default: `utf-8` Default: `utf-8`
#### auth #### auth
##### type ##### type
The method to verify usernames and passwords. The method to verify usernames and passwords.
@ -674,6 +686,7 @@ Available methods:
`plain` `plain`
: Passwords are stored in plaintext. This is obviously not secure! : Passwords are stored in plaintext. This is obviously not secure!
The htpasswd file for this can be created by hand and looks like: The htpasswd file for this can be created by hand and looks like:
```htpasswd ```htpasswd
user1:password1 user1:password1
user2:password2 user2:password2
@ -701,6 +714,7 @@ Message displayed in the client when a password is needed.
Default: `Radicale - Password Required` Default: `Radicale - Password Required`
#### rights #### rights
##### type ##### type
The backend that is used to check the access rights of collections. The backend that is used to check the access rights of collections.
@ -735,6 +749,7 @@ File for the rights backend `from_file`. See the
[Rights](#authentication-and-rights) section. [Rights](#authentication-and-rights) section.
#### storage #### storage
##### type ##### type
The backend that is used to store data. The backend that is used to store data.
@ -745,7 +760,8 @@ Available backends:
: Stores the data in the filesystem. : Stores the data in the filesystem.
`multifilesystem_nolock` `multifilesystem_nolock`
: The `multifilesystem` backend without file-based locking. Must only be used with a single process. : The `multifilesystem` backend without file-based locking.
Must only be used with a single process.
Default: `multifilesystem` Default: `multifilesystem`
@ -769,6 +785,7 @@ Command that is run after changes to storage. Take a look at the
Default: Default:
#### web #### web
##### type ##### type
The backend that provides the web interface of Radicale. The backend that provides the web interface of Radicale.
@ -786,6 +803,7 @@ Default: `internal`
#### logging #### logging
##### level ##### level
Set the logging level. Set the logging level.
Available levels: **debug**, **info**, **warning**, **error**, **critical** Available levels: **debug**, **info**, **warning**, **error**, **critical**
@ -827,7 +845,7 @@ Radicale has been tested with:
Many clients do not support the creation of new calendars and address books. Many clients do not support the creation of new calendars and address books.
You can use Radicale's web interface You can use Radicale's web interface
(e.g. http://localhost:5232) to create and manage address books and calendars. (e.g. <http://localhost:5232>) to create and manage address books and calendars.
In some clients you can just enter the URL of the Radicale server In some clients you can just enter the URL of the Radicale server
(e.g. `http://localhost:5232`) and your user name. In others, you have to (e.g. `http://localhost:5232`) and your user name. In others, you have to
@ -853,6 +871,7 @@ address books.
#### Thunderbird #### Thunderbird
##### CardBook ##### CardBook
Add a new address book on the network with CardDAV. You have to enter the full Add a new address book on the network with CardDAV. You have to enter the full
URL of the collection (e.g. `http://localhost:5232/user/addressbook`) and URL of the collection (e.g. `http://localhost:5232/user/addressbook`) and
your user name. your user name.
@ -936,7 +955,7 @@ children of the path `/USERNAME/`.
Delete the collections by running something like: Delete the collections by running something like:
```bash ```bash
$ curl -u user -X DELETE 'http://localhost:5232/user/calendar' curl -u user -X DELETE 'http://localhost:5232/user/calendar'
``` ```
### Authentication and Rights ### Authentication and Rights
@ -1124,40 +1143,13 @@ organized.
Here is a simple overview of the global architecture for reaching a calendar or Here is a simple overview of the global architecture for reaching a calendar or
an address book through network: an address book through network:
<table> | Part | Layer | Protocol or Format |
<thead> |----------|--------------------------|------------------------------------|
<tr> | Server | Calendar/Contact Storage | iCal/vCard |
<th>Part</th> | '' | Calendar/Contact Server | CalDAV/CardDAV Server |
<th>Layer</th> | Transfer | Network | CalDAV/CardDAV (HTTP + TLS) |
<th>Protocol or Format</th> | Client | Calendar/Contact Client | CalDAV/CardDAV Client |
</tr> | '' | GUI | Terminal, GTK, Web interface, etc. |
</thead>
<tbody>
<tr>
<td rowspan="2">Server</td>
<td>Calendar/Contact Storage</td>
<td>iCal/vCard</td>
</tr>
<tr>
<td>Calendar/Contact Server</td>
<td>CalDAV/CardDAV Server</td>
</tr>
<tr>
<td>Transfer</td>
<td>Network</td>
<td>CalDAV/CardDAV (HTTP + TLS)</td>
</tr>
<tr>
<td rowspan="2">Client</td>
<td>Calendar/Contact Client</td>
<td>CalDAV/CardDAV Client</td>
</tr>
<tr>
<td>GUI</td>
<td>Terminal, GTK, Web interface, etc.</td>
</tr>
</tbody>
</table>
Radicale is **only the server part** of this architecture. Radicale is **only the server part** of this architecture.
@ -1369,7 +1361,9 @@ To change or complement the documentation create a pull request to
Radicale is [available on PyPI](https://pypi.python.org/pypi/Radicale/). To Radicale is [available on PyPI](https://pypi.python.org/pypi/Radicale/). To
install, just type as superuser: install, just type as superuser:
$ python3 -m pip install --upgrade radicale ```bash
python3 -m pip install --upgrade radicale
```
#### Git Repository #### Git Repository
@ -1377,7 +1371,9 @@ If you want the development version of Radicale, take a look at the
[git repository on GitHub](https://github.com/Kozea/Radicale/), or install it [git repository on GitHub](https://github.com/Kozea/Radicale/), or install it
directly with: directly with:
$ python3 -m pip install --upgrade https://github.com/Kozea/Radicale/archive/master.tar.gz ```bash
python3 -m pip install --upgrade https://github.com/Kozea/Radicale/archive/master.tar.gz
```
You can also download the content of the repository as an You can also download the content of the repository as an
[archive](https://github.com/Kozea/Radicale/tarball/master). [archive](https://github.com/Kozea/Radicale/tarball/master).
@ -1396,7 +1392,8 @@ Radicale has been packaged for:
* [Debian](http://packages.debian.org/radicale) by Jonas Smedegaard * [Debian](http://packages.debian.org/radicale) by Jonas Smedegaard
* [Gentoo](https://packages.gentoo.org/packages/www-apps/radicale) * [Gentoo](https://packages.gentoo.org/packages/www-apps/radicale)
by René Neumann, Maxim Koltsov and Manuel Rüger by René Neumann, Maxim Koltsov and Manuel Rüger
* [Fedora/RHEL/CentOS](https://src.fedoraproject.org/rpms/radicale) by Jorti and Peter Bieringer * [Fedora/RHEL/CentOS](https://src.fedoraproject.org/rpms/radicale) by Jorti
and Peter Bieringer
* [Mageia](http://madb.mageia.org/package/show/application/0/name/radicale) * [Mageia](http://madb.mageia.org/package/show/application/0/name/radicale)
by Jani Välimaa by Jani Välimaa
* [OpenBSD](http://openports.se/productivity/radicale) by Sergey Bronnikov, * [OpenBSD](http://openports.se/productivity/radicale) by Sergey Bronnikov,

129
NEWS.md
View file

@ -9,7 +9,8 @@
* Start storage hook in own process group * Start storage hook in own process group
* Kill storage hook on error or exit * Kill storage hook on error or exit
* Try to kill child processes of storage hook * Try to kill child processes of storage hook
* Internal Server: Exit immediately when signal is received (do not wait for clients or storage hook to finish) * Internal Server: Exit immediately when signal is received
(do not wait for clients or storage hook to finish)
## 3.0.4 ## 3.0.4
@ -45,9 +46,9 @@ See the upgrade checklist below.
* Major refactor * Major refactor
* Never sanitize paths multiple times (check if they are sanitized) * Never sanitize paths multiple times (check if they are sanitized)
* Config * Config
* Multiple configuration files separated by ``:`` (resp. ``;`` * Multiple configuration files separated by `:` (resp. `;`
on Windows) on Windows)
* Optional configuration files by prepending file path with ``?`` * Optional configuration files by prepending file path with `?`
* Check validity of every configuration file and command line * Check validity of every configuration file and command line
arguments separately arguments separately
* Report the source of invalid configuration parameters in * Report the source of invalid configuration parameters in
@ -56,29 +57,29 @@ See the upgrade checklist below.
* Store configuration as parsed values * Store configuration as parsed values
* Use Schema that describes configuration and allow plugins to apply * Use Schema that describes configuration and allow plugins to apply
their own schemas their own schemas
* Mark internal settings with ``_`` * Mark internal settings with `_`
* Internal server * Internal server
* Bind to IPv4 and IPv6 address, when both are available for hostname * Bind to IPv4 and IPv6 address, when both are available for hostname
* Set default address to ``localhost:5232`` * Set default address to `localhost:5232`
* Remove settings for SSL ciphers and protocol versions (enforce safe * Remove settings for SSL ciphers and protocol versions (enforce safe
defaults instead) defaults instead)
* Remove settings for file locking because they are of little use * Remove settings for file locking because they are of little use
* Remove daemonization (should be handled by service managers) * Remove daemonization (should be handled by service managers)
* Logging * Logging
* Replace complex Python logger configuration with simple * Replace complex Python logger configuration with simple
``logging.level`` setting `logging.level` setting
* Write PID and ``threadName`` instead of cryptic id's in log messages * Write PID and `threadName` instead of cryptic id's in log messages
* Use ``wsgi.errors`` for logging (as required by the WSGI spec) * Use `wsgi.errors` for logging (as required by the WSGI spec)
* Code cleanup: * Code cleanup:
* Don't pass logger object around (use ``logging.getLogger()`` * Don't pass logger object around (use `logging.getLogger()`
instead) instead)
* Auth * Auth
* Use ``md5`` as default for ``htpasswd_encryption`` setting * Use `md5` as default for `htpasswd_encryption` setting
* Move setting ``realm`` from section ``server`` to ``auth`` * Move setting `realm` from section `server` to `auth`
* Rights * Rights
* Use permissions ``RW`` for non-leaf collections and ``rw`` for * Use permissions `RW` for non-leaf collections and `rw` for
address books/calendars address books/calendars
* New permission ``i`` that only allows access with HTTP method GET * New permission `i` that only allows access with HTTP method GET
(CalDAV/CardDAV is susceptible to expensive search requests) (CalDAV/CardDAV is susceptible to expensive search requests)
* Web * Web
* Add upload dialog for calendars/address books from file * Add upload dialog for calendars/address books from file
@ -95,30 +96,30 @@ See the upgrade checklist below.
* Config * Config
* Some settings were removed * Some settings were removed
* The default of ``auth.htpasswd_encryption`` changed to ``md5`` * The default of `auth.htpasswd_encryption` changed to `md5`
* The setting ``server.realm`` moved to ``auth.realm`` * The setting `server.realm` moved to `auth.realm`
* The setting ``logging.debug`` was replaced by ``logging.level`` * The setting `logging.debug` was replaced by `logging.level`
* The format of the ``rights.file`` configuration file changed: * The format of the `rights.file` configuration file changed:
* Permission ``r`` replaced by ``Rr`` * Permission `r` replaced by `Rr`
* Permission ``w`` replaced by ``Ww`` * Permission `w` replaced by `Ww`
* New permission ``i`` added as subset of ``r`` * New permission `i` added as subset of `r`
* Replaced variable ``%(login)s`` by ``{user}`` * Replaced variable `%(login)s` by `{user}`
* Removed variable ``%(path)s`` * Removed variable `%(path)s`
* ``{`` must be escaped as ``{{`` and ``}`` as ``}}`` in regexes * `{` must be escaped as `{{` and `}` as `}}` in regexes
* File system storage * File system storage
* The storage format is compatible with Radicale 2.x.x * The storage format is compatible with Radicale 2.x.x
* Run ``radicale --verify-storage`` to check for errors * Run `radicale --verify-storage` to check for errors
* Custom plugins: * Custom plugins:
* ``auth`` and ``web`` plugins require minor adjustments * `auth` and `web` plugins require minor adjustments
* ``rights`` plugins must be adapted to the new permission model * `rights` plugins must be adapted to the new permission model
* ``storage`` plugins require major changes * `storage` plugins require major changes
## 2.1.10 - Wild Radish ## 2.1.10 - Wild Radish
This release is compatible with version 2.0.0. This release is compatible with version 2.0.0.
* Update required versions for dependencies * Update required versions for dependencies
* Get ``RADICALE_CONFIG`` from WSGI environ * Get `RADICALE_CONFIG` from WSGI environ
* Improve HTTP status codes * Improve HTTP status codes
* Fix race condition in storage lock creation * Fix race condition in storage lock creation
* Raise default limits for content length and timeout * Raise default limits for content length and timeout
@ -130,9 +131,9 @@ This release is compatible with version 2.0.0.
* Specify versions for dependencies * Specify versions for dependencies
* Move WSGI initialization into module * Move WSGI initialization into module
* Check if ``REPORT`` method is actually supported * Check if `REPORT` method is actually supported
* Include ``rights`` file in source distribution * Include `rights` file in source distribution
* Specify ``md5`` and ``bcrypt`` as extras * Specify `md5` and `bcrypt` as extras
* Improve logging messages * Improve logging messages
* Windows: Fix crash when item path is a directory * Windows: Fix crash when item path is a directory
@ -147,22 +148,21 @@ This release is compatible with version 2.0.0.
This release is compatible with version 2.0.0. This release is compatible with version 2.0.0.
* Don't print warning when cache format changes * Don't print warning when cache format changes
* Add documentation for ``BaseAuth`` * Add documentation for `BaseAuth`
* Add ``is_authenticated2(login, user, password)`` to ``BaseAuth`` * Add `is_authenticated2(login, user, password)` to `BaseAuth`
* Fix names of custom properties in PROPFIND requests with * Fix names of custom properties in PROPFIND requests with
``D:propname`` or ``D:allprop`` `D:propname` or `D:allprop`
* Return all properties in PROPFIND requests with ``D:propname`` or * Return all properties in PROPFIND requests with `D:propname` or
``D:allprop`` `D:allprop`
* Allow ``D:displayname`` property on all collections * Allow `D:displayname` property on all collections
* Answer with ``D:unauthenticated`` for ``D:current-user-principal`` property * Answer with `D:unauthenticated` for `D:current-user-principal` property
when not logged in when not logged in
* Remove non-existing ``ICAL:calendar-color`` and ``C:calendar-timezone`` * Remove non-existing `ICAL:calendar-color` and `C:calendar-timezone`
properties from PROPFIND requests with ``D:propname`` or ``D:allprop`` properties from PROPFIND requests with `D:propname` or `D:allprop`
* Add ``D:owner`` property to calendar and address book objects * Add `D:owner` property to calendar and address book objects
* Remove ``D:getetag`` and ``D:getlastmodified`` properties from regular * Remove `D:getetag` and `D:getlastmodified` properties from regular
collections collections
## 2.1.6 - Wild Radish ## 2.1.6 - Wild Radish
This release is compatible with version 2.0.0. This release is compatible with version 2.0.0.
@ -180,7 +180,7 @@ This release is compatible with version 2.0.0.
This release is compatible with version 2.0.0. This release is compatible with version 2.0.0.
* Add ``--verify-storage`` command-line argument * Add `--verify-storage` command-line argument
* Allow comments in the htpasswd file * Allow comments in the htpasswd file
* Don't strip whitespaces from user names and passwords in the htpasswd file * Don't strip whitespaces from user names and passwords in the htpasswd file
* Remove cookies from logging output * Remove cookies from logging output
@ -247,20 +247,19 @@ This release is compatible with version 2.0.0.
* Support for client-side SSL certificates * Support for client-side SSL certificates
* Rights plugins can decide if access to an item is granted explicitly * Rights plugins can decide if access to an item is granted explicitly
* Respond with 403 instead of 404 for principal collections of non-existing * Respond with 403 instead of 404 for principal collections of non-existing
users when ``owner_only`` plugin is used (information leakage) users when `owner_only` plugin is used (information leakage)
* Authentication plugins can provide the login and password from the * Authentication plugins can provide the login and password from the
environment environment
* new ``remote_user`` plugin, that gets the login from the ``REMOTE_USER`` * new `remote_user` plugin, that gets the login from the `REMOTE_USER`
environment variable (for WSGI server) environment variable (for WSGI server)
* new ``http_x_remote_user`` plugin, that gets the login from the * new `http_x_remote_user` plugin, that gets the login from the
``X-Remote-User`` HTTP header (for reverse proxies) `X-Remote-User` HTTP header (for reverse proxies)
## 2.0.0 - Little Big Radish ## 2.0.0 - Little Big Radish
This feature is not compatible with the 1.x.x versions. Follow our This feature is not compatible with the 1.x.x versions. Follow our
[migration guide](https://radicale.org/2.1.html#documentation/migration-from-1xx-to-2xx) if you want to switch from 1.x.x to [migration guide](https://radicale.org/2.1.html#documentation/migration-from-1xx-to-2xx)
2.0.0. if you want to switch from 1.x.x to 2.0.0.
* Support Python 3.3+ only, Python 2 is not supported anymore * Support Python 3.3+ only, Python 2 is not supported anymore
* Keep only one simple filesystem-based storage system * Keep only one simple filesystem-based storage system
@ -280,16 +279,13 @@ This feature is not compatible with the 1.x.x versions. Follow our
* Allow External plugins for authentication, rights management, storage and * Allow External plugins for authentication, rights management, storage and
version control version control
## 1.1.4 - Fifth Law of Nature ## 1.1.4 - Fifth Law of Nature
* Use ``shutil.move`` for ``--export-storage`` * Use `shutil.move` for `--export-storage`
## 1.1.3 - Fourth Law of Nature ## 1.1.3 - Fourth Law of Nature
* Add a ``--export-storage=FOLDER`` command-line argument (by Unrud, see #606) * Add a `--export-storage=FOLDER` command-line argument (by Unrud, see #606)
## 1.1.2 - Third Law of Nature ## 1.1.2 - Third Law of Nature
@ -297,12 +293,10 @@ This feature is not compatible with the 1.x.x versions. Follow our
bruteforce attacks when using the htpasswd authentication method. bruteforce attacks when using the htpasswd authentication method.
* Various minor fixes. * Various minor fixes.
## 1.1.1 - Second Law of Nature ## 1.1.1 - Second Law of Nature
* Fix the owner_write rights rule * Fix the owner_write rights rule
## 1.1 - Law of Nature ## 1.1 - Law of Nature
One feature in this release is **not backward compatible**: One feature in this release is **not backward compatible**:
@ -331,12 +325,10 @@ Some bugs have been fixed and little enhancements have been added:
* Encode message and commiter for git commits * Encode message and commiter for git commits
* Test with Python 3.5 * Test with Python 3.5
## 1.0.1 - Sunflower Again ## 1.0.1 - Sunflower Again
* Update the version because of a **stupid** "feature"™ of PyPI * Update the version because of a **stupid** "feature"™ of PyPI
## 1.0 - Sunflower ## 1.0 - Sunflower
* Enhanced performances (by Mathieu Dupuy) * Enhanced performances (by Mathieu Dupuy)
@ -346,7 +338,6 @@ Some bugs have been fixed and little enhancements have been added:
* Write the path of the collection in the git message (by Matthew Monaco) * Write the path of the collection in the git message (by Matthew Monaco)
* Tests launched on Travis * Tests launched on Travis
## 0.10 - Lovely Endless Grass ## 0.10 - Lovely Endless Grass
* Support well-known URLs (by Mathieu Dupuy) * Support well-known URLs (by Mathieu Dupuy)
@ -356,7 +347,6 @@ Some bugs have been fixed and little enhancements have been added:
* Support salted SHA1 passwords (by Marc Kleine-Budde) * Support salted SHA1 passwords (by Marc Kleine-Budde)
* Don't spam the logs about non-SSL IMAP connections to localhost (by Giel van Schijndel) * Don't spam the logs about non-SSL IMAP connections to localhost (by Giel van Schijndel)
## 0.9 - Rivers ## 0.9 - Rivers
* Custom handlers for auth, storage and rights (by Sergey Fursov) * Custom handlers for auth, storage and rights (by Sergey Fursov)
@ -374,7 +364,6 @@ Some bugs have been fixed and little enhancements have been added:
* Move pid file creation in child process (by Mathieu Dupuy) * Move pid file creation in child process (by Mathieu Dupuy)
* Allow requests without base_prefix (by jheidemann) * Allow requests without base_prefix (by jheidemann)
## 0.8 - Rainbow ## 0.8 - Rainbow
* New authentication and rights management modules (by Matthias Jordan) * New authentication and rights management modules (by Matthias Jordan)
@ -386,7 +375,6 @@ Some bugs have been fixed and little enhancements have been added:
* Colon allowed in passwords * Colon allowed in passwords
* Configurable realm message * Configurable realm message
## 0.7.1 - Waterfalls ## 0.7.1 - Waterfalls
* Many address books fixes * Many address books fixes
@ -396,7 +384,6 @@ Some bugs have been fixed and little enhancements have been added:
* Always set display name to collections (by Oskari Timperi) * Always set display name to collections (by Oskari Timperi)
* Various DELETE responses fixed * Various DELETE responses fixed
## 0.7 - Eternal Sunshine ## 0.7 - Eternal Sunshine
* Repeating events * Repeating events
@ -405,26 +392,22 @@ Some bugs have been fixed and little enhancements have been added:
* CardDAV support * CardDAV support
* Custom LDAP filters supported * Custom LDAP filters supported
## 0.6.4 - Tulips ## 0.6.4 - Tulips
* Fix the installation with Python 3.1 * Fix the installation with Python 3.1
## 0.6.3 - Red Roses ## 0.6.3 - Red Roses
* MOVE requests fixed * MOVE requests fixed
* Faster REPORT answers * Faster REPORT answers
* Executable script moved into the package * Executable script moved into the package
## 0.6.2 - Seeds ## 0.6.2 - Seeds
* iPhone and iPad support fixed * iPhone and iPad support fixed
* Backslashes replaced by slashes in PROPFIND answers on Windows * Backslashes replaced by slashes in PROPFIND answers on Windows
* PyPI archive set as default download URL * PyPI archive set as default download URL
## 0.6.1 - Growing Up ## 0.6.1 - Growing Up
* Example files included in the tarball * Example files included in the tarball
@ -432,7 +415,6 @@ Some bugs have been fixed and little enhancements have been added:
* Redirection loop bug fixed * Redirection loop bug fixed
* Testing message on GET requests * Testing message on GET requests
## 0.6 - Sapling ## 0.6 - Sapling
* WSGI support * WSGI support
@ -447,7 +429,6 @@ Some bugs have been fixed and little enhancements have been added:
* Journal entries support * Journal entries support
* Drop Python 2.5 support * Drop Python 2.5 support
## 0.5 - Historical Artifacts ## 0.5 - Historical Artifacts
* Calendar depth * Calendar depth
@ -455,21 +436,18 @@ Some bugs have been fixed and little enhancements have been added:
* HEAD requests management * HEAD requests management
* htpasswd user from calendar path * htpasswd user from calendar path
## 0.4 - Hot Days Back ## 0.4 - Hot Days Back
* Personal calendars * Personal calendars
* Last-Modified HTTP header * Last-Modified HTTP header
* ``no-ssl`` and ``foreground`` options * `no-ssl` and `foreground` options
* Default configuration file * Default configuration file
## 0.3 - Dancing Flowers ## 0.3 - Dancing Flowers
* Evolution support * Evolution support
* Version management * Version management
## 0.2 - Snowflakes ## 0.2 - Snowflakes
* Sunbird pre-1.0 support * Sunbird pre-1.0 support
@ -483,7 +461,6 @@ Some bugs have been fixed and little enhancements have been added:
* Concurrent modification reported to users * Concurrent modification reported to users
* Many bugs fixed (by Roger Wenham) * Many bugs fixed (by Roger Wenham)
## 0.1 - Crazy Vegetables ## 0.1 - Crazy Vegetables
* First release * First release