amethyst wrote: % and other characters, no problem. % and numbers, no go.
Oh, it's worse than you think.
%bla.txt is OK, but %Bbla.txt is not! The rule is: % followed by 2 hex digits (0-9, a-f,A-F) creates a problem.
JakeSFR wrote:In a script, it's pretty pointless, as I've already shown.
Do not despair.
It's not as hopeless as you think.
I don't know multicopypaste, so my solution may not fit for this purpose, but - with a few caveats - it can correct all unwanted UTF-8 name conversions.
You should remember that ROX puts a copy of all selected and unconverted filenames into the primary selection buffer. So if the filenames in the buffer contain %xx triplets you know that ROX will not pass correct names to a right-click app. In this case you should use the buffer.
My solution requires xclip or xsel (should be present in all decent distros), though works without them as long as names don't contain %xx. If indeed not installed resulting names may have to be checked for existence and user should be alerted.
My test files:
/opt/a %2b b.txt
/opt/a %C3%98 b.txt
and what ROX would output:
/opt/a + b.txt
/opt/a Ø b.txt
The following test script should be copied to or linked in the directory /root/.config/rox.sourceforge.net/SendTo.
After selecting files in ROX-Filer the script should be called from the right-click menu ("Open With...")
Code: Select all
#!/bin/bash
clip=$(type -p xclip)||clip=$(type -p xsel) # assume that one of the two is installed
buf=$($clip -o) # assign contents of primary selection buffer to variable buf
TMP=$IFS ; IFS=$'\n' # prepare for filenames containing spaces or tabs
if [[ $# = 1 && ! -e $1 && -e $clip && ! -e $buf ]];then # if user directly rightclicked a single file and file contains %xx filename, then this file is not in buffer and ROX converted name to UTF-8
Xdialog -msg "File not found\nPlease select file in ROX-Filer with Ctrl+Lclick, then try again" x && exit
elif [[ $buf =~ %[0-9a-fA-F]{2} ]] ;then # if the primary selection buffer contains %xx
buf=${buf// \//$'\n/'} # put every filename (may contain spaces) on separate line
set -- # let's forget the crappy args passed by ROX
set $@ -- $buf # instead assign to $@ the correct file names contained in the buffer
fi
#more code needed here if xclip or xsel no installed. Test for non-existing files (original %xx converted to UTF-8)
gxmessage -c "First file: $1"
gxmessage -c "Second file: $2"
gxmessage -c "All files: $*"
IFS=$TMP #in case original IFS is needed in any following code
As you see the only problem occurs if a user directly righ-clicks a single %xx file to trigger the context menu. ROX does not select a right-clicked file and doesn't put its path into the buffer (Make a funny test: Rclick on a single file but do not select anything from the menu, instead select another window. The rclicked file is not selected or markded as active but the window remains active and the selected window is not focussed). For multiple selections this problem does not occur since the user first has to select the files with Ctrl+Lclick before triggering the context menu. If he selects a single file this way, no problem either, if not he has to be educated 