On Tuesday, November 15, 2016 at 2:19:22 PM UTC+1, Eric Lebigot wrote:
>
> There is a site that requires URL/percent encoding:
> http://leconjugueur.lefigaro.fr/conjugaison/verbe/%E9crire.html
> Can QuickSilver's web search handle this (with the last part replaced by 
> ***.html)? I tried many reasonable encodings (that launch the latest macOS 
> Safari), to no avail.
>

Use this applescript action

using terms from application "Quıcĸsıɩⅴεʀ"
    on process text theVerb
        set theVerbURLEncoded to do shell script "php -r 'echo 
urlencode(utf8_decode('" & theVerb & "'));'"
        do shell script "open 
http://leconjugueur.lefigaro.fr/conjugaison/verbe/"; & theVerbURLEncoded & 
".html"
    end process text
end using terms from

Here 
<http://lh5.googleusercontent.com/-zlgsAj8AZSE/AAAAAAAAAAI/AAAAAAAAABA/JZDeRfsScNc/photo.jpg>
 
you can find a nice icon for it.

-- 
You received this message because you are subscribed to the Google Groups 
"Quicksilver" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/blacktree-quicksilver.
For more options, visit https://groups.google.com/d/optout.

Reply via email to