mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-21 02:41:04 +00:00
* GSWeb/GSWInput.m: o logs * GSWeb/GSWCheckBox.m: o logs o fix for disabled check box * GSWAdaptors/Apache/mod_gsweb.c o typo fix git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@16128 72102866-910b-0410-8b05-ffd578937521
281 lines
9.4 KiB
Objective-C
281 lines
9.4 KiB
Objective-C
/** GSWCheckBox.m - <title>GSWeb: Class GSWCheckBox</title>
|
|
|
|
Copyright (C) 1999-2002 Free Software Foundation, Inc.
|
|
|
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
|
Date: Jan 1999
|
|
|
|
$Revision$
|
|
$Date$
|
|
$Id$
|
|
|
|
This file is part of the GNUstep Web Library.
|
|
|
|
<license>
|
|
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.
|
|
</license>
|
|
**/
|
|
|
|
#include "GSWeb.h"
|
|
|
|
/**
|
|
Bindings
|
|
|
|
value Value for "valing" tag of the element. If none, GNUstepWeb generate one
|
|
|
|
selection During appendTo... if it's evaluation equal value evalutaion, the check box is checked.
|
|
During takeValue..., it takes value evaluated value (or contextID if no value)
|
|
|
|
checked During appendTo... if it's evaluated to YES, the check box is checked.
|
|
During takeValue..., it takes YES if checkbox is checked, NO otherwise.
|
|
|
|
name Name of the element in the form (should be unique). If not specified, GSWeb assign one.
|
|
|
|
disabled If evaluated to yes, the check box appear inactivated.
|
|
**/
|
|
|
|
//====================================================================
|
|
@implementation GSWCheckBox
|
|
|
|
//--------------------------------------------------------------------
|
|
-(id)initWithName:(NSString*)aName
|
|
associations:(NSDictionary*)associations
|
|
contentElements:(NSArray*)elements
|
|
{
|
|
NSMutableDictionary* tmpAssociations=[NSMutableDictionary dictionaryWithDictionary:associations];
|
|
LOGObjectFnStartC("GSWCheckBox");
|
|
NSDebugMLLog(@"gswdync",@"aName=%@ associations:%@ _elements=%@",aName,associations,elements);
|
|
[tmpAssociations setObject:[GSWAssociation associationWithValue:@"checkbox"]
|
|
forKey:@"type"];
|
|
[tmpAssociations removeObjectForKey:selection__Key];
|
|
[tmpAssociations removeObjectForKey:checked__Key];
|
|
if ((self=[super initWithName:aName
|
|
associations:tmpAssociations
|
|
contentElements:nil]))
|
|
{
|
|
//TODOV
|
|
_selection=[[associations objectForKey:selection__Key
|
|
withDefaultObject:[_selection autorelease]] retain];
|
|
if (_selection && ![_selection isValueSettable])
|
|
{
|
|
ExceptionRaise0(@"GSWCheckBox",@"'selection' parameter must be settable");
|
|
};
|
|
_checked=[[associations objectForKey:checked__Key
|
|
withDefaultObject:[_checked autorelease]] retain];
|
|
if (_checked && ![_checked isValueSettable])
|
|
{
|
|
ExceptionRaise0(@"GSWCheckBox",@"'checked' parameter must be settable");
|
|
};
|
|
if (!_checked)
|
|
{
|
|
if (!_value || !_selection)
|
|
{
|
|
ExceptionRaise0(@"GSWCheckBox",
|
|
@"If you don't specify 'checked' parameter, you have to specify 'value' and 'selection' parameter");
|
|
};
|
|
};
|
|
};
|
|
LOGObjectFnStopC("GSWCheckBox");
|
|
return self;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)dealloc
|
|
{
|
|
DESTROY(_checked);
|
|
DESTROY(_selection);
|
|
[super dealloc];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)description
|
|
{
|
|
return [NSString stringWithFormat:@"<%s %p>",
|
|
object_get_class_name(self),
|
|
(void*)self];
|
|
};
|
|
|
|
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWCheckBox (GSWCheckBoxA)
|
|
|
|
//--------------------------------------------------------------------
|
|
/** return the value used in appendValueToResponse:inContext: **/
|
|
-(id)valueInContext:(GSWContext*)context
|
|
{
|
|
id value=nil;
|
|
LOGObjectFnStartC("GSWCheckBox");
|
|
// use _value evaluation or contextID
|
|
if (_value)
|
|
value=[super valueInContext:context];
|
|
else
|
|
value=[context elementID];
|
|
NSDebugMLLog(@"gswdync",@"value=%@",value);
|
|
LOGObjectFnStopC("GSWCheckBox");
|
|
return value;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)appendGSWebObjectsAssociationsToResponse:(GSWResponse*)response
|
|
inContext:(GSWContext*)context
|
|
{
|
|
//OK
|
|
GSWComponent* component=nil;
|
|
BOOL disabledInContext=NO;
|
|
BOOL isChecked=NO;
|
|
LOGObjectFnStartC("GSWCheckBox");
|
|
component=[context component];
|
|
disabledInContext=[self disabledInContext:context];
|
|
NSDebugMLLog(@"gswdync",@"disabledInContext=%d",disabledInContext);
|
|
|
|
[self appendValueToResponse:response
|
|
inContext:context];
|
|
[self appendNameToResponse:response
|
|
inContext:context];
|
|
|
|
NSDebugMLLog(@"gswdync",@"_value=%@",_value);
|
|
NSDebugMLLog(@"gswdync",@"_selection=%@",_selection);
|
|
NSDebugMLLog(@"gswdync",@"_checked=%@",_checked);
|
|
if (_value && _selection)
|
|
{
|
|
id valueValue=[_value valueInComponent:component];
|
|
NSDebugMLLog(@"gswdync",@"valueValue=%@",valueValue);
|
|
if (valueValue)
|
|
{
|
|
id selectionValue=[_selection valueInComponent:component];
|
|
NSDebugMLLog(@"gswdync",@"selectionValue=%@",selectionValue);
|
|
if (selectionValue)
|
|
{
|
|
NSString* valueValueString=[NSString stringWithFormat:@"%@",valueValue];
|
|
NSString* selectionValueString=[NSString stringWithFormat:@"%@",selectionValue];
|
|
isChecked=SBIsValueEqual(selectionValueString,valueValueString);
|
|
};
|
|
};
|
|
}
|
|
else if (_checked)
|
|
isChecked=[self evaluateCondition:_checked
|
|
inContext:context];
|
|
NSDebugMLLog(@"gswdync",@"isChecked=%s",(isChecked ? "YES" : "NO"));
|
|
|
|
if (isChecked)
|
|
[response _appendContentAsciiString:@" checked"];
|
|
|
|
if (disabledInContext)
|
|
[response appendContentString:@" disabled"];
|
|
|
|
LOGObjectFnStopC("GSWCheckBox");
|
|
};
|
|
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWCheckBox (GSWCheckBoxB)
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)takeValuesFromRequest:(GSWRequest*)request
|
|
inContext:(GSWContext*)context
|
|
{
|
|
//OK
|
|
BOOL disabledInContext=NO;
|
|
LOGObjectFnStartC("GSWCheckBox");
|
|
GSWStartElement(context);
|
|
GSWAssertCorrectElementID(context);
|
|
disabledInContext=[self disabledInContext:context];
|
|
if (!disabledInContext)
|
|
{
|
|
if ([context _wasFormSubmitted])
|
|
{
|
|
GSWComponent* component=[context component];
|
|
NSString* name=nil;
|
|
NSArray* formValues=nil;
|
|
id valueValue=nil;
|
|
BOOL isChecked=NO;
|
|
name=[self nameInContext:context];
|
|
formValues=[request formValuesForKey:name];
|
|
NSDebugMLLog(@"gswdync",@"formValues for %@=%@",name,formValues);
|
|
|
|
NSDebugMLLog(@"gswdync",@"_value=%@",_value);
|
|
if (_value)
|
|
valueValue=[_value valueInComponent:component];
|
|
else
|
|
valueValue=[context elementID];
|
|
NSDebugMLLog(@"gswdync",@"valueValue=%@",valueValue);
|
|
|
|
if (formValues && [formValues count]>0 && valueValue)
|
|
{
|
|
NSString* valueValueString=[NSString stringWithFormat:@"%@",valueValue];
|
|
isChecked=[formValues containsObject:valueValueString];
|
|
};
|
|
NSDebugMLLog(@"gswdync",@"isChecked=%s",(isChecked ? "YES" : "NO"));
|
|
|
|
if (_value && _selection)
|
|
{
|
|
NS_DURING
|
|
{
|
|
[_selection setValue:(isChecked ? valueValue : nil)
|
|
inComponent:component];
|
|
};
|
|
NS_HANDLER
|
|
{
|
|
LOGException(@"GSWCheckBox _selection=%@ valueValue=%@ exception=%@",
|
|
_selection,valueValue,localException);
|
|
if (WOStrictFlag)
|
|
{
|
|
[localException raise];
|
|
}
|
|
else
|
|
{
|
|
[self handleValidationException:localException
|
|
inContext:context];
|
|
};
|
|
}
|
|
NS_ENDHANDLER;
|
|
}
|
|
|
|
if (_checked)
|
|
{
|
|
NS_DURING
|
|
{
|
|
[_checked setValue:[NSNumber numberWithBool:isChecked]
|
|
inComponent:component];
|
|
};
|
|
NS_HANDLER
|
|
{
|
|
LOGException(@"GSWCheckBox _checked=%@ exception=%@",
|
|
_checked,localException);
|
|
if (WOStrictFlag)
|
|
{
|
|
[localException raise];
|
|
}
|
|
else
|
|
{
|
|
[self handleValidationException:localException
|
|
inContext:context];
|
|
};
|
|
}
|
|
NS_ENDHANDLER;
|
|
};
|
|
};
|
|
};
|
|
GSWStopElement(context);
|
|
GSWAssertIsElementID(context);
|
|
LOGObjectFnStopC("GSWCheckBox");
|
|
};
|
|
|
|
@end
|
|
|
|
|