]> err.no Git - sope/blobdiff - sope-appserver/NGObjWeb/WODynamicElement.m
fixed duplicate -awake
[sope] / sope-appserver / NGObjWeb / WODynamicElement.m
index d62bd82dfe48af3467bc4d0756853b640d2ed511..bd74f22cbb164e0a58f200f4e298f1f0abb2b8f6 100644 (file)
@@ -1,24 +1,23 @@
 /*
-  Copyright (C) 2000-2004 SKYRIX Software AG
+  Copyright (C) 2000-2005 SKYRIX Software AG
 
-  This file is part of OpenGroupware.org.
+  This file is part of SOPE.
 
-  OGo is free software; you can redistribute it and/or modify it under
+  SOPE is free software; you can redistribute it and/or modify it under
   the terms of the GNU Lesser General Public License as published by the
   Free Software Foundation; either version 2, or (at your option) any
   later version.
 
-  OGo is distributed in the hope that it will be useful, but WITHOUT ANY
+  SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
   WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
   License for more details.
 
   You should have received a copy of the GNU Lesser General Public
-  License along with OGo; see the file COPYING.  If not, write to the
+  License along with SOPE; see the file COPYING.  If not, write to the
   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.
 */
-// $Id$
 
 #include <NGObjWeb/WODynamicElement.h>
 #include "WOElement+private.h"
@@ -117,7 +116,7 @@ static Class FormElementClass = Nil;
   
   [self->otherTagString release];
 
-  if ((ea = self->extraAttributes)) { // GC
+  if ((ea = self->extraAttributes) != NULL) { // GC
     register unsigned short i;
     
     [ea->extraString release];
@@ -145,14 +144,15 @@ static Class FormElementClass = Nil;
   NSEnumerator    *ke;
   NSString        *key;
   NSMutableString *es;
-  
+
   if ([_extras count] == 0)
     /* no extra attributes ... */
     return;
   
   if (self->extraAttributes) {
-    NSLog(@"ERROR(%s): tried to reset extra attributes (access denied) !!!",
-          __PRETTY_FUNCTION__);
+    [self errorWithFormat:
+            @"(%s): tried to reset extra attributes (access denied) !!!",
+            __PRETTY_FUNCTION__];
     return;
   }
   
@@ -324,12 +324,14 @@ static Class FormElementClass = Nil;
   The new DOM element init function for elements constructed from DOM element
   nodes.
 
-  The default method is defined on NSObject instead of WOElement, since some dynamic
-  elements are class clusters, which use temporary non-WOElement classes during
-  construction.
+  The default method is defined on NSObject instead of WOElement, since some
+  dynamic elements are class clusters, which use temporary non-WOElement 
+  classes during construction.
 
-  The default construction process requires no support from existing NGObjWeb elements.
-  It maps all tag attributes to element associations and all child nodes to subelements.
+  The default construction process requires no support from existing NGObjWeb
+  elements.
+  It maps all tag attributes to element associations and all child nodes to 
+  subelements.
   The tagname is used as the dynamic element name.
 */