mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[cleanup] Fixed some missed changes, or hyper ones i made
This commit is contained in:
parent
a36f72142c
commit
f461498b0a
6 changed files with 8 additions and 8 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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>",
|
||||
|
|
|
@ -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');
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue