mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-31 01:01:19 +00:00
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:
parent
8a7e040a2f
commit
da7886eddf
97 changed files with 5460 additions and 2637 deletions
|
@ -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();
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue