mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-04 22:56:24 +00:00
Monotone-Parent: 65e85a0c1825401dd092e3ed519e16162a7e4fe1
Monotone-Revision: b2f62cdaa21cb716943261705698e2506dfcb55f Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-26T16:33:38 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2006-10-26 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* OGoContentStore/OCSiCalFieldExtractor.m ([OCSiCalFieldExtractor
|
||||
-extractQuickFieldsFromEvent:_event]): changed "TENTATIVE" code to
|
||||
2 and "CANCELLED" to 0.
|
||||
|
||||
2006-10-25 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/UIxAppointmentEditor.js: handle conversion
|
||||
|
||||
@@ -143,14 +143,14 @@ static NSNumber *distantFutureNumber = nil;
|
||||
int code = 1;
|
||||
|
||||
if ([status isEqualToString:@"TENTATIVE"])
|
||||
code = 0;
|
||||
else if ([status isEqualToString:@"CANCELLED"])
|
||||
code = 2;
|
||||
else if ([status isEqualToString:@"CANCELLED"])
|
||||
code = 0;
|
||||
[row setObject:[NSNumber numberWithInt:code] forKey:@"status"];
|
||||
}
|
||||
else {
|
||||
/* confirmed by default */
|
||||
[row setObject:[NSNumber numberWithInt:1] forKey:@"status"];
|
||||
[row setObject: [NSNumber numberWithInt:1] forKey: @"status"];
|
||||
}
|
||||
|
||||
if([accessClass isNotNull] && ![accessClass isEqualToString:@"PUBLIC"]) {
|
||||
|
||||
Reference in New Issue
Block a user