summaryrefslogtreecommitdiffstats
path: root/modules/dav
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2001-03-26 12:10:31 +0200
committerGreg Stein <gstein@apache.org>2001-03-26 12:10:31 +0200
commitd7be6db4da1c36e48cd4b7f07fc939091e22241a (patch)
treeb10a86727789d62921db372020e218a8d074e17d /modules/dav
parentMove ap_set_last_modified to the core. This is a potentially (diff)
downloadapache2-d7be6db4da1c36e48cd4b7f07fc939091e22241a.tar.xz
apache2-d7be6db4da1c36e48cd4b7f07fc939091e22241a.zip
revise the set of predefined PROPID values based on DeltaV Internet Draft #14
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88581 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/dav')
-rw-r--r--modules/dav/main/mod_dav.h39
1 files changed, 23 insertions, 16 deletions
diff --git a/modules/dav/main/mod_dav.h b/modules/dav/main/mod_dav.h
index 097663b3e2..e71c06462b 100644
--- a/modules/dav/main/mod_dav.h
+++ b/modules/dav/main/mod_dav.h
@@ -807,6 +807,8 @@ struct dav_hooks_liveprop
** property is a live property. Its use is not part of the mandated liveprop
** interface, but can be used by liveprop providers in conjuction with the
** utility routines below.
+**
+** spec->name == NULL is the defined end-sentinel for a list of specs.
*/
typedef struct {
int ns; /* provider-local namespace index */
@@ -889,10 +891,8 @@ void dav_core_register_uris(apr_pool_t *p);
enum {
DAV_PROPID_BEGIN = 20000,
- /* Standard WebDAV properties (RFC 2518 and DeltaV I-D) */
- DAV_PROPID_comment, /* from DeltaV I-D */
+ /* Standard WebDAV properties (RFC 2518) */
DAV_PROPID_creationdate,
- DAV_PROPID_creator_displayname, /* from DeltaV I-D */
DAV_PROPID_displayname,
DAV_PROPID_getcontentlanguage,
DAV_PROPID_getcontentlength,
@@ -904,38 +904,45 @@ enum {
DAV_PROPID_source,
DAV_PROPID_supportedlock,
- /* DeltaV properties (from the I-D) */
- DAV_PROPID_activity_collection_set,
+ /* DeltaV properties (from the I-D (#14)) */
+ DAV_PROPID_activity_checkout_set,
DAV_PROPID_activity_set,
+ DAV_PROPID_activity_version_set,
DAV_PROPID_auto_merge_set,
DAV_PROPID_auto_version,
- DAV_PROPID_baseline_selector,
- DAV_PROPID_baselined_collection,
- DAV_PROPID_baselined_collection_set,
+ DAV_PROPID_baseline_collection,
+ DAV_PROPID_baseline_controlled_collection,
+ DAV_PROPID_baseline_controlled_collection_set,
+ DAV_PROPID_checked_in,
DAV_PROPID_checked_out,
- DAV_PROPID_checkin_date,
DAV_PROPID_checkin_fork,
DAV_PROPID_checkout_fork,
DAV_PROPID_checkout_set,
+ DAV_PROPID_comment,
+ DAV_PROPID_creator_displayname,
DAV_PROPID_current_activity_set,
DAV_PROPID_current_workspace_set,
- DAV_PROPID_initial_version,
+ DAV_PROPID_default_variant,
+ DAV_PROPID_eclipsed_set,
DAV_PROPID_label_name_set,
- DAV_PROPID_latest_version,
DAV_PROPID_merge_set,
- DAV_PROPID_mutable,
+ DAV_PROPID_precursor_set,
DAV_PROPID_predecessor_set,
+ DAV_PROPID_root_version,
DAV_PROPID_subactivity_set,
+ DAV_PROPID_subbaseline_set,
DAV_PROPID_successor_set,
- DAV_PROPID_target,
+ DAV_PROPID_supported_method_set,
+ DAV_PROPID_supported_live_property_set,
+ DAV_PROPID_supported_report_set,
DAV_PROPID_unreserved,
- DAV_PROPID_version,
+ DAV_PROPID_variant_set,
+ DAV_PROPID_version_controlled_binding_set,
+ DAV_PROPID_version_controlled_configuration,
DAV_PROPID_version_history,
DAV_PROPID_version_name,
- DAV_PROPID_version_set,
DAV_PROPID_workspace,
DAV_PROPID_workspace_checkout_set,
- DAV_PROPID_workspace_collection_set,
DAV_PROPID_END
};