update YUI to 2.8.0r4

This commit is contained in:
Graham Knop 2009-09-21 12:54:44 -05:00
parent 27f474ec64
commit 2d28e0c0ba
2007 changed files with 344487 additions and 210070 deletions

View file

@ -4,7 +4,7 @@
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="style.css" type="text/css" media="screen">
<link rel="stylesheet" href="print.css" type="text/css" media="print">
<meta content="Uploader,simultaneousUploadLimit,cancel,clearFileList,disable,enable,removeFile,setAllowLogging,setAllowMultipleFiles,setFileFilters,setSimUploadLimit,upload,uploadAll" name="keywords">
<meta content="Uploader,simultaneousUploadLimit,cancel,clearFileList,disable,enable,removeFile,setAllowLogging,setAllowMultipleFiles,setFileFilters,setSimUploadLimit,upload,uploadAll,uploadThese" name="keywords">
<title>Uploader</title>
</head>
<body>
@ -217,6 +217,14 @@ if (!isEclipse() || window.name != ECLIPSE_FRAME_NAME) {titleBar_setSubTitle("Cl
Uploads all files to a specified path where a script handles writing to the server.</div>
</td><td class="summaryTableOwnerCol">Uploader</td>
</tr>
<tr class="">
<td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol">&nbsp;</td><td class="summaryTableSignatureCol">
<div class="summarySignature">
<a class="signatureLink" href="#uploadThese()">uploadThese</a>(fileIDs:Array, url:String, method:String = "GET", vars:Object = null, fieldName:String = "Filedata"):void</div>
<div class="summaryTableDescription">
Uploads the specified files to a specified path where a script handles writing to the server.</div>
</td><td class="summaryTableOwnerCol">Uploader</td>
</tr>
</table>
</div>
<a name="protectedMethodSummary"></a>
@ -542,6 +550,52 @@ showHideInherited();
</tr>
</table>
</div>
<a name="uploadThese()"></a>
<table cellspacing="0" cellpadding="0" class="detailHeader">
<tr>
<td class="detailHeaderName">uploadThese</td><td class="detailHeaderParens">()</td><td class="detailHeaderType">method</td><td class="detailHeaderRule">&nbsp;</td>
</tr>
</table>
<div class="detailBody">
<code>public function uploadThese(fileIDs:Array, url:String, method:String = "GET", vars:Object = null, fieldName:String = "Filedata"):void</code><p>
Uploads the specified files to a specified path where a script handles writing to the server.
</p><span class="label">Parameters</span>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20px"></td><td><code><span class="label">fileIDs</span>:Array</code> &mdash; The IDs of the files to be uploaded
</td>
</tr>
<tr>
<td class="paramSpacer">&nbsp;</td>
</tr>
<tr>
<td width="20px"></td><td><code><span class="label">url</span>:String</code> &mdash; The path to the serverside script
</td>
</tr>
<tr>
<td class="paramSpacer">&nbsp;</td>
</tr>
<tr>
<td width="20px"></td><td><code><span class="label">method</span>:String</code> (default = "<code>GET</code>")<code></code> &mdash; The HTTP submission method. Possible values are "GET" and "POST"
</td>
</tr>
<tr>
<td class="paramSpacer">&nbsp;</td>
</tr>
<tr>
<td width="20px"></td><td><code><span class="label">vars</span>:Object</code> (default = <code>null</code>)<code></code> &mdash; An object containing data to be sent along with the request
</td>
</tr>
<tr>
<td class="paramSpacer">&nbsp;</td>
</tr>
<tr>
<td width="20px"></td><td><code><span class="label">fieldName</span>:String</code> (default = "<code>Filedata</code>")<code></code> &mdash; The field name that precedes the file data in the upload POST operation. The uploadDataFieldName value must be non-null and a non-empty String.
</td>
</tr>
</table>
</div>
<br>
<br>
<hr>