]> err.no Git - sope/commitdiff
consume multipleSubmit association on WOForm
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 7 Mar 2005 16:24:10 +0000 (16:24 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 7 Mar 2005 16:24:10 +0000 (16:24 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@626 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/ChangeLog
sope-appserver/NGObjWeb/DynamicElements/WOForm.m
sope-appserver/NGObjWeb/Version

index 53856551e16a5a5deb29fa41f840857714b67ab8..68813711e0f733803ba505053738ca978c8d915e 100644 (file)
@@ -1,5 +1,8 @@
 2005-03-07  Helge Hess  <helge.hess@opengroupware.org>
 
+       * DynamicElements/WOForm.m: consume 'multipleSubmit' association for
+         WO compatibility as requested by Stephane (v4.5.130)
+
        * WOHttpAdaptor/WOHttpAdaptor.m: added the ability to fork multiple
          child servers listing on the same passive socket. The OS will
          distribute the load between such processes. Note that this only
index 093ba0581be086fc03d2286689832d2be4a8d3eb..e9e878aac3c768324b73f2fbf90186c9ee21b6ea 100644 (file)
@@ -47,6 +47,7 @@ static int debugTakeValues = -1;
   
   if ((self = [super initWithName:_name associations:_config template:_c])) {
     WOAssociation *sidInUrlAssoc;
+    id tmp;
 
     self->containsForm = YES;
     
@@ -64,6 +65,11 @@ static int debugTakeValues = -1;
       ? [sidInUrlAssoc boolValueInComponent:nil]
       : YES;
     
+    if ((tmp = OWGetProperty(_config, @"multipleSubmit")) != nil) {
+      /* not required with SOPE, for WO compatibility */
+      [tmp release];
+    }
+    
     self->template = [_c retain];
   }
   return self;
index 23c56cf3cfed9a19c466dc513a2ba6a79be7d6d1..8e4d785ce5b69ec18911ee562a29fe92f923eaa8 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=129
+SUBMINOR_VERSION:=130
 
 # v4.5.122 requires libNGExtensions v4.5.153
 # v4.5.91  requires libNGExtensions v4.5.134