Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
befd5584
Commit
befd5584
authored
1 month ago
by
magicfelix
Browse files
Options
Downloads
Patches
Plain Diff
[DAV] Fix characters handling
parent
dbbb99eb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1147
Implement read-only CalDAV and CardDAV
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/core/util/dav_handler/base.py
+2
-2
2 additions, 2 deletions
aleksis/core/util/dav_handler/base.py
with
2 additions
and
2 deletions
aleksis/core/util/dav_handler/base.py
+
2
−
2
View file @
befd5584
...
...
@@ -34,7 +34,7 @@ class ElementHandler(RegistryObject, is_registry=True):
self
.
request
=
request
self
.
parent
=
parent
self
.
attrs
=
attrs
self
.
content
=
None
self
.
content
=
""
if
invisible
is
not
None
:
self
.
invisible
=
invisible
else
:
...
...
@@ -191,7 +191,7 @@ class DAVRequest(ElementHandler, ContentHandler):
def
characters
(
self
,
content
):
"""
Handle content of an XML element.
"""
self
.
current_object
.
content
=
content
self
.
current_object
.
content
+
=
content
class
DAVMultistatus
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment