|
1 | 1 | Kibana source code with Kibana X-Pack source code |
2 | 2 | Copyright 2012-2019 Elasticsearch B.V. |
3 | 3 |
|
| 4 | +--- |
| 5 | +Pretty handling of logarithmic axes. |
| 6 | +Copyright (c) 2007-2014 IOLA and Ole Laursen. |
| 7 | +Licensed under the MIT license. |
| 8 | +Created by Arne de Laat |
| 9 | +Set axis.mode to "log" and make the axis logarithmic using transform: |
| 10 | + axis: { |
| 11 | + mode: 'log', |
| 12 | + transform: function(v) {v <= 0 ? Math.log(v) / Math.LN10 : null}, |
| 13 | + inverseTransform: function(v) {Math.pow(10, v)} |
| 14 | + } |
| 15 | +The transform filters negative and zero values, because those are |
| 16 | +invalid on logarithmic scales. |
| 17 | +This plugin tries to create good looking logarithmic ticks, using |
| 18 | +unicode superscript characters. If all data to be plotted is between two |
| 19 | +powers of ten then the default flot tick generator and renderer are |
| 20 | +used. Logarithmic ticks are places at powers of ten and at half those |
| 21 | +values if there are not to many ticks already (e.g. [1, 5, 10, 50, 100]). |
| 22 | +For details, see https://github.com/flot/flot/pull/1328 |
| 23 | + |
4 | 24 | --- |
5 | 25 | This product has relied on ASTExplorer that is licensed under MIT. |
6 | 26 |
|
| 27 | +--- |
| 28 | +This product includes code that is based on flot-charts, which was available |
| 29 | +under a "MIT" license. |
| 30 | + |
| 31 | +The MIT License (MIT) |
| 32 | + |
| 33 | +Copyright (c) 2007-2014 IOLA and Ole Laursen |
| 34 | + |
| 35 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 36 | +of this software and associated documentation files (the "Software"), to deal |
| 37 | +in the Software without restriction, including without limitation the rights |
| 38 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 39 | +copies of the Software, and to permit persons to whom the Software is |
| 40 | +furnished to do so, subject to the following conditions: |
| 41 | + |
| 42 | +The above copyright notice and this permission notice shall be included in |
| 43 | +all copies or substantial portions of the Software. |
| 44 | + |
| 45 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 46 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 47 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 48 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 49 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 50 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 51 | +THE SOFTWARE. |
| 52 | + |
7 | 53 | --- |
8 | 54 | This product uses Noto fonts that are licensed under the SIL Open |
9 | 55 | Font License, Version 1.1. |
@@ -34,26 +80,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
34 | 80 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
35 | 81 | SOFTWARE. |
36 | 82 |
|
37 | | ---- |
38 | | -Pretty handling of logarithmic axes. |
39 | | -Copyright (c) 2007-2014 IOLA and Ole Laursen. |
40 | | -Licensed under the MIT license. |
41 | | -Created by Arne de Laat |
42 | | -Set axis.mode to "log" and make the axis logarithmic using transform: |
43 | | - axis: { |
44 | | - mode: 'log', |
45 | | - transform: function(v) {v <= 0 ? Math.log(v) / Math.LN10 : null}, |
46 | | - inverseTransform: function(v) {Math.pow(10, v)} |
47 | | - } |
48 | | -The transform filters negative and zero values, because those are |
49 | | -invalid on logarithmic scales. |
50 | | -This plugin tries to create good looking logarithmic ticks, using |
51 | | -unicode superscript characters. If all data to be plotted is between two |
52 | | -powers of ten then the default flot tick generator and renderer are |
53 | | -used. Logarithmic ticks are places at powers of ten and at half those |
54 | | -values if there are not to many ticks already (e.g. [1, 5, 10, 50, 100]). |
55 | | -For details, see https://github.com/flot/flot/pull/1328 |
56 | | - |
57 | 83 | --- |
58 | 84 | This product bundles bootstrap@3.3.6 which is available under a |
59 | 85 | "MIT" license. |
@@ -107,6 +133,26 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
107 | 133 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
108 | 134 | THE SOFTWARE. |
109 | 135 |
|
| 136 | +--- |
| 137 | +This product bundles code based on probot-metadata@1.0.0 which is |
| 138 | +available under a "MIT" license. |
| 139 | + |
| 140 | +ISC License |
| 141 | + |
| 142 | +Copyright (c) 2017 Brandon Keepers |
| 143 | + |
| 144 | +Permission to use, copy, modify, and/or distribute this software for any |
| 145 | +purpose with or without fee is hereby granted, provided that the above |
| 146 | +copyright notice and this permission notice appear in all copies. |
| 147 | + |
| 148 | +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 149 | +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 150 | +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 151 | +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 152 | +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 153 | +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 154 | +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 155 | + |
110 | 156 | --- |
111 | 157 | This product includes code that is adapted from mapbox-gl-js, which is |
112 | 158 | available under a "BSD-3-Clause" license. |
@@ -166,32 +212,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
166 | 212 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
167 | 213 | SOFTWARE. |
168 | 214 |
|
169 | | ---- |
170 | | -This product includes code that is based on flot-charts, which was available |
171 | | -under a "MIT" license. |
172 | | - |
173 | | -The MIT License (MIT) |
174 | | - |
175 | | -Copyright (c) 2007-2014 IOLA and Ole Laursen |
176 | | - |
177 | | -Permission is hereby granted, free of charge, to any person obtaining a copy |
178 | | -of this software and associated documentation files (the "Software"), to deal |
179 | | -in the Software without restriction, including without limitation the rights |
180 | | -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
181 | | -copies of the Software, and to permit persons to whom the Software is |
182 | | -furnished to do so, subject to the following conditions: |
183 | | - |
184 | | -The above copyright notice and this permission notice shall be included in |
185 | | -all copies or substantial portions of the Software. |
186 | | - |
187 | | -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
188 | | -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
189 | | -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
190 | | -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
191 | | -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
192 | | -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
193 | | -THE SOFTWARE. |
194 | | - |
195 | 215 | --- |
196 | 216 | This product includes code that was extracted from angular@1.3. |
197 | 217 | Original license: |
|
0 commit comments