+2005-07-26 Helge Hess <helge.hess@opengroupware.org>
+
+ * UIxMailTree.m: improved block debugging (v0.9.172)
+
2005-07-23 Helge Hess <helge.hess@opengroupware.org>
+ * v0.9.171
+
+ * UIxMailMainFrame.m: disabled Agenor app banner
+
* UIxMailToSelection.m, UIxMailFormatter.m: fixed gcc 4.0 warnings
2005-07-22 Helge Hess <helge.hess@opengroupware.org>
}
- (BOOL)showLinkBanner {
- if ([self hideFolderTree]) return NO;
- return YES;
+ return NO;
}
- (NSString *)bannerToolbarStyle {
-#if 0 // 32x32
- return [self showLinkBanner] ? @"top: 58px;" : nil /* fallback to CSS */;
-#else // 24x24
- return [self showLinkBanner] ? @"top: 58px;" : nil /* fallback to CSS */;
-#endif
+ return nil;
}
- (NSString *)bannerConsumeStyle {
-#if 0 // 32x32
- return [self showLinkBanner] ? @"height: 116px;" : nil /* fallback to CSS */;
-#else // 24x24
- return [self showLinkBanner] ? @"height: 110px;" : nil /* fallback to CSS */;
-#endif
+ return nil;
}
/* notifications */
for (i = 0; i < count; i++) {
id folder;
+ // TODO: use some context or reuse the main context?
folder = [_object lookupName:[names objectAtIndex:i] inContext:nil
acquire:NO];
- if (folder == nil)
+ if (folder == nil) {
+ if (debugBlocks) {
+ [self logWithFormat:@" DID NOT FIND FOLDER %@: %@",
+ _object,
+ [names objectAtIndex:i]];
+ }
continue;
- if ([folder isKindOfClass:[NSException class]])
+ }
+ if ([folder isKindOfClass:[NSException class]]) {
+ if (debugBlocks) {
+ [self logWithFormat:@" FOLDER LOOKUP EXCEPTION %@: %@",
+ [names objectAtIndex:i], folder];
+ }
continue;
+ }
[ma addObject:folder];
}
+ if (debugBlocks)
+ [self logWithFormat:@" returning: %@ %@", _object, ma];
return ma;
}
# version file
-SUBMINOR_VERSION:=170
+SUBMINOR_VERSION:=172
# v0.9.140 requires SoObjects/Mailer v0.9.100
# v0.9.134 requires libSOGo v0.9.41