Skip to content

Commit eb26557

Browse files
committed
Merge pull request #374 from nickcanz/master
Updating links to elasticsearch.org documentation
2 parents ff47408 + b7f2a1d commit eb26557

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

new_docs/contents/facets/date-histogram.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ A specific histogram facet that can work with date field types enhancing it over
2121
)
2222
);
2323

24-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/date-histogram-facet.html) for more information
24+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-date-histogram-facet.html) for more information

new_docs/contents/facets/filter.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ A filter facet (not to be confused with a facet filter) allows you to return a c
1919
)
2020
);
2121

22-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/filter-facet.html) for more information
22+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-filter-facet.html) for more information

new_docs/contents/facets/geo-distance.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ The geo_distance facet is a facet providing information for ranges of distances
2626
)
2727
);
2828

29-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/geo-distance-facet.html) for more information
29+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-geo-distance-facet.html) for more information
3030

3131

new_docs/contents/facets/handling.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ menuitem: handling
77

88

99
# Faceting
10-
For a good overview of what facets are see the [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/) on the subject.
10+
For a good overview of what facets are see the [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-) on the subject.
1111

1212
## Specify facets during search.
1313
In its simplest form you can add a facet to your query like this:

new_docs/contents/facets/histogram.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ The histogram facet works with numeric data by building a histogram across inter
1717
.FacetHistogram(h => h.OnField(f=>f.LOC).Interval(100))
1818
);
1919

20-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/histogram-facet.html) for more information
20+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-histogram-facet.html) for more information
2121

2222

new_docs/contents/facets/query.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ A facet query allows to return a count of the hits matching the facet query. The
2020
);
2121
);
2222

23-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/query-facet.html) for more information
23+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-query-facet.html) for more information
2424

new_docs/contents/facets/range.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ or alternative key/value fields
7676
);
7777
//SNIP
7878

79-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/range-facet.html) for more information
79+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-range-facet.html) for more information
8080

new_docs/contents/facets/statistical.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ Statistical facet allows to compute statistical data on a numeric fields. The st
1919
)
2020
);
2121

22-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/statistical-facet.html) for more information
22+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-statistical-facet.html) for more information
2323

new_docs/contents/facets/term-stats.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ The terms_stats facet combines both the terms and statistical allowing to comput
1717
.FacetTerm(t => t.OnField(f => f.Country).Size(20))
1818
);
1919

20-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/terms-stats-facet.html) for more information
20+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-terms-stats-facet.html) for more information
2121

2222

new_docs/contents/facets/terms.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Allow to specify field facets that return the N most frequent terms. For example
1616
.FacetTerm(t => t.OnField(f => f.Country).Size(20))
1717
);
1818

19-
See [original docs](http://www.elasticsearch.org/guide/reference/api/search/facets/terms-facet.html) for more information
19+
See [original docs](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-facets-terms-facet.html) for more information
2020

2121

0 commit comments

Comments
 (0)