* git-gui messes up the diff view on non ASCII characters
@ 2007-11-09 15:49 Peter Baumann
2007-11-09 21:30 ` Michele Ballabio
0 siblings, 1 reply; 4+ messages in thread
From: Peter Baumann @ 2007-11-09 15:49 UTC (permalink / raw)
To: Shawn O. Pearce; +Cc: git
I'm managing some UTF-8 encoded LaTeX files in git, which include some
non ASCII characters like the german ä,ö and ü. If I view the diff with
git-diff on an UTF8 enabled terminal, all looks nice. So does the diff
view in gitk after I commited my changes. Only git-gui shows some
"strange" characters, so I assume it is an encoding problem.
I have to admit that I'm totally unaware how this should work, but at
least I think my configuration is correct here, because otherwise git-diff
or gitk would show the same behaviour. Is there anything which could be
done to make git-gui happy, too?
-Peter
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-gui messes up the diff view on non ASCII characters
2007-11-09 15:49 git-gui messes up the diff view on non ASCII characters Peter Baumann
@ 2007-11-09 21:30 ` Michele Ballabio
2007-11-11 5:59 ` Shawn O. Pearce
0 siblings, 1 reply; 4+ messages in thread
From: Michele Ballabio @ 2007-11-09 21:30 UTC (permalink / raw)
To: git; +Cc: Peter Baumann, Shawn O. Pearce
On Friday 09 November 2007, Peter Baumann wrote:
> I'm managing some UTF-8 encoded LaTeX files in git, which include some
> non ASCII characters like the german ä,ö and ü. If I view the diff with
> git-diff on an UTF8 enabled terminal, all looks nice. So does the diff
> view in gitk after I commited my changes. Only git-gui shows some
> "strange" characters, so I assume it is an encoding problem.
>
> I have to admit that I'm totally unaware how this should work, but at
> least I think my configuration is correct here, because otherwise git-diff
> or gitk would show the same behaviour. Is there anything which could be
> done to make git-gui happy, too?
It's a known issue, and already on Shawn's ToDo list. I have to add that
viewing untracked UTF8 files in git-gui works just fine. Weird.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-gui messes up the diff view on non ASCII characters
2007-11-09 21:30 ` Michele Ballabio
@ 2007-11-11 5:59 ` Shawn O. Pearce
2007-11-11 11:20 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Shawn O. Pearce @ 2007-11-11 5:59 UTC (permalink / raw)
To: Michele Ballabio; +Cc: git, Peter Baumann
Michele Ballabio <barra_cuda@katamail.com> wrote:
> On Friday 09 November 2007, Peter Baumann wrote:
> > I'm managing some UTF-8 encoded LaTeX files in git, which include some
> > non ASCII characters like the german ä,ö and ü. If I view the diff with
> > git-diff on an UTF8 enabled terminal, all looks nice. So does the diff
> > view in gitk after I commited my changes. Only git-gui shows some
> > "strange" characters, so I assume it is an encoding problem.
> >
> > I have to admit that I'm totally unaware how this should work, but at
> > least I think my configuration is correct here, because otherwise git-diff
> > or gitk would show the same behaviour. Is there anything which could be
> > done to make git-gui happy, too?
>
> It's a known issue, and already on Shawn's ToDo list. I have to add that
> viewing untracked UTF8 files in git-gui works just fine. Weird.
Cute. That's because in the untracked case we open the file and
let the platform's chosen encoding be used to convert it into the
text viewer. In the tracked diff case we force the encoding to
be in binary.
Now gitk works because it assumes the diff is in the same character
encoding as the commit message itself. Since commit messages are
typically in UTF-8 (as that is the Git default encoding) then a
UTF-8 encoded file shows correctly in gitk.
What's the right behavior here? Just assume the platform encoding
is correct for the file we are showing and show it? Assume the
commit encoding configured in i18n.commitencoding is the correct
one for the file content? Something else?
--
Shawn.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-gui messes up the diff view on non ASCII characters
2007-11-11 5:59 ` Shawn O. Pearce
@ 2007-11-11 11:20 ` Johannes Schindelin
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Schindelin @ 2007-11-11 11:20 UTC (permalink / raw)
To: Shawn O. Pearce; +Cc: Michele Ballabio, git, Peter Baumann
[-- Attachment #1: Type: TEXT/PLAIN, Size: 1765 bytes --]
Hi,
On Sun, 11 Nov 2007, Shawn O. Pearce wrote:
> Michele Ballabio <barra_cuda@katamail.com> wrote:
> > On Friday 09 November 2007, Peter Baumann wrote:
> > > I'm managing some UTF-8 encoded LaTeX files in git, which include some
> > > non ASCII characters like the german ä,ö and ü. If I view the diff with
> > > git-diff on an UTF8 enabled terminal, all looks nice. So does the diff
> > > view in gitk after I commited my changes. Only git-gui shows some
> > > "strange" characters, so I assume it is an encoding problem.
> > >
> > > I have to admit that I'm totally unaware how this should work, but at
> > > least I think my configuration is correct here, because otherwise git-diff
> > > or gitk would show the same behaviour. Is there anything which could be
> > > done to make git-gui happy, too?
> >
> > It's a known issue, and already on Shawn's ToDo list. I have to add that
> > viewing untracked UTF8 files in git-gui works just fine. Weird.
>
> Cute. That's because in the untracked case we open the file and
> let the platform's chosen encoding be used to convert it into the
> text viewer. In the tracked diff case we force the encoding to
> be in binary.
>
> Now gitk works because it assumes the diff is in the same character
> encoding as the commit message itself. Since commit messages are
> typically in UTF-8 (as that is the Git default encoding) then a
> UTF-8 encoded file shows correctly in gitk.
>
> What's the right behavior here? Just assume the platform encoding
> is correct for the file we are showing and show it? Assume the
> commit encoding configured in i18n.commitencoding is the correct
> one for the file content? Something else?
My twopence: assume utf-8, but make it a _git-gui_ config variable.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-11-11 11:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-09 15:49 git-gui messes up the diff view on non ASCII characters Peter Baumann
2007-11-09 21:30 ` Michele Ballabio
2007-11-11 5:59 ` Shawn O. Pearce
2007-11-11 11:20 ` Johannes Schindelin
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).