eCo wrote: 
> I could see when comparing files that that's what needs to be done, but
> I have little coding experience and none of it's in Perl.

I'll post my script tomorrow. It's very simple but you would need to
have that URI::Encode module installed - maybe it's part of the standard
LMS install.

Are there any other languages you are familiar with or at least already
have installed? A Python3 version should also be pretty easy:

>>> from urllib.parse import quote
>>> quote('/test')
'/test'
>>> quote('/test', safe='')
'%2Ftest'
>>> quote('/El NiƱo/')
'/El%20Ni%C3%B1o/'


------------------------------------------------------------------------
philchillbill's Profile: http://forums.slimdevices.com/member.php?userid=68920
View this thread: http://forums.slimdevices.com/showthread.php?t=114635

_______________________________________________
Squeezecenter mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/squeezecenter

Reply via email to