mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-19 21:53:19 +00:00
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:
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user