Monotone-Parent: b030752b6cabcd3607b11fcc413263019718b79e

Monotone-Revision: 80f21600a12894ecc470a8ad889cbb3a4df08fc5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-08-18T15:19:19
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2008-08-18 15:19:19 +00:00
parent c0fc87c333
commit 3e2a714f53
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-08-18 Ludovic Marcotte <lmarcotte@inverse.ca>
* NSString+NGCards.m ([NSString -unescapedFromCard]): added code
to correctly escape carriage returns from Outlook clients.
2008-08-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* CardGroup.m ([CardGroup -elementWithClass:groupClass]): replaces

View File

@ -1,6 +1,6 @@
/* NSString+NGCards.m - this file is part of SOPE
*
* Copyright (C) 2006 Inverse groupe conseil
* Copyright (C) 2006-2008 Inverse groupe conseil
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
@ -134,7 +134,8 @@ static NSString *commaSeparator = nil;
withString: @"\r"];
string = [string stringByReplacingString: @"\\\\"
withString: @"\\"];
string = [string stringByReplacingString: @"\\N" // Outlook lameness
withString: @"\n"];
return string;
}