From ddd57ce7d21971906f04a07ddc0c237d2543c544 Mon Sep 17 00:00:00 2001 From: znek Date: Sat, 16 Oct 2004 22:09:40 +0000 Subject: [PATCH] minor adjustments git-svn-id: http://svn.opengroupware.org/SOGo/trunk@404 d1b88da0-ebda-0310-925b-ed51d893ca5b --- SOGoLogic/ChangeLog | 6 ++++++ SOGoLogic/NSString+iCal.m | 4 ++-- SOGoLogic/Version | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/SOGoLogic/ChangeLog b/SOGoLogic/ChangeLog index bbb5df28..a8f4c88f 100644 --- a/SOGoLogic/ChangeLog +++ b/SOGoLogic/ChangeLog @@ -1,3 +1,9 @@ +2004-10-17 Marcus Mueller + + * SOGoAppointmentICalRenderer.m: it's never wrong to escape '\', thus + added it to the standard sets. I wish the RFC were more specific in + this respect. (v0.9.19) + 2004-10-14 Marcus Mueller * NSString+iCal.[hm]: uses new category from NGExtensions to do the diff --git a/SOGoLogic/NSString+iCal.m b/SOGoLogic/NSString+iCal.m index c902b110..898d2e58 100644 --- a/SOGoLogic/NSString+iCal.m +++ b/SOGoLogic/NSString+iCal.m @@ -102,7 +102,7 @@ static NSCharacterSet *escapeSet = nil; if(escapeSet == nil) { - escapeSet = [NSCharacterSet characterSetWithCharactersInString:@"\""]; + escapeSet = [NSCharacterSet characterSetWithCharactersInString:@"\\\""]; [escapeSet retain]; } return [self iCalEscapedStringWithEscapeSet:escapeSet]; @@ -112,7 +112,7 @@ static NSCharacterSet *escapeSet = nil; if(escapeSet == nil) { - escapeSet = [NSCharacterSet characterSetWithCharactersInString:@"\n,;\""]; + escapeSet = [NSCharacterSet characterSetWithCharactersInString:@"\n,;\\\""]; [escapeSet retain]; } return [self iCalEscapedStringWithEscapeSet:escapeSet]; diff --git a/SOGoLogic/Version b/SOGoLogic/Version index d8b4b1b1..6225fe32 100644 --- a/SOGoLogic/Version +++ b/SOGoLogic/Version @@ -1,6 +1,6 @@ # $Id$ -SUBMINOR_VERSION:=18 +SUBMINOR_VERSION:=19 # v0.9.18 requires NGExtensions v4.3.123 # v0.9.13 requires libFoundation v1.0.62 -- 2.39.5