mirror of https://github.com/apache/nifi.git
parent
4c959f7298
commit
8a0e2cee4a
52
nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/d3/LICENSE
Executable file → Normal file
52
nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/d3/LICENSE
Executable file → Normal file
|
@ -1,26 +1,26 @@
|
|||
Copyright (c) 2013, Michael Bostock
|
||||
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.
|
||||
|
||||
* The name Michael Bostock may not 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 MICHAEL BOSTOCK 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.
|
||||
Copyright (c) 2010-2014, Michael Bostock
|
||||
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.
|
||||
|
||||
* The name Michael Bostock may not 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 MICHAEL BOSTOCK 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.
|
||||
|
|
5390
nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/d3/d3.min.js
vendored
Executable file → Normal file
5390
nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/d3/d3.min.js
vendored
Executable file → Normal file
File diff suppressed because one or more lines are too long
|
@ -59,13 +59,6 @@ nf.StatusHistory = (function () {
|
|||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* version 3.4+ of D3 provides a mechanism for specifying
|
||||
* a number of custom formatters. this achieves similar function
|
||||
* until we're able to upgrade.
|
||||
*/
|
||||
var timeFormats = null;
|
||||
|
||||
/**
|
||||
* The time offset of the server.
|
||||
*/
|
||||
|
@ -373,26 +366,21 @@ nf.StatusHistory = (function () {
|
|||
visible: instances[instance.id] === true
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
// --------------------------
|
||||
// custom time axis formatter
|
||||
// --------------------------
|
||||
|
||||
// create the formatting function
|
||||
var customTimeFormat = function (d) {
|
||||
var formatter;
|
||||
|
||||
// identify the most appropriate formatter for this date
|
||||
$.each(timeFormats, function (_, timeFormat) {
|
||||
if (timeFormat[1](d)) {
|
||||
formatter = timeFormat;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
// return the formatter date
|
||||
return formatter[0](d);
|
||||
};
|
||||
var customTimeFormat = d3.time.format.multi([
|
||||
[':%S.%L', function (d) { return d.getMilliseconds(); }],
|
||||
[':%S', function (d) { return d.getSeconds(); }],
|
||||
['%H:%M', function (d) { return d.getMinutes(); }],
|
||||
['%H:%M', function (d) { return d.getHours(); }],
|
||||
['%a %d', function (d) { return d.getDay() && d.getDate() !== 1; }],
|
||||
['%b %d', function (d) { return d.getDate() !== 1; }],
|
||||
['%B', function (d) { return d.getMonth(); }],
|
||||
['%Y', function () { return true; }]
|
||||
]);
|
||||
|
||||
// ----------
|
||||
// main chart
|
||||
|
@ -1136,34 +1124,6 @@ nf.StatusHistory = (function () {
|
|||
init: function (timeOffset) {
|
||||
serverTimeOffset = timeOffset;
|
||||
|
||||
// initialize the time formats
|
||||
timeFormats = [
|
||||
[d3.time.format(':%S.%L'), function (d) {
|
||||
return d.getMilliseconds();
|
||||
}],
|
||||
[d3.time.format(':%S'), function (d) {
|
||||
return d.getSeconds();
|
||||
}],
|
||||
[d3.time.format('%H:%M'), function (d) {
|
||||
return d.getMinutes();
|
||||
}],
|
||||
[d3.time.format('%H:%M'), function (d) {
|
||||
return d.getHours();
|
||||
}],
|
||||
[d3.time.format('%a %d'), function (d) {
|
||||
return d.getDay() && d.getDate() !== 1;
|
||||
}],
|
||||
[d3.time.format('%b %d'), function (d) {
|
||||
return d.getDate() !== 1;
|
||||
}],
|
||||
[d3.time.format('%B'), function (d) {
|
||||
return d.getMonth();
|
||||
}],
|
||||
[d3.time.format('%Y'), function () {
|
||||
return true;
|
||||
}]
|
||||
];
|
||||
|
||||
nf.Common.addHoverEffect('#status-history-refresh-button', 'button-refresh', 'button-refresh-hover').click(function () {
|
||||
var statusHistory = $('#status-history-dialog').data('status-history');
|
||||
if (statusHistory !== null) {
|
||||
|
|
Loading…
Reference in New Issue