You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2017/06/09 17:07:53 UTC

[1/3] lucene-solr:master: Ref Guide: reduce levels in PDF TOC; increase font size for literal text

Repository: lucene-solr
Updated Branches:
  refs/heads/master 70ecf9ef3 -> 2c0239c21


Ref Guide: reduce levels in PDF TOC; increase font size for literal text


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/2c0239c2
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/2c0239c2
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/2c0239c2

Branch: refs/heads/master
Commit: 2c0239c217a50034df80fb04e492fb69664c7ae1
Parents: 05fc4ae
Author: Cassandra Targett <ct...@apache.org>
Authored: Fri Jun 9 12:07:06 2017 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Fri Jun 9 12:07:45 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/pdf/SolrRefGuide-all.adoc     | 2 +-
 solr/solr-ref-guide/src/pdf/themes/refguide-theme.yml | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/2c0239c2/solr/solr-ref-guide/src/pdf/SolrRefGuide-all.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/pdf/SolrRefGuide-all.adoc b/solr/solr-ref-guide/src/pdf/SolrRefGuide-all.adoc
index 4ac125e..214bf07 100644
--- a/solr/solr-ref-guide/src/pdf/SolrRefGuide-all.adoc
+++ b/solr/solr-ref-guide/src/pdf/SolrRefGuide-all.adoc
@@ -1,7 +1,7 @@
 = Apache Solr Reference Guide: For Solr {solr-guide-version}
 :toc:
 :toc-title: Table of Contents
-:toclevels: 2
+:toclevels: 1
 :author: Written by the Apache Lucene/Solr Project
 :email: https://lucene.apache.org/solr
 :revdate: Published {build-date}

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/2c0239c2/solr/solr-ref-guide/src/pdf/themes/refguide-theme.yml
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/pdf/themes/refguide-theme.yml b/solr/solr-ref-guide/src/pdf/themes/refguide-theme.yml
index 0c10425..ef3244a 100644
--- a/solr/solr-ref-guide/src/pdf/themes/refguide-theme.yml
+++ b/solr/solr-ref-guide/src/pdf/themes/refguide-theme.yml
@@ -45,7 +45,7 @@ base:
   border_color: '#eeeeee'
   border_radius: 4
   border_width: 0.5
-vertical_rhythm: $base_line_height_length
+vertical_rhythm: 10
 horizontal_rhythm: $base_line_height_length
 vertical_spacing: $vertical_rhythm
 link:
@@ -54,6 +54,7 @@ link:
 literal:
   font_color: '#333333'
   font_family: Inconsolata
+  font_size: 11
   background_color: '#f5f5f5'
 # code is used for source code blocks
 code:


[2/3] lucene-solr:master: Ref Guide: escape brackets so they don't come out as arrows

Posted by ct...@apache.org.
Ref Guide: escape brackets so they don't come out as arrows


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/05fc4ae0
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/05fc4ae0
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/05fc4ae0

Branch: refs/heads/master
Commit: 05fc4ae03452bc2d2cdc87f86f9f9b2379ac3599
Parents: a3bb517
Author: Cassandra Targett <ct...@apache.org>
Authored: Fri Jun 9 12:04:30 2017 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Fri Jun 9 12:07:45 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/the-dismax-query-parser.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/05fc4ae0/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
----------------------------------------------------------------------
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 64682bf..ea250b1 100644
--- a/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
+++ b/solr/solr-ref-guide/src/the-dismax-query-parser.adoc
@@ -102,7 +102,7 @@ The table below explains the various ways that mm values can be specified.
 |Percentage |75% |Sets the minimum number of matching clauses to this percentage of the total number of optional clauses. The number computed from the percentage is rounded down and used as the minimum.
 |Negative percentage |-25% |Indicates that this percent of the total number of optional clauses can be missing. The number computed from the percentage is rounded down, before being subtracted from the total to determine the minimum number.
 |An expression beginning with a positive integer followed by a > or < sign and another value |3<90% |Defines a conditional expression indicating that if the number of optional clauses is equal to (or less than) the integer, they are all required, but if it's greater than the integer, the specification applies. In this example: if there are 1 to 3 clauses they are all required, but for 4 or more clauses only 90% are required.
-|Multiple conditional expressions involving > or < signs |2<-25% 9<-3 |Defines multiple conditions, each one being valid only for numbers greater than the one before it. In the example at left, if there are 1 or 2 clauses, then both are required. If there are 3-9 clauses all but 25% are required. If there are more then 9 clauses, all but three are required.
+|Multiple conditional expressions involving > or < signs |2\<-25% 9\<-3 |Defines multiple conditions, each one being valid only for numbers greater than the one before it. In the example at left, if there are 1 or 2 clauses, then both are required. If there are 3-9 clauses all but 25% are required. If there are more then 9 clauses, all but three are required.
 |===
 
 When specifying `mm` values, keep in mind the following:


[3/3] lucene-solr:master: Ref Guide: escape pipes in the table

Posted by ct...@apache.org.
Ref Guide: escape pipes in the table


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/a3bb5172
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/a3bb5172
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/a3bb5172

Branch: refs/heads/master
Commit: a3bb51720c613a1ab2e51ef45541bec8566e4a96
Parents: 70ecf9e
Author: Cassandra Targett <ct...@apache.org>
Authored: Fri Jun 9 11:44:55 2017 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Fri Jun 9 12:07:45 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/the-standard-query-parser.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/a3bb5172/solr/solr-ref-guide/src/the-standard-query-parser.adoc
----------------------------------------------------------------------
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 f4455d2..94baedf 100644
--- a/solr/solr-ref-guide/src/the-standard-query-parser.adoc
+++ b/solr/solr-ref-guide/src/the-standard-query-parser.adoc
@@ -246,7 +246,7 @@ Boolean operators allow you to apply Boolean logic to queries, requiring the pre
 |Boolean Operator |Alternative Symbol |Description
 |AND |`&&` |Requires both terms on either side of the Boolean operator to be present for a match.
 |NOT |`!` |Requires that the following term not be present.
-|OR |`||` |Requires that either term (or both terms) be present for a match.
+|OR |`\|\|` |Requires that either term (or both terms) be present for a match.
 | |`+` |Requires that the following term be present.
 | |`-` |Prohibits the following term (that is, matches on fields or documents that do not include that term). The `-` operator is functionally similar to the Boolean operator `!`. Because it's used by popular search engines such as Google, it may be more familiar to some user communities.
 |===