diff options
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/ikiwiki_lacks_a_--quiet.mdwn | 9 | ||||
-rw-r--r-- | doc/bugs/table_plugin_does_not_handle___92__r__92__n_lines_in_CSV_files.mdwn | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn b/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn index fc9644843..9c90f82a6 100644 --- a/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn +++ b/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn @@ -18,3 +18,12 @@ report errors would be nice. -- RichiH done Yes, I can simply redirect the output, but an option would be cleaner, imo. -- Richard + +> The output above looks like verbose mode output to me (the scanning/building lines, at least). Check you haven't enabled it in your setup file by accident. I get the following: + + $ ikiwiki --setup setup + successfully generated [cgi] + successfully generated [post-update] + skipping bad filename [...] + +> I've written a patch ([here](https://github.com/jmtd/ikiwiki/tree/silence-generated), pull request sent) that fixes the 'generated...' lines. -- [[Jon]] diff --git a/doc/bugs/table_plugin_does_not_handle___92__r__92__n_lines_in_CSV_files.mdwn b/doc/bugs/table_plugin_does_not_handle___92__r__92__n_lines_in_CSV_files.mdwn new file mode 100644 index 000000000..07a7afbb1 --- /dev/null +++ b/doc/bugs/table_plugin_does_not_handle___92__r__92__n_lines_in_CSV_files.mdwn @@ -0,0 +1,3 @@ +The table plugin seems to be unable to read a CSV file that uses \r\n for line delimiters. +The same file with \r works fine. The error message is "Empty data". +--liw |