mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-06-03 18:40:51 +00:00
* GSWeb.framework/GSWAction.m (-[initWithRequest:]): Retain
context. * GSWeb.framework/GSWActionRequestHandler.m (-[getActionInstanceOfClass:withRequest:): Autorelease action. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@22368 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8c95b7f3e2
commit
19cb99449e
3 changed files with 13 additions and 5 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,8 +1,16 @@
|
||||||
2005-01-11 David Wetzel <dave@turbocat.de>
|
2006-01-26 David Ayers <d.ayers@inode.at>
|
||||||
|
|
||||||
|
* GSWeb.framework/GSWAction.m (-[initWithRequest:]): Retain
|
||||||
|
context.
|
||||||
|
* GSWeb.framework/GSWActionRequestHandler.m
|
||||||
|
(-[getActionInstanceOfClass:withRequest:): Autorelease action.
|
||||||
|
|
||||||
|
2006-01-11 David Wetzel <dave@turbocat.de>
|
||||||
|
|
||||||
* GSWeb.framework/GSWHTMLComment.h
|
* GSWeb.framework/GSWHTMLComment.h
|
||||||
* GSWeb.framework/GSWHTMLComment.m
|
* GSWeb.framework/GSWHTMLComment.m
|
||||||
Removed multiple categories per file.
|
Removed multiple categories per file.
|
||||||
|
|
||||||
2005-12-19 David Ayers <d.ayers@inode.at>
|
2005-12-19 David Ayers <d.ayers@inode.at>
|
||||||
|
|
||||||
* GSWAdaptors/Apache/mod_gsweb.c (GSWeb_Handler): Avoid endless
|
* GSWAdaptors/Apache/mod_gsweb.c (GSWeb_Handler): Avoid endless
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/** GSWAction.m - <title>GSWeb: Class GSWAction</title>
|
/** GSWAction.m - <title>GSWeb: Class GSWAction</title>
|
||||||
|
|
||||||
Copyright (C) 1999-2005 Free Software Foundation, Inc.
|
Copyright (C) 1999-2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||||
Date: Feb 1999
|
Date: Feb 1999
|
||||||
|
@ -43,7 +43,7 @@ RCS_ID("$Id$")
|
||||||
LOGObjectFnStart();
|
LOGObjectFnStart();
|
||||||
if ((self=[super init]))
|
if ((self=[super init]))
|
||||||
{
|
{
|
||||||
_context=[[GSWApplication application]createContextForRequest:aRequest];
|
_context = RETAIN([GSWApp createContextForRequest:aRequest]);
|
||||||
[GSWApp _setContext:_context]; //NDFN
|
[GSWApp _setContext:_context]; //NDFN
|
||||||
[self _initializeRequestSessionIDInContext:_context];
|
[self _initializeRequestSessionIDInContext:_context];
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/** GSWActionRequestHandler.m - <title>GSWeb: Class GSWActionRequestHandler</title>
|
/** GSWActionRequestHandler.m - <title>GSWeb: Class GSWActionRequestHandler</title>
|
||||||
|
|
||||||
Copyright (C) 1999-2004 Free Software Foundation, Inc.
|
Copyright (C) 1999-2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||||
Date: Feb 1999
|
Date: Feb 1999
|
||||||
|
@ -299,7 +299,7 @@ RCS_ID("$Id$")
|
||||||
|
|
||||||
LOGObjectFnStart();
|
LOGObjectFnStart();
|
||||||
|
|
||||||
action = (GSWAction*)[[actionClass alloc]initWithRequest:aRequest];
|
action = AUTORELEASE([[actionClass alloc]initWithRequest:aRequest]);
|
||||||
|
|
||||||
LOGObjectFnStop();
|
LOGObjectFnStop();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue