libs-gsweb/GSWExtensionsGSW.framework/GSWFileUploadFormComponent.gswc/GSWFileUploadFormComponent.gswd
Manuel Guesdon 1e88f582b9 2003-05-14 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb.framework/GSWRequest.h/.m:
		o added ivar _browserAcceptedEncodings
		o added -browserAcceptedEncodings
		o modified browserLanguages to use quality indicator
	* GSWeb.framework/GSWConstants.h/.m:
		o added GSWHTTPHeader_AcceptEncoding
	* GSWeb.framework/GSWResponse.h/.m:
		o added ivar _acceptedEncodings
		o added -acceptedEncodings
		o added -setAcceptedEncodings:
	* GSWeb.framework/GSWComponentRequestHandler.m:
		o set request  browserAcceptedEncodings to response
	* GSWeb.framework/GSWComponent.m:
		o set request  browserAcceptedEncodings to response
	* GSWeb.framework/NSData+Compress.h/.m:
		o added
	* config.h.in
		o added HAVE_ZLIB


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@16718 72102866-910b-0410-8b05-ffd578937521
2003-05-14 08:30:22 +00:00

89 lines
1.3 KiB
Text

Form: GSWForm
{
enabled=^isUploadEnabled;
multipleSubmit = YES;
enctype = "multipart/form-data"
};
ViewCondition: GSWConditional
{
condition = isViewEnabled;
};
ViewPathCondition: GSWConditional
{
condition = ^isURLView;
negate = YES;
};
ViewURLCondition: GSWConditional
{
condition = ^isURLView;
};
LinkViewCondition: GSWConditional
{
condition = ^isImageView;
negate = YES;
};
ImageViewCondition: GSWConditional
{
condition = ^isImageView;
};
ImageWithPath: GSWImage
{
filename = fileInfo.filePath;
border = 0;
};
ImageWithURL: GSWImage
{
src = fileInfo.fileURL;
border = 0;
};
UploadFile: GSWFileUpload
{
data = fileInfo.data;
filePath = fileInfo.fileName;
enabled=^isUploadEnabled;
};
FileLinkWithPath: GSWHyperlink
{
filename=fileInfo.filePath;
data=fileInfo.data;
mimeType=fileInfo.mimeType;
key=fileInfo.filePath;
string= ^string;
target = ^target;
};
FileLinkWithURL: GSWHyperlink
{
href = fileInfo.fileURL;
string= ^string;
target = ^target;
};
SubmitButton: GSWSubmitButton
{
enabled=^isUploadEnabled;
value= ^submitButtonText;
action = updateAction;
};
DeleteCondition: GSWConditional
{
condition = isDeleteEnabled;
};
DeleteButton: GSWSubmitButton
{
enabled=^isUploadEnabled;
value= ^deleteButtonText;
action = deleteAction;
};