diff options
author | Graham Leggett <minfrin@apache.org> | 2020-07-15 15:56:55 +0200 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2020-07-15 15:56:55 +0200 |
commit | c52f3e8c6c376387a9002a777b98e2ddba64564a (patch) | |
tree | bb2013358d260b1c822dbe658b75cc9721df9c59 /include | |
parent | mod_dav: Add utility functions dav_validate_root_ns(), (diff) | |
download | apache2-c52f3e8c6c376387a9002a777b98e2ddba64564a.tar.xz apache2-c52f3e8c6c376387a9002a777b98e2ddba64564a.zip |
mod_dav: Some DAV extensions, like CalDAV, specify both document
elements and property elements that need to be taken into account
when generating a property. The document element and property element
are made available in the dav_liveprop_elem structure under the
DAV_PROP_ELEMENT key in the resource pool.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1879889 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/ap_mmn.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index a5242d81f3..9e7b870c1a 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -657,6 +657,8 @@ * 20200705.1 (2.5.1-dev) Add dav_validate_root_ns(), dav_find_child_ns(), * dav_find_next_ns(), dav_find_attr_ns() and * dav_find_attr(). + * 20200705.2 (2.5.1-dev) Add dav_liveprop_elem structure and + * DAV_PROP_ELEMENT key. */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -664,7 +666,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20200705 #endif -#define MODULE_MAGIC_NUMBER_MINOR 1 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 2 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |