In remotefilelist.js you'll find the following lines (around line 26):
renderer.renderFileName = function(fileName, filePath, isTextFile) {
var safeFileName = fileName.replace(/\\/g, "\\\\").replace(/\'/g, "\\\'");
You should be able to add an if-statement after this to check if the file-name starts with "." and just return if it does.
I haven't tested this, but it would be something like:
renderer.renderFileName = function(fileName, filePath, isTextFile) {
var safeFileName = fileName.replace(/\\/g, "\\\\").replace(/\'/g, "\\\'");
if (safeFileName.indexOf(".")==0)
return;
Please let me know how that goes.
- Hans (EnterpriseDT)