From 9f87bd8d7d801ba29687c68349a5c56e9947948f Mon Sep 17 00:00:00 2001 From: joey Date: Sun, 16 Sep 2007 19:35:16 +0000 Subject: * table plugin: Actually specify the delimiter when parsing CSV. * table plugin: The previous version broke WikiLinks inside quoted values. Fix this by linkifying CSV data after parsing it, while DSV data is still linkified before parsing. --- IkiWiki/Plugin/table.pm | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'IkiWiki/Plugin') diff --git a/IkiWiki/Plugin/table.pm b/IkiWiki/Plugin/table.pm index be97137ed..e8df17487 100644 --- a/IkiWiki/Plugin/table.pm +++ b/IkiWiki/Plugin/table.pm @@ -23,10 +23,6 @@ sub preprocess (@) { #{{{ } $params{data} = readfile(srcfile($params{file})); } - else { - $params{data} = IkiWiki::linkify($params{page}, - $params{destpage}, $params{data}); - } if (lc $params{format} eq 'auto') { # first try the more simple format @@ -42,8 +38,24 @@ sub preprocess (@) { #{{{ if (lc $params{format} eq 'csv') { @data=split_csv($params{data}, defined $params{delimiter} ? $params{delimiter} : ",",); + # linkify after parsing since html link quoting can + # confuse CSV parsing + if (! exists $params{file}) { + @data=map { + [ map { + IkiWiki::linkify($params{page}, + $params{destpage}, $_); + } @$_ ] + } @data; + } } elsif (lc $params{format} eq 'dsv') { + # linkify before parsing since wikilinks can contain the + # delimiter + if (! exists $params{file}) { + $params{data} = IkiWiki::linkify($params{page}, + $params{destpage}, $params{data}); + } @data=split_dsv($params{data}, defined $params{delimiter} ? $params{delimiter} : "|",); } -- cgit v1.2.3