mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 22:27:36 +03:00
Compare commits
10 commits
Author | SHA1 | Date | |
---|---|---|---|
|
a239b3dccc | ||
|
4d08cab382 | ||
|
55cfceaba3 | ||
|
80bf7340f5 | ||
|
ada9fa1cce | ||
|
6158fb961b | ||
|
1f8cb8ed89 | ||
|
159ae0067d | ||
|
c3e33d83e3 | ||
|
b3e14f2844 |
12 changed files with 26 additions and 22 deletions
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -19,7 +19,7 @@ jobs:
|
|||
- name: Run tests
|
||||
run: python setup.py test
|
||||
- name: Upload coverage to Coveralls
|
||||
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
||||
if: github.event_name == 'push'
|
||||
env:
|
||||
COVERALLS_PARALLEL: true
|
||||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
||||
|
@ -29,7 +29,7 @@ jobs:
|
|||
|
||||
coveralls-finish:
|
||||
needs: test
|
||||
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
||||
if: github.event_name == 'push'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up Python
|
||||
|
|
|
@ -33,7 +33,7 @@ Want more? Check the [tutorials](#tutorials) and the
|
|||
### What's New?
|
||||
|
||||
Read the
|
||||
[changelog on GitHub.](https://github.com/Kozea/Radicale/blob/master/NEWS.md)
|
||||
[changelog on GitHub.](https://github.com/Kozea/Radicale/blob/3.0.x/NEWS.md)
|
||||
|
||||
# Tutorials
|
||||
## Simple 5-minute setup
|
||||
|
@ -1331,7 +1331,7 @@ add new features, fix bugs or update the documentation.
|
|||
### Documentation
|
||||
|
||||
To change or complement the documentation create a pull request to
|
||||
[DOCUMENTATION.md](https://github.com/Kozea/Radicale/blob/master/DOCUMENTATION.md).
|
||||
[DOCUMENTATION.md](https://github.com/Kozea/Radicale/blob/3.0.x/DOCUMENTATION.md).
|
||||
|
||||
# Download
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FROM alpine:latest
|
||||
|
||||
# Version of Radicale (e.g. 3.0.0)
|
||||
# Version of Radicale (e.g. 3.0.x)
|
||||
ARG VERSION=master
|
||||
|
||||
# Install dependencies
|
||||
|
|
6
NEWS.md
6
NEWS.md
|
@ -1,6 +1,10 @@
|
|||
# News
|
||||
|
||||
## master
|
||||
## 3.0.1
|
||||
|
||||
* Fix XML error messages
|
||||
|
||||
## 3.0.0
|
||||
|
||||
This release is incompatible with previous releases.
|
||||
See the upgrade checklist below.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# Read Me
|
||||
|
||||

|
||||
[](https://coveralls.io/github/Kozea/Radicale?branch=master)
|
||||

|
||||
[](https://coveralls.io/github/Kozea/Radicale?branch=3.0.x)
|
||||
|
||||
Radicale is a free and open-source CalDAV and CardDAV server.
|
||||
|
||||
For the complete documentation, please visit
|
||||
[Radicale "master" documentation](https://radicale.org/master.html).
|
||||
[Radicale "3.0" Documentation](https://radicale.org/3.0.html).
|
||||
|
|
|
@ -349,8 +349,7 @@ class Application(
|
|||
xml_declaration=True)
|
||||
return f.getvalue()
|
||||
|
||||
def _webdav_error_response(self, human_tag,
|
||||
status=httputils.WEBDAV_PRECONDITION_FAILED[0]):
|
||||
def _webdav_error_response(self, human_tag, status=client.CONFLICT):
|
||||
"""Generate XML error response."""
|
||||
headers = {"Content-Type": "text/xml; charset=%s" % self._encoding}
|
||||
content = self._write_xml_content(xmlutils.webdav_error(human_tag))
|
||||
|
|
|
@ -28,6 +28,7 @@ Use ``load()`` to obtain an instance of ``Configuration`` for use with
|
|||
import contextlib
|
||||
import math
|
||||
import os
|
||||
import string
|
||||
from collections import OrderedDict
|
||||
from configparser import RawConfigParser
|
||||
|
||||
|
@ -74,11 +75,11 @@ def filepath(value):
|
|||
def list_of_ip_address(value):
|
||||
def ip_address(value):
|
||||
try:
|
||||
address, port = value.strip().rsplit(":", 1)
|
||||
return address.strip("[] "), int(port)
|
||||
address, port = value.rsplit(":", 1)
|
||||
return address.strip(string.whitespace + "[]"), int(port)
|
||||
except ValueError:
|
||||
raise ValueError("malformed IP address: %r" % value)
|
||||
return [ip_address(s.strip()) for s in value.split(",")]
|
||||
return [ip_address(s) for s in value.split(",")]
|
||||
|
||||
|
||||
def str_or_callable(value):
|
||||
|
|
|
@ -38,9 +38,6 @@ NOT_FOUND = (
|
|||
CONFLICT = (
|
||||
client.CONFLICT, (("Content-Type", "text/plain"),),
|
||||
"Conflict in the request.")
|
||||
WEBDAV_PRECONDITION_FAILED = (
|
||||
client.CONFLICT, (("Content-Type", "text/plain"),),
|
||||
"WebDAV precondition failed.")
|
||||
METHOD_NOT_ALLOWED = (
|
||||
client.METHOD_NOT_ALLOWED, (("Content-Type", "text/plain"),),
|
||||
"The method is not allowed on the requested resource.")
|
||||
|
|
|
@ -1059,10 +1059,13 @@ class BaseRequestsMixIn:
|
|||
</prop>
|
||||
%s
|
||||
</sync-collection>""" % sync_token_xml)
|
||||
if sync_token and status == 409:
|
||||
xml = DefusedET.fromstring(answer)
|
||||
if status in (403, 409):
|
||||
assert xml.tag == xmlutils.make_clark("D:error")
|
||||
assert sync_token and xml.find(
|
||||
xmlutils.make_clark("D:valid-sync-token")) is not None
|
||||
return None, None
|
||||
assert status == 207
|
||||
xml = DefusedET.fromstring(answer)
|
||||
assert xml.tag == xmlutils.make_clark("D:multistatus")
|
||||
sync_token = xml.find(xmlutils.make_clark("D:sync-token")).text.strip()
|
||||
assert sync_token
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<script src="fn.js"></script>
|
||||
<title>Web interface for Radicale</title>
|
||||
<title>Radicale Web Interface</title>
|
||||
<link href="css/main.css" media="screen" rel="stylesheet">
|
||||
<link href="css/icon.png" type="image/png" rel="shortcut icon">
|
||||
<style>
|
||||
|
|
|
@ -131,7 +131,7 @@ def make_href(base_prefix, href):
|
|||
def webdav_error(human_tag):
|
||||
"""Generate XML error message."""
|
||||
root = ET.Element(make_clark("D:error"))
|
||||
root.append(ET.Element(human_tag))
|
||||
root.append(ET.Element(make_clark(human_tag)))
|
||||
return root
|
||||
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -42,7 +42,7 @@ from setuptools import find_packages, setup
|
|||
|
||||
# When the version is updated, a new section in the NEWS.md file must be
|
||||
# added too.
|
||||
VERSION = "master"
|
||||
VERSION = "3.0.1"
|
||||
WEB_FILES = ["web/internal_data/css/icon.png",
|
||||
"web/internal_data/css/main.css",
|
||||
"web/internal_data/fn.js",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue