mirror of
https://github.com/1f349/go-webdav.git
synced 2024-12-22 16:24:14 +00:00
caldav: add some calendar XML elements
This commit is contained in:
parent
6aea0eda2d
commit
936b9451cc
@ -8,10 +8,41 @@ import (
|
|||||||
|
|
||||||
const namespace = "urn:ietf:params:xml:ns:caldav"
|
const namespace = "urn:ietf:params:xml:ns:caldav"
|
||||||
|
|
||||||
var calendarHomeSetName = xml.Name{namespace, "calendar-home-set"}
|
var (
|
||||||
|
calendarHomeSetName = xml.Name{namespace, "calendar-home-set"}
|
||||||
|
|
||||||
|
calendarDescriptionName = xml.Name{namespace, "calendar-description"}
|
||||||
|
supportedCalendarDataName = xml.Name{namespace, "supported-calendar-data"}
|
||||||
|
maxResourceSizeName = xml.Name{namespace, "max-resource-size"}
|
||||||
|
)
|
||||||
|
|
||||||
// https://tools.ietf.org/html/rfc4791#section-6.2.1
|
// https://tools.ietf.org/html/rfc4791#section-6.2.1
|
||||||
type calendarHomeSet struct {
|
type calendarHomeSet struct {
|
||||||
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:caldav calendar-home-set"`
|
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:caldav calendar-home-set"`
|
||||||
Href internal.Href `xml:"DAV: href"`
|
Href internal.Href `xml:"DAV: href"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://tools.ietf.org/html/rfc4791#section-5.2.1
|
||||||
|
type calendarDescription struct {
|
||||||
|
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:caldav calendar-description"`
|
||||||
|
Description string `xml:",chardata"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://tools.ietf.org/html/rfc4791#section-5.2.4
|
||||||
|
type supportedCalendarData struct {
|
||||||
|
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:caldav supported-calendar-data"`
|
||||||
|
Types []calendarDataType `xml:"calendar-data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://tools.ietf.org/html/rfc4791#section-9.6
|
||||||
|
type calendarDataType struct {
|
||||||
|
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:caldav calendar-data"`
|
||||||
|
ContentType string `xml:"content-type,attr"`
|
||||||
|
Version string `xml:"version,attr"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://tools.ietf.org/html/rfc4791#section-5.2.5
|
||||||
|
type maxResourceSize struct {
|
||||||
|
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:caldav max-resource-size"`
|
||||||
|
Size int64 `xml:",chardata"`
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user