+2007-01-17 Helge Hess <helge@perform>
+
+ * WebDAV/SoObjectWebDAVDispatcher.m: never report 404 WebDAV properties
+ in combination with <allprop/> requests (this hacks in the 'brief'
+ header into the request) (v4.5.263)
+
2006-12-30 Marcus Mueller <znek@mulle-kybernetik.com>
* v4.5.262
# version file
-ifeq ($(GNUSTEP_HOST_VENDOR),apple) # linker overflow
-SUBMINOR_VERSION:=255
+ifneq ($(GNUSTEP_HOST_VENDOR),apple) # linker overflow
+SUBMINOR_VERSION:=263
else
-SUBMINOR_VERSION:=262
+SUBMINOR_VERSION:=255
endif
# v4.5.234 requires libDOM v4.5.21
findNames = NO;
}
+ if (findAll) {
+ /*
+ Hack up request to include 'brief'. This elimates the reporting of 404
+ properties in the renderer. Its necessary because some objects may not
+ properly report their default properties (they sometimes report missing
+ properties).
+ */
+ [[_ctx request] setHeader:@"true" forKey:@"brief"];
+ }
+
/* check query all properties */
if (propNames == nil)