git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Git-mediawiki : Encoding problems in perl
@ 2011-06-08 13:45 Jérémie NIKAES
  2011-06-08 14:37 ` Steffen Daode Nurpmeso
                   ` (2 more replies)
  0 siblings, 3 replies; 20+ messages in thread
From: Jérémie NIKAES @ 2011-06-08 13:45 UTC (permalink / raw)
  To: thomas; +Cc: git

Hi,
While working on the git-mediawiki project[1], we ran into some
problems regarding utf8 encoding of files. Most of them have been
solved, however, one is still pretty annoying.
Let me illustrate it :

I want to edit a page on mediawiki using the API, with a very simple example :

my $mw = MediaWiki::API->new();
$mw->edit( {
        action => 'edit',
        title => 'Main_page',
        text => 'été',
} ) ;

But, when I look at the page on mediawiki, I see weird characters : été.

I tried text => encode_utf8('été') with no success.

This makes pushing changes from git to mediawiki buggy since pulling a
file with accentuated characters and pushing it right after changes
things on the wiki.

While googling (a lot), I found that utf8 was pretty tricky in perl...
The only thing that seems to solve things is a simple addition of 'use
encoding utf8' at the top of our script.
However
A) Adding this line requires that I remove 'use strict;'
B) I found some information about this pragma encoding and it seems to
be unadvised to use it

Do you have any information regarding this issue ?

Thanks,
-- 
Jérémie Nikaes
[1] https://github.com/Bibzball/Git-Mediawiki

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2011-06-08 22:37 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-08 13:45 Git-mediawiki : Encoding problems in perl Jérémie NIKAES
2011-06-08 14:37 ` Steffen Daode Nurpmeso
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

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).