Lines Matching defs:upload

246 		':cgi'=>[qw/param upload path_info path_translated request_uri url self_url script_name 
2051 # this entered at cristy's request to fix problems with file upload fields
2080 # $name -> Name of the file upload field
3596 # Test for Opera's multiple upload feature
3668 ## upload to contain many files, and we won't die due to too many
3696 # this Content-ID will not be stored as a file upload, but will be
3770 ## upload to contain many files, and we won't die due to too many
3795 'upload' =><<'END_OF_FUNC',
3796 sub upload {
3973 # If the user types garbage into the file upload field,
4333 $fh = $q->upload('file_field');
5119 upload section. Another CGI script author could peek at this data
5120 during the upload, even if it is confidential information. On Unix
6016 it enables the "file upload" feature. For
6187 filefield() will return a file upload field.
6234 handle for a file upload field like this:
6236 $lightweight_fh = $q->upload('field_name');
6249 In a list context, upload() will return an array of filehandles.
6251 multiple upload fields.
6262 that CGI.pm creates during upload spooling (see below).
6287 upload by passing the file name to the tmpFileName() method:
6300 This usually happens when the user presses "Stop" before the upload is
6307 $file = $q->upload('uploaded_file');
6318 CGI.pm gives you low-level access to file upload management through
6319 a file upload hook. You can use this feature to completely turn off
6321 file upload progress meter.
6338 CGI.pm's use of a temporary disk-based file during file upload. If you
6368 user to type garbage into the upload field, in which case what you get from
6371 To solve this problem the upload() method was added, which always returns a
6375 which is to call the handle() method on the file handle returned by upload().
7831 accept a huge file upload. CGI.pm will accept the upload and store it
7900 $uploaded_file = param('upload');
7967 The extended form of ReadParse() that provides for file upload