git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Steffen Daode Nurpmeso <sdaoden@googlemail.com>
To: "Jérémie NIKAES" <jeremie.nikaes@gmail.com>
Cc: git@vger.kernel.org, thomas@xteddy.org
Subject: Re: Git-mediawiki : Encoding problems in perl
Date: Wed, 8 Jun 2011 16:37:26 +0200	[thread overview]
Message-ID: <20110608143726.GA72373@sherwood.local> (raw)
In-Reply-To: <BANLkTimy85b3nu05FBjXzdnTJP0RBWdxiQ@mail.gmail.com>

@ Jérémie NIKAES <jeremie.nikaes@gmail.com> wrote (2011-06-08 15:45+0200):
> But, when I look at the page on mediawiki, I see weird characters : été.
> 
> I tried text => encode_utf8('été') with no success.
> 
> Do you have any information regarding this issue ?

I'm not a Perl guru, but i ran into the very same problem when
writing a disc-ripper/CDDB lookup/DB writer, and the following
snippet helped me out:

    $CDDB{TITLES} = $dinf->{ttitles};
    foreach (@{$dinf->{ttitles}}) {
        s/^\s*(.*?)\s*$/$1/;
        my $save = $_;
        eval { Encode::from_to($_, 'iso-8859-1', 'utf-8'); };
        $_ = $save if $@;
        Encode::_utf8_off($_);
    }

I forget the exact circumstances, but as far as i remember you
need to trigger the is-UTF-8 bit on the string object in an
discouraged (acc. to manual) way to make it work the way it
should.
--
Ciao, Steffen
sdaoden(*)(gmail.com)
() ascii ribbon campaign - against html e-mail
/\ www.asciiribbon.org - against proprietary attachments

  reply	other threads:[~2011-06-08 14:38 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-08 13:45 Git-mediawiki : Encoding problems in perl Jérémie NIKAES
2011-06-08 14:37 ` Steffen Daode Nurpmeso [this message]
2011-06-08 15:01 ` Jeff King
2011-06-08 15:37   ` Matthieu Moy
2011-06-08 15:45     ` Jeff King
2011-06-08 15:46     ` Jérémie NIKAES
2011-06-08 15:58       ` Matthieu Moy
2011-06-08 16:15         ` Jérémie NIKAES
2011-06-08 16:18           ` Jeff King
2011-06-08 16:26             ` Jérémie NIKAES
2011-06-08 16:27           ` Matthieu Moy
2011-06-08 16:30             ` Jérémie NIKAES
2011-06-08 17:07           ` Jakub Narebski
2011-06-08 17:11           ` Matthieu Moy
2011-06-08 18:03             ` Jérémie NIKAES
2011-06-08 18:20               ` Matthieu Moy
2011-06-08 21:51               ` Jeff King
2011-06-08 22:36                 ` Jérémie NIKAES
2011-06-08 17:04 ` Jakub Narebski
2011-06-08 17:59   ` Jérémie NIKAES

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110608143726.GA72373@sherwood.local \
    --to=sdaoden@googlemail.com \
    --cc=git@vger.kernel.org \
    --cc=jeremie.nikaes@gmail.com \
    --cc=thomas@xteddy.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).