Update ChangeLog for previous premature commit of uncleaned changes

and minor cleanups thereof. :-/

	* GSWeb.framework/GSWResourceManager.m
	([GSWResourceManager setURLValuedElementData:]): Test contents
	of data before setting it.

	* GSWeb.framework/GSWApplication.m
	([GSWApplication
	lockedComponentDefinitionWithName:languages:]):
	Add handling for components without wrappers.

	* GSWeb.framework/GSWGenericElement.h: Corrected names of
	instance
	variable and method.
	* GSWeb.framework/GSWGenericElement.m:
	([GSWGenericElement initWithName:associations:template:]):
	Implemented.
	([GSWGenericElement dealloc]): Ditto.
	([GSWGenericElement description]): Ditto.
	([GSWGenericElement appendToResponse:inContext:]): Ditto.
	([GSWGenericElement invokeActionForRequest:inContext:]):
	Ditto.
	([GSWGenericElement takeValuesFromRequest:inContext:]): Ditto.
	([GSWGenericElement _elementNameAppendToResponse:inContext:]):
	Ditto.
	([GSWGenericElement
	_appendTagWithName:toResponse:inContext:]):
	Ditto.
	([GSWGenericElement
	_appendOtherAttributesToResponse:inContext:]):
	Ditto.
	([GSWGenericElement _elementNameInContext:]): Ditto.
	* GSWeb.framework/GSWConstants.h/m: Added Tags for
	GSWGenericElement.

	* GSWeb.framework/GSWTemplateParser.m ([GSWTemplateParser
	templateWithHTMLString:declarationString:languages:]): Added
	preliminary implementation and commented correct implement.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18435 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2004-01-18 17:30:58 +00:00
parent 6828d6442f
commit e20282661f
3 changed files with 42 additions and 2 deletions

View file

@ -22,6 +22,45 @@
* GSWeb.framework/GSWConfig.h: Turn GSW/WOLifebeatEnabled off by
default.
* GSWeb.framework/GSWResourceManager.m
([GSWResourceManager setURLValuedElementData:]): Test contents of
data before setting it.
* GSWeb.framework/GSWApplication.m
([GSWApplication lockedComponentDefinitionWithName:languages:]):
Add handling for components without wrappers.
* GSWeb.framework/GSWGenericElement.h: Corrected names of instance
variable and method.
* GSWeb.framework/GSWGenericElement.m:
([GSWGenericElement initWithName:associations:template:]):
Implemented.
([GSWGenericElement dealloc]): Ditto.
([GSWGenericElement description]): Ditto.
([GSWGenericElement appendToResponse:inContext:]): Ditto.
([GSWGenericElement invokeActionForRequest:inContext:]): Ditto.
([GSWGenericElement takeValuesFromRequest:inContext:]): Ditto.
([GSWGenericElement _elementNameAppendToResponse:inContext:]):
Ditto.
([GSWGenericElement _appendTagWithName:toResponse:inContext:]):
Ditto.
([GSWGenericElement _appendOtherAttributesToResponse:inContext:]):
Ditto.
([GSWGenericElement _elementNameInContext:]): Ditto.
* GSWeb.framework/GSWConstants.h/m: Added Tags for
GSWGenericElement.
* GSWeb.framework/GSWTemplateParser.m ([GSWTemplateParser
templateWithHTMLString:declarationString:languages:]): Added
preliminary implementation and commented correct implement.
* GSWeb.framework/GSWWOCompatibility.h: Fix typo.
* GSWeb.framework/GSWURLValuedElementData.m
([GSWURLValuedElementData initWithData:mimeType:key:]): Call
stringUniqueIdWithLength: with minimal allowed length.
2004-01-13 David Ayers <d.ayers@inode.at>
* config/pathxml.m4: Whitespace fixes for coding standards.

View file

@ -85,7 +85,7 @@ RCS_ID("$Id$")
withParserType: [self defaultTemplateParserType]
parserClassName: nil
withString: HTMLString
encoding: NSISOLatin1StringEncoding
encoding: GSUndefinedEncoding
fromPath: nil
definitionsString: pageDefString
languages: languages

View file

@ -57,7 +57,8 @@ RCS_ID("$Id$")
else
{
_temporaryKey=YES;
ASSIGN(_key,[NSString stringUniqueIdWithLength:MAX(4,sizeof(NSTimeInterval))]);
ASSIGN(_key,
[NSString stringUniqueIdWithLength:sizeof(NSTimeInterval)]);
};
NSDebugMLog(@"key=%@",_key);
};