]> err.no Git - sope/commitdiff
fixed OGo bug #1260
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 21 Feb 2005 13:30:26 +0000 (13:30 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 21 Feb 2005 13:30:26 +0000 (13:30 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@586 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-core/NGExtensions/ChangeLog
sope-core/NGExtensions/FdExt.subproj/NSString+URLEscaping.m
sope-core/NGExtensions/Version

index 1769613723d059d04a807a61697dd328dfbc36a8..3d86def56252f273cd17fa903cea815821c627a2 100644 (file)
@@ -1,3 +1,9 @@
+2005-02-21  Helge Hess  <helge.hess@opengroupware.org>
+
+       * FdExt.subproj/NSString+URLEscaping.m: changed to escape '+' chars
+         in URLs - this is required since the same methods are used for forms
+         which treat spaces as "+" (OGo bug #1260) (v4.5.151)
+
 2005-02-17  Helge Hess  <helge.hess@opengroupware.org>
 
        * NGBundleManager.m: added some debugging code, minor code cleanups
index f5d8c53d0bc3237a00c14193078cf1efb6f254fd..eb3859245fcf8165e59f5f91aaad2e8f90415012 100644 (file)
@@ -54,7 +54,10 @@ static inline BOOL isUrlDigit(unsigned char _c) {
 }
 static inline BOOL isUrlSafeChar(unsigned char _c) {
   switch (_c) {
-    case '$': case '-': case '_': case '.': case '+':
+    case '$': case '-': case '_': case '.':
+#if 0 /* see OGo bug #1260, required for forms */
+    case '+':
+#endif
     case '@': // TODO: not a safe char?!
       return YES;
 
index 300ba0b3ae7be6a3ac1a4ec2f85e59b9dd726b2f..238d2be03b1a67d0c276206bd50ae4cab4713945 100644 (file)
@@ -1,6 +1,6 @@
 # version
 
-SUBMINOR_VERSION:=150
+SUBMINOR_VERSION:=151
 
 # v4.3.115 requires libFoundation v1.0.59
 # v4.2.72  requires libEOControl  v4.2.39