Page 1 of 1
blacklist question
Posted: Tue Mar 25, 2008 8:40 pm
by dstonek
In applet browser I am trying to avoid displaying .* files like ._imgage.jpg
document.writeln('<PARAM NAME="blacklist" VALUE=".*">');
This does not work.
Thank you.
Re: blacklist question
Posted: Thu Mar 27, 2008 1:17 pm
by support
You want to avoid such filename or you want to rename it ?
Re: blacklist question
Posted: Thu Mar 27, 2008 4:26 pm
by dstonek
I just want them to not to be displayed in applet file browser
Re: blacklist question
Posted: Thu Mar 27, 2008 4:43 pm
by support
The problem is that "." is name/extension parameter. It would need regular expression support in blacklist to solve it.