Changeset 148 for Mulberry/branches/v4.1d1/Sources_Common/Calendar_Store/Clients/CWebDAVDefinitions.cpp
- Timestamp:
- 01/02/08 00:03:39 (1 year ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/branches/v4.1d1/Sources_Common/Calendar_Store/Clients/CWebDAVDefinitions.cpp
r113 r148 44 44 const xmllib::XMLName cElement_propstat("propstat", cNamespace); 45 45 46 const xmllib::XMLName cProperty_getcontentlength("getcontentlength", cNamespace); 46 const xmllib::XMLName cElement_propertyupdate("propertyupdate", cNamespace); 47 const xmllib::XMLName cElement_set("set", cNamespace); 48 const xmllib::XMLName cElement_remove("remove", cNamespace); 49 50 const xmllib::XMLName cProperty_getcontentlength("getcontentlength", cNamespace); 47 51 const xmllib::XMLName cProperty_getcontenttype("getcontenttype", cNamespace); 48 52 const xmllib::XMLName cProperty_resourcetype("resourcetype", cNamespace); … … 88 92 const xmllib::XMLName cElement_principal_match("principal-match", cNamespace); 89 93 94 // Extended MKCOL 95 const xmllib::XMLName cElement_mkcol("mkcol", cNamespace); 96 const xmllib::XMLName cElement_mkcol_response("mkcol-response", cNamespace); 97 90 98 } 91 99 … … 102 110 103 111 const xmllib::XMLName cElement_calendardata("calendar-data", cNamespace); 104 const xmllib::XMLName cAttribute_returncontenttype("return-content-type", cNamespace);105 112 106 113 const xmllib::XMLName cElement_comp("comp", cNamespace); … … 119 126 const xmllib::XMLName cElement_paramfilter("param-filter", cNamespace); 120 127 121 const xmllib::XMLName cElement_is defined("is-defined", cNamespace);128 const xmllib::XMLName cElement_isnotdefined("is-not-defined", cNamespace); 122 129 const xmllib::XMLName cElement_textmatch("text-match", cNamespace); 123 130 const xmllib::XMLName cAttribute_caseless("caseless", cNamespace); … … 154 161 155 162 const char* cNamespace = "urn:ietf:params:xml:ns:carddav"; 156 const xmllib::XMLName cProperty_carddavadbk("adbk", cNamespace); 157 158 const xmllib::XMLName cElement_adbkquery("adbk-query", cNamespace); 159 const xmllib::XMLName cElement_adbkmultiget("adbk-multiget", cNamespace); 160 161 const xmllib::XMLName cElement_adbkdata("adbk-data", cNamespace); 162 const xmllib::XMLName cAttribute_returncontenttype("return-content-type", cNamespace); 163 const xmllib::XMLName cProperty_carddavadbk("addressbook", cNamespace); 164 165 const xmllib::XMLName cElement_adbkquery("addressbook-query", cNamespace); 166 const xmllib::XMLName cElement_adbkmultiget("addressbook-multiget", cNamespace); 167 168 const xmllib::XMLName cElement_adbkdata("address-data", cNamespace); 163 169 164 170 const xmllib::XMLName cElement_allprop("allprop", cNamespace); … … 168 174 169 175 const xmllib::XMLName cElement_filter("filter", cNamespace); 170 const xmllib::XMLName cElement_compfilter("comp-filter", cNamespace);171 176 const xmllib::XMLName cElement_propfilter("prop-filter", cNamespace); 172 177 const xmllib::XMLName cElement_paramfilter("param-filter", cNamespace); 173 178 174 const xmllib::XMLName cElement_is defined("is-defined", cNamespace);179 const xmllib::XMLName cElement_isnotdefined("is-not-defined", cNamespace); 175 180 const xmllib::XMLName cElement_textmatch("text-match", cNamespace); 176 const xmllib::XMLName cAttribute_caseless("caseless", cNamespace); 181 const xmllib::XMLName cAttribute_collation("collation", cNamespace); 182 const xmllib::XMLName cAttribute_negate_condition("negate-condition", cNamespace); 177 183 const xmllib::XMLName cAttribute_matchtype("match-type", cNamespace); 178 184 179 const xmllib::XMLName cAttributeValue_yes(" caseless_yes", cNamespace);180 const xmllib::XMLName cAttributeValue_no(" caseless_no", cNamespace);185 const xmllib::XMLName cAttributeValue_yes("yes", cNamespace); 186 const xmllib::XMLName cAttributeValue_no("no", cNamespace); 181 187 182 188 const xmllib::XMLName cAttributeValue_matchtype_starts("starts-with", cNamespace); 183 189 const xmllib::XMLName cAttributeValue_matchtype_ends("ends-with", cNamespace); 184 190 const xmllib::XMLName cAttributeValue_matchtype_contains("contains", cNamespace); 185 const xmllib::XMLName cAttributeValue_matchtype_is(" is", cNamespace);191 const xmllib::XMLName cAttributeValue_matchtype_is("equals", cNamespace); 186 192 187 193 }