mirror of
https://github.com/1f349/go-webdav.git
synced 2024-12-23 00:34:23 +00:00
webdav: remove outdated comments
This commit is contained in:
parent
2807ec1dd2
commit
9131ab3eec
3
xml.go
3
xml.go
@ -206,14 +206,12 @@ type Property struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_error
|
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_error
|
||||||
// See multistatusWriter for the "D:" namespace prefix.
|
|
||||||
type xmlError struct {
|
type xmlError struct {
|
||||||
XMLName xml.Name `xml:"DAV: error"`
|
XMLName xml.Name `xml:"DAV: error"`
|
||||||
InnerXML []byte `xml:",innerxml"`
|
InnerXML []byte `xml:",innerxml"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_propstat
|
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_propstat
|
||||||
// See multistatusWriter for the "D:" namespace prefix.
|
|
||||||
type propstat struct {
|
type propstat struct {
|
||||||
Prop []Property `xml:"DAV: prop>_ignored_"`
|
Prop []Property `xml:"DAV: prop>_ignored_"`
|
||||||
Status string `xml:"DAV: status"`
|
Status string `xml:"DAV: status"`
|
||||||
@ -222,7 +220,6 @@ type propstat struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_response
|
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_response
|
||||||
// See multistatusWriter for the "D:" namespace prefix.
|
|
||||||
type response struct {
|
type response struct {
|
||||||
XMLName xml.Name `xml:"DAV: response"`
|
XMLName xml.Name `xml:"DAV: response"`
|
||||||
Href []string `xml:"DAV: href"`
|
Href []string `xml:"DAV: href"`
|
||||||
|
Loading…
Reference in New Issue
Block a user