]> err.no Git - sope/blobdiff - sope-appserver/NGObjWeb/DynamicElements/WOFileUpload.m
improved query string handling
[sope] / sope-appserver / NGObjWeb / DynamicElements / WOFileUpload.m
index 693eaf5df1d2b038841f2dde6b5a8e24f2733b32..9e763c9d35b3d62cb4985e3838af736a2ba190ce 100644 (file)
@@ -85,28 +85,31 @@ static NGMimeType *multipartFormData = nil;
   
   if ([self->disabled boolValueInComponent:[_ctx component]])
     return;
-
+  
   currentId = OWFormElementName(self, _ctx);
-
+  
   if ((formValue = [_rq formValueForKey:currentId]) == nil)
     return;
 
   contentType = [[_rq httpRequest] contentType];
       
   if (![contentType hasSameType:multipartFormData]) {
-    NSLog(@"WARNING: tried to apply file-upload value of %@ from "
-         @"a non multipart-form request (value=%@) !",
-         [_ctx elementID], formValue);
+    [self warnWithFormat:
+           @"Tried to apply file-upload value of eid=%@ from "
+           @"a non multipart-form request (value=%@).",
+           [_ctx elementID], formValue];
     return;
   }
   
 #if 0
   NSLog(@"%@: value=%@ ..", [self elementID], formValue);
 #endif
-
+  
   if ([self->data isValueSettable])
     [self->data setValue:formValue inComponent:[_ctx component]];
-
+  
+  /* the remainder is for locating the file path */
+  
   if (![self->filePath isValueSettable])
     return;
   
@@ -139,7 +142,7 @@ static NGMimeType *multipartFormData = nil;
        [[DispClass alloc] initWithString:[disposition stringValue]];
       disposition = [disposition autorelease];
     }
-              
+    
     formName = [(NGMimeContentDispositionHeaderField *)disposition name];
       
     if ([formName isEqualToString:currentId]) {