mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-30 16:50:52 +00:00
2002-06-03 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb.framework/GSWBundle.m: o use smartTakeValue:forKey: instead of takeValue:forKey: * GSWeb.framework/GSWAssociation.m: o use smartTakeValue:forKeyPath: instead of takeValue:forKeyPath: * GSWeb.framework/GSWComponent.m: o use smartTakeValue:forKey: instead of takeValue:forKey: * GSWeb.framework/GSWDisplayGroup.m: o changes in -description o logs * GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.gswd: o added "reference" * GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.html: o added "reference" * GSWExtensions.framework/French.lproj/GSWExceptionPage.gswc/GSWExceptionPage.html: o added "reference" * GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.h/.m: o added "reference" * GSWExtensionsGSW.framework/GSWFileUploadComponent.h/.m: o bug fixes * GSWExtensionsGSW.framework/GSWFileUploadComponent.gswc/GSWFileUploadComponent.gswd: o added Height & With parameters for images * GSWExtensionsGSW.framework/GSWFileUploadComponent.gswc/GSWFileUploadComponent.html: o added delete check box title * GSWeb.framework/GSWElement.m: o logs * GSWeb.framework/GSWFileUpload.m: o logs * GSWeb.framework/GSWRequest.m: o bug fix for uploaded files git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@13762 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
893540cdaa
commit
1a474bf60f
19 changed files with 179 additions and 58 deletions
|
@ -145,8 +145,8 @@ static char rcsId[] = "$Id$";
|
|||
if (fileDatasCount==1)
|
||||
{
|
||||
dataValue=[fileDatas objectAtIndex:0];
|
||||
NSDebugMLLog(@"gswdync",@"dataValue (class=%@)=%@",
|
||||
[dataValue class],dataValue);
|
||||
NSDebugMLLog(@"gswdync",@"dataValue %p (class=%@)=%@",
|
||||
dataValue,[dataValue class],dataValue);
|
||||
if (dataValue)
|
||||
{
|
||||
if ([dataValue isKindOfClass:[NSData class]])
|
||||
|
@ -161,12 +161,16 @@ static char rcsId[] = "$Id$";
|
|||
if ([dataValue isKindOfClass:[NSString class]] && [dataValue length]==0)
|
||||
{
|
||||
LOGError(@"No Data: %@",dataValue);
|
||||
NSDebugMLLog(@"gswdync",@"No Data: %p (class=%@)=%@",
|
||||
dataValue,[dataValue class],dataValue);
|
||||
dataValue=nil;
|
||||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"content type request : %@",[request _contentType]);
|
||||
NSLog(@"data class = %@",NSStringFromClass([dataValue class]));
|
||||
NSDebugMLLog(@"gswdync",@"??Data: %p (class=%@)=%@",
|
||||
dataValue,[dataValue class],dataValue);
|
||||
/*if (![dataValue isMemberOfClass:[NSString class]]) {
|
||||
ExceptionRaise(@"GSWFileUpload",
|
||||
@"GSWFileUpload: bad data :%@",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue