mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 04:01:16 +00:00
* GSWDynamicURLString.h: o remove NSMutableString protocol * GSWUtils.m o removed NSString and NSMutableString protocol use * GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.gswd: o change .png to .mng * GSWExtensions.framework/GSWCollapsibleComponentContent.gswc/GSWCollapsibleComponentContent.gswd: o added framework for image * GSWeb.framework/GSWDisplayGroup.h: o aded -setQueryOperator: o added -initWithKeyValueUnarchiver: * GSWeb.framework/GSWDisplayGroup.m: o added -setQueryOperator: o unarchive queryOperator o changed hasMultipleBatches implementation * GSWeb.framework/GSWBody.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWImage.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWResourceURL.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWFrame.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWElement.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWDynamicElement.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWGenericElement.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWHTMLStaticElement.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWElementIDString.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc o removed logs * GSWeb.framework/GSWActionURL.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc o removed logs * GSWeb.framework/GSWHyperlink.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWHTMLStaticGroup.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWInput.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWText.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWTextField.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWFileUpload.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWBrowser.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWCheckBox.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWCheckBoxList.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWPopUpButton.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWRadioButton.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWRadioButtonList.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWSubmitButton.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWHiddenField.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWPasswordField.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWString.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWeb.framework/GSWImageButton.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@13471 72102866-910b-0410-8b05-ffd578937521
137 lines
4.4 KiB
Objective-C
137 lines
4.4 KiB
Objective-C
/** GSWElement.m - <title>GSWeb: Class GSWElement</title>
|
|
|
|
Copyright (C) 1999-2002 Free Software Foundation, Inc.
|
|
|
|
Written by: Manuel Guesdon <mguesdon@sbuilders.com>
|
|
Date: Jan 1999
|
|
|
|
$Revision$
|
|
$Date$
|
|
|
|
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>
|
|
**/
|
|
|
|
static char rcsId[] = "$Id$";
|
|
|
|
#include <GSWeb/GSWeb.h>
|
|
|
|
BYTE ElementsMap_htmlBareString = (BYTE)0x53;
|
|
BYTE ElementsMap_gswebElement = (BYTE)0x57;
|
|
BYTE ElementsMap_dynamicElement = (BYTE)0x43;
|
|
BYTE ElementsMap_attributeElement = (BYTE)0x41;
|
|
|
|
//====================================================================
|
|
@implementation GSWElement
|
|
|
|
#ifndef NDEBBUG
|
|
-(void)saveAppendToResponseElementIDInContext:(id)context
|
|
{
|
|
NSString* elementID=[context elementID];
|
|
ASSIGN(_appendToResponseElementID,elementID);
|
|
};
|
|
|
|
-(void)assertCorrectElementIDInContext:(id)context
|
|
inCLass:(Class)class
|
|
method:(SEL)method
|
|
file:(const char*)file
|
|
line:(int)line
|
|
{
|
|
if ([_appendToResponseElementID length]>0)
|
|
{
|
|
NSString* elementID=[context elementID];
|
|
BOOL appendToResponseElementIDIsFirst=NO;
|
|
BOOL elementIDIsFirst=NO;
|
|
BOOL OK=YES;
|
|
appendToResponseElementIDIsFirst=([_appendToResponseElementID length]==0 || [_appendToResponseElementID isEqualToString:@"0"]);
|
|
elementIDIsFirst=([elementID length]==0 || [elementID isEqualToString:@"0"]);
|
|
if (appendToResponseElementIDIsFirst!=elementIDIsFirst)
|
|
{
|
|
OK=[_appendToResponseElementID isEqualToString:elementID];
|
|
};
|
|
if (!OK)
|
|
{
|
|
NSString* msg=[NSString stringWithFormat:@"In Class %@ (file %s line %d), id %@ in %@ is not the same than in appendToResponse %@",
|
|
NSStringFromClass(class),
|
|
file,
|
|
line,
|
|
[context elementID],
|
|
NSStringFromSelector(method),
|
|
_appendToResponseElementID];
|
|
NSAssert1(OK,@"%@",msg);
|
|
};
|
|
};
|
|
};
|
|
#endif
|
|
|
|
-(NSString*)definitionName
|
|
{
|
|
return nil; //return nil (for non dynamic element)
|
|
};
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWElement (GSWRequestHandling)
|
|
|
|
//--------------------------------------------------------------------
|
|
// takeValuesFromRequest:inContext:
|
|
|
|
-(void)takeValuesFromRequest:(GSWRequest*)request
|
|
inContext:(GSWContext*)context
|
|
{
|
|
GSWAssertCorrectElementID(context);// Debug Only
|
|
//Does Nothing
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// invokeActionForRequest:inContext:
|
|
|
|
-(GSWElement*)invokeActionForRequest:(GSWRequest*)request
|
|
inContext:(GSWContext*)context
|
|
{
|
|
NSDebugMLLog(@"gswdync",@"ET=%@ id=%@ senderId=%@",
|
|
[self class],[context elementID],[context senderID]);
|
|
GSWAssertCorrectElementID(context);// Debug Only
|
|
//Does Nothing
|
|
return nil;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// appendToResponse:inContext:
|
|
|
|
-(void)appendToResponse:(GSWResponse*)response
|
|
inContext:(GSWContext*)context
|
|
{
|
|
GSWSaveAppendToResponseElementID(context);//Debug Only
|
|
//Does Nothing
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//NDFN
|
|
-(BOOL)prefixMatchSenderIDInContext:(GSWContext*)context
|
|
{
|
|
NSString* senderID=[context senderID];
|
|
NSString* elementID=[context elementID];
|
|
NSDebugMLLog(@"gswdync",@"senderID=%@",senderID);
|
|
NSDebugMLLog(@"gswdync",@"elementID=%@",elementID);
|
|
return ([elementID hasPrefix:senderID] || [senderID hasPrefix:elementID]);
|
|
};
|
|
|
|
@end
|
|
|
|
|