aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authortumashu1 <tumashu1@web>2018-12-01 20:55:16 -0400
committeradmin <admin@branchable.com>2018-12-01 20:55:16 -0400
commit82fe20c7cbce09ecd3c213705a4d945b59ad328d (patch)
tree1ef9aa91f2d9f76139c77ab4c893bd833a3bae21 /doc/bugs
parente4f88dad8f4c7aa4a7aaac38afad88d38aaf9c07 (diff)
downloadikiwiki-82fe20c7cbce09ecd3c213705a4d945b59ad328d.tar
ikiwiki-82fe20c7cbce09ecd3c213705a4d945b59ad328d.tar.gz
Add a patch deal with UTF-8 csv table's problem
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/table_can_not_deal_with_Chinese_.mdwn50
1 files changed, 50 insertions, 0 deletions
diff --git a/doc/bugs/table_can_not_deal_with_Chinese_.mdwn b/doc/bugs/table_can_not_deal_with_Chinese_.mdwn
index fe71686e6..d9ca6ec1f 100644
--- a/doc/bugs/table_can_not_deal_with_Chinese_.mdwn
+++ b/doc/bugs/table_can_not_deal_with_Chinese_.mdwn
@@ -34,3 +34,53 @@ The below example works well too
>> A related problem, also fixed by using DSV, is messing up the encoding of non-ASCII, non-wide characters, e.g. £ (workaround was to use &amp;pound; instead) -- [[Jon]]
>>> Sorry, I have faced the same error: \[[!table Error: Cannot decode string with wide characters at /usr/lib/x86_64-linux-gnu/perl/5.24/Encode.pm line 243.]] -- [[tumashu1]]
+
+---
+
+The below patch seem to deal with this problem:
+
+ From d6ed90331b31e4669222c6831f7a0f40f0677fe1 Mon Sep 17 00:00:00 2001
+ From: Feng Shu <tumashu@163.com>
+ Date: Sun, 2 Dec 2018 08:41:39 +0800
+ Subject: [PATCH 2/2] Fix table plugin can handle UTF-8 csv format
+
+ ---
+ IkiWiki/Plugin/table.pm | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+ From ad1a92c796d907ad293e572a168b6e9a8219623f Mon Sep 17 00:00:00 2001
+ From: Feng Shu <tumashu@163.com>
+ Date: Sun, 2 Dec 2018 08:41:39 +0800
+ Subject: [PATCH 2/2] Fix table plugin can handle UTF-8 csv format
+
+ ---
+ IkiWiki/Plugin/table.pm | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+ diff --git a/IkiWiki/Plugin/table.pm b/IkiWiki/Plugin/table.pm
+ index f3c425a37..7fea8ab1c 100644
+ --- a/IkiWiki/Plugin/table.pm
+ +++ b/IkiWiki/Plugin/table.pm
+ @@ -135,6 +135,7 @@ sub split_csv ($$) {
+ my $csv = Text::CSV->new({
+ sep_char => $delimiter,
+ binary => 1,
+ + decode_utf8 => 1,
+ allow_loose_quotes => 1,
+ }) || error("could not create a Text::CSV object");
+
+ @@ -143,7 +144,7 @@ sub split_csv ($$) {
+ foreach my $line (@text_lines) {
+ $l++;
+ if ($csv->parse($line)) {
+ - push(@data, [ map { decode_utf8 $_ } $csv->fields() ]);
+ + push(@data, [ $csv->fields() ]);
+ }
+ else {
+ debug(sprintf(gettext('parse fail at line %d: %s'),
+ --
+ 2.19.0
+
+
+
+