*** empty log message ***

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@13653 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Manuel Guesdon 2002-05-14 11:37:27 +00:00
parent 422de19c27
commit af0f975466
4 changed files with 130 additions and 19 deletions

View file

@ -4,60 +4,60 @@
* GSWeb.framework/GSWGeometricRegion.h,.m:
o ivar names changes to conform to coding standards
o headers changed for gsdoc
* GSWAssociation.h:
* GSWeb.framework/GSWAssociation.h:
o ivar names changes to conform to coding standards
o headers changed for gsdoc
* GSWAssociation.m:
* GSWeb.framework/GSWAssociation.m:
o ivar names changes to conform to coding standards
o headers changed for gsdoc
o logs
* GSWForm.h,.m:
* GSWeb.framework/GSWForm.h,.m:
o ivar names changes to conform to coding standards
o headers changed for gsdoc
* GSWContext.h:
* GSWeb.framework/GSWContext.h:
o Changed return type of -elementID and -senderID
* GSWContext.m:
* GSWeb.framework/GSWContext.m:
o Changed return type of -elementID and -senderID
* GSWDisplayGroup.m:
* GSWeb.framework/GSWDisplayGroup.m:
o logs
* GSWeb.framework/GSWPopUpButton.h,.m:
o added count & index parameters (like GSWRepetition)
* GSWTextField.m:
* GSWeb.framework/GSWTextField.m:
o handling exception in takeValue
* GSWText.m:
* GSWeb.framework/GSWText.m:
o handling exception in takeValue
* GSWInput.m:
* GSWeb.framework/GSWInput.m:
o corrected bug in akeValuesFromRequest:inContext:
* GSWExtensionsGSW.framework:
o added GSWFileUploadComponent
* GSWExtensionsGSW.framework/GNUmakefile
o added GSWFileUploadComponent
* GSWComponent.h:
* GSWeb.framework/GSWComponent.h:
o added -definitionName
o ivar names changes to conform to coding standards
o headers changed for gsdoc
* GSWComponent.m:
* GSWeb.framework/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:
* GSWeb.framework/GSWKeyValueAssociation.m:
o logs
* GSWConstantValueAssociation.m:
* GSWeb.framework/GSWConstantValueAssociation.m:
o logs
* GSWApplication.h:
* GSWeb.framework/GSWApplication.h:
o added -saveResponsesPath
* GSWApplication.m:
* GSWeb.framework/GSWApplication.m:
o added -saveResponsesPath
o added GSWOPT_SaveResponsesPath
o added exception handling for debugging purpose
* GSWConstants.h/.m:
* GSWeb.framework/GSWConstants.h/.m:
o added GSWOPT_SaveResponsesPath
* GSWConfig.h:
* GSWeb.framework/GSWConfig.h:
o added GSWOPTVALUE_SaveResponsesPath
* GSWDefaultAdaptorThread.h:
* GSWeb.framework/GSWDefaultAdaptorThread.h:
o add response saving
* GSWDefaultAdaptorThread.m:
* GSWeb.framework/GSWDefaultAdaptorThread.m:
o add response saving
* GSWeb.framework/GSWResponse.m
o added -appendDebugCommentContentString:

16
Doc/kvdoc.txt Normal file
View file

@ -0,0 +1,16 @@
valueForKey: method "foo", method "_foo"
method "getFoo", method "_getFoo"
ivar "_foo", ivar "foo"
takeValue:ForKey: method "setFoo", method "_setFoo"
ivar "foo", ivar "_foo"
storedValueForKey: method "_getFoo", method "_foo"
ivar "_foo", ivar "foo"
method "getFoo", method "foo"
takeStoredValueForKey: method "_setFoo"
ivar "_foo", ivar "foo"
method "setFoo"

View file

@ -0,0 +1,73 @@
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;
};
DeleteCondition: GSWConditional
{
condition = isDeleteEnabled;
};
DeleteCheckBox: GSWCheckBox
{
enabled=isDeleteEnabled;
checked= fileInfo.isDeleted;
};

View file

@ -0,0 +1,22 @@
<gsweb name="ViewCondition">
<gsweb name="ViewPathCondition">
<gsweb name="LinkViewCondition">
<gsweb name="FileLinkWithPath"></gsweb>
</gsweb>
<gsweb name="ImageViewCondition">
<gsweb name="ImageWithPath"></gsweb>
</gsweb>
</gsweb>
<gsweb name="ViewURLCondition">
<gsweb name="LinkViewCondition">
<gsweb name="FileLinkWithURL"></gsweb>
</gsweb>
<gsweb name="ImageViewCondition">
<gsweb name="ImageWithURL"></gsweb>
</gsweb>
</gsweb>
</gsweb>
<gsweb name="UploadFile"></gsweb><br>
<gsweb name="DeleteCondition">
<gsweb name="DeleteCheckBox"></gsweb>
</gsweb>