[fossil-dev] Hmm, immediately while reviewing my notes on markdown_to_html I discovered another tokenizer / parsing bug with inserts

2016-06-05 Thread David Simmons
ce that all the search results are wrapped in ... rather than being displayed in bold. David Simmons (dsim) ___ fossil-dev mailing list fossil-dev@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/fossil-dev

[fossil-dev] Bug in html_to_plaintext concatenates words leading to FTS3 search (wrong snippets) failure

2016-06-05 Thread David Simmons
", OR, AND + Standard Query Syntax <https://www.sqlite.org/fts3.html#section_3_2> + Enhanced Query Syntax <https://www.sqlite.org/fts3.html#section_3_1> * How the tokenizers work <https://www.sqlite.org/fts3.html#tokenizer

Re: [fossil-dev] Support for the git: scheme on clone/push/pull/sync?

2016-06-02 Thread David Simmons
. That was essential to enable supporting team members to author reports, custom pages, and make use of the rich sqlite features available. David Simmons ___ fossil-dev mailing list fossil-dev@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman

[fossil-dev] Bug - Fossil source "printf.c"

2017-05-21 Thread David Simmons
Location: "fossil\src\printf.c" Section(s): (line 385) /* Limit the precision to prevent overflowing buf[] during conversion */ if( precision > (etBUFSIZE-40) && (infop->flags & FLAG_STRING)==0 ){ precision = etBUFSIZE-40; } Issue: missing parens to ensure correct ordering of