+2006-02-26 Marcus Mueller <znek@mulle-kybernetik.com>
+
+ * XmlRpcValue.m: fixed stupid bugs in -isException and -isDictionary,
+ which formerly lead to unreadable exception garbage whenever a
+ remote exception occured. NOTE: have we had proper unit tests,
+ this probably wouldn't have splipped through so easily. :-)
+ (v4.5.27)
+
2005-11-17 Helge Hess <helge.hess@opengroupware.org>
* NSMutableString+XmlRpcDecoder.m: properly include string.h to fix a
isa = PBXContainerItemProxy;
containerPortal = AD01347106DE7F83000910D8 /* SaxObjC.xcodeproj */;
proxyType = 2;
- remoteGlobalIDString = AD8573DB07EF567800D5FC5B /* saxxml */;
+ remoteGlobalIDString = AD8573DB07EF567800D5FC5B;
remoteInfo = saxxml;
};
/* End PBXContainerItemProxy section */
productRefGroup = AD0133B706DE7DB0000910D8 /* Products */;
projectDirPath = "";
projectReferences = (
- {
- ProductGroup = AD01347706DE7F98000910D8 /* Products */;
- ProjectRef = AD01347106DE7F83000910D8 /* SaxObjC.xcodeproj */;
- },
{
ProductGroup = AD01347506DE7F98000910D8 /* Products */;
ProjectRef = AD01347306DE7F96000910D8 /* DOM.xcodeproj */;
},
+ {
+ ProductGroup = AD01347706DE7F98000910D8 /* Products */;
+ ProjectRef = AD01347106DE7F83000910D8 /* SaxObjC.xcodeproj */;
+ },
);
targets = (
AD0133B506DE7DB0000910D8 /* XmlRpc */,
}
- (BOOL)isException {
- return [(id<NSObject>)[self class] isKindOfClass:[NSException class]];
+ return [(id<NSObject>)[self value] isKindOfClass:[NSException class]];
}
- (BOOL)isDictionary {
- return [(id<NSObject>)[self class] isKindOfClass:[NSDictionary class]];
+ return [(id<NSObject>)[self value] isKindOfClass:[NSDictionary class]];
}
/* description */