first commit
This commit is contained in:
54
wp-includes/js/swfupload/handlers.js
Normal file
54
wp-includes/js/swfupload/handlers.js
Normal file
@ -0,0 +1,54 @@
|
||||
var topWin = window.dialogArguments || opener || parent || top;
|
||||
|
||||
function fileDialogStart() {}
|
||||
function fileQueued() {}
|
||||
function uploadStart() {}
|
||||
function uploadProgress() {}
|
||||
function prepareMediaItem() {}
|
||||
function prepareMediaItemInit() {}
|
||||
function itemAjaxError() {}
|
||||
function deleteSuccess() {}
|
||||
function deleteError() {}
|
||||
function updateMediaForm() {}
|
||||
function uploadSuccess() {}
|
||||
function uploadComplete() {}
|
||||
function wpQueueError() {}
|
||||
function wpFileError() {}
|
||||
function fileQueueError() {}
|
||||
function fileDialogComplete() {}
|
||||
function uploadError() {}
|
||||
function cancelUpload() {}
|
||||
|
||||
function switchUploader() {
|
||||
jQuery( '#' + swfu.customSettings.swfupload_element_id ).hide();
|
||||
jQuery( '#' + swfu.customSettings.degraded_element_id ).show();
|
||||
jQuery( '.upload-html-bypass' ).hide();
|
||||
}
|
||||
|
||||
function swfuploadPreLoad() {
|
||||
switchUploader();
|
||||
}
|
||||
|
||||
function swfuploadLoadFailed() {
|
||||
switchUploader();
|
||||
}
|
||||
|
||||
jQuery(document).ready(function($){
|
||||
$( 'input[type="radio"]', '#media-items' ).on( 'click', function(){
|
||||
var tr = $(this).closest('tr');
|
||||
|
||||
if ( $(tr).hasClass('align') )
|
||||
setUserSetting('align', $(this).val());
|
||||
else if ( $(tr).hasClass('image-size') )
|
||||
setUserSetting('imgsize', $(this).val());
|
||||
});
|
||||
|
||||
$( 'button.button', '#media-items' ).on( 'click', function(){
|
||||
var c = this.className || '';
|
||||
c = c.match(/url([^ '"]+)/);
|
||||
if ( c && c[1] ) {
|
||||
setUserSetting('urlbutton', c[1]);
|
||||
$(this).siblings('.urlfield').val( $(this).attr('title') );
|
||||
}
|
||||
});
|
||||
});
|
1
wp-includes/js/swfupload/handlers.min.js
vendored
Normal file
1
wp-includes/js/swfupload/handlers.min.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
function fileDialogStart(){}function fileQueued(){}function uploadStart(){}function uploadProgress(){}function prepareMediaItem(){}function prepareMediaItemInit(){}function itemAjaxError(){}function deleteSuccess(){}function deleteError(){}function updateMediaForm(){}function uploadSuccess(){}function uploadComplete(){}function wpQueueError(){}function wpFileError(){}function fileQueueError(){}function fileDialogComplete(){}function uploadError(){}function cancelUpload(){}function switchUploader(){jQuery("#"+swfu.customSettings.swfupload_element_id).hide(),jQuery("#"+swfu.customSettings.degraded_element_id).show(),jQuery(".upload-html-bypass").hide()}function swfuploadPreLoad(){switchUploader()}function swfuploadLoadFailed(){switchUploader()}var topWin=window.dialogArguments||opener||parent||top;jQuery(document).ready(function(a){a('input[type="radio"]',"#media-items").on("click",function(){var b=a(this).closest("tr");a(b).hasClass("align")?setUserSetting("align",a(this).val()):a(b).hasClass("image-size")&&setUserSetting("imgsize",a(this).val())}),a("button.button","#media-items").on("click",function(){var b=this.className||"";b=b.match(/url([^ '"]+)/),b&&b[1]&&(setUserSetting("urlbutton",b[1]),a(this).siblings(".urlfield").val(a(this).attr("title")))})});
|
32
wp-includes/js/swfupload/license.txt
Normal file
32
wp-includes/js/swfupload/license.txt
Normal file
@ -0,0 +1,32 @@
|
||||
/**
|
||||
* SWFUpload: http://www.swfupload.org, http://swfupload.googlecode.com
|
||||
*
|
||||
* mmSWFUpload 1.0: Flash upload dialog - http://profandesign.se/swfupload/, http://www.vinterwebb.se/
|
||||
*
|
||||
* SWFUpload is (c) 2006-2007 Lars Huring, Olov Nilzén and Mammon Media and is released under the MIT License:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
*
|
||||
* SWFUpload 2 is (c) 2007-2008 Jake Roberts and is released under the MIT License:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
*
|
||||
*/
|
||||
|
||||
The MIT License
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
140
wp-includes/js/swfupload/swfupload.js
Normal file
140
wp-includes/js/swfupload/swfupload.js
Normal file
@ -0,0 +1,140 @@
|
||||
/**
|
||||
* SWFUpload fallback
|
||||
*
|
||||
* @since 4.9.0
|
||||
*/
|
||||
|
||||
var SWFUpload;
|
||||
|
||||
( function () {
|
||||
function noop() {}
|
||||
|
||||
if (SWFUpload == undefined) {
|
||||
SWFUpload = function (settings) {
|
||||
this.initSWFUpload(settings);
|
||||
};
|
||||
}
|
||||
|
||||
SWFUpload.prototype.initSWFUpload = function ( settings ) {
|
||||
function fallback() {
|
||||
var $ = window.jQuery;
|
||||
var $placeholder = settings.button_placeholder_id ? $( '#' + settings.button_placeholder_id ) : $( settings.button_placeholder );
|
||||
|
||||
if ( ! $placeholder.length ) {
|
||||
return;
|
||||
}
|
||||
|
||||
var $form = $placeholder.closest( 'form' );
|
||||
|
||||
if ( ! $form.length ) {
|
||||
$form = $( '<form enctype="multipart/form-data" method="post">' );
|
||||
$form.attr( 'action', settings.upload_url );
|
||||
$form.insertAfter( $placeholder ).append( $placeholder );
|
||||
}
|
||||
|
||||
$placeholder.replaceWith(
|
||||
$( '<div>' )
|
||||
.append(
|
||||
$( '<input type="file" multiple />' ).attr({
|
||||
name: settings.file_post_name || 'async-upload',
|
||||
accepts: settings.file_types || '*.*'
|
||||
})
|
||||
).append(
|
||||
$( '<input type="submit" name="html-upload" class="button" value="Upload" />' )
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
// Try the built-in fallback.
|
||||
if ( typeof settings.swfupload_load_failed_handler === 'function' && settings.custom_settings ) {
|
||||
|
||||
window.swfu = {
|
||||
customSettings: settings.custom_settings
|
||||
};
|
||||
|
||||
settings.swfupload_load_failed_handler();
|
||||
} else {
|
||||
fallback();
|
||||
}
|
||||
} catch ( ex ) {
|
||||
fallback();
|
||||
}
|
||||
};
|
||||
|
||||
SWFUpload.instances = {};
|
||||
SWFUpload.movieCount = 0;
|
||||
SWFUpload.version = "0";
|
||||
SWFUpload.QUEUE_ERROR = {};
|
||||
SWFUpload.UPLOAD_ERROR = {};
|
||||
SWFUpload.FILE_STATUS = {};
|
||||
SWFUpload.BUTTON_ACTION = {};
|
||||
SWFUpload.CURSOR = {};
|
||||
SWFUpload.WINDOW_MODE = {};
|
||||
|
||||
SWFUpload.completeURL = noop;
|
||||
SWFUpload.prototype.initSettings = noop;
|
||||
SWFUpload.prototype.loadFlash = noop;
|
||||
SWFUpload.prototype.getFlashHTML = noop;
|
||||
SWFUpload.prototype.getFlashVars = noop;
|
||||
SWFUpload.prototype.getMovieElement = noop;
|
||||
SWFUpload.prototype.buildParamString = noop;
|
||||
SWFUpload.prototype.destroy = noop;
|
||||
SWFUpload.prototype.displayDebugInfo = noop;
|
||||
SWFUpload.prototype.addSetting = noop;
|
||||
SWFUpload.prototype.getSetting = noop;
|
||||
SWFUpload.prototype.callFlash = noop;
|
||||
SWFUpload.prototype.selectFile = noop;
|
||||
SWFUpload.prototype.selectFiles = noop;
|
||||
SWFUpload.prototype.startUpload = noop;
|
||||
SWFUpload.prototype.cancelUpload = noop;
|
||||
SWFUpload.prototype.stopUpload = noop;
|
||||
SWFUpload.prototype.getStats = noop;
|
||||
SWFUpload.prototype.setStats = noop;
|
||||
SWFUpload.prototype.getFile = noop;
|
||||
SWFUpload.prototype.addFileParam = noop;
|
||||
SWFUpload.prototype.removeFileParam = noop;
|
||||
SWFUpload.prototype.setUploadURL = noop;
|
||||
SWFUpload.prototype.setPostParams = noop;
|
||||
SWFUpload.prototype.addPostParam = noop;
|
||||
SWFUpload.prototype.removePostParam = noop;
|
||||
SWFUpload.prototype.setFileTypes = noop;
|
||||
SWFUpload.prototype.setFileSizeLimit = noop;
|
||||
SWFUpload.prototype.setFileUploadLimit = noop;
|
||||
SWFUpload.prototype.setFileQueueLimit = noop;
|
||||
SWFUpload.prototype.setFilePostName = noop;
|
||||
SWFUpload.prototype.setUseQueryString = noop;
|
||||
SWFUpload.prototype.setRequeueOnError = noop;
|
||||
SWFUpload.prototype.setHTTPSuccess = noop;
|
||||
SWFUpload.prototype.setAssumeSuccessTimeout = noop;
|
||||
SWFUpload.prototype.setDebugEnabled = noop;
|
||||
SWFUpload.prototype.setButtonImageURL = noop;
|
||||
SWFUpload.prototype.setButtonDimensions = noop;
|
||||
SWFUpload.prototype.setButtonText = noop;
|
||||
SWFUpload.prototype.setButtonTextPadding = noop;
|
||||
SWFUpload.prototype.setButtonTextStyle = noop;
|
||||
SWFUpload.prototype.setButtonDisabled = noop;
|
||||
SWFUpload.prototype.setButtonAction = noop;
|
||||
SWFUpload.prototype.setButtonCursor = noop;
|
||||
SWFUpload.prototype.queueEvent = noop;
|
||||
SWFUpload.prototype.executeNextEvent = noop;
|
||||
SWFUpload.prototype.unescapeFilePostParams = noop;
|
||||
SWFUpload.prototype.testExternalInterface = noop;
|
||||
SWFUpload.prototype.flashReady = noop;
|
||||
SWFUpload.prototype.cleanUp = noop;
|
||||
SWFUpload.prototype.fileDialogStart = noop;
|
||||
SWFUpload.prototype.fileQueued = noop;
|
||||
SWFUpload.prototype.fileQueueError = noop;
|
||||
SWFUpload.prototype.fileDialogComplete = noop;
|
||||
SWFUpload.prototype.uploadStart = noop;
|
||||
SWFUpload.prototype.returnUploadStart = noop;
|
||||
SWFUpload.prototype.uploadProgress = noop;
|
||||
SWFUpload.prototype.uploadError = noop;
|
||||
SWFUpload.prototype.uploadSuccess = noop;
|
||||
SWFUpload.prototype.uploadComplete = noop;
|
||||
SWFUpload.prototype.debug = noop;
|
||||
SWFUpload.prototype.debugMessage = noop;
|
||||
SWFUpload.Console = {
|
||||
writeLine: noop
|
||||
};
|
||||
}() );
|
Reference in New Issue
Block a user