You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2021/03/10 09:48:10 UTC

[lucene] 06/11: more autowidth headers make sense

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch SOLR-14866
in repository https://gitbox.apache.org/repos/asf/lucene.git

commit 9bce93ab4f7db1fce06c39743484f600e4baa2e9
Author: epugh <ep...@opensourceconnections.com>
AuthorDate: Tue Sep 15 16:42:55 2020 -0400

    more autowidth headers make sense
---
 solr/solr-ref-guide/src/the-dismax-query-parser.adoc   | 3 +--
 solr/solr-ref-guide/src/the-standard-query-parser.adoc | 8 ++------
 2 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/solr/solr-ref-guide/src/the-dismax-query-parser.adoc b/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
index ce20bfc..a521663 100644
--- a/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
+++ b/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
@@ -64,8 +64,7 @@ When processing queries, Lucene/Solr recognizes three types of clauses: mandator
 
 The table below explains the various ways that mm values can be specified.
 
-// TODO: Change column width to %autowidth.spread when https://github.com/asciidoctor/asciidoctor-pdf/issues/599 is fixed
-
+// Keep manual column formatting
 [cols="30,10,60",options="header"]
 |===
 |Syntax |Example |Description
diff --git a/solr/solr-ref-guide/src/the-standard-query-parser.adoc b/solr/solr-ref-guide/src/the-standard-query-parser.adoc
index 2df5c9c..83bcf6c 100644
--- a/solr/solr-ref-guide/src/the-standard-query-parser.adoc
+++ b/solr/solr-ref-guide/src/the-standard-query-parser.adoc
@@ -111,9 +111,7 @@ Solr supports a variety of term modifiers that add flexibility or precision, as
 
 Solr's standard query parser supports single and multiple character wildcard searches within single terms. Wildcard characters can be applied to single terms, but not to search phrases.
 
-// TODO: Change column width to %autowidth.spread when https://github.com/asciidoctor/asciidoctor-pdf/issues/599 is fixed
-
-[cols="30,20,50",options="header"]
+[%autowidth.spread,width="100%",options="header"]
 |===
 |Wildcard Search Type |Special Character |Example
 |Single character (matches a single character) |? |The search string `te?t` would match both test and text.
@@ -240,9 +238,7 @@ The field is only valid for the term that it directly precedes, so the query `ti
 
 Boolean operators allow you to apply Boolean logic to queries, requiring the presence or absence of specific terms or conditions in fields in order to match documents. The table below summarizes the Boolean operators supported by the standard query parser.
 
-// TODO: Change column width to %autowidth.spread when https://github.com/asciidoctor/asciidoctor-pdf/issues/599 is fixed
-
-[cols="20,40,40",options="header"]
+[%autowidth.spread,width="100%",options="header"]
 |===
 |Boolean Operator |Alternative Symbol |Description
 |AND |`&&` |Requires both terms on either side of the Boolean operator to be present for a match.