Skip to content

Commit 592dfcf

Browse files
Stephen Tiberius Schorestolfo
Stephen Tiberius Schor
authored andcommitted
When Elasticsearch changed their FQDN from/www.elasticsearch.org to www.elastic.co, they preserved most of their page's paths but didn't setup granular redirect rules. For example: Going to `http://www.elasticsearch.org/contributor-agreement/` will redirect browsers to https://www.elastic.co/, but drop the path `/contributor-agreement/`.
1 parent 2adb8dd commit 592dfcf

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The process for contributing to any of the [Elasticsearch](https://github.com/el
55
2. Make sure your changes don't break any existing tests, and that you add tests for both bugfixes and new functionality.
66

77
3. **Sign the contributor license agreement.**
8-
Please make sure you have signed the [Contributor License Agreement](http://www.elasticsearch.org/contributor-agreement/). We are not asking you to assign copyright to us, but to give us the right to distribute your code without restriction. We ask this of all contributors in order to assure our users of the origin and continuing existence of the code. You only need to sign the CLA once.
8+
Please make sure you have signed the [Contributor License Agreement](https://www.elastic.co/contributor-agreement/). We are not asking you to assign copyright to us, but to give us the right to distribute your code without restriction. We ask this of all contributors in order to assure our users of the origin and continuing existence of the code. You only need to sign the CLA once.
99

1010
4. Submit a pull request.
1111
Push your local changes to your forked copy of the repository and submit a pull request. In the pull request, describe what your changes do and mention the number of the issue where discussion has taken place, eg “Closes #123″.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ See more information in the documentation for the [`elasticsearch-extensions`](
153153

154154
This software is licensed under the Apache 2 license, quoted below.
155155

156-
Copyright (c) 2014 Elasticsearch <http://www.elasticsearch.org>
156+
Copyright (c) 2014 Elasticsearch <https://www.elastic.co>
157157

158158
Licensed under the Apache License, Version 2.0 (the "License");
159159
you may not use this file except in compliance with the License.

elasticsearch-model/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ the [`elasticsearch`](https://github.com/elastic/elasticsearch-ruby) library.
55

66
It aims to simplify integration of Ruby classes ("models"), commonly found
77
e.g. in [Ruby on Rails](http://rubyonrails.org) applications, with the
8-
[Elasticsearch](http://www.elasticsearch.org) search and analytics engine.
8+
[Elasticsearch](https://www.elastic.co) search and analytics engine.
99

1010
## Compatibility
1111

@@ -322,7 +322,7 @@ Elasticsearch::Model::Response::Response.__send__ :include, Elasticsearch::Model
322322
#### The Elasticsearch DSL
323323

324324
In most situations, you'll want to pass the search definition
325-
in the Elasticsearch [domain-specific language](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl.html) to the client:
325+
in the Elasticsearch [domain-specific language](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html) to the client:
326326

327327
```ruby
328328
response = Article.search query: { match: { title: "Fox Dogs" } },
@@ -760,7 +760,7 @@ SERVER=start TEST_CLUSTER_COMMAND=$PWD/tmp/elasticsearch-1.0.0.RC1/bin/elasticse
760760

761761
This software is licensed under the Apache 2 license, quoted below.
762762

763-
Copyright (c) 2014 Elasticsearch <http://www.elasticsearch.org>
763+
Copyright (c) 2014 Elasticsearch <https://www.elastic.co>
764764

765765
Licensed under the Apache License, Version 2.0 (the "License");
766766
you may not use this file except in compliance with the License.

elasticsearch-model/lib/elasticsearch/model/indexing.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Model
3030
#
3131
module Indexing
3232

33-
# Wraps the [index settings](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/setup-configuration.html#configuration-index-settings)
33+
# Wraps the [index settings](https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html)
3434
#
3535
class Settings
3636
attr_accessor :settings
@@ -48,7 +48,7 @@ def as_json(options={})
4848
end
4949
end
5050

51-
# Wraps the [index mappings](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping.html)
51+
# Wraps the [index mappings](https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html)
5252
#
5353
class Mappings
5454
attr_accessor :options, :type
@@ -308,7 +308,7 @@ def delete_index!(options={})
308308
#
309309
# Article.__elasticsearch__.refresh_index! index: 'my-index'
310310
#
311-
# @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-refresh.html
311+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-refresh.html
312312
#
313313
def refresh_index!(options={})
314314
target_index = options.delete(:index) || self.index_name

elasticsearch-persistence/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ The ActiveRecord pattern has been deprecated as of version 6.0.0 of this gem. Pl
574574

575575
This software is licensed under the Apache 2 license, quoted below.
576576

577-
Copyright (c) 2014 Elasticsearch <http://www.elasticsearch.org>
577+
Copyright (c) 2014 Elasticsearch <https://www.elastic.co>
578578

579579
Licensed under the Apache License, Version 2.0 (the "License");
580580
you may not use this file except in compliance with the License.

elasticsearch-persistence/examples/notes/README.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The application demonstrates:
2121

2222
This software is licensed under the Apache 2 license, quoted below.
2323

24-
Copyright (c) 2014 Elasticsearch <http://www.elasticsearch.org>
24+
Copyright (c) 2014 Elasticsearch <https://www.elastic.co>
2525

2626
Licensed under the Apache License, Version 2.0 (the "License");
2727
you may not use this file except in compliance with the License.

elasticsearch-rails/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ rails new searchapp --skip --skip-bundle --template https://raw.github.com/elast
129129

130130
This software is licensed under the Apache 2 license, quoted below.
131131

132-
Copyright (c) 2014 Elasticsearch <http://www.elasticsearch.org>
132+
Copyright (c) 2014 Elasticsearch <https://www.elastic.co>
133133

134134
Licensed under the Apache License, Version 2.0 (the "License");
135135
you may not use this file except in compliance with the License.

elasticsearch-rails/lib/rails/templates/01-basic.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
create_file 'README.md', <<-README
109109
# Ruby on Rails and Elasticsearch: Example application
110110
111-
This application is an example of integrating the {Elasticsearch}[http://www.elasticsearch.org]
111+
This application is an example of integrating the {Elasticsearch}[https://www.elastic.co]
112112
search engine with the {Ruby On Rails}[http://rubyonrails.org] web framework.
113113
114114
It has been generated by application templates available at

0 commit comments

Comments
 (0)