Re: [slim] Problem with character-sets on the CLI

2007-02-24 Thread Peter
jimwillsher wrote: Okay, sorted it. For the C++ people (not this awful Perl stuff) the solution is: You shouldn't be using slimserver then ;) Regards, Peter ___ discuss mailing list discuss@lists.slimdevices.com

Re: [slim] Problem with character-sets on the CLI

2007-02-24 Thread jimwillsher
Don't get me wrong, I think SlimServer is excellent. I have an SB3, having previously had an SB2 and an SB1. But Perl is almost exclusively the realm of *nix platforms; very very little perl stuff is every written for Windows systems. Windows development is typically done in C/C++, which is what

Re: [slim] Problem with character-sets on the CLI

2007-02-24 Thread Peter
jimwillsher wrote: Don't get me wrong, I think SlimServer is excellent. I have an SB3, having previously had an SB2 and an SB1. But Perl is almost exclusively the realm of *nix platforms; very very little perl stuff is every written for Windows systems. Windows development is typically done in

Re: [slim] Problem with character-sets on the CLI

2007-02-24 Thread jimwillsher
Hmmm...chinese, yes. I have plenty of gaelic songs, but not chinese. Anyway, new version of SqueezeMSN about to be uploaded (http://www.jimwillsher.co.uk/Site/Software/SqueezeMSN.php), now that I've fixed the Unicode issue :-) Jim -- jimwillsher

Re: [slim] Problem with character-sets on the CLI

2007-02-24 Thread Peter
jimwillsher wrote: Hmmm...chinese, yes. I have plenty of gaelic songs, but not chinese. Anyway, new version of SqueezeMSN about to be uploaded (http://www.jimwillsher.co.uk/Site/Software/SqueezeMSN.php), now that I've fixed the Unicode issue :-) Great. Unfortunately I use GAIM to connect

Re: [slim] Problem with character-sets on the CLI

2007-02-24 Thread Marc Sherman
jimwillsher wrote: Hmmm...chinese, yes. I have plenty of gaelic songs, but not chinese. Anyway, new version of SqueezeMSN about to be uploaded (http://www.jimwillsher.co.uk/Site/Software/SqueezeMSN.php), now that I've fixed the Unicode issue :-) If you really want to stress test your

Re: [slim] Problem with character-sets on the CLI

2007-02-23 Thread Michael Herger
title Tráthnóna Beag Aréir I ended up adding charset:iso-8859-1 to the CLI requests. Possibly a 7-bit/8-bit issue, or a UTF-8 issue? I'm sorry, I'm no expert in that area. I took the pragmatic approach described above as it seemed to do what I expected... -- Michael

Re: [slim] Problem with character-sets on the CLI

2007-02-23 Thread jimwillsher
Hmm...unfortunately the title ? and artists ? etc. parameters do not seem to accept the charset argument. Unless I'm doing it wrong? Jim -- jimwillsher jimwillsher's Profile:

Re: [slim] Problem with character-sets on the CLI

2007-02-23 Thread peterw
jimwillsher;182848 Wrote: 7. Tráthnóna Beag Aréir 37 2E 20 54 72 E1 74 68 6E F3 6E 61 20 42 65 61 67 20 41 72 E9 72 The interesting charaters (for me) here are: á E1 ó F3 é E9 á %C3%A1 ó %C3%B3 é %C3%A9 See http://en.wikipedia.org/wiki/Utf8 UTF-8 requires at least 16

Re: [slim] Problem with character-sets on the CLI

2007-02-23 Thread jimwillsher
Hmmm...interesting. I can see the logic. But how on earth would I convert it BACK to a sensible value - in any language!? I'm not sure it's a practical conversion. e.g. how does C3A1 get to become E1? Confused -- jimwillsher

Re: [slim] Problem with character-sets on the CLI

2007-02-23 Thread peterw
Code: $ perl -e 'use CGI; $in = %C3%A1; $out = CGI::unescape($in); \ utf8::decode($out); print \n\$in\ decodes to \$out\\n;' %C3%A1 decodes to á -- peterw peterw's

Re: [slim] Problem with character-sets on the CLI

2007-02-23 Thread jimwillsher
Hmmmperl. Not really a solution. But thanks anyway. -- jimwillsher jimwillsher's Profile: http://forums.slimdevices.com/member.php?userid=410 View this thread: http://forums.slimdevices.com/showthread.php?t=33029

Re: [slim] Problem with character-sets on the CLI

2007-02-23 Thread jimwillsher
Okay, sorted it. For the C++ people (not this awful Perl stuff) the solution is: Code: CString CSqueezeboxStatus::FromUTF8(LPBYTE pUTF8, int nSize) { #define MAX_CHAR 1 WCHAR wszResult[MAX_CHAR+1]; DWORD dwResult = MAX_CHAR; CString