mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 11:41:20 +00:00
* GSWeb.framework/GSWSubmitButton.m: o corrected setActionInvoked into _setActionInvoked * GSWeb.framework/GSWGeometricRegion.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWAssociation.h: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWAssociation.m: o ivar names changes to conform to coding standards o headers changed for gsdoc o logs * GSWForm.h,.m: o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWContext.h: o Changed return type of -elementID and -senderID * GSWContext.m: o Changed return type of -elementID and -senderID * GSWDisplayGroup.m: o logs * GSWeb.framework/GSWPopUpButton.h,.m: o added count & index parameters (like GSWRepetition) * GSWTextField.m: o handling exception in takeValue * GSWText.m: o handling exception in takeValue * GSWInput.m: o corrected bug in akeValuesFromRequest:inContext: * GSWExtensionsGSW.framework: o added GSWFileUploadComponent * GSWExtensionsGSW.framework/GNUmakefile o added GSWFileUploadComponent * GSWComponent.h: o added -definitionName o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWComponent.m: o added -definitionName o added exception handling for debugging purpose o ivar names changes to conform to coding standards o headers changed for gsdoc * GSWKeyValueAssociation.m: o logs * GSWConstantValueAssociation.m: o logs * GSWApplication.h: o added -saveResponsesPath * GSWApplication.m: o added -saveResponsesPath o added GSWOPT_SaveResponsesPath o added exception handling for debugging purpose * GSWConstants.h/.m: o added GSWOPT_SaveResponsesPath * GSWConfig.h: o added GSWOPTVALUE_SaveResponsesPath * GSWDefaultAdaptorThread.h: o add response saving * GSWDefaultAdaptorThread.m: o add response saving * GSWeb.framework/GSWResponse.m o added -appendDebugCommentContentString: git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@13651 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
|
|
{
|
|
src=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;
|
|
};
|
|
|