* Patch from Recai to fix utf8 issues in git backend.
parent
56378a14e2
commit
89697f2c7a
|
@ -3,6 +3,8 @@
|
|||
use warnings;
|
||||
use strict;
|
||||
use IkiWiki;
|
||||
use Encode;
|
||||
use open qw{:utf8 :std};
|
||||
|
||||
package IkiWiki;
|
||||
|
||||
|
@ -228,7 +230,7 @@ sub _parse_diff_tree (@) { #{{{
|
|||
}
|
||||
if (length $file) {
|
||||
push @{ $ci{'details'} }, {
|
||||
'file' => $file,
|
||||
'file' => decode_utf8($file),
|
||||
'sha1_from' => $sha1_from,
|
||||
'sha1_to' => $sha1_to,
|
||||
};
|
||||
|
|
|
@ -3,8 +3,9 @@ ikiwiki (1.9) UNRELEASED; urgency=low
|
|||
* Improve display of parentlinks and page title of toplevel index page.
|
||||
* Patch from Faidon to use svn --limit when possible for recentchanges,
|
||||
speeds up recentchanges a lot for wikis with more history.
|
||||
* Patch from Recai to fix utf8 issues in git backend.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Wed, 5 Jul 2006 13:33:59 -0400
|
||||
-- Joey Hess <joeyh@debian.org> Wed, 5 Jul 2006 16:53:34 -0400
|
||||
|
||||
ikiwiki (1.8) unstable; urgency=low
|
||||
|
||||
|
|
Loading…
Reference in New Issue