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:
Wolfgang Sourdeau
2007-11-26 14:30:02 +00:00
parent 78c3357524
commit 71cfbeaf5e
3 changed files with 21 additions and 10 deletions
+9
View File
@@ -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
View File
@@ -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
+6
View File
@@ -200,6 +200,12 @@
return ma;
}
- (NSString *) versitString
{
[self setVersion: @"2.0"];
return [self versitString];
}
/* ical typing */
- (NSString *) entityName