See ChangeLog

Monotone-Parent: 4ddc37a5ea373379044dff16ec46aefe043aeadd
Monotone-Revision: b41f9dce241323b7b2ba27327b93f3fa9aa45178

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-10-26T13:39:28
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2009-10-26 13:39:28 +00:00
parent 5eda4d4358
commit 2ebf35c2c3
6 changed files with 21 additions and 9 deletions

View File

@ -1,3 +1,7 @@
2009-10-25 Ludovic Marcotte <lmarcotte@inverse.ca>
* Fixed many compilation warnings
2009-10-24 Ludovic Marcotte <lmarcotte@inverse.ca>
* Updated the Czech translation - patch from

View File

@ -3,6 +3,7 @@
* Copyright (C) 2006-2009 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
* Ludovic Marcotte <lmarcotte@inverse.ca>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -36,6 +36,7 @@
#import "NSObject+Utilities.h"
#import "NSDictionary+BSJSONAdditions.h"
#import "SOGoUserDefaults.h"
#import "SOGoCache.h"

View File

@ -40,6 +40,8 @@
#import <NGCards/iCalPerson.h>
#import <NGCards/iCalTrigger.h>
#import <NGCards/iCalRecurrenceRule.h>
#import <NGCards/iCalTimeZone.h>
#import <NGCards/iCalDateTime.h>
#import <SoObjects/SOGo/NSDictionary+Utilities.h>
#import <SoObjects/SOGo/SOGoUser.h>
@ -527,8 +529,8 @@
tz = [iCalTimeZone timeZoneForName: [[[context activeUser] timeZone] name]];
[[event parent] addTimeZone: tz];
[[event uniqueChildWithTag: @"dtstart"] setTimeZone: tz];
[[event uniqueChildWithTag: @"dtend"] setTimeZone: tz];
[(iCalDateTime *)[event uniqueChildWithTag: @"dtstart"] setTimeZone: tz];
[(iCalDateTime *)[event uniqueChildWithTag: @"dtend"] setTimeZone: tz];
}
[event setTransparency: (isTransparent? @"TRANSPARENT" : @"OPAQUE")];

View File

@ -1,6 +1,6 @@
/* UIxContactsFilterPanel.m - this file is part of SOGo
*
* Copyright (C) 2006 Inverse inc.
* Copyright (C) 2006-2009 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
@ -28,6 +28,8 @@
#import <NGObjWeb/WOContext.h>
#import <SoObjects/SOGo/SOGoUser.h>
#import "UIxCalFilterPanel.h"
static NSArray *filters = nil;

View File

@ -35,6 +35,8 @@
#import <NGCards/iCalPerson.h>
#import <NGCards/iCalToDo.h>
#import <NGCards/iCalTrigger.h>
#import <NGCards/iCalTimeZone.h>
#import <NGCards/iCalDateTime.h>
#import <SoObjects/SOGo/NSDictionary+Utilities.h>
#import <SoObjects/SOGo/SOGoUser.h>
@ -458,10 +460,10 @@
data = [NSDictionary dictionaryWithObjectsAndKeys:
[todo tag], @"component",
(startDate? [dateFormatter formattedDate: startDate] : @""), @"startDate",
(startDate? [dateFormatter formattedTime: startDate] : @""), @"startTime",
(dueDate? [dateFormatter formattedDate: dueDate] : @""), @"dueDate",
(dueDate? [dateFormatter formattedTime: dueDate] : @""), @"dueTime",
(startDate? (id)[dateFormatter formattedDate: startDate] : (id)@""), @"startDate",
(startDate? (id)[dateFormatter formattedTime: startDate] : (id)@""), @"startTime",
(dueDate? (id)[dateFormatter formattedDate: dueDate] : (id)@""), @"dueDate",
(dueDate? (id)[dateFormatter formattedTime: dueDate] : (id)@""), @"dueTime",
([todo hasRecurrenceRules]? @"1": @"0"), @"isReccurent",
[todo summary], @"summary",
[todo location], @"location",
@ -531,10 +533,10 @@
}
if (hasStartDate)
[[todo uniqueChildWithTag: @"dtstart"] setTimeZone: tz];
[(iCalDateTime *)[todo uniqueChildWithTag: @"dtstart"] setTimeZone: tz];
if (hasDueDate)
[[todo uniqueChildWithTag: @"due"] setTimeZone: tz];
[(iCalDateTime *)[todo uniqueChildWithTag: @"due"] setTimeZone: tz];
}
}