updated: pls use this patch [javascript browse_dir function]
Posted: 23 Mar 2006 09:16
Hello,
there is a problem in http VLM/mosaic - browse_dir javascript function (WinXP, IE 6, vlc-0.8.5-test1-20060323-0001-win32).
It is trying to use incompete directory names when trying to browse for input file (e.g. for mosaic):
instead of 'C:\\Documents and Settings\\Albert\\.
Albert
updated 23.3.2006
There is a miskate in functions.js
original
new
It now allows you to browse directories and choose files, but than you have to add \ to the path for VLM
I´ll try fix it next time.
Albert
there is a problem in http VLM/mosaic - browse_dir javascript function (WinXP, IE 6, vlc-0.8.5-test1-20060323-0001-win32).
It is trying to use incompete directory names when trying to browse for input file (e.g. for mosaic):
Code: Select all
javascript:browse_path('C:\\ocuments and Settings\\lbert\\.');
Albert
updated 23.3.2006
There is a miskate in functions.js
original
Code: Select all
function addslashes( str ){ return str.replace(/\'/g, '\\\''); }
function escapebackslashes( str ){ return str.replace(/\\[^']/g, '\\\\'); }
Code: Select all
function addslashes( str ){ return str.replace(/\'/g, '\''); }
function escapebackslashes( str ){ return str.replace(/\\/g, '\\\\'); }
I´ll try fix it next time.
Albert