mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 11:41:20 +00:00
* 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
89 lines
1.3 KiB
Text
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;
|
|
};
|
|
|