]> err.no Git - sope/commitdiff
code cleanups
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 3 Nov 2006 20:46:54 +0000 (20:46 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 3 Nov 2006 20:46:54 +0000 (20:46 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1372 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/ChangeLog
sope-appserver/NGObjWeb/DynamicElements/WOCheckBox.m
sope-appserver/NGObjWeb/DynamicElements/WOInput.m
sope-appserver/NGObjWeb/Version
sope-appserver/WOExtensions/WOTable.m

index 82372e6281065ecd451245d12feb95b7f0c5f85e..92b9bf7412ef42286941bc24d8720c3265864d1b 100644 (file)
@@ -1,3 +1,11 @@
+2006-11-03  Helge Hess  <helge.hess@opengroupware.org>
+
+       * v4.5.254
+
+       * DynamicElements/WOInput.m: changed to use -warnWithFormat:
+
+       * DynamicElements/WOCheckBox.m: subminor code cleanup
+
 2006-11-02  Helge Hess  <helge.hess@opengroupware.org>
 
        * woapp-gs.make: fixed a bug in a variable test for which_lib, note
index 8fc69596e75722aec0e1188cbcd1e2d2c463d39b..0fffe99eb58fa64bc55b3adbe8a11e5dea714b0c 100644 (file)
   
   [self appendExtraAttributesToResponse:_response inContext:_ctx];
   
-  if (self->otherTagString) {
+  if (self->otherTagString != nil) {
     WOResponse_AddChar(_response, ' ');
     WOResponse_AddString(_response,
                         [self->otherTagString stringValueInComponent:
index 5d5f1950a7a20c966b31859198b446c80893c4af..546c9aadabc6f8eb01612b0056449d1ff409cebe 100644 (file)
@@ -1,5 +1,6 @@
 /*
-  Copyright (C) 2000-2005 SKYRIX Software AG
+  Copyright (C) 2000-2006 SKYRIX Software AG
+  Copyright (C) 2006      Helge Hess
 
   This file is part of SOPE.
 
@@ -58,9 +59,8 @@ static BOOL takeValueDebugOn = YES;
     [(NSMutableDictionary *)_associations removeObjectForKey:@"type"];
     
     if ([_associations objectForKey:@"NAME"]) {
-      NSLog(@"WARNING: found 'NAME' association in element %@, "
-            @"'name' is probably the right thing ..",
-            self);
+      [self warnWithFormat:@"found 'NAME' association in element %@, "
+            @"'name' is probably the right thing.", _name];
     }
   }
   return self;
@@ -85,8 +85,8 @@ NSString *OWFormElementName(WOInput *self, WOContext *_ctx) {
     return name;
   
   [[_ctx component]
-         logWithFormat:
-               @"WARNING: in element %@, 'name' attribute configured (%@),"
+         warnWithFormat:
+               @"in element %@, 'name' attribute configured (%@),"
                @"but no name assigned (using elementID as name) !",
                self, self->name];
   return [_ctx elementID];
@@ -134,8 +134,9 @@ NSString *OWFormElementName(WOInput *self, WOContext *_ctx) {
   NSMutableString *str;
   
   str = [NSMutableString stringWithCapacity:128];
-  if (self->value)    [str appendFormat:@" value=%@",    self->value];
-  if (self->name)     [str appendFormat:@" name=%@",     self->name];
+  if (self->value != nil) [str appendFormat:@" value=%@",    self->value];
+  if (self->name  != nil) [str appendFormat:@" name=%@",     self->name];
+  
   if (self->disabled) [str appendFormat:@" disabled=%@", self->disabled];
   return str;
 }
index 9c0d91a730015f9958d02d11129cfbfa7a072abc..f385ac550d0c910279889b97393e3e63f3741b83 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=253
+SUBMINOR_VERSION:=254
 
 # v4.5.234 requires libDOM          v4.5.21
 # v4.5.214 requires libNGExtensions v4.5.179
index b3cb00246ee210fabad1b52891cb00c98ac6d04a..85eb87240649dcc948cf7a99a2b77f15e3bcc3a0 100644 (file)
 
 #include <NGObjWeb/WODynamicElement.h>
 
+/*
+  WOTable
+  
+  TODO: document
+*/
 @interface WOTable : WODynamicElement
 {
   // WODynamicElement: extraAttributes