Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Bizarre Dancer encoding behavior

by Anonymous Monk
on Jul 21, 2014 at 02:37 UTC ( [id://1094413]=note: print w/replies, xml ) Need Help??


in reply to Bizarre Dancer encoding behavior

This is what happens happens when you (I mean, Dancer) use binary strings in 'Unicode context' (so to say). For example

perl -E 'my $m=q{ДДТ - Чёрно-белые танцы)}; binmode STDOUT, q{:encoding(utf-8)}; say $m'

There are plenty of ways to produce mojibake actually... Did you try something like
get '/np' => sub { return Encode::decode_utf8(`mpd | head -n1`); }
...just for testing? Anyway, this is probably a bug in Dancer.

For some reason, Dancer imports utf8 into your file

utf8->import; # line 232 of Dancer.pm
Apparently, it expects Unicode strings from you. And `mpc|head -n1` produces bytes. The bad thing with Perl is that by default, it tries to decode binary strings from Latin-1.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1094413]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-19 20:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found