fix misspellings

This commit is contained in:
Mathieu Dupuy 2024-07-24 11:22:49 +02:00
parent 61be51e9f3
commit 47bc966a13
No known key found for this signature in database
GPG key ID: 08C1D4F32506B23A
11 changed files with 23 additions and 23 deletions

View file

@ -183,7 +183,7 @@ def run() -> None:
storage_ = storage.load(configuration) storage_ = storage.load(configuration)
with storage_.acquire_lock("r"): with storage_.acquire_lock("r"):
if not storage_.verify(): if not storage_.verify():
logger.critical("Storage verifcation failed") logger.critical("Storage verification failed")
sys.exit(1) sys.exit(1)
except Exception as e: except Exception as e:
logger.critical("An exception occurred during storage " logger.critical("An exception occurred during storage "

View file

@ -232,7 +232,7 @@ class Application(ApplicationPartDelete, ApplicationPartHead,
path.rstrip("/").endswith("/.well-known/carddav")): path.rstrip("/").endswith("/.well-known/carddav")):
return response(*httputils.redirect( return response(*httputils.redirect(
base_prefix + "/", client.MOVED_PERMANENTLY)) base_prefix + "/", client.MOVED_PERMANENTLY))
# Return NOT FOUND for all other paths containing ".well-knwon" # Return NOT FOUND for all other paths containing ".well-known"
if path.endswith("/.well-known") or "/.well-known/" in path: if path.endswith("/.well-known") or "/.well-known/" in path:
return response(*httputils.NOT_FOUND) return response(*httputils.NOT_FOUND)

View file

@ -322,13 +322,13 @@ def xml_propfind_response(
responses[404 if is404 else 200].append(element) responses[404 if is404 else 200].append(element)
for status_code, childs in responses.items(): for status_code, children in responses.items():
if not childs: if not children:
continue continue
propstat = ET.Element(xmlutils.make_clark("D:propstat")) propstat = ET.Element(xmlutils.make_clark("D:propstat"))
response.append(propstat) response.append(propstat)
prop = ET.Element(xmlutils.make_clark("D:prop")) prop = ET.Element(xmlutils.make_clark("D:prop"))
prop.extend(childs) prop.extend(children)
propstat.append(prop) propstat.append(prop)
status = ET.Element(xmlutils.make_clark("D:status")) status = ET.Element(xmlutils.make_clark("D:status"))
status.text = xmlutils.make_response(status_code) status.text = xmlutils.make_response(status_code)

View file

@ -271,7 +271,7 @@ def _make_vobject_expanded_item(
if hasattr(item.vobject_item.vevent, 'rrule'): if hasattr(item.vobject_item.vevent, 'rrule'):
rruleset = vevent.getrruleset() rruleset = vevent.getrruleset()
# There is something strage behavour during serialization native datetime, so converting manualy # There is something strange behaviour during serialization native datetime, so converting manually
vevent.dtstart.value = vevent.dtstart.value.strftime(dt_format) vevent.dtstart.value = vevent.dtstart.value.strftime(dt_format)
if dt_end is not None: if dt_end is not None:
vevent.dtend.value = vevent.dtend.value.strftime(dt_format) vevent.dtend.value = vevent.dtend.value.strftime(dt_format)

View file

@ -36,7 +36,7 @@ pointed to by the ``htpasswd_filename`` configuration value while assuming
the password encryption method specified via the ``htpasswd_encryption`` the password encryption method specified via the ``htpasswd_encryption``
configuration value. configuration value.
The following htpasswd password encrpytion methods are supported by Radicale The following htpasswd password encryption methods are supported by Radicale
out-of-the-box: out-of-the-box:
- plain-text (created by htpasswd -p ...) -- INSECURE - plain-text (created by htpasswd -p ...) -- INSECURE
- MD5-APR1 (htpasswd -m ...) -- htpasswd's default method, INSECURE - MD5-APR1 (htpasswd -m ...) -- htpasswd's default method, INSECURE

View file

@ -304,7 +304,7 @@ def find_time_range(vobject_item: vobject.base.Component, tag: str
Returns a tuple (``start``, ``end``) where ``start`` and ``end`` are Returns a tuple (``start``, ``end``) where ``start`` and ``end`` are
POSIX timestamps. POSIX timestamps.
This is intened to be used for matching against simplified prefilters. This is intended to be used for matching against simplified prefilters.
""" """
if not tag: if not tag:

View file

@ -199,7 +199,7 @@ def visit_time_ranges(vobject_item: vobject.base.Component, child_name: str,
""" """
# HACK: According to rfc5545-3.8.4.4 an recurrance that is resheduled # HACK: According to rfc5545-3.8.4.4 a recurrence that is rescheduled
# with Recurrence ID affects the recurrence itself and all following # with Recurrence ID affects the recurrence itself and all following
# recurrences too. This is not respected and client don't seem to bother # recurrences too. This is not respected and client don't seem to bother
# either. # either.

View file

@ -22,7 +22,7 @@ config (section "rights", key "file").
The login is matched against the "user" key, and the collection path The login is matched against the "user" key, and the collection path
is matched against the "collection" key. In the "collection" regex you can use is matched against the "collection" key. In the "collection" regex you can use
`{user}` and get groups from the "user" regex with `{0}`, `{1}`, etc. `{user}` and get groups from the "user" regex with `{0}`, `{1}`, etc.
In consequence of the parameter subsitution you have to write `{{` and `}}` In consequence of the parameter substitution you have to write `{{` and `}}`
if you want to use regular curly braces in the "user" and "collection" regexes. if you want to use regular curly braces in the "user" and "collection" regexes.
For example, for the "user" key, ".+" means "authenticated user" and ".*" For example, for the "user" key, ".+" means "authenticated user" and ".*"

View file

@ -84,7 +84,7 @@ class CollectionPartGet(CollectionPartCache, CollectionPartLock,
cache_content = self._load_item_cache(href, cache_hash) cache_content = self._load_item_cache(href, cache_hash)
if cache_content is None: if cache_content is None:
with self._acquire_cache_lock("item"): with self._acquire_cache_lock("item"):
# Lock the item cache to prevent multpile processes from # Lock the item cache to prevent multiple processes from
# generating the same data in parallel. # generating the same data in parallel.
# This improves the performance for multiple requests. # This improves the performance for multiple requests.
if self._storage._lock.locked == "r": if self._storage._lock.locked == "r":
@ -127,7 +127,7 @@ class CollectionPartGet(CollectionPartCache, CollectionPartLock,
def get_multi(self, hrefs: Iterable[str] def get_multi(self, hrefs: Iterable[str]
) -> Iterator[Tuple[str, Optional[radicale_item.Item]]]: ) -> Iterator[Tuple[str, Optional[radicale_item.Item]]]:
# It's faster to check for file name collissions here, because # It's faster to check for file name collisions here, because
# we only need to call os.listdir once. # we only need to call os.listdir once.
files = None files = None
for href in hrefs: for href in hrefs:
@ -146,7 +146,7 @@ class CollectionPartGet(CollectionPartCache, CollectionPartLock,
def get_all(self) -> Iterator[radicale_item.Item]: def get_all(self) -> Iterator[radicale_item.Item]:
for href in self._list(): for href in self._list():
# We don't need to check for collissions, because the file names # We don't need to check for collisions, because the file names
# are from os.listdir. # are from os.listdir.
item = self._get(href, verify_href=False) item = self._get(href, verify_href=False)
if item is not None: if item is not None:

View file

@ -112,7 +112,7 @@ class BaseTest:
for response in xml.findall(xmlutils.make_clark("D:response")): for response in xml.findall(xmlutils.make_clark("D:response")):
href = response.find(xmlutils.make_clark("D:href")) href = response.find(xmlutils.make_clark("D:href"))
assert href.text not in path_responses assert href.text not in path_responses
prop_respones: Dict[str, Tuple[int, ET.Element]] = {} prop_responses: Dict[str, Tuple[int, ET.Element]] = {}
for propstat in response.findall( for propstat in response.findall(
xmlutils.make_clark("D:propstat")): xmlutils.make_clark("D:propstat")):
status = propstat.find(xmlutils.make_clark("D:status")) status = propstat.find(xmlutils.make_clark("D:status"))
@ -121,16 +121,16 @@ class BaseTest:
for element in propstat.findall( for element in propstat.findall(
"./%s/*" % xmlutils.make_clark("D:prop")): "./%s/*" % xmlutils.make_clark("D:prop")):
human_tag = xmlutils.make_human_tag(element.tag) human_tag = xmlutils.make_human_tag(element.tag)
assert human_tag not in prop_respones assert human_tag not in prop_responses
prop_respones[human_tag] = (status_code, element) prop_responses[human_tag] = (status_code, element)
status = response.find(xmlutils.make_clark("D:status")) status = response.find(xmlutils.make_clark("D:status"))
if status is not None: if status is not None:
assert not prop_respones assert not prop_responses
assert status.text.startswith("HTTP/1.1 ") assert status.text.startswith("HTTP/1.1 ")
status_code = int(status.text.split(" ")[1]) status_code = int(status.text.split(" ")[1])
path_responses[href.text] = status_code path_responses[href.text] = status_code
else: else:
path_responses[href.text] = prop_respones path_responses[href.text] = prop_responses
return path_responses return path_responses
def get(self, path: str, check: Optional[int] = 200, **kwargs def get(self, path: str, check: Optional[int] = 200, **kwargs

View file

@ -359,7 +359,7 @@ permissions: RrWw""")
self.get(path1, check=404) self.get(path1, check=404)
self.get(path2) self.get(path2)
def test_move_between_colections(self) -> None: def test_move_between_collections(self) -> None:
"""Move a item.""" """Move a item."""
self.mkcalendar("/calendar1.ics/") self.mkcalendar("/calendar1.ics/")
self.mkcalendar("/calendar2.ics/") self.mkcalendar("/calendar2.ics/")
@ -372,7 +372,7 @@ permissions: RrWw""")
self.get(path1, check=404) self.get(path1, check=404)
self.get(path2) self.get(path2)
def test_move_between_colections_duplicate_uid(self) -> None: def test_move_between_collections_duplicate_uid(self) -> None:
"""Move a item to a collection which already contains the UID.""" """Move a item to a collection which already contains the UID."""
self.mkcalendar("/calendar1.ics/") self.mkcalendar("/calendar1.ics/")
self.mkcalendar("/calendar2.ics/") self.mkcalendar("/calendar2.ics/")
@ -388,7 +388,7 @@ permissions: RrWw""")
assert xml.tag == xmlutils.make_clark("D:error") assert xml.tag == xmlutils.make_clark("D:error")
assert xml.find(xmlutils.make_clark("C:no-uid-conflict")) is not None assert xml.find(xmlutils.make_clark("C:no-uid-conflict")) is not None
def test_move_between_colections_overwrite(self) -> None: def test_move_between_collections_overwrite(self) -> None:
"""Move a item to a collection which already contains the item.""" """Move a item to a collection which already contains the item."""
self.mkcalendar("/calendar1.ics/") self.mkcalendar("/calendar1.ics/")
self.mkcalendar("/calendar2.ics/") self.mkcalendar("/calendar2.ics/")
@ -402,8 +402,8 @@ permissions: RrWw""")
self.request("MOVE", path1, check=204, HTTP_OVERWRITE="T", self.request("MOVE", path1, check=204, HTTP_OVERWRITE="T",
HTTP_DESTINATION="http://127.0.0.1/"+path2) HTTP_DESTINATION="http://127.0.0.1/"+path2)
def test_move_between_colections_overwrite_uid_conflict(self) -> None: def test_move_between_collections_overwrite_uid_conflict(self) -> None:
"""Move a item to a collection which already contains the item with """Move an item to a collection which already contains the item with
a different UID.""" a different UID."""
self.mkcalendar("/calendar1.ics/") self.mkcalendar("/calendar1.ics/")
self.mkcalendar("/calendar2.ics/") self.mkcalendar("/calendar2.ics/")