]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn
Add allow_symlinks_before_srcdir to config so websetup doesn't eat it.
[ikiwiki.git] / doc / bugs / blog_posts_not_added_to_mercurial_repo.mdwn
index 93d0aaf9f8c1b74e063e701b17a0f404cd6174d9..c57c200651dfd2ea21b113e0d7d8cbb9db86cc3d 100644 (file)
@@ -12,3 +12,19 @@ If I then edit the blog post, **then** the file gets commited and I can see the
 > For mercurial, these run respectively `hg add` and `hg commit`. If the
 > add or commit fails, it will print a warning to stderr, you might check
 > apache's error.log to see if there's anything there. --[[Joey]]
+
+>>The problem was using accented characters (é, í) on the change comments. I didn't have
+>>an UTF-8 locale enabled in my setup file. By coincidence this happened for the first time
+>>in a couple of consecutive blog posts, so I was mistaken about the root of the problem. I don't know if
+>>you will consider this behavior a bug, since it's strictly speaking a misconfiguration but it
+>>still causes ikiwiki's mercurial backend to fail. A quick note in the docs might be a good idea. For my part, please
+>>close this bug, and thanks for the help.  --[[buo]]
+
+>>> So, in a non-utf8 locale, mercurial fails to commit if the commit
+>>> message contains utf8? --[[Joey]]
+
+>>>> (Sorry for the delay, I was AFK for a while.) What I am seeing is this: in a non-utf8 locale, using mercurial "stand-alone" (no ikiwiki involved), mercurial fails to commit if the commit message has characters such as á. If the locale is utf8, mercurial works fine (this is with mercurial 1.0).
+
+>>>> However, the part that seems a bit wrong to me, is this: even if my locale is utf8, I have to explicitly set a utf8 locale in the wiki's setup file, or the commit fails. It looks like ikiwiki is not using this machine's default locale, which is utf8. Also, I'm not getting any errors on apache's error log.
+
+>>>> Wouldn't it make sense to use the machine's default locale if 'locale' is commented out in the setup file?