Modificare il file:
\FckEditor\editor\filemanager\browser\default\frmresourceslist.asp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link href="browser.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="js/common.js"></script> <script type="text/javascript"> var oListManager = new Object() ; oListManager.Clear = function() { document.body.innerHTML = '' ; } function ProtectPath(path) { path = path.replace( /\\/g, '\\\\') ; path = path.replace( /'/g, '\\\'') ; return path ; } oListManager.GetFolderRowHtml = function( folderName, folderPath ) { // Build the link to view the folder. var sLink = '<a href="#" onclick="OpenFolder(\'' + folderPath.replace( /'/g, '\\\'') + '\');return false;">' ; return '<div align="center" style="float:left; width:150px; height:170px">' + '<div style="width:100px; height:70px; background-color: #C0C0C0; font-family: Arial; font-size: 12px">' + sLink + '<br /><img alt="" src="images/Folder.gif" width="16" height="16" border="0"></a><br />' + sLink + folderName + '</a>' + '</div>' + '</div>' ; } oListManager.GetFileRowHtml = function( fileName, fileUrl, fileSize ) { // Build the link to view the folder. var sLink = '<a href="#" onclick="OpenFile(\'http://<%= Request.ServerVariables("HTTP_HOST") %>' + fileUrl.replace( /'/g, '\\\'') + '\');return false;">' ; // Get the file icon. var sIcon = oIcons.GetIcon( fileName ) ; return '' + '<div align="center" style="float:left; width:150px; height:170px">' + '<div style="width:140px; height:140px; background-color: #C0C0C0; font-family: Arial; font-size: 9px">' + sLink + '<br /><img alt="" src="/SqrThumb.aspx?nomefile=/' + fileUrl +'&lato=100" border="0"><br/>' + '<img alt="" src="images/icons/' + sIcon + '.gif" width="16" height="16" border="0"></a> ' + sLink + fileName + ' ' + fileSize + ' KB' + '</div>' + '</div>' ; } function OpenFolder( folderPath ) { // Load the resources list for this folder. window.parent.frames['frmFolders'].LoadFolders( folderPath ) ; } function OpenFile( fileUrl ) { window.top.opener.SetUrl( fileUrl ) ; window.top.close() ; window.top.opener.focus() ; } function LoadResources( resourceType, folderPath ) { oListManager.Clear() ; oConnector.ResourceType = resourceType ; oConnector.CurrentFolder = folderPath ; oConnector.SendCommand( 'GetFoldersAndFiles', null, GetFoldersAndFilesCallBack ) ; } function Refresh() { LoadResources( oConnector.ResourceType, oConnector.CurrentFolder ) ; } function GetFoldersAndFilesCallBack( fckXml ) { if ( oConnector.CheckError( fckXml ) != 0 ) return ; // Get the current folder path. var oNode = fckXml.SelectSingleNode( 'Connector/CurrentFolder' ) ; var sCurrentFolderPath = oNode.attributes.getNamedItem('path').value ; var sCurrentFolderUrl = oNode.attributes.getNamedItem('url').value ; // var dTimer = new Date() ; var oHtml = new StringBuilder( '<table id="tableFiles" cellspacing="1" cellpadding="0" width="100%" border="0">' ) ; // Add the Folders. var oNodes = fckXml.SelectNodes( 'Connector/Folders/Folder' ) ; for ( var i = 0 ; i < oNodes.length ; i++ ) { var sFolderName = oNodes[i].attributes.getNamedItem('name').value ; oHtml.Append( oListManager.GetFolderRowHtml( sFolderName, sCurrentFolderPath + sFolderName + "/" ) ) ; } // Add the Files. var oNodes = fckXml.SelectNodes( 'Connector/Files/File' ) ; for ( var i = 0 ; i < oNodes.length ; i++ ) { var oNode = oNodes[i] ; var sFileName = oNode.attributes.getNamedItem('name').value ; var sFileSize = oNode.attributes.getNamedItem('size').value ; // Get the optional "url" attribute. If not available, build the url. var oFileUrlAtt = oNodes[i].attributes.getNamedItem('url') ; var sFileUrl = oFileUrlAtt != null ? oFileUrlAtt.value : sCurrentFolderUrl + sFileName ; oHtml.Append( oListManager.GetFileRowHtml( sFileName, sFileUrl, sFileSize ) ) ; } oHtml.Append( '</table>' ) ; document.body.innerHTML = oHtml.ToString() ; // window.top.document.title = 'Finished processing in ' + ( ( ( new Date() ) - dTimer ) / 1000 ) + ' seconds' ; } window.onload = function() { window.top.IsLoadedResourcesList = true ; } function deleteFile(file,name){ if(confirm(getText("galleryDeleteFile","Delete the file?\n\n")+name)){ myFckXml = null window.parent.frames['frmUploadWorker'].location = "DeleteFile.asp?FilePath="+file } } </script> </head> <body class="FileArea" bottommargin="10" leftmargin="10" topmargin="10" rightmargin="10"> </body> </html>
[
Íàçàä
]