2004-03-26 Manuel Guesdon <mguesdon@orange-concept.com>

* GSWeb.framework/GSWAction.m/.h:
	       o added -isActionNamed:
	       * GSWeb.framework/GSWDirectAction.m
		 o in -performActionNamed:, raise exception if method
		 is not found
		 *
		 GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.html:
2004-03-26   Manuel Guesdon <mguesdon@orange-concept.com>


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18922 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2004-03-26 10:30:26 +00:00
parent 3c72098e03
commit 5f320dfd53
2 changed files with 24 additions and 5 deletions

View file

@ -1,3 +1,22 @@
2004-03-26 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb.framework/GSWAction.m/.h:
o added -isActionNamed:
* GSWeb.framework/GSWDirectAction.m
o in -performActionNamed:, raise exception if method is not found
* GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.html:
o added meta to avoid error page indexation
* GSWExtensions.framework/GSWPageRestorationErrorPage.gswc/GSWPageRestorationErrorPage.html:
o added meta to avoid error page indexation
* GSWExtensions.framework/GSWSessionCreationErrorPage.gswc/GSWSessionCreationErrorPage.html:
o added meta to avoid error page indexation
* GSWExtensions.framework/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.html:
o added meta to avoid error page indexation
* GSWSession.m/.h:
o added private methods
o implemented -copy
* GSWHTMLRawParser.m:
o fixed WO_TAG_LENGTH
2004-03-25 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb.framework/GSWActionRequestHandler.m:

View file

@ -137,14 +137,14 @@ Creates a GSWTemporaryElement element, waiting for tag end
NSDebugMLog(@"tagProperties=%@",tagProperties);
NSDebugMLog(@"templateInfo=%@",templateInfo);
NSDebugMLog(@"_currentElement=%@",_currentElement);
NSDebugMLog(@"Old (Parent) _currentElement=%@",_currentElement);
_currentElement = [GSWTemporaryElement temporaryElementOfType:tagType
withProperties:tagProperties
templateInfo:templateInfo
parent:_currentElement];
NSDebugMLog(@"_currentElement=%@",_currentElement);
NSDebugMLog(@"New (Child) _currentElement=%@",_currentElement);
LOGObjectFnStop();
}
@ -160,8 +160,8 @@ Creates a dynamic element from current temporary element element
GSWTemporaryElement* parent=nil;
LOGObjectFnStart();
NSDebugMLog(@"_currentElement=%@",_currentElement);
NSDebugMLog(@"Old (Child) _currentElement=%@",_currentElement);
parent=[_currentElement parentElement];
NSDebugMLog(@"parent=%@",parent);
@ -184,7 +184,7 @@ Creates a dynamic element from current temporary element element
[parent addChildElement:element];
_currentElement = parent;
NSDebugMLog(@"_currentElement=%@",_currentElement);
NSDebugMLog(@"New (Parent) _currentElement=%@",_currentElement);
}
LOGObjectFnStop();
}