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
6a268449
Commit
6a268449
authored
1 month ago
by
magicfelix
Browse files
Options
Downloads
Patches
Plain Diff
[DAV] Include timezone in calendar-data
parent
1fdb8bc9
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
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
aleksis/core/util/core_helpers.py
+3
-0
3 additions, 0 deletions
aleksis/core/util/core_helpers.py
aleksis/core/util/dav_handler/calendar.py
+20
-6
20 additions, 6 deletions
aleksis/core/util/dav_handler/calendar.py
with
23 additions
and
6 deletions
aleksis/core/util/core_helpers.py
+
3
−
0
View file @
6a268449
...
...
@@ -533,6 +533,9 @@ class ExtendedICal20Feed(feedgenerator.ICal20Feed):
cal
,
with_meta
=
with_meta
,
with_reference_object
=
with_reference_object
,
params
=
params
)
if
params
is
not
None
and
"
VTIMEZONE
"
in
params
and
params
[
"
VTIMEZONE
"
]:
cal
.
add_missing_timezones
()
return
cal
def
to_ical
(
self
,
params
:
Optional
[
dict
[
str
,
any
]]
=
None
):
...
...
This diff is collapsed.
Click to expand it.
aleksis/core/util/dav_handler/calendar.py
+
20
−
6
View file @
6a268449
...
...
@@ -81,7 +81,7 @@ class CalDAVProp(ElementHandler):
def
pre_handle
(
self
):
calendar_data
=
self
.
_get_calendar_data
(
self
.
parent
.
parent
)
comp_name
=
self
.
parent
.
attrs
.
get
(
"
name
"
)
comp_name
=
self
.
parent
.
attrs
.
get
(
(
None
,
"
name
"
)
)
prop
=
self
.
attrs
.
get
((
None
,
"
name
"
))
calendar_data
.
params
.
setdefault
(
comp_name
,
[]).
append
(
prop
)
...
...
@@ -103,11 +103,18 @@ class CalDAVComp(ElementHandler):
name
=
"
{urn:ietf:params:xml:ns:caldav}comp
"
invisible
=
True
@classmethod
def
get_name
(
cls
,
attrs
):
name
=
attrs
.
get
((
None
,
"
name
"
))
return
f
"
{
cls
.
name
}
-
{
name
}
"
def
pre_handle
(
self
):
if
self
.
attrs
.
get
(
"
name
"
)
==
"
VCALENDAR
"
:
attrs
=
{
"
name
"
:
"
VEVENT
"
}
vevent
=
CalDAVComp
(
self
.
request
,
self
,
attrs
)
self
.
children
[
CalDAVComp
.
name
]
=
vevent
if
self
.
attrs
.
get
((
None
,
"
name
"
))
==
"
VCALENDAR
"
:
self
.
children
=
{}
self
.
parent
.
params
[
"
VTIMEZONE
"
]
=
False
elif
self
.
attrs
.
get
((
None
,
"
name
"
))
==
"
VTIMEZONE
"
:
self
.
parent
.
parent
.
params
[
"
VTIMEZONE
"
]
=
True
class
CalendarData
(
ElementHandler
):
...
...
@@ -116,10 +123,17 @@ class CalendarData(ElementHandler):
def
pre_handle
(
self
):
self
.
params
=
{}
attrs
=
{
"
name
"
:
"
VCALENDAR
"
}
attrs
=
{
(
None
,
"
name
"
)
:
"
VCALENDAR
"
}
vcalendar
=
CalDAVComp
(
self
.
request
,
self
,
attrs
)
self
.
children
[
CalDAVComp
.
name
]
=
vcalendar
self
.
params
[
"
VTIMEZONE
"
]
=
True
for
comp_name
in
(
"
VTIMEZONE
"
,
"
VEVENT
"
):
attrs
=
{(
None
,
"
name
"
):
comp_name
}
comp
=
CalDAVComp
(
self
.
request
,
self
,
attrs
)
vcalendar
.
children
[
CalDAVComp
.
name
]
=
comp
def
process_xml
(
self
,
base
,
response
):
super
().
process_xml
(
base
,
response
)
if
not
self
.
invisible
:
...
...
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