Skip to content
This repository was archived by the owner on Sep 21, 2021. It is now read-only.

Commit 139bda1

Browse files
authored
Merge pull request #790 from jrodewig/remove-current-branch-refs
[DOCS] Remove relative `/current` links to Elasticsearch Reference Guide
2 parents 9e8bf88 + cf9b1f6 commit 139bda1

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

070_Index_Mgmt/20_Custom_Analyzers.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ After tokenization, the resulting _token stream_ is passed through any
4848
specified token filters,((("token filters"))) in the order in which they are specified.
4949

5050
Token filters may change, add, or remove tokens. We have already mentioned the
51-
http://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-lowercase-tokenizer.html[`lowercase`] and
51+
{ref}/analysis-lowercase-tokenizer.html[`lowercase`] and
5252
{ref}/analysis-stop-tokenfilter.html[`stop` token filters],
5353
but there are many more available in Elasticsearch.
5454
{ref}/analysis-stemmer-tokenfilter.html[Stemming token filters]

200_Language_intro/00_Intro.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
== Getting Started with Languages
33

44
Elasticsearch ships with a collection of language analyzers that provide
5-
good, basic, https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-lang-analyzer.html[out-of-the-box support]
5+
good, basic, {ref}/analysis-lang-analyzer.html[out-of-the-box support]
66
for many of the world's most common languages.
77

88
These analyzers typically perform four roles:

230_Stemming/60_Stemming_in_situ.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Pos 4: (jumped,jump) <1>
1919
WARNING: Read <<stemming-in-situ-good-idea>> before using this approach.
2020

2121
To achieve stemming _in situ_, we will use the
22-
http://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-keyword-repeat-tokenfilter.html[`keyword_repeat`]
22+
{ref}/analysis-keyword-repeat-tokenfilter.html[`keyword_repeat`]
2323
token filter,((("keyword_repeat token filter"))) which, like the `keyword_marker` token filter (see
2424
<<preventing-stemming>>), marks each term as a keyword to prevent the subsequent
2525
stemmer from touching it. However, it also repeats the term in the same

240_Stopwords/40_Divide_and_conquer.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,5 +188,5 @@ documents that have 75% of all high-frequency terms with a query like this:
188188
}
189189
---------------------------------
190190

191-
See the https://www.elastic.co/guide/en/elasticsearch/reference/2.4/query-dsl-common-terms-query.html[`common` terms query] reference page for more options.
191+
See the {ref}/query-dsl-common-terms-query.html[`common` terms query] reference page for more options.
192192

300_Aggregations/100_circuit_breaker_fd_settings.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ indicate a serious resource issue and a reason for poor performance.
135135

136136
Fielddata usage can be monitored:
137137

138-
* per-index using the http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html[`indices-stats` API]:
138+
* per-index using the {ref}/indices-stats.html[`indices-stats` API]:
139139
+
140140
[source,json]
141141
-------------------------------

404_Parent_Child/60_Children_agg.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
=== Children Aggregation
33

44
Parent-child supports a
5-
http://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-children-aggregation.html[`children` aggregation] as ((("aggregations", "children aggregation")))((("children aggregation")))((("parent-child relationship", "children aggregation")))a direct analog to the `nested` aggregation discussed in
5+
{ref}/search-aggregations-bucket-children-aggregation.html[`children` aggregation] as ((("aggregations", "children aggregation")))((("children aggregation")))((("parent-child relationship", "children aggregation")))a direct analog to the `nested` aggregation discussed in
66
<<nested-aggregation>>. A parent aggregation (the equivalent of
77
`reverse_nested`) is not supported.
88

book.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:bookseries: animal
22
:es_build: 1
3-
:ref: https://www.elastic.co/guide/en/elasticsearch/reference/master
3+
:ref: https://www.elastic.co/guide/en/elasticsearch/reference/2.4
44

55
= Elasticsearch: The Definitive Guide
66

0 commit comments

Comments
 (0)