Monotone-Parent: 075c67e05325ad90a16ac0da1000c41d2ff882fb

Monotone-Revision: 45bea3e2e145934a34aeefc02e3b87dc35017013

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-03T21:56:25
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-05-03 21:56:25 +00:00
parent 49c47eda75
commit a24ba75298
2 changed files with 9 additions and 2 deletions
@@ -1,3 +1,10 @@
2007-05-03 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* VSSaxDriver.m ([VSSaxDriver +initialize]): removed the space
character from the colonAndSemicolonCharSet and
colonSemicolonAndDquoteCharSet so that fields which contain
attributes with values containing spaces don't get cut.
2006-07-04 Helge Hess <helge.hess@opengroupware.org>
* use %p for pointer formats, fixed gcc 4.1 warnings (v4.5.24)
@@ -184,9 +184,9 @@ static VSStringFormatter *stringFormatter = nil;
commaCharSet =
[[NSCharacterSet characterSetWithCharactersInString: @","] retain];
colonAndSemicolonCharSet =
[[NSCharacterSet characterSetWithCharactersInString: @": ;"] retain];
[[NSCharacterSet characterSetWithCharactersInString: @":;"] retain];
colonSemicolonAndDquoteCharSet =
[[NSCharacterSet characterSetWithCharactersInString: @": ;\""] retain];
[[NSCharacterSet characterSetWithCharactersInString: @":;\""] retain];
whitespaceCharSet =
[[NSCharacterSet whitespaceCharacterSet] retain];