Monotone-Parent: e5a4a8243c282c12538ab38c9b5c23722be35e99

Monotone-Revision: d9bec826cdc8df69ea27563722cd678c85ebcf20

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-11-09T20:48:20
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2011-11-09 20:48:20 +00:00
parent 5be374313f
commit af48e18f3a
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2011-11-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* NSString+NGCards.m (-escapedForCards): restored the escaping of
commas, since they might be used in fields such as
COMMENT/DESCRIPTION (iCalendar) or NOTE (vCards)
2011-09-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* iCalToDo.m (-setCompleted:): (hack) when invoked with a nil

View file

@ -156,8 +156,8 @@
string = [self stringByReplacingString: @"\\"
withString: @"\\\\"];
// string = [string stringByReplacingString: @","
// withString: @"\\,"];
string = [string stringByReplacingString: @","
withString: @"\\,"];
// string = [string stringByReplacingString: @":"
// withString: @"\\:"];
string = [string stringByReplacingString: @";"

View file

@ -102,6 +102,7 @@
return [[self uniqueChildWithTag: @"location"] value: 0];
}
#warning the "comment" accessors are actually "description" accessors, the "comment" ones are missing
- (void) setComment: (NSString *) _value
{
[[self uniqueChildWithTag: @"description"] setValue: 0 to: _value];