mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-25 21:35:23 +00:00
Monotone-Parent: 6de7608d4605876bb174df7847a81f7e1cfb7c04
Monotone-Revision: e2d85b05fa8aa8da95376091156223f1648f9677 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-11-26T14:30:02 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
2007-11-26 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* iCalCalendar.m ([iCalCalendar -versitString]): same as below,
|
||||
with "2.0" as value.
|
||||
|
||||
* NGVCard.m ([NGVCard -versitString]): overriden method by forcing
|
||||
version to "3.0" since it's the format we comply with.
|
||||
|
||||
|
||||
2007-11-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* iCalEntityObject.m ([iCalEntityObject -compare:otherObject]):
|
||||
|
||||
+6
-10
@@ -29,16 +29,6 @@
|
||||
|
||||
@implementation NGVCard
|
||||
|
||||
+ (id) parseSingleFromSource: (id) source
|
||||
{
|
||||
NGVCard *newCard;
|
||||
|
||||
newCard = [super parseSingleFromSource: source];
|
||||
[newCard setVersion: @"3.0"];
|
||||
|
||||
return newCard;
|
||||
}
|
||||
|
||||
+ (id) cardWithUid: (NSString *) _uid
|
||||
{
|
||||
NGVCard *newCard;
|
||||
@@ -483,6 +473,12 @@
|
||||
return [self _preferredElementWithTag: @"adr"];
|
||||
}
|
||||
|
||||
- (NSString *) versitString
|
||||
{
|
||||
[self setVersion: @"3.0"];
|
||||
return [self versitString];
|
||||
}
|
||||
|
||||
/* description */
|
||||
|
||||
- (void) appendAttributesToDescription: (NSMutableString *) _ms
|
||||
|
||||
@@ -200,6 +200,12 @@
|
||||
return ma;
|
||||
}
|
||||
|
||||
- (NSString *) versitString
|
||||
{
|
||||
[self setVersion: @"2.0"];
|
||||
return [self versitString];
|
||||
}
|
||||
|
||||
/* ical typing */
|
||||
|
||||
- (NSString *) entityName
|
||||
|
||||
Reference in New Issue
Block a user