]> err.no Git - sope/commitdiff
added accessors to set query-path separator
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 4 Mar 2005 14:50:53 +0000 (14:50 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 4 Mar 2005 14:50:53 +0000 (14:50 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@615 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/ChangeLog
sope-appserver/NGObjWeb/NGObjWeb/WOContext.h
sope-appserver/NGObjWeb/Version
sope-appserver/NGObjWeb/WOContext.m

index 5214aff7314f2b965e37d30640b6fe5799ea7fd0..b5d8e0062735d7514bfe6ad64d57afda4764806e 100644 (file)
@@ -1,5 +1,8 @@
 2005-03-04  Helge Hess  <helge.hess@opengroupware.org>
 
+       * WOContext.m: added -setQueryPathSeparator:/-queryPathSeparator
+         methods as requested by Stephane (v4.5.125)
+
        * WOComponent.m: protect component against duplicate -awake in the
          same context as suggested by Stephane (v4.5.124)
 
index b656c8f48bb30b03f1a5fe4a268f23519d969d34..9e064f45e4be546ba61a317daf2ab6830e418274 100644 (file)
 
 - (NSString *)queryStringFromDictionary:(NSDictionary *)_queryDict;
 
+- (void)setQueryPathSeparator:(NSString *)_sp;
+- (NSString *)queryPathSeparator;
+
 @end
 
 @interface WOContext(PrivateMethods)
index b4b46d8035ae7adeb359b68bb0013e16bbef24fe..d8d197cdc9cea5cef17b6eaddc4c4e8b4fa3e753 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=124
+SUBMINOR_VERSION:=125
 
 # v4.5.122 requires libNGExtensions v4.5.153
 # v4.5.91  requires libNGExtensions v4.5.134
index c65423da22a4b16af916899088048c420ba07d79..f6c5c0de9663f8d09d49dce7b1c7238664716d5c 100644 (file)
@@ -699,6 +699,13 @@ void WOContext_leaveComponent(WOContext *self, WOComponent *_component) {
   /* described in Apple TIL article 70101 */
 }
 
+- (void)setQueryPathSeparator:(NSString *)_sp {
+  ASSIGNCOPY(self->qpJoin, _sp);
+}
+- (NSString *)queryPathSeparator {
+  return self->qpJoin;
+}
+
 - (NSString *)queryStringFromDictionary:(NSDictionary *)_queryDict {
   NSEnumerator    *keys;
   NSString        *key;