[cleanup] Fixed some missed changes, or hyper ones i made

This commit is contained in:
Khalah Jones-Golden 2015-03-16 18:32:09 -07:00
parent a36f72142c
commit f461498b0a
6 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@ Kibana is an open source ([Apache Licensed](https://github.com/elastic/kibana/bl
## Installation
* Download: [https://www.elastic.co/downloads/kibana](https://www.elastic.co/downloads/kibana)
* Download: [http://www.elastic.co/downloads/kibana](http://www.elastic.co/downloads/kibana)
* Run `bin/kibana` on unix, or `bin\kibana.bat` on Windows.
* Visit [http://localhost:5601](http://localhost:5601)

View file

@ -11,7 +11,7 @@
"elasticsearch"
],
"license": "Apache 2.0",
"homepage": "https://www.elastic.co/products/kibana",
"homepage": "http://www.elastic.co/products/kibana",
"ignore": [
"**/.*",
"node_modules",

View file

@ -15,7 +15,7 @@
"main": "src/server/app.js",
"homepage": "https://www.elastic.co/products/kibana",
"bugs": {
"url": "https://github.com/elastic/kibana/issues"
"url": "http://github.com/elastic/kibana/issues"
},
"license": "Apache 2.0",
"author": "Rashid Khan <rashid.khan@elastic.co>",

View file

@ -1,4 +1,4 @@
// See https://github.com/elastic/elastic/issues/6736
// See https://github.com/elastic/elasticsearch/issues/6736
define(function (require) {
var _ = require('lodash');

View file

@ -40,7 +40,7 @@
index and the field's associated core type as recorded by Elasticsearch.
While this list allows you to view the core type of each field, changing
field types must be done using Elasticsearch's
<a target="_window" href="http://www.elastic.org/guide/en/elasticsearch/reference/current/mapping.html">
<a target="_window" href="http://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html">
Mapping API
<i aria-hidden="true" class="fa-link fa"></i>
</a>

View file

@ -7,7 +7,7 @@
<div>
<p>
By default, Elasticsearch scripts use <a target="_window" href="http://www.elastic.org/guide/en/elasticsearch/reference/current/modules-scripting.html#_lucene_expressions_scripts">Lucene Expressions <i class="fa-link fa"></i></a>, which is a lot like JavaScript, but limited to basic arithmetic, bitwise and comparison operations. We'll let you do some reading on <a target="_window" href="http://www.elastic.org/guide/en/elasticsearch/reference/current/modules-scripting.html#_lucene_expressions_scripts">Lucene Expressions<i class="fa-link fa"></i></a> To access values in the document use the following format:
By default, Elasticsearch scripts use <a target="_window" href="http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html#_lucene_expressions_scripts">Lucene Expressions <i class="fa-link fa"></i></a>, which is a lot like JavaScript, but limited to basic arithmetic, bitwise and comparison operations. We'll let you do some reading on <a target="_window" href="http://www.elastic.org/guide/en/elasticsearch/reference/current/modules-scripting.html#_lucene_expressions_scripts">Lucene Expressions<i class="fa-link fa"></i></a> To access values in the document use the following format:
<h4><code>doc['some_field'].value</code></h4>
</p>
<p>There are a few limitations when using Lucene Expressions:
@ -46,8 +46,8 @@
<input required type="text" ng-model="scriptedField.name" class="form-control span12">
</div>
<div class="form-group">
<label>Script <small>Please familiarize yourself with <a target="_window" href="http://www.elastic.org/guide/en/elasticsearch/reference/current/search-request-script-fields.html#search-request-script-fields">script fields <i class="fa-link fa"></i></a> and with
<a target="_window" href="http://www.elastic.org/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#search-aggregations-bucket-terms-aggregation-script">scripts in aggregations <i class="fa-link fa"></i></a>
<label>Script <small>Please familiarize yourself with <a target="_window" href="http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-script-fields.html#search-request-script-fields">script fields <i class="fa-link fa"></i></a> and with
<a target="_window" href="http://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#search-aggregations-bucket-terms-aggregation-script">scripts in aggregations <i class="fa-link fa"></i></a>
before using scripted fields.</small></label>
<textarea required class="scripted-field-script form-control span12" ng-model="scriptedField.script"></textarea>
</div>