mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-30 16:50:52 +00:00
* GSWeb.framework/GSWDefaultAdaptorThread.m
o trace request uri * GSWeb.framework/GSWTemplateParserXML.m o Changed NSDebugMLog to NSDebugMLLog o changes to conform to GSXML modifications * GSWeb.framework/GSWTemplateParser.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWBundle.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWComponent.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWElement.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWHTMLStaticElement.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWAssociations.m o fixes in !GDL2 variables names (reported by Piter Punk <piterpk@terra.com.br>) * GSWeb.framework/GSWRadioButtonList.m o fix _name/name in appendToResponse:inContext: * GSWeb.framework/GSWSwitchComponent.m: o fix ExceptionRaise call * GSWeb.framework/GSWDebug.m/.h: o fix ifdef and functions defs * GSWeb.framework/GSWSessionTimeOutManager.m/.h: o add parentheses around assignment used as truth value o ivar names changes to conform to coding standards * GSWeb.framework/GSWDeployedBundle.m: o cast to avoid compiler warning * GSWeb.framework/GSWJavaScript.h/.m: o ivar names changes to conform to coding standards * GSWeb.framework/GSWEmbeddedObject.h/.m: o ivar names changes to conform to coding standards * GSWeb.framework/GSWClientSideScript.h/.m: o ivar names changes to conform to coding standards * GSWeb.framework/GSWApplet.h/.m: o ivar names changes to conform to coding standards * GSWeb.framework/GSWParam.h/.m: o ivar names changes to conform to coding standards git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@14026 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1a474bf60f
commit
a58dc81c3d
27 changed files with 826 additions and 714 deletions
|
@ -1,11 +1,16 @@
|
|||
/* GSWApplet.h - GSWeb: Class GSWApplet
|
||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
||||
/** GSWApplet.h - <title>GSWeb: Class GSWApplet</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
|
||||
|
@ -19,7 +24,8 @@
|
|||
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>
|
||||
**/
|
||||
|
||||
// $Id$
|
||||
|
||||
|
@ -30,61 +36,61 @@
|
|||
//====================================================================
|
||||
@interface GSWApplet: GSWHTMLDynamicElement
|
||||
{
|
||||
NSMutableDictionary* clientSideAttributes;
|
||||
NSString* elementID;
|
||||
NSString* url;
|
||||
NSString* contextID;
|
||||
NSMutableDictionary* snapshots;
|
||||
GSWAssociation* archive;
|
||||
GSWAssociation* archiveNames;
|
||||
GSWAssociation* agcArchive;
|
||||
GSWAssociation* agcArchiveNames;
|
||||
GSWAssociation* codeBase;
|
||||
NSMutableDictionary* _clientSideAttributes;
|
||||
NSString* _elementID;
|
||||
NSString* _url;
|
||||
NSString* _contextID;
|
||||
NSMutableDictionary* _snapshots;
|
||||
GSWAssociation* _archive;
|
||||
GSWAssociation* _archiveNames;
|
||||
GSWAssociation* _agcArchive;
|
||||
GSWAssociation* _agcArchiveNames;
|
||||
GSWAssociation* _codeBase;
|
||||
};
|
||||
|
||||
-(id)initWithName:(NSString*)name_
|
||||
associations:(NSDictionary*)associations_
|
||||
contentElements:(NSArray*)elements_;
|
||||
-(id)initWithName:(NSString*)name
|
||||
associations:(NSDictionary*)associations
|
||||
contentElements:(NSArray*)elements;
|
||||
|
||||
-(void)dealloc;
|
||||
|
||||
-(BOOL)appendStringAtRight:(id)_unkwnon
|
||||
withMapping:(char*)_mapping;
|
||||
-(BOOL)appendStringAtRight:(id)unkwnon
|
||||
withMapping:(char*)mapping;
|
||||
|
||||
-(id) paramWithName:(id)name_
|
||||
value:(id)value_
|
||||
target:(id)target_
|
||||
key:(id)key_
|
||||
treatNilValueAsGSWNull:(BOOL)treatNilValueAsGSWNull_;
|
||||
-(id) paramWithName:(id)name
|
||||
value:(id)value
|
||||
target:(id)target
|
||||
key:(id)key
|
||||
treatNilValueAsGSWNull:(BOOL)treatNilValueAsGSWNull;
|
||||
|
||||
-(NSString*)elementName;
|
||||
-(id)contextID;
|
||||
-(void)setContextID:(id)contextID_;
|
||||
-(void)setContextID:(id)contextID;
|
||||
-(id)url;
|
||||
-(void)setURL:(id)url_;
|
||||
-(void)setURL:(id)url;
|
||||
-(NSString*)elementID;
|
||||
-(void)setElementID:(NSString*)elementID_;
|
||||
-(void)setElementID:(NSString*)elementID;
|
||||
@end
|
||||
|
||||
//====================================================================
|
||||
@interface GSWApplet (GSWAppletA)
|
||||
-(void)appendToResponse:(GSWResponse*)response_
|
||||
inContext:(GSWContext*)context_;
|
||||
-(void)appendToResponse:(GSWResponse*)aResponse
|
||||
inContext:(GSWContext*)aContext;
|
||||
|
||||
-(GSWElement*)invokeActionForRequest:(GSWRequest*)request_
|
||||
inContext:(GSWContext*)context_;
|
||||
-(GSWElement*)invokeActionForRequest:(GSWRequest*)aRequest
|
||||
inContext:(GSWContext*)aContext;
|
||||
|
||||
-(void)takeValuesFromRequest:(GSWRequest*)request_
|
||||
inContext:(GSWContext*)context_;
|
||||
-(void)appendGSWebObjectsAssociationsToResponse:(GSWResponse*)response_
|
||||
inContext:(GSWContext*)context_;
|
||||
-(void)_computeAgcArchiveStringInContext:(GSWContext*)context_;
|
||||
-(id)_agcArchiveURLsListInContext:(GSWContext*)context_;
|
||||
-(id)_archiveURLsListInContext:(GSWContext*)context_;
|
||||
-(id)_agcArchiveNamesListInContext:(GSWContext*)context_;
|
||||
-(id)_archiveNamesListInContext:(GSWContext*)context_;
|
||||
-(void)_deallocForComponent:(id)component_;
|
||||
-(void)_awakeForComponent:(id)component_;
|
||||
-(void)takeValuesFromRequest:(GSWRequest*)aRequest
|
||||
inContext:(GSWContext*)aContext;
|
||||
-(void)appendGSWebObjectsAssociationsToResponse:(GSWResponse*)aResponse
|
||||
inContext:(GSWContext*)aContext;
|
||||
-(void)_computeAgcArchiveStringInContext:(GSWContext*)aContext;
|
||||
-(id)_agcArchiveURLsListInContext:(GSWContext*)aContext;
|
||||
-(id)_archiveURLsListInContext:(GSWContext*)aContext;
|
||||
-(id)_agcArchiveNamesListInContext:(GSWContext*)aContext;
|
||||
-(id)_archiveNamesListInContext:(GSWContext*)aContext;
|
||||
-(void)_deallocForComponent:(id)component;
|
||||
-(void)_awakeForComponent:(id)component;
|
||||
|
||||
+(BOOL)hasGSWebObjectsAssociations;
|
||||
@end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue