]> err.no Git - scalable-opengroupware.org/commitdiff
minor adjustments
authorznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Sat, 16 Oct 2004 22:09:40 +0000 (22:09 +0000)
committerznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Sat, 16 Oct 2004 22:09:40 +0000 (22:09 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@404 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGoLogic/ChangeLog
SOGoLogic/NSString+iCal.m
SOGoLogic/Version

index bbb5df28fa7cb35011b8f3f3d47939b61b27b509..a8f4c88fca1b318c46ebcd328efd0bfee399cabb 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-17  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * 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  <znek@mulle-kybernetik.com>
 
        * NSString+iCal.[hm]: uses new category from NGExtensions to do the
index c902b110e7615802af248a0a994e31507c8f2fd4..898d2e58181594778e3627ea41fb4cf597537bdc 100644 (file)
   static NSCharacterSet *escapeSet = nil;
   
   if(escapeSet == nil) {
-    escapeSet = [NSCharacterSet characterSetWithCharactersInString:@"\""];
+    escapeSet = [NSCharacterSet characterSetWithCharactersInString:@"\\\""];
     [escapeSet retain];
   }
   return [self iCalEscapedStringWithEscapeSet:escapeSet];
   static NSCharacterSet *escapeSet = nil;
   
   if(escapeSet == nil) {
-    escapeSet = [NSCharacterSet characterSetWithCharactersInString:@"\n,;\""];
+    escapeSet = [NSCharacterSet characterSetWithCharactersInString:@"\n,;\\\""];
     [escapeSet retain];
   }
   return [self iCalEscapedStringWithEscapeSet:escapeSet];
index d8b4b1b104b6d3ef3e0916c2e14bb341c33ee39e..6225fe32e0ea83748b5031800d262d95b4569a42 100644 (file)
@@ -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