mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* added license headers to worker files * add missing @notice * update notice.txt * fix notice * remove start-end license block markers * Added license pre-amble
This commit is contained in:
parent
85ab88fd4c
commit
aaa1b43f36
3 changed files with 167 additions and 9 deletions
62
NOTICE.txt
62
NOTICE.txt
|
@ -29,6 +29,68 @@ Author Tobias Koppers @sokra
|
||||||
---
|
---
|
||||||
This product has relied on ASTExplorer that is licensed under MIT.
|
This product has relied on ASTExplorer that is licensed under MIT.
|
||||||
|
|
||||||
|
---
|
||||||
|
This product includes code that is based on Ace editor, which was available
|
||||||
|
under a "BSD" license.
|
||||||
|
|
||||||
|
Distributed under the BSD license:
|
||||||
|
|
||||||
|
Copyright (c) 2010, Ajax.org B.V.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
* Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
* Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
* Neither the name of Ajax.org B.V. nor the
|
||||||
|
names of its contributors may be used to endorse or promote products
|
||||||
|
derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
||||||
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
---
|
||||||
|
This product includes code that is based on Ace editor, which was available
|
||||||
|
under a "BSD" license.
|
||||||
|
|
||||||
|
Distributed under the BSD license:
|
||||||
|
|
||||||
|
Copyright (c) 2010, Ajax.org B.V.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
* Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
* Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
* Neither the name of Ajax.org B.V. nor the
|
||||||
|
names of its contributors may be used to endorse or promote products
|
||||||
|
derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
||||||
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
---
|
---
|
||||||
This product includes code that is based on flot-charts, which was available
|
This product includes code that is based on flot-charts, which was available
|
||||||
under a "MIT" license.
|
under a "MIT" license.
|
||||||
|
|
|
@ -1,5 +1,57 @@
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch B.V. under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch B.V. licenses this file to you under
|
||||||
|
* the Apache License, Version 2.0 (the "License"); you may
|
||||||
|
* not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* @notice
|
||||||
|
*
|
||||||
|
* This product includes code that is based on Ace editor, which was available
|
||||||
|
* under a "BSD" license.
|
||||||
|
*
|
||||||
|
* Distributed under the BSD license:
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010, Ajax.org B.V.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* * Neither the name of Ajax.org B.V. nor the
|
||||||
|
* names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
||||||
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
/*
|
/*
|
||||||
This file is loaded up as a blob by Brace to hand to Ace to load as Jsonp
|
This file is loaded up as a blob by Brace to hand to Ace to load as Jsonp
|
||||||
(hence the redefining of everything). It is based on the javascript
|
(hence the redefining of everything). It is based on the javascript
|
||||||
mode from the brace distro.
|
mode from the brace distro.
|
||||||
|
@ -197,7 +249,6 @@ ace.define('ace/lib/oop', ['require', 'exports', 'module'], function (
|
||||||
acequire,
|
acequire,
|
||||||
exports
|
exports
|
||||||
) {
|
) {
|
||||||
|
|
||||||
(exports.inherits = function (ctor, superCtor) {
|
(exports.inherits = function (ctor, superCtor) {
|
||||||
(ctor.super_ = superCtor),
|
(ctor.super_ = superCtor),
|
||||||
(ctor.prototype = Object.create(superCtor.prototype, {
|
(ctor.prototype = Object.create(superCtor.prototype, {
|
||||||
|
@ -221,7 +272,6 @@ ace.define('ace/range', ['require', 'exports', 'module'], function (
|
||||||
acequire,
|
acequire,
|
||||||
exports
|
exports
|
||||||
) {
|
) {
|
||||||
|
|
||||||
let comparePoints = function (p1, p2) {
|
let comparePoints = function (p1, p2) {
|
||||||
return p1.row - p2.row || p1.column - p2.column;
|
return p1.row - p2.row || p1.column - p2.column;
|
||||||
},
|
},
|
||||||
|
@ -426,7 +476,6 @@ ace.define('ace/apply_delta', ['require', 'exports', 'module'], function (
|
||||||
acequire,
|
acequire,
|
||||||
exports
|
exports
|
||||||
) {
|
) {
|
||||||
|
|
||||||
exports.applyDelta = function (docLines, delta) {
|
exports.applyDelta = function (docLines, delta) {
|
||||||
let row = delta.start.row,
|
let row = delta.start.row,
|
||||||
startColumn = delta.start.column,
|
startColumn = delta.start.column,
|
||||||
|
@ -467,7 +516,6 @@ ace.define(
|
||||||
'ace/lib/event_emitter',
|
'ace/lib/event_emitter',
|
||||||
['require', 'exports', 'module'],
|
['require', 'exports', 'module'],
|
||||||
function (acequire, exports) {
|
function (acequire, exports) {
|
||||||
|
|
||||||
let EventEmitter = {},
|
let EventEmitter = {},
|
||||||
stopPropagation = function () {
|
stopPropagation = function () {
|
||||||
this.propagationStopped = !0;
|
this.propagationStopped = !0;
|
||||||
|
@ -579,7 +627,6 @@ ace.define(
|
||||||
'ace/anchor',
|
'ace/anchor',
|
||||||
['require', 'exports', 'module', 'ace/lib/oop', 'ace/lib/event_emitter'],
|
['require', 'exports', 'module', 'ace/lib/oop', 'ace/lib/event_emitter'],
|
||||||
function (acequire, exports) {
|
function (acequire, exports) {
|
||||||
|
|
||||||
let oop = acequire('./lib/oop'),
|
let oop = acequire('./lib/oop'),
|
||||||
EventEmitter = acequire('./lib/event_emitter').EventEmitter,
|
EventEmitter = acequire('./lib/event_emitter').EventEmitter,
|
||||||
Anchor = (exports.Anchor = function (doc, row, column) {
|
Anchor = (exports.Anchor = function (doc, row, column) {
|
||||||
|
@ -696,7 +743,6 @@ ace.define(
|
||||||
'ace/anchor',
|
'ace/anchor',
|
||||||
],
|
],
|
||||||
function (acequire, exports) {
|
function (acequire, exports) {
|
||||||
|
|
||||||
let oop = acequire('./lib/oop'),
|
let oop = acequire('./lib/oop'),
|
||||||
applyDelta = acequire('./apply_delta').applyDelta,
|
applyDelta = acequire('./apply_delta').applyDelta,
|
||||||
EventEmitter = acequire('./lib/event_emitter').EventEmitter,
|
EventEmitter = acequire('./lib/event_emitter').EventEmitter,
|
||||||
|
@ -1064,7 +1110,6 @@ ace.define('ace/lib/lang', ['require', 'exports', 'module'], function (
|
||||||
acequire,
|
acequire,
|
||||||
exports
|
exports
|
||||||
) {
|
) {
|
||||||
|
|
||||||
(exports.last = function (a) {
|
(exports.last = function (a) {
|
||||||
return a[a.length - 1];
|
return a[a.length - 1];
|
||||||
}),
|
}),
|
||||||
|
@ -1215,7 +1260,6 @@ ace.define(
|
||||||
'ace/lib/lang',
|
'ace/lib/lang',
|
||||||
],
|
],
|
||||||
function (acequire, exports) {
|
function (acequire, exports) {
|
||||||
|
|
||||||
acequire('../range').Range;
|
acequire('../range').Range;
|
||||||
let Document = acequire('../document').Document,
|
let Document = acequire('../document').Document,
|
||||||
lang = acequire('../lib/lang'),
|
lang = acequire('../lib/lang'),
|
||||||
|
|
|
@ -1,3 +1,55 @@
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch B.V. under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch B.V. licenses this file to you under
|
||||||
|
* the Apache License, Version 2.0 (the "License"); you may
|
||||||
|
* not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* @notice
|
||||||
|
*
|
||||||
|
* This product includes code that is based on Ace editor, which was available
|
||||||
|
* under a "BSD" license.
|
||||||
|
*
|
||||||
|
* Distributed under the BSD license:
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010, Ajax.org B.V.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* * Neither the name of Ajax.org B.V. nor the
|
||||||
|
* names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
||||||
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
/*
|
/*
|
||||||
This file is loaded up as a blob by Brace to hand to Ace to load as Jsonp
|
This file is loaded up as a blob by Brace to hand to Ace to load as Jsonp
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue