aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/removing_pages_with_utf8_characters.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2010-01-18 12:38:05 -0500
committerJoey Hess <joey@gnu.kitenet.net>2010-01-18 12:38:05 -0500
commit265b4f0576d5e6be61d80239db372430c52f31b7 (patch)
tree84ae86e96b8739a6e15023cc05c7838ff52277a4 /doc/bugs/removing_pages_with_utf8_characters.mdwn
parentccf14b185e37fad9b208b6a3d4490e1130ad9def (diff)
downloadikiwiki-265b4f0576d5e6be61d80239db372430c52f31b7.tar
ikiwiki-265b4f0576d5e6be61d80239db372430c52f31b7.tar.gz
response
Diffstat (limited to 'doc/bugs/removing_pages_with_utf8_characters.mdwn')
-rw-r--r--doc/bugs/removing_pages_with_utf8_characters.mdwn10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/bugs/removing_pages_with_utf8_characters.mdwn b/doc/bugs/removing_pages_with_utf8_characters.mdwn
index a962a328a..77ec00575 100644
--- a/doc/bugs/removing_pages_with_utf8_characters.mdwn
+++ b/doc/bugs/removing_pages_with_utf8_characters.mdwn
@@ -2,6 +2,10 @@ I have a page with the name "umläute". When I try to remove it, ikiwiki says:
Error: ?umläute does not exist
+> I'm curious about the '?' in the "?umläute" message. Suggests that the
+> filename starts with another strange character. Can I get a copy of a
+> git repository or tarball containing this file? --[[Joey]]
+
I wrote the following patch, which seems to work on my machine. I'm running on FreeBSD 6.3-RELEASE with ikiwiki-3.20100102.3 and perl-5.8.9_3.
--- remove.pm.orig 2009-12-14 23:26:20.000000000 +0100
@@ -16,3 +20,9 @@ I wrote the following patch, which seems to work on my machine. I'm running on F
# This untaint is safe because of the
+> The problem with this patch is that, in a recent fix to the same
+> plugin, I made `@pages` come from `$form->field("page")`, and
+> that, in turn is already run through `decode_form_utf8` just above the
+> code you patched. So I need to understand why that is apparently not
+> working for you. (It works fine for me, even when deleting a file named
+> "umläute" --[[Joey]]