From 3b60fbb4526c7e0a1b8e601117e82ed7b4a0728e Mon Sep 17 00:00:00 2001 From: mguesdon Date: Tue, 25 Nov 2003 13:17:42 +0000 Subject: [PATCH] o set to notImplemented. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18199 72102866-910b-0410-8b05-ffd578937521 --- GSWeb.framework/GSWActionURL.m | 42 ++++++++++++---------------------- 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/GSWeb.framework/GSWActionURL.m b/GSWeb.framework/GSWActionURL.m index 898cc04..5aa9e5b 100644 --- a/GSWeb.framework/GSWActionURL.m +++ b/GSWeb.framework/GSWActionURL.m @@ -41,17 +41,10 @@ RCS_ID("$Id$") associations:(NSDictionary*)associations template:(GSWElement*)template { - IM_StartC("ActionURL"); - MDumpInputObject(name); - MDumpInputObject(associations); - MDumpInputObject(template); - if ((self=[super initWithName:name - associations:associations - template:template])) - { - }; - IM_StopC("ActionURL"); - return self; + LOGObjectFnStart(); + [self notImplemented:_cmd]; + LOGObjectFnStop(); + return nil; }; //-------------------------------------------------------------------- @@ -63,12 +56,10 @@ RCS_ID("$Id$") //-------------------------------------------------------------------- -(NSString*)elementName { - id retValue=nil; - IM_StartC("ActionURL"); - retValue=[super elementName]; - MDumpReturnObject(retValue); - IM_StopC("ActionURL"); - return retValue; + LOGObjectFnStart(); + [self notImplemented:_cmd]; + LOGObjectFnStop(); + return nil; }; @end @@ -80,21 +71,18 @@ RCS_ID("$Id$") -(void)appendToResponse:(GSWResponse*)response inContext:(GSWContext*)context { - IM_StartC("ActionURL"); - [super appendToResponse:response - inContext:context]; - IM_StopC("ActionURL"); + LOGObjectFnStart(); + [self notImplemented:_cmd]; + LOGObjectFnStop(); }; //-------------------------------------------------------------------- +(BOOL)hasGSWebObjectsAssociations { - BOOL retValue=NO; - CM_StartC("ActionURL"); - retValue=[[self superclass] hasWebObjectsAssociations]; - MDumpReturnUInt(retValue); - CM_StopC("ActionURL"); - return retValue; + LOGObjectFnStart(); + [self notImplemented:_cmd]; + LOGObjectFnStop(); + return NO; }; @end