2002-08-04 18:00:11 +00:00
|
|
|
/** GSWHTMLURLValuedElement.m - <title>GSWeb: Class GSWHTMLURLValuedElement</title>
|
|
|
|
|
|
|
|
Copyright (C) 1999-2002 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
|
|
|
Date: Apr 1999
|
2000-01-22 12:49:49 +00:00
|
|
|
|
2002-08-04 18:00:11 +00:00
|
|
|
$Revision$
|
|
|
|
$Date$
|
|
|
|
|
2000-01-22 12:49:49 +00:00
|
|
|
This file is part of the GNUstep Web Library.
|
|
|
|
|
2002-08-04 18:00:11 +00:00
|
|
|
<license>
|
2000-01-22 12:49:49 +00:00
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2002-08-04 18:00:11 +00:00
|
|
|
</license>
|
|
|
|
**/
|
2000-01-22 12:49:49 +00:00
|
|
|
|
|
|
|
static char rcsId[] = "$Id$";
|
|
|
|
|
2000-10-30 15:36:50 +00:00
|
|
|
#include <GSWeb/GSWeb.h>
|
2000-01-22 12:49:49 +00:00
|
|
|
|
|
|
|
//====================================================================
|
|
|
|
@implementation GSWHTMLURLValuedElement
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2002-08-04 18:00:11 +00:00
|
|
|
-(id)initWithName:(NSString*)aName
|
|
|
|
associations:(NSDictionary*)inAssociations
|
|
|
|
contentElements:(NSArray*)elements
|
2000-01-22 12:49:49 +00:00
|
|
|
{
|
2002-08-04 18:00:11 +00:00
|
|
|
NSString* urlAttributeName=nil;
|
|
|
|
NSString* valueAttributeName=nil;
|
|
|
|
NSMutableDictionary* associations=nil;
|
2000-01-22 12:49:49 +00:00
|
|
|
LOGObjectFnStartC("GSWHTMLURLValuedElement");
|
2002-08-04 18:00:11 +00:00
|
|
|
urlAttributeName=[self urlAttributeName];//so what ?
|
|
|
|
valueAttributeName=[self valueAttributeName];//so what ?
|
|
|
|
|
|
|
|
associations=[NSMutableDictionary dictionaryWithDictionary:inAssociations];
|
|
|
|
|
|
|
|
_src = [[inAssociations objectForKey:src__Key
|
|
|
|
withDefaultObject:[_src autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"src=%@",_src);
|
|
|
|
|
|
|
|
_value = [[inAssociations objectForKey:value__Key
|
|
|
|
withDefaultObject:[_value autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"value=%@",_value);
|
|
|
|
|
|
|
|
_pageName = [[inAssociations objectForKey:pageName__Key
|
|
|
|
withDefaultObject:[_pageName autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"pageName=%@",_pageName);
|
|
|
|
|
|
|
|
_filename = [[inAssociations objectForKey:filename__Key
|
|
|
|
withDefaultObject:[_filename autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"filename=%@",_filename);
|
|
|
|
|
|
|
|
_framework = [[inAssociations objectForKey:framework__Key
|
|
|
|
withDefaultObject:[_framework autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"framework=%@",_framework);
|
|
|
|
|
|
|
|
_data = [[inAssociations objectForKey:data__Key
|
|
|
|
withDefaultObject:[_data autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"data=%@",_data);
|
|
|
|
|
|
|
|
_mimeType = [[inAssociations objectForKey:mimeType__Key
|
|
|
|
withDefaultObject:[_mimeType autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"mimeType=%@",_mimeType);
|
|
|
|
|
|
|
|
_key = [[inAssociations objectForKey:key__Key
|
|
|
|
withDefaultObject:[_key autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"key=%@",_key);
|
|
|
|
|
|
|
|
_actionClass = [[inAssociations objectForKey:actionClass__Key
|
|
|
|
withDefaultObject:[_actionClass autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"actionClass=%@",_actionClass);
|
|
|
|
|
|
|
|
_directActionName = [[inAssociations objectForKey:directActionName__Key
|
|
|
|
withDefaultObject:[_directActionName autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"directActionName=%@",_directActionName);
|
|
|
|
|
|
|
|
_queryDictionary = [[inAssociations objectForKey:queryDictionary__Key
|
|
|
|
withDefaultObject:[_queryDictionary autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"queryDictionary=%@",_queryDictionary);
|
|
|
|
|
|
|
|
[associations removeObjectForKey:src__Key];
|
|
|
|
[associations removeObjectForKey:value__Key];
|
|
|
|
[associations removeObjectForKey:pageName__Key];
|
|
|
|
[associations removeObjectForKey:filename__Key];
|
|
|
|
[associations removeObjectForKey:framework__Key];
|
|
|
|
[associations removeObjectForKey:data__Key];
|
|
|
|
[associations removeObjectForKey:mimeType__Key];
|
|
|
|
[associations removeObjectForKey:key__Key];
|
|
|
|
[associations removeObjectForKey:actionClass__Key];
|
|
|
|
[associations removeObjectForKey:directActionName__Key];
|
|
|
|
[associations removeObjectForKey:queryDictionary__Key];
|
2001-03-11 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb.framework/GSWWOCompatibility.h/.m: added
* GSWeb.framework/GNUmakefile: added GSWWOCompatibility.h/.m
* GSWeb.framework/GSWApplication.h/m: added WOApplicationMain, handle WO/GSWeb names
* GSWeb.framework/GSWContext.m: handle WO/GSWeb names, added traces
* GSWeb.framework/GSWConstants.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWDynamicURLString.m: handle WO/GSWeb names
* GSWeb.framework/GSWProjectBundle.m/.h: handle WO/GSWeb names, suppress warnings
* GSWeb.framework/GSWSession.m: handle WO/GSWeb names
* GSWeb.framework/GSWRequest.m: handle WO/GSWeb names
* GSWeb.framework/GSWTemplateParser.m: handle WO/GSWeb names,
added tag counts to help errors hunt
* GSWeb.framework/GSWBundle.m: handle WO/GSWeb names, added traces
* GSWeb.framework/GSWResourceManager.m: handle WO/GSWeb names
* GSWeb.framework/GSWURLValuedElementData.m: handle WO/GSWeb names
* GSWeb.framework/GSWComponentRequestHandler.m: handle WO/GSWeb names
* GSWeb.framework/GSWDirectAction.m: handle WO/GSWeb names
* GSWeb.framework/GSWForm.m/.h: handle WO/GSWeb names
* GSWeb.framework/GSWHyperlink.m/.h: handle WO/GSWeb names
* GSWeb.framework/GSWResourceRequestHandler.m: handle WO/GSWeb names
* GSWeb.framework/GSWDirectActionRequestHandler.m: handle WO/GSWeb names
* GSWeb.framework/GSWActiveImage.m/.h: handle WO/GSWeb names
* GSWeb.framework/GSWBindingNameAssociation.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWBrowser.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWComponent.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWHTMLURLValuedElement.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWImageButton.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWInput.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWPopUpButton.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWString.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWAssociation.m: handle WO/GSWeb names
* GSWeb.framework/GSWCheckBox.m: handle WO/GSWeb names
* GSWeb.framework/GSWCheckBoxList.m: handle WO/GSWeb names
* GSWeb.framework/GSWComponentDefinition.m: handle WO/GSWeb names
* GSWeb.framework/GSWRadioButton.m: handle WO/GSWeb names
* GSWeb.framework/GSWRadioButtonList.m: handle WO/GSWeb names
* GSWeb.framework/GSWText.m: handle WO/GSWeb names
* GSWeb.framework/GSWTextField.m: handle WO/GSWeb names
* GSWeb.framework/GSWDeployedBundle.m: warnings
* GSWeb.framework/GSWeb.h: added include GSWeb/GSWSessionTimeOut.h, GSWWOCompatibility.h
* GSWeb.framework/GSWAdaptor.m: traces
* GSWeb.framework/GSWDefaultAdaptor.m: handle WO/GSWeb names, added traces
* GSWeb.framework/GSWDefaultAdaptorThread.m/.h: handle WO/GSWeb names
* GSWeb.framework/NSNonBlockingFileHandle.m: added traces
* GSWeb.framework/GSWTemplateParserANTLR.m: handle WO/GSWeb names
* GSWeb.framework/GSWTemplateParserXML.m: handle WO/GSWeb names
added tag count to help errors hunt
remove "Tag gsweb invalid" message
handle unicode strings in node content traces
remove html and body tags if they are not present in the template
* GSWeb.framework/GSWTemplateParseXML.h: added ivar _isHTMLTag, _isBodyTag
* GSWeb.framework/GSWSessionTimeOutManager.m: dealloc sessionOrderedTimeOuts instead
of deallocating 2 times sessionTimeOuts
* GSWExtensions.framework/French.lproj/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.html:
tag mismatch, Encode french characters
* GSWExtensions.framework/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.html:
tag mismatch
* GSWHTMLBareString.m: handle unicode strings in description
* GSWExtensions.framework/French.lproj/GSWExceptionPage.gswc/GSWExceptionPage.html:
Encode french characters, Tag Mismatch
* GSWExtensions.framework/French.lproj/GSWPageRestorationErrorPage.gswc/GSWPageRestorationErrorPage.html:
Encode french characters
* GSWExtensions.framework/French.lproj/GSWSessionCreationErrorPage.gswc/GSWSessionCreationErrorPage.html:
Encode french characters
* GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.html:
Tag Mismatch
* GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.gswd:
added convertHTMLEntities for strings
* GSWeb.framework/GSWRepetition.m: added traces, fix "count" property bug, standardize ivars
* GSWeb.framework/NSObject+IVarAccess+PerformSel.m: added traces, handle underscored ivars search
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@9332 72102866-910b-0410-8b05-ffd578937521
2001-03-11 17:15:44 +00:00
|
|
|
if (!WOStrictFlag)
|
|
|
|
{
|
2002-08-04 18:00:11 +00:00
|
|
|
//pageSetVarAssociations//GNUstepWeb only
|
|
|
|
NSDictionary* pageSetVarAssociations=[inAssociations associationsWithoutPrefix:pageSetVar__Prefix__Key
|
|
|
|
removeFrom:associations];
|
|
|
|
if ([pageSetVarAssociations count]>0)
|
|
|
|
{
|
|
|
|
ASSIGN(_pageSetVarAssociations,pageSetVarAssociations);
|
|
|
|
};
|
|
|
|
_pageSetVarAssociationsDynamic=[[inAssociations objectForKey:pageSetVars__Key
|
|
|
|
withDefaultObject:[_pageSetVarAssociationsDynamic autorelease]] retain];
|
|
|
|
NSDebugMLLog(@"gswdync",@"_pageSetVarAssociationsDynamic=%@",_pageSetVarAssociationsDynamic);
|
|
|
|
[associations removeObjectForKey:pageSetVars__Key];
|
2001-03-11 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb.framework/GSWWOCompatibility.h/.m: added
* GSWeb.framework/GNUmakefile: added GSWWOCompatibility.h/.m
* GSWeb.framework/GSWApplication.h/m: added WOApplicationMain, handle WO/GSWeb names
* GSWeb.framework/GSWContext.m: handle WO/GSWeb names, added traces
* GSWeb.framework/GSWConstants.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWDynamicURLString.m: handle WO/GSWeb names
* GSWeb.framework/GSWProjectBundle.m/.h: handle WO/GSWeb names, suppress warnings
* GSWeb.framework/GSWSession.m: handle WO/GSWeb names
* GSWeb.framework/GSWRequest.m: handle WO/GSWeb names
* GSWeb.framework/GSWTemplateParser.m: handle WO/GSWeb names,
added tag counts to help errors hunt
* GSWeb.framework/GSWBundle.m: handle WO/GSWeb names, added traces
* GSWeb.framework/GSWResourceManager.m: handle WO/GSWeb names
* GSWeb.framework/GSWURLValuedElementData.m: handle WO/GSWeb names
* GSWeb.framework/GSWComponentRequestHandler.m: handle WO/GSWeb names
* GSWeb.framework/GSWDirectAction.m: handle WO/GSWeb names
* GSWeb.framework/GSWForm.m/.h: handle WO/GSWeb names
* GSWeb.framework/GSWHyperlink.m/.h: handle WO/GSWeb names
* GSWeb.framework/GSWResourceRequestHandler.m: handle WO/GSWeb names
* GSWeb.framework/GSWDirectActionRequestHandler.m: handle WO/GSWeb names
* GSWeb.framework/GSWActiveImage.m/.h: handle WO/GSWeb names
* GSWeb.framework/GSWBindingNameAssociation.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWBrowser.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWComponent.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWHTMLURLValuedElement.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWImageButton.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWInput.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWPopUpButton.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWString.h/.m: handle WO/GSWeb names
* GSWeb.framework/GSWAssociation.m: handle WO/GSWeb names
* GSWeb.framework/GSWCheckBox.m: handle WO/GSWeb names
* GSWeb.framework/GSWCheckBoxList.m: handle WO/GSWeb names
* GSWeb.framework/GSWComponentDefinition.m: handle WO/GSWeb names
* GSWeb.framework/GSWRadioButton.m: handle WO/GSWeb names
* GSWeb.framework/GSWRadioButtonList.m: handle WO/GSWeb names
* GSWeb.framework/GSWText.m: handle WO/GSWeb names
* GSWeb.framework/GSWTextField.m: handle WO/GSWeb names
* GSWeb.framework/GSWDeployedBundle.m: warnings
* GSWeb.framework/GSWeb.h: added include GSWeb/GSWSessionTimeOut.h, GSWWOCompatibility.h
* GSWeb.framework/GSWAdaptor.m: traces
* GSWeb.framework/GSWDefaultAdaptor.m: handle WO/GSWeb names, added traces
* GSWeb.framework/GSWDefaultAdaptorThread.m/.h: handle WO/GSWeb names
* GSWeb.framework/NSNonBlockingFileHandle.m: added traces
* GSWeb.framework/GSWTemplateParserANTLR.m: handle WO/GSWeb names
* GSWeb.framework/GSWTemplateParserXML.m: handle WO/GSWeb names
added tag count to help errors hunt
remove "Tag gsweb invalid" message
handle unicode strings in node content traces
remove html and body tags if they are not present in the template
* GSWeb.framework/GSWTemplateParseXML.h: added ivar _isHTMLTag, _isBodyTag
* GSWeb.framework/GSWSessionTimeOutManager.m: dealloc sessionOrderedTimeOuts instead
of deallocating 2 times sessionTimeOuts
* GSWExtensions.framework/French.lproj/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.html:
tag mismatch, Encode french characters
* GSWExtensions.framework/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.html:
tag mismatch
* GSWHTMLBareString.m: handle unicode strings in description
* GSWExtensions.framework/French.lproj/GSWExceptionPage.gswc/GSWExceptionPage.html:
Encode french characters, Tag Mismatch
* GSWExtensions.framework/French.lproj/GSWPageRestorationErrorPage.gswc/GSWPageRestorationErrorPage.html:
Encode french characters
* GSWExtensions.framework/French.lproj/GSWSessionCreationErrorPage.gswc/GSWSessionCreationErrorPage.html:
Encode french characters
* GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.html:
Tag Mismatch
* GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.gswd:
added convertHTMLEntities for strings
* GSWeb.framework/GSWRepetition.m: added traces, fix "count" property bug, standardize ivars
* GSWeb.framework/NSObject+IVarAccess+PerformSel.m: added traces, handle underscored ivars search
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@9332 72102866-910b-0410-8b05-ffd578937521
2001-03-11 17:15:44 +00:00
|
|
|
};
|
2000-01-22 12:49:49 +00:00
|
|
|
if ((self=[super initWithName:[self elementName]//NEW
|
2002-08-04 18:00:11 +00:00
|
|
|
attributeAssociations:associations
|
|
|
|
contentElements:elements]))
|
|
|
|
{
|
|
|
|
};
|
2000-01-22 12:49:49 +00:00
|
|
|
LOGObjectFnStopC("GSWHTMLURLValuedElement");
|
|
|
|
return self;
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
-(void)dealloc
|
|
|
|
{
|
2002-08-04 18:00:11 +00:00
|
|
|
DESTROY(_src);
|
|
|
|
DESTROY(_value);
|
|
|
|
DESTROY(_pageName);
|
|
|
|
DESTROY(_pageSetVarAssociations);//GNUstepWeb only
|
|
|
|
DESTROY(_pageSetVarAssociationsDynamic);//GSWeb only
|
|
|
|
DESTROY(_filename);
|
|
|
|
DESTROY(_framework);
|
|
|
|
DESTROY(_data);
|
|
|
|
DESTROY(_mimeType);
|
|
|
|
DESTROY(_key);
|
|
|
|
DESTROY(_actionClass);
|
|
|
|
DESTROY(_directActionName);
|
|
|
|
DESTROY(_queryDictionary);
|
|
|
|
DESTROY(_otherQueryAssociations);
|
2000-01-22 12:49:49 +00:00
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
-(NSString*)valueAttributeName
|
|
|
|
{
|
|
|
|
//Does nothing
|
|
|
|
return nil;
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
-(NSString*)urlAttributeName
|
|
|
|
{
|
|
|
|
//Does nothing
|
|
|
|
return nil;
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
-(NSString*)description
|
|
|
|
{
|
|
|
|
return [NSString stringWithFormat:@"<%s %p>",
|
2002-08-04 18:00:11 +00:00
|
|
|
object_get_class_name(self),
|
|
|
|
(void*)self];
|
2000-01-22 12:49:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
//====================================================================
|
|
|
|
@implementation GSWHTMLURLValuedElement (GSWHTMLURLValuedElementA)
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2002-08-04 18:00:11 +00:00
|
|
|
-(GSWElement*)invokeActionForRequest:(GSWRequest*)aRequest
|
|
|
|
inContext:(GSWContext*)aContext
|
2000-01-22 12:49:49 +00:00
|
|
|
{
|
|
|
|
//OK
|
2002-08-04 18:00:11 +00:00
|
|
|
GSWElement* element=nil;
|
|
|
|
NSString* senderID=nil;
|
|
|
|
NSString* elementID=nil;
|
2000-01-22 12:49:49 +00:00
|
|
|
LOGObjectFnStartC("GSWHTMLURLValuedElement");
|
2002-08-04 18:00:11 +00:00
|
|
|
NSDebugMLLog(@"gswdync",@"ET=%@ id=%@",[self class],[aContext elementID]);
|
|
|
|
senderID=[aContext senderID];
|
|
|
|
elementID=[aContext elementID];
|
|
|
|
NSDebugMLLog(@"gswdync",@"senderID=%@",senderID);
|
|
|
|
NSDebugMLLog(@"gswdync",@"elementID=%@",elementID);
|
|
|
|
NSDebugMLLog(@"gswdync",@"[elementID isEqualToString:senderID]=%d",(int)[elementID isEqualToString:senderID]);
|
|
|
|
if ([elementID isEqualToString:senderID])
|
|
|
|
{
|
|
|
|
GSWComponent* component=[aContext component];
|
|
|
|
if (_value)
|
|
|
|
element=[_value valueInComponent:component];
|
|
|
|
else if (_pageName)
|
|
|
|
{
|
|
|
|
NSString* pageNameValue=[_pageName valueInComponent:component];
|
|
|
|
element=[GSWApp pageWithName:pageNameValue
|
|
|
|
inContext:aContext];
|
|
|
|
if (!WOStrictFlag && element)//GNUstepWeb only
|
|
|
|
{
|
|
|
|
if (_pageSetVarAssociations)
|
|
|
|
{
|
|
|
|
[_pageSetVarAssociations associationsSetValuesFromObject:component
|
|
|
|
inObject:(GSWComponent*)element];
|
|
|
|
};
|
|
|
|
if (_pageSetVarAssociationsDynamic)
|
|
|
|
{
|
|
|
|
NSDictionary* assocs=[_pageSetVarAssociationsDynamic valueInComponent:component];
|
|
|
|
if (assocs)
|
|
|
|
{
|
|
|
|
if (![assocs isKindOfClass:[NSDictionary class]])
|
|
|
|
{
|
|
|
|
ExceptionRaise(@"GSWHTMLURLValuedElement",@"%@ (%@) must return a Dictionary, not a %@ like %@",
|
|
|
|
pageSetVars__Key,
|
|
|
|
_pageSetVarAssociationsDynamic,
|
|
|
|
[assocs class],
|
|
|
|
assocs);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[assocs associationsSetValuesFromObject:component
|
|
|
|
inObject:(GSWComponent*)element];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
NSDebugMLLog(@"gswdync",@"GSWHTMLURLValuedElement invoke element=%@",element);
|
|
|
|
//the end ?
|
|
|
|
//TODOV
|
|
|
|
if (!element)
|
|
|
|
element=[aContext page];
|
|
|
|
}
|
2000-01-22 12:49:49 +00:00
|
|
|
else
|
2002-08-04 18:00:11 +00:00
|
|
|
{
|
|
|
|
element=[super invokeActionForRequest:aRequest
|
|
|
|
inContext:aContext];
|
|
|
|
};
|
|
|
|
NSDebugMLLog(@"gswdync",@"GSWHTMLURLValuedElement invoke element=%@",element);
|
|
|
|
NSDebugMLLog(@"gswdync",@"senderID=%@",[aContext senderID]);
|
|
|
|
NSDebugMLLog(@"gswdync",@"elementID=%@",[aContext elementID]);
|
|
|
|
NSDebugMLLog(@"gswdync",@"END ET=%@ id=%@",[self class],[aContext elementID]);
|
2000-01-22 12:49:49 +00:00
|
|
|
LOGObjectFnStopC("GSWHTMLURLValuedElement");
|
2002-08-04 18:00:11 +00:00
|
|
|
return element;
|
2000-01-22 12:49:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//====================================================================
|
|
|
|
@implementation GSWHTMLURLValuedElement (GSWHTMLURLValuedElementB)
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
//NDFN
|
2002-08-04 18:00:11 +00:00
|
|
|
-(void)appendURLToResponse:(GSWResponse*)aResponse
|
|
|
|
inContext:(GSWContext*)aContext
|
2000-01-22 12:49:49 +00:00
|
|
|
{
|
|
|
|
//OK
|
2002-08-04 18:00:11 +00:00
|
|
|
NSString* urlAttributeName=nil;
|
|
|
|
NSString* url=nil;
|
|
|
|
GSWComponent* component=nil;
|
|
|
|
NSString* keyValue=nil;
|
|
|
|
id data=nil;
|
|
|
|
id mimeTypeValue=nil;
|
|
|
|
GSWURLValuedElementData* dataValue=nil;
|
|
|
|
GSWResourceManager* resourceManager=nil;
|
2000-01-22 12:49:49 +00:00
|
|
|
LOGObjectFnStartC("GSWHTMLURLValuedElement");
|
2002-08-04 18:00:11 +00:00
|
|
|
NSDebugMLLog(@"gswdync",@"elementID=%@",[aContext elementID]);
|
|
|
|
component=[aContext component];
|
|
|
|
NSDebugMLLog(@"gswdync",@"data=%@",_data);
|
|
|
|
NSDebugMLLog(@"gswdync",@"filename=%@",_filename);
|
|
|
|
NSDebugMLLog(@"gswdync",@"pageName=%@",_pageName);
|
|
|
|
resourceManager=[[GSWApplication application]resourceManager];
|
|
|
|
if (_src)
|
|
|
|
url=[_src valueInComponent:component];
|
2000-01-22 12:49:49 +00:00
|
|
|
else
|
2002-08-04 18:00:11 +00:00
|
|
|
{
|
|
|
|
if (_key)
|
|
|
|
{
|
|
|
|
keyValue=[_key valueInComponent:component];
|
|
|
|
dataValue=[resourceManager _cachedDataForKey:keyValue];
|
|
|
|
};
|
|
|
|
if (!dataValue && _data)
|
|
|
|
{
|
|
|
|
data=[_data valueInComponent:component];
|
|
|
|
NSDebugMLLog(@"gswdync",@"_data=%@",data);
|
|
|
|
mimeTypeValue=[_mimeType valueInComponent:component];
|
|
|
|
NSDebugMLLog(@"gswdync",@"mimeType=%@",_mimeType);
|
|
|
|
NSDebugMLLog(@"gswdync",@"mimeTypeValue=%@",mimeTypeValue);
|
|
|
|
dataValue=[[[GSWURLValuedElementData alloc] initWithData:data
|
|
|
|
mimeType:mimeTypeValue
|
|
|
|
key:nil] autorelease];
|
|
|
|
NSDebugMLLog(@"gswdync",@"dataValue=%@",dataValue);
|
|
|
|
[resourceManager setURLValuedElementData:dataValue];
|
|
|
|
}
|
|
|
|
else if (_filename)
|
|
|
|
{
|
|
|
|
//Exemple: Body with filename
|
|
|
|
id filenameValue=nil;
|
|
|
|
id frameworkValue=nil;
|
|
|
|
GSWRequest* request=nil;
|
|
|
|
NSArray* languages=nil;
|
|
|
|
NSDebugMLLog(@"gswdync",@"filename=%@",_filename);
|
|
|
|
filenameValue=[_filename valueInComponent:component];
|
|
|
|
NSDebugMLLog(@"gswdync",@"filenameValue=%@",filenameValue);
|
|
|
|
frameworkValue=[self frameworkNameInContext:aContext];
|
|
|
|
NSDebugMLLog(@"gswdync",@"frameworkValue=%@",frameworkValue);
|
|
|
|
request=[aContext request];
|
|
|
|
languages=[aContext languages];
|
|
|
|
url=[resourceManager urlForResourceNamed:filenameValue
|
|
|
|
inFramework:frameworkValue
|
|
|
|
languages:languages
|
|
|
|
request:request];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
[aResponse appendContentCharacter:' '];
|
|
|
|
urlAttributeName=[self urlAttributeName];
|
|
|
|
if (urlAttributeName)
|
|
|
|
{
|
|
|
|
[aResponse _appendContentAsciiString:urlAttributeName];
|
|
|
|
[aResponse _appendContentAsciiString:@"=\""];
|
|
|
|
};
|
|
|
|
if (_src)
|
|
|
|
{
|
|
|
|
[aResponse appendContentString:url];
|
|
|
|
}
|
2000-01-22 12:49:49 +00:00
|
|
|
else
|
2002-08-04 18:00:11 +00:00
|
|
|
{
|
|
|
|
if (_key || _data)
|
|
|
|
{
|
|
|
|
[dataValue appendDataURLToResponse:aResponse
|
|
|
|
inContext:aContext];
|
|
|
|
}
|
|
|
|
else if (_filename)
|
|
|
|
{
|
|
|
|
NSDebugMLLog(@"gswdync",@"url = %@",url);
|
|
|
|
[aResponse appendContentString:url];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GSWDynamicURLString* componentActionURL=[aContext componentActionURL];
|
|
|
|
NSDebugMLLog(@"gswdync",@"componentActionURL=%@",componentActionURL);
|
|
|
|
[aResponse appendContentString:(NSString*)componentActionURL];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
if (urlAttributeName)
|
|
|
|
[aResponse appendContentCharacter:'"'];
|
|
|
|
NSDebugMLLog(@"gswdync",@"_elementID=%@",[aContext elementID]);
|
2000-01-22 12:49:49 +00:00
|
|
|
LOGObjectFnStopC("GSWHTMLURLValuedElement");
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2002-08-04 18:00:11 +00:00
|
|
|
-(void)appendGSWebObjectsAssociationsToResponse:(GSWResponse*)aResponse
|
|
|
|
inContext:(GSWContext*)aContext
|
2000-01-22 12:49:49 +00:00
|
|
|
{
|
|
|
|
//OK
|
|
|
|
LOGObjectFnStartC("GSWHTMLURLValuedElement");
|
2002-08-04 18:00:11 +00:00
|
|
|
[self appendURLToResponse:aResponse
|
|
|
|
inContext:aContext];
|
2000-01-22 12:49:49 +00:00
|
|
|
LOGObjectFnStopC("GSWHTMLURLValuedElement");
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2002-08-04 18:00:11 +00:00
|
|
|
-(void)_appendCGIActionURLToResponse:(GSWResponse*)aResponse
|
|
|
|
inContext:(GSWContext*)aContext
|
2000-01-22 12:49:49 +00:00
|
|
|
{
|
|
|
|
LOGObjectFnNotImplemented(); //TODOFN
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2002-08-04 18:00:11 +00:00
|
|
|
-(id)computeActionStringInContext:(GSWContext*)aContext
|
2000-01-22 12:49:49 +00:00
|
|
|
{
|
|
|
|
LOGObjectFnNotImplemented(); //TODOFN
|
|
|
|
return nil;
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2002-08-04 18:00:11 +00:00
|
|
|
-(id)computeQueryDictionaryInContext:(GSWContext*)aContext
|
2000-01-22 12:49:49 +00:00
|
|
|
{
|
|
|
|
LOGObjectFnNotImplemented(); //TODOFN
|
|
|
|
return nil;
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2002-08-04 18:00:11 +00:00
|
|
|
-(NSString*)frameworkNameInContext:(GSWContext*)aContext
|
2000-01-22 12:49:49 +00:00
|
|
|
{
|
|
|
|
//OK
|
2002-08-04 18:00:11 +00:00
|
|
|
NSString* frameworkName=nil;
|
|
|
|
GSWComponent* component=[aContext component];
|
|
|
|
NSDebugMLog(@"framework=%@",_framework);
|
|
|
|
if (_framework)
|
|
|
|
frameworkName=[_framework valueInComponent:component];
|
2000-01-22 12:49:49 +00:00
|
|
|
else
|
2002-08-04 18:00:11 +00:00
|
|
|
frameworkName=[component frameworkName];
|
|
|
|
return frameworkName;
|
2000-01-22 12:49:49 +00:00
|
|
|
};
|
|
|
|
@end
|