On Thu, 22 May 2007, David Woodhouse wrote: > On Mon, 2007-05-21 at 22:57 +0200, Martin Koegler wrote: >> I use ISO-8859-1 as my locale, so my blobs, commits and tags are in >> this encoding. > > That's a very strange thing for anyone to do in the 21st century. > Did you configure this archaic thing correctly in .git/config? > > Otherwise, gitweb will assume that you're using utf-8 like any normal > person would, and of course you'll have problems when it tries to deal > with your legacy character set as if it were something sensible. Actually gitweb does not respect i18n.* configuration variables and happily assumes that everything is in utf-8, with the exception of *_plain views, which are send :raw. If you decide to implement supporting encodings other that utf-8 in gitweb, please remember that some (like git-show, git-log) but not all parts (like git-rev-list or --pretty=raw) do the decoding/encoding. And that git can be compiled without iconv support. And that comits might be in different encodings, which should be given by 'encoding' header, but there is no way to guess encoding for a blob, or for a file names. git-commit(1): i18n.commitEncoding:: Character encoding the commit messages are stored in; git itself does not care per se, but this information is necessary e.g. when importing commits from emails or in the gitk graphical history browser (and possibly at other places in the future or in other porcelains). See e.g. gitlink:git-mailinfo[1]. Defaults to 'utf-8'. i18n.logOutputEncoding:: Character encoding the commit messages are converted to when running `git-log` and friends. -- Jakub Narebski Poland - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html