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:09:25 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6_6 63c29f9bd -> c58057483


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/b45043ed
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/b45043ed
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/b45043ed

Branch: refs/heads/branch_6_6
Commit: b45043edd201d261981101576229c14446e5a3f9
Parents: 63c29f9
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:09:09 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/b45043ed/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 aa379f3..6943dbf 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-docs-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/b45043ed/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:branch_6_6: 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/ac221f55
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/ac221f55
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/ac221f55

Branch: refs/heads/branch_6_6
Commit: ac221f55f51e396d004ab720702bdc29adf776e2
Parents: b45043e
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:09:13 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/ac221f55/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 9df3102..bc650a5 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:branch_6_6: 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/c5805748
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/c5805748
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/c5805748

Branch: refs/heads/branch_6_6
Commit: c58057483bff72c50428f3412a32fda4f16a556a
Parents: ac221f5
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:09:16 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/c5805748/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.
 |===