o set to notImplemented.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18199 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2003-11-25 13:17:42 +00:00
parent b2c9d70065
commit 3b60fbb452

View file

@ -41,17 +41,10 @@ RCS_ID("$Id$")
associations:(NSDictionary*)associations associations:(NSDictionary*)associations
template:(GSWElement*)template template:(GSWElement*)template
{ {
IM_StartC("ActionURL"); LOGObjectFnStart();
MDumpInputObject(name); [self notImplemented:_cmd];
MDumpInputObject(associations); LOGObjectFnStop();
MDumpInputObject(template); return nil;
if ((self=[super initWithName:name
associations:associations
template:template]))
{
};
IM_StopC("ActionURL");
return self;
}; };
//-------------------------------------------------------------------- //--------------------------------------------------------------------
@ -63,12 +56,10 @@ RCS_ID("$Id$")
//-------------------------------------------------------------------- //--------------------------------------------------------------------
-(NSString*)elementName -(NSString*)elementName
{ {
id retValue=nil; LOGObjectFnStart();
IM_StartC("ActionURL"); [self notImplemented:_cmd];
retValue=[super elementName]; LOGObjectFnStop();
MDumpReturnObject(retValue); return nil;
IM_StopC("ActionURL");
return retValue;
}; };
@end @end
@ -80,21 +71,18 @@ RCS_ID("$Id$")
-(void)appendToResponse:(GSWResponse*)response -(void)appendToResponse:(GSWResponse*)response
inContext:(GSWContext*)context inContext:(GSWContext*)context
{ {
IM_StartC("ActionURL"); LOGObjectFnStart();
[super appendToResponse:response [self notImplemented:_cmd];
inContext:context]; LOGObjectFnStop();
IM_StopC("ActionURL");
}; };
//-------------------------------------------------------------------- //--------------------------------------------------------------------
+(BOOL)hasGSWebObjectsAssociations +(BOOL)hasGSWebObjectsAssociations
{ {
BOOL retValue=NO; LOGObjectFnStart();
CM_StartC("ActionURL"); [self notImplemented:_cmd];
retValue=[[self superclass] hasWebObjectsAssociations]; LOGObjectFnStop();
MDumpReturnUInt(retValue); return NO;
CM_StopC("ActionURL");
return retValue;
}; };
@end @end