]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/Git:_web_commit_message_not_utf-8.mdwn
Flag branches as ready for review, by using a ready/ prefix as Joey suggested
[ikiwiki.git] / doc / bugs / Git:_web_commit_message_not_utf-8.mdwn
1 The message generated for web commits:
2
3 > web commit by mädduck
4
5 is not utf-8 encoded before passed to Git (which uses utf-8 as default encoding for commit messages). This causes a wrongly-encoded log entry, and makes ikiwiki spew warnings as it creates `recentchanges`:
6
7     utf8 "\xF6" does not map to Unicode at /usr/share/perl5/IkiWiki/Rcs/git.pm line 36, <$OUT> line 57.
8     Malformed UTF-8 character (unexpected non-continuation byte 0x6e, immediately after start byte 0xf6) in pattern match (m//) at /usr/share/perl5/IkiWiki/Rcs/git.pm line 393.
9     utf8 "\xF6" does not map to Unicode at /usr/share/perl5/IkiWiki/Rcs/git.pm line 36, <$OUT> line 5.
10
11 (This is version 2.53.3~bpo40+1 for lack of a newer backport for sarge)
12
13 Please make sure that commit messages for Git are always utf-8.
14
15 This is a change by user `mädduck` to trigger the error.
16
17 > [[Fixed|done]] both on the commit and log sides. --[[Joey]]