libs-gsweb/GSWExtensionsGSW.framework/GSWFileUploadComponent.gswc/GSWFileUploadComponent.gswd
Manuel Guesdon c5c27c2f87 2003-03-03 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb/GSWSessionTimeOutManager.m:
		o Better handling of lock during exceptions
		(should improve it)
		o logs
	* GSWeb/GSWSessionStore.m:
		o logs
		o raise exception when a direct GSWSessionStore is allocated
	* GSWeb/GSWrequest.m:
		o fixed typo on  contentSubType
	* GSWeb/GSWDisplayGroup.hm
		o added _queryMinMatch to enable >= clause
		o added _queryMaxMatch to enable <= clause
		o added -queryMinMatch to enable >= clause
		o added -queryMaxMatch to enable <= clause
		o declare private methods
	* GSWeb/GSWDisplayGroup.m:
		o add NSAutoreleasePool use in -fetch
	* GSWeb/GSWExtensionsGSW.framework/GSWFileUploadComponent.gswc/GSWFileUploadComponent.gswd
		o bug fix in GSWHyperlink binding
	* GSWeb/GSWCheckBoxList.m
		o settable selections fix
	* GSWeb/GSWApplication.m:
		o logs
	* GSWeb/GSWSessionTimeOut.[hm]
		o added -lastAccessTimeDate and -timeOutTimeDate
	* GSWeb/GSWDeployedBundle.m:
		o add some NSAutoreleasePool use
	* GSWeb/GSWHyperlink.m:
		o fix to not display links disabled by !enabled when displayDisabled = NO.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@16110 72102866-910b-0410-8b05-ffd578937521
2003-03-03 08:47:29 +00:00

82 lines
1.2 KiB
Text

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;
width = ^imageWidth;
height = ^imageHeight;
};
ImageWithURL: GSWImage
{
src = fileInfo.fileURL;
border = 0;
width = ^imageWidth;
height = ^imageHeight;
};
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;
};
DeleteCondition: GSWConditional
{
condition = isDeleteEnabled;
};
DeleteCheckBox: GSWCheckBox
{
enabled=isDeleteEnabled;
checked= fileInfo.isDeleted;
};
DeleteCheckBoxTitle: GSWString
{
value = ^deleteCheckBoxText;
};