mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
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:
parent
6828d6442f
commit
e20282661f
3 changed files with 42 additions and 2 deletions
39
ChangeLog
39
ChangeLog
|
@ -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.
|
||||
|
|
|
@ -85,7 +85,7 @@ RCS_ID("$Id$")
|
|||
withParserType: [self defaultTemplateParserType]
|
||||
parserClassName: nil
|
||||
withString: HTMLString
|
||||
encoding: NSISOLatin1StringEncoding
|
||||
encoding: GSUndefinedEncoding
|
||||
fromPath: nil
|
||||
definitionsString: pageDefString
|
||||
languages: languages
|
||||
|
|
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue