optimizations and small fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@20507 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2004-12-31 14:33:16 +00:00
parent 8a7e040a2f
commit da7886eddf
97 changed files with 5460 additions and 2637 deletions

View file

@ -72,20 +72,20 @@ RCS_ID("$Id$")
}
//--------------------------------------------------------------------
-(void)appendToResponse:(GSWResponse*)response
inContext:(GSWContext*)context
-(void)appendToResponse:(GSWResponse*)aResponse
inContext:(GSWContext*)aContext
{
LOGObjectFnStart();
GSWStartElement(context);
GSWStartElement(aContext);
if (_documentTypeString)
{
NSDebugMLLog(@"gswdync",@"added documentTypeString = %@",_documentTypeString);
[response appendContentString:_documentTypeString];
GSWResponse_appendContentString(aResponse,_documentTypeString);
};
[super appendToResponse:response
inContext:context];
GSWStopElement(context);
[super appendToResponse:aResponse
inContext:aContext];
GSWStopElement(aContext);
LOGObjectFnStop();
};