mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-09 14:30:51 +00:00
* 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
461 lines
15 KiB
Objective-C
461 lines
15 KiB
Objective-C
/* GSWImageButton.m - GSWeb: Class GSWImageButton
|
|
Copyright (C) 1999 Free Software Foundation, Inc.
|
|
|
|
Written by: Manuel Guesdon <mguesdon@sbuilders.com>
|
|
Date: Jan 1999
|
|
|
|
This file is part of the GNUstep Web Library.
|
|
|
|
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.
|
|
*/
|
|
|
|
static char rcsId[] = "$Id$";
|
|
|
|
#include <GSWeb/GSWeb.h>
|
|
|
|
//====================================================================
|
|
@implementation GSWImageButton
|
|
|
|
//--------------------------------------------------------------------
|
|
-(id)initWithName:(NSString*)name_
|
|
associations:(NSDictionary*)associations_
|
|
contentElements:(NSArray*)_elements;
|
|
{
|
|
//OK
|
|
NSMutableDictionary* _associations=nil;
|
|
LOGObjectFnStart();
|
|
NSDebugMLLog(@"gswdync",@"name_=%@ associations_:%@ _elements=%@",name_,associations_,_elements);
|
|
_associations=[NSMutableDictionary dictionaryWithDictionary:associations_];
|
|
[_associations removeObjectForKey:imageMapFileName__Key];
|
|
if (!WOStrictFlag)
|
|
{
|
|
[_associations removeObjectForKey:imageMapString__Key];
|
|
[_associations removeObjectForKey:imageMapRegions__Key];
|
|
};
|
|
[_associations removeObjectForKey:action__Key];
|
|
[_associations removeObjectForKey:actionClass__Key];
|
|
[_associations removeObjectForKey:directActionName__Key];
|
|
[_associations removeObjectForKey:x__Key];
|
|
[_associations removeObjectForKey:y__Key];
|
|
[_associations removeObjectForKey:filename__Key];
|
|
[_associations removeObjectForKey:framework__Key];
|
|
[_associations removeObjectForKey:src__Key];
|
|
[_associations removeObjectForKey:data__Key];
|
|
[_associations removeObjectForKey:mimeType__Key];
|
|
[_associations removeObjectForKey:key__Key];
|
|
if ((self=[super initWithName:name_
|
|
associations:_associations
|
|
contentElements:_elements]))
|
|
{
|
|
int _imageMapDefNb=0;
|
|
action = [[associations_ objectForKey:action__Key
|
|
withDefaultObject:[action autorelease]] retain];
|
|
NSDebugMLLog(@"gswdync",@"action=%@",action);
|
|
if ([action isValueConstant])
|
|
{
|
|
ExceptionRaise0(@"GSWImageButton",@"'Action' parameter can't be a constant association");
|
|
};
|
|
|
|
imageMapFileName = [[associations_ objectForKey:imageMapFileName__Key
|
|
withDefaultObject:[imageMapFileName autorelease]] retain];
|
|
if (imageMapFileName)
|
|
_imageMapDefNb++;
|
|
NSDebugMLLog(@"gswdync",@"imageMapFileName=%@",imageMapFileName);
|
|
|
|
if (!WOStrictFlag)
|
|
{
|
|
imageMapString = [[associations_ objectForKey:imageMapString__Key
|
|
withDefaultObject:[imageMapString autorelease]] retain];
|
|
if (imageMapString)
|
|
_imageMapDefNb++;
|
|
|
|
imageMapRegions = [[associations_ objectForKey:imageMapRegions__Key
|
|
withDefaultObject:[imageMapRegions autorelease]] retain];
|
|
if (imageMapRegions)
|
|
_imageMapDefNb++;
|
|
if (_imageMapDefNb>0)
|
|
{
|
|
ExceptionRaise(@"GSWActiveImage",@"you can't specify %@, %@ and %@",
|
|
imageMapFileName__Key,
|
|
imageMapString__Key,
|
|
imageMapRegions__Key);
|
|
};
|
|
};
|
|
actionClass = [[associations_ objectForKey:actionClass__Key
|
|
withDefaultObject:[actionClass autorelease]] retain];
|
|
NSDebugMLLog(@"gswdync",@"actionClass=%@",actionClass);
|
|
|
|
directActionName = [[associations_ objectForKey:directActionName__Key
|
|
withDefaultObject:[directActionName autorelease]] retain];
|
|
NSDebugMLLog(@"gswdync",@"directActionName=%@",directActionName);
|
|
|
|
xAssoc = [[associations_ objectForKey:x__Key
|
|
withDefaultObject:[xAssoc autorelease]] retain];
|
|
|
|
yAssoc = [[associations_ objectForKey:y__Key
|
|
withDefaultObject:[yAssoc autorelease]] retain];
|
|
|
|
filename = [[associations_ objectForKey:filename__Key
|
|
withDefaultObject:[filename autorelease]] retain];
|
|
|
|
framework = [[associations_ objectForKey:framework__Key
|
|
withDefaultObject:[framework autorelease]] retain];
|
|
|
|
src = [[associations_ objectForKey:src__Key
|
|
withDefaultObject:[src autorelease]] retain];
|
|
NSDebugMLLog(@"gswdync",@"src=%@",src);
|
|
|
|
data = [[associations_ objectForKey:data__Key
|
|
withDefaultObject:[data autorelease]] retain];
|
|
NSDebugMLLog(@"gswdync",@"data=%@",data);
|
|
|
|
mimeType = [[associations_ objectForKey:mimeType__Key
|
|
withDefaultObject:[mimeType autorelease]] retain];
|
|
|
|
key = [[associations_ objectForKey:key__Key
|
|
withDefaultObject:[key autorelease]] retain];
|
|
};
|
|
return self;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)dealloc
|
|
{
|
|
DESTROY(imageMapFileName);
|
|
DESTROY(imageMapString);//GSWeb only
|
|
DESTROY(imageMapRegions);//GSWeb Only
|
|
DESTROY(action);
|
|
DESTROY(actionClass);
|
|
DESTROY(directActionName);
|
|
DESTROY(xAssoc);
|
|
DESTROY(yAssoc);
|
|
DESTROY(filename);
|
|
DESTROY(framework);
|
|
DESTROY(src);
|
|
DESTROY(data);
|
|
DESTROY(mimeType);
|
|
DESTROY(key);
|
|
[super dealloc];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)elementName
|
|
{
|
|
return nil;//@"ELEMENTCHOSENBYCONTEXT";//TODO
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)description
|
|
{
|
|
return [NSString stringWithFormat:@"<%s %p>",
|
|
object_get_class_name(self),
|
|
(void*)self];
|
|
};
|
|
|
|
//====================================================================
|
|
@implementation GSWImageButton (GSWImageButtonA)
|
|
-(GSWAssociation*)hitTestX:(int)x_
|
|
y:(int)y_
|
|
inRegions:(NSArray*)regions_
|
|
{
|
|
GSWAssociation* _assoc=nil;
|
|
GSWGeometricRegion* _region=[GSWGeometricRegion hitTestX:x_
|
|
y:y_
|
|
inRegions:regions_];
|
|
if (_region)
|
|
_assoc=[GSWAssociation associationWithKeyPath:[_region userDefinedString]];
|
|
else
|
|
_assoc=action;
|
|
return _assoc;
|
|
};
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWImageButton (GSWImageButtonB)
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)appendGSWebObjectsAssociationsToResponse:(GSWResponse*)response_
|
|
inContext:(GSWContext*)context_
|
|
{
|
|
//OK
|
|
NSString* _url=nil;
|
|
NSString* _name=nil;
|
|
BOOL _disabledInContext=NO;
|
|
GSWComponent* _component=nil;
|
|
GSWResourceManager* _resourceManager=nil;
|
|
GSWURLValuedElementData* _dataValue=nil;
|
|
NSString* _keyValue=nil;
|
|
LOGObjectFnStart();
|
|
_disabledInContext=[self disabledInContext:context_];
|
|
[response_ _appendContentAsciiString:@" type=image"];
|
|
_name=[self nameInContext:context_];
|
|
NSDebugMLLog(@"gswdync",@"_name=%@",_name);
|
|
[response_ _appendContentAsciiString:@" name=\""];
|
|
[response_ appendContentHTMLAttributeValue:_name];
|
|
[response_ appendContentCharacter:'"'];
|
|
_component=[context_ component];
|
|
_resourceManager=[[GSWApplication application]resourceManager];
|
|
if (src)
|
|
_url=[src valueInComponent:_component];
|
|
else
|
|
{
|
|
if (key)
|
|
{
|
|
_keyValue=[key valueInComponent:_component];
|
|
_dataValue=[_resourceManager _cachedDataForKey:_keyValue];
|
|
};
|
|
if (!_dataValue && data)
|
|
{
|
|
id _data=[data valueInComponent:_component];
|
|
id _mimeTypeValue=[mimeType valueInComponent:_component];
|
|
_dataValue=[[[GSWURLValuedElementData alloc] initWithData:_data
|
|
mimeType:_mimeTypeValue
|
|
key:_keyValue] autorelease];
|
|
[_resourceManager setURLValuedElementData:_dataValue];
|
|
}
|
|
else if (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:context_];
|
|
NSDebugMLLog(@"gswdync",@"_frameworkValue=%@",_frameworkValue);
|
|
_request=[context_ request];
|
|
_languages=[context_ languages];
|
|
_url=[_resourceManager urlForResourceNamed:_filenameValue
|
|
inFramework:_frameworkValue
|
|
languages:_languages
|
|
request:_request];
|
|
};
|
|
};
|
|
|
|
[response_ _appendContentAsciiString:@" src=\""];
|
|
if (src)
|
|
{
|
|
[response_ appendContentString:_url];
|
|
}
|
|
else
|
|
{
|
|
if (key || data)
|
|
{
|
|
[_dataValue appendDataURLToResponse:response_
|
|
inContext:context_];
|
|
}
|
|
else if (filename)
|
|
{
|
|
[response_ appendContentString:_url];
|
|
}
|
|
else
|
|
{
|
|
GSWDynamicURLString* _componentActionURL=[context_ componentActionURL];
|
|
NSDebugMLLog(@"gswdync",@"_componentActionURL=%@",_componentActionURL);
|
|
[response_ appendContentString:(NSString*)_componentActionURL];
|
|
};
|
|
};
|
|
[response_ appendContentCharacter:'"'];
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(id)_imageURLInContext:(GSWContext*)context_
|
|
{
|
|
LOGObjectFnNotImplemented(); //TODOFN
|
|
return nil;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)appendToResponse:(GSWResponse*)response_
|
|
inContext:(GSWContext*)context_
|
|
{
|
|
//OK
|
|
GSWRequest* _request=[context_ request];
|
|
BOOL _isFromClientComponent=[_request isFromClientComponent];
|
|
BOOL _disabledInContext=[self disabledInContext:context_];
|
|
GSWSaveAppendToResponseElementID(context_);//Debug Only
|
|
if (_disabledInContext)
|
|
{
|
|
//TODO
|
|
};
|
|
[response_ _appendContentAsciiString:@"<INPUT"];
|
|
[super appendToResponse:response_
|
|
inContext:context_];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_appendDirectActionToResponse:(GSWResponse*)response_
|
|
inContext:(GSWContext*)context_
|
|
{
|
|
LOGObjectFnNotImplemented(); //TODOFN
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)takeValuesFromRequest:(GSWRequest*)request_
|
|
inContext:(GSWContext*)context_
|
|
{
|
|
LOGObjectFnStart();
|
|
GSWAssertCorrectElementID(context_);// Debug Only
|
|
//Does nothing ?
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWElement*)invokeActionForRequest:(GSWRequest*)request_
|
|
inContext:(GSWContext*)context_
|
|
{
|
|
GSWElement* _element=nil;
|
|
BOOL _disabledInContext=NO;
|
|
LOGObjectFnStart();
|
|
NSDebugMLLog(@"gswdync",@"ET=%@ id=%@ senderId=%@",[self class],[context_ elementID],[context_ senderID]);
|
|
GSWAssertCorrectElementID(context_);// Debug Only
|
|
_disabledInContext=[self disabledInContext:context_];
|
|
if (!_disabledInContext)
|
|
{
|
|
NSString* _senderID=nil;
|
|
NSString* _elementID=nil;
|
|
BOOL _XYValues=NO;
|
|
GSWComponent* _component=nil;
|
|
BOOL _wasFormSubmitted=NO;
|
|
int _x=0;
|
|
int _y=0;
|
|
GSWAssociation* _actionAssociation=nil;
|
|
NSArray* _regions=nil;
|
|
|
|
_component=[context_ component];
|
|
_wasFormSubmitted=[context_ _wasFormSubmitted];
|
|
if (_wasFormSubmitted)
|
|
{
|
|
NSString* _nameInContext=[self nameInContext:context_];
|
|
NSString* _formValueX=[request_ formValueForKey:[NSString stringWithFormat:@"%@.x",
|
|
_nameInContext]];
|
|
NSString* _formValueY=[request_ formValueForKey:[NSString stringWithFormat:@"%@.y",
|
|
_nameInContext]];
|
|
NSDebugMLLog(@"gswdync",@"_formValueX=%@",_formValueX);
|
|
NSDebugMLLog(@"gswdync",@"_formValueY=%@",_formValueY);
|
|
if (_formValueX && _formValueY)
|
|
{
|
|
_x=[_formValueX intValue];
|
|
_y=[_formValueY intValue];
|
|
_XYValues=YES;
|
|
}
|
|
else
|
|
{
|
|
//TODO
|
|
};
|
|
|
|
if (imageMapFileName)
|
|
{
|
|
id _imageMapFileNameValue=[imageMapFileName valueInComponent:_component];
|
|
NSString* _imageMapFilePath=[[context_ component]
|
|
pathForResourceNamed:_imageMapFileNameValue
|
|
ofType:nil];
|
|
if (!_imageMapFilePath)
|
|
{
|
|
GSWResourceManager* _resourceManager=[[GSWApplication application]resourceManager];
|
|
NSArray* _languages=[context_ languages];
|
|
_imageMapFilePath=[_resourceManager pathForResourceNamed:_imageMapFileNameValue
|
|
inFramework:nil
|
|
languages:_languages];
|
|
|
|
};
|
|
if (_imageMapFilePath)
|
|
_regions=[GSWGeometricRegion geometricRegionsWithFile:_imageMapFilePath];
|
|
else
|
|
{
|
|
NSDebugMLLog0(@"gswdync",@"GSWActiveImage No image Map.");
|
|
};
|
|
}
|
|
else if (!WOStrictFlag && imageMapString)
|
|
{
|
|
id _imageMapValue=[imageMapString valueInComponent:_component];
|
|
_regions=[GSWGeometricRegion geometricRegionsWithString:_imageMapValue];
|
|
}
|
|
else if (!WOStrictFlag && imageMapRegions)
|
|
{
|
|
_regions=[imageMapRegions valueInComponent:_component];
|
|
};
|
|
if (xAssoc)
|
|
[xAssoc setValue:[NSNumber numberWithInt:_x]
|
|
inComponent:_component];
|
|
if (yAssoc)
|
|
[yAssoc setValue:[NSNumber numberWithInt:_y]
|
|
inComponent:_component];
|
|
|
|
_actionAssociation=[self hitTestX:_x
|
|
y:_y
|
|
inRegions:_regions];
|
|
if (_actionAssociation)
|
|
{
|
|
[context_ _setActionInvoked:YES];
|
|
_element=[_actionAssociation valueInComponent:_component];
|
|
}
|
|
else
|
|
{
|
|
NSDebugMLLog0(@"gswdync",@"GSWActiveImage Couldn't trigger action.");
|
|
};
|
|
if (!_element)
|
|
_element=[context_ page];
|
|
}
|
|
else
|
|
_element=[super invokeActionForRequest:request_
|
|
inContext:context_];
|
|
}
|
|
else
|
|
_element=[super invokeActionForRequest:request_
|
|
inContext:context_];
|
|
LOGObjectFnStop();
|
|
return _element;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)frameworkNameInContext:(GSWContext*)context_
|
|
{
|
|
//OK
|
|
NSString* _frameworkName=nil;
|
|
GSWComponent* _component=[context_ component];
|
|
NSDebugMLog(@"framework=%@",framework);
|
|
if (framework)
|
|
_frameworkName=[framework valueInComponent:_component];
|
|
else
|
|
_frameworkName=[_component frameworkName];
|
|
return _frameworkName;
|
|
};
|
|
@end
|
|
|
|
|
|
|
|
//====================================================================
|
|
@implementation GSWImageButton (GSWImageButtonC)
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)appendStringAtRight:(id)_unkwnon
|
|
withMapping:(char*)_mapping
|
|
{
|
|
LOGObjectFnNotImplemented(); //TODOFN
|
|
return NO;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)appendStringAtLeft:(id)_unkwnon
|
|
withMapping:(char*)_mapping
|
|
{
|
|
LOGObjectFnNotImplemented(); //TODOFN
|
|
return NO;
|
|
};
|
|
|
|
@end
|