5 | * @author Uriy Efremochkin
6 | */
7 | (function ($) {
8 | "use strict";
9 |
10 | $.fn.select2.locales['uk'] = {
11 | formatMatches: function (matches) { return character(matches, "результат") + " знайдено, використовуйте клавіші зі стрілками вверх та вниз для навігації."; },
12 | formatNoMatches: function () { return "Нічого не знайдено"; },
13 | formatInputTooShort: function (input, min) { return "Введіть буль ласка ще " + character(min - input.length, "символ"); },
14 | formatInputTooLong: function (input, max) { return "Введіть буль ласка на " + character(input.length - max, "символ") + " менше"; },
15 | formatSelectionTooBig: function (limit) { return "Ви можете вибрати лише " + character(limit, "елемент"); },
16 | formatLoadMore: function (pageNumber) { return "Завантаження даних…"; },
17 | formatSearching: function () { return "Пошук…"; }
18 | };
19 |
20 | $.extend($.fn.select2.defaults, $.fn.select2.locales['uk']);
21 |
22 | function character (n, word) {
23 | return n + " " + word + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 19) ? n%10 > 1 ? "и" : "" : "ів");
24 | }
25 | })(jQuery);
26 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/rcue/dist/img/github-logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/patternfly/dist/img/github-logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/angular-cookies/angular-cookies.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.7.9
3 | (c) 2010-2018 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(n,e){'use strict';function m(d,k,l){var a=l.baseHref(),h=d[0];return function(f,b,c){var d,g;c=c||{};g=c.expires;d=e.isDefined(c.path)?c.path:a;e.isUndefined(b)&&(g="Thu, 01 Jan 1970 00:00:00 GMT",b="");e.isString(g)&&(g=new Date(g));b=encodeURIComponent(f)+"="+encodeURIComponent(b);b=b+(d?";path="+d:"")+(c.domain?";domain="+c.domain:"");b+=g?";expires="+g.toUTCString():"";b+=c.secure?";secure":"";b+=c.samesite?";samesite="+c.samesite:"";c=b.length+1;4096 4096 bytes)!");h.cookie=b}}e.module("ngCookies",["ng"]).info({angularVersion:"1.7.9"}).provider("$cookies",[function(){var d=this.defaults={};this.$get=["$$cookieReader","$$cookieWriter",function(k,l){return{get:function(a){return k()[a]},getObject:function(a){return(a=this.get(a))?e.fromJson(a):a},getAll:function(){return k()},put:function(a,h,f){l(a,h,f?e.extend({},d,f):d)},putObject:function(a,d,f){this.put(a,e.toJson(d),f)},remove:function(a,h){l(a,void 0,h?e.extend({},d,h):d)}}}]}]);m.$inject=
8 | ["$document","$log","$browser"];e.module("ngCookies").provider("$$cookieWriter",function(){this.$get=m})})(window,window.angular);
9 | //# sourceMappingURL=angular-cookies.min.js.map
10 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/angular-translate/dist/angular-translate-loader-static-files/angular-translate-loader-static-files.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * angular-translate - v2.18.2 - 2020-01-04
3 | *
4 | * Copyright (c) 2020 The angular-translate team, Pascal Precht; Licensed MIT
5 | */
6 | !function(e,i){"function"==typeof define&&define.amd?define([],function(){return i()}):"object"==typeof module&&module.exports?module.exports=i():i()}(0,function(){function e(n,a){"use strict";return function(r){if(!(r&&(angular.isArray(r.files)||angular.isString(r.prefix)&&angular.isString(r.suffix))))throw new Error("Couldn't load static files, no files and prefix or suffix specified!");r.files||(r.files=[{prefix:r.prefix,suffix:r.suffix}]);for(var e=function(e){if(!e||!angular.isString(e.prefix)||!angular.isString(e.suffix))throw new Error("Couldn't load static file, no prefix or suffix specified!");var i=[e.prefix,r.key,e.suffix].join("");return angular.isObject(r.fileMap)&&r.fileMap[i]&&(i=r.fileMap[i]),a(angular.extend({url:i,method:"GET"},r.$http)).then(function(e){return e.data},function(){return n.reject(r.key)})},i=[],t=r.files.length,f=0;f
5 | */
6 | (function ($) {
7 | "use strict";
8 |
9 | $.fn.select2.locales['eu'] = {
10 | formatNoMatches: function () {
11 | return "Ez da bat datorrenik aurkitu";
12 | },
13 | formatInputTooShort: function (input, min) {
14 | var n = min - input.length;
15 | if (n === 1) {
16 | return "Idatzi karaktere bat gehiago";
17 | } else {
18 | return "Idatzi " + n + " karaktere gehiago";
19 | }
20 | },
21 | formatInputTooLong: function (input, max) {
22 | var n = input.length - max;
23 | if (n === 1) {
24 | return "Idatzi karaktere bat gutxiago";
25 | } else {
26 | return "Idatzi " + n + " karaktere gutxiago";
27 | }
28 | },
29 | formatSelectionTooBig: function (limit) {
30 | if (limit === 1 ) {
31 | return "Elementu bakarra hauta dezakezu";
32 | } else {
33 | return limit + " elementu hauta ditzakezu soilik";
34 | }
35 | },
36 | formatLoadMore: function (pageNumber) {
37 | return "Emaitza gehiago kargatzen…";
38 | },
39 | formatSearching: function () {
40 | return "Bilatzen…";
41 | }
42 | };
43 |
44 | $.extend($.fn.select2.defaults, $.fn.select2.locales['eu']);
45 | })(jQuery);
46 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/select2/select2_locale_gl.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Select2 Galician translation
3 | *
4 | * Author: Leandro Regueiro
5 | */
6 | (function ($) {
7 | "use strict";
8 |
9 | $.fn.select2.locales['gl'] = {
10 | formatNoMatches: function () {
11 | return "Non se atoparon resultados";
12 | },
13 | formatInputTooShort: function (input, min) {
14 | var n = min - input.length;
15 | if (n === 1) {
16 | return "Engada un carácter";
17 | } else {
18 | return "Engada " + n + " caracteres";
19 | }
20 | },
21 | formatInputTooLong: function (input, max) {
22 | var n = input.length - max;
23 | if (n === 1) {
24 | return "Elimine un carácter";
25 | } else {
26 | return "Elimine " + n + " caracteres";
27 | }
28 | },
29 | formatSelectionTooBig: function (limit) {
30 | if (limit === 1 ) {
31 | return "Só pode seleccionar un elemento";
32 | } else {
33 | return "Só pode seleccionar " + limit + " elementos";
34 | }
35 | },
36 | formatLoadMore: function (pageNumber) {
37 | return "Cargando máis resultados…";
38 | },
39 | formatSearching: function () {
40 | return "Buscando…";
41 | }
42 | };
43 |
44 | $.extend($.fn.select2.defaults, $.fn.select2.locales['gl']);
45 | })(jQuery);
46 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/angular-translate/dist/angular-translate-interpolation-messageformat/angular-translate-interpolation-messageformat.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * angular-translate - v2.18.2 - 2020-01-04
3 | *
4 | * Copyright (c) 2020 The angular-translate team, Pascal Precht; Licensed MIT
5 | */
6 | !function(t,e){"function"==typeof define&&define.amd?define(["messageformat"],function(t){return e(t)}):"object"==typeof module&&module.exports?module.exports=e(require("messageformat")):e(t.MessageFormat)}(this,function(r){function i(u,t,e,n){"use strict";var a={},c=t.get(e),f=new r("en");return angular.isFunction(n)&&n(f),c||(c=t(e)),c.put("en",f),a.setLocale=function(t){(f=c.get(t))||(f=new r(t),angular.isFunction(n)&&n(f),c.put(t,f))},a.getInterpolationIdentifier=function(){return"messageformat"},a.useSanitizeValueStrategy=function(t){return u.useStrategy(t),this},a.interpolate=function(t,e,n,a){e=e||{},e=u.sanitize(e,"params",a);var r=c.get("mf:"+t);if(!r){for(var i in e)if(e.hasOwnProperty(i)){var o=parseInt(e[i],10);angular.isNumber(o)&&""+o===e[i]&&(e[i]=o)}r=f.compile(t),c.put("mf:"+t,r)}var s=r(e);return u.sanitize(s,"text",a)},a}return angular.module("pascalprecht.translate").constant("TRANSLATE_MF_INTERPOLATION_CACHE","$translateMessageFormatInterpolation").provider("$translateMessageFormatInterpolation",function(){"use strict";var a;this.messageFormatConfigurer=function(t){a=t},this.$get=["$translateSanitization","$cacheFactory","TRANSLATE_MF_INTERPOLATION_CACHE",function(t,e,n){return i(t,e,n,a)}]}),i.displayName="$translateMessageFormatInterpolation","pascalprecht.translate"});
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/patternfly/dist/js/patternfly.dataTables.pfResize.min.js:
--------------------------------------------------------------------------------
1 | !function(factory){"use strict";"function"==typeof define&&define.amd?define(["jquery","datatables.net"],function($){return factory($,window,document)}):"object"==typeof exports?module.exports=function(root,$){return root||(root=window),$&&$.fn.dataTable||($=require("datatables.net")(root,$).$),factory($,root,root.document)}:factory(jQuery,window,document)}(function($,window,document,undefined){"use strict";function isIE(){return/(MSIE|Trident\/|Edge\/)/i.test(window.navigator.userAgent)}function resetTableCells(dt,actions){actions!==undefined&&0!==actions.length&&$(actions).each(function(index,el){$(el).css({height:"auto"})})}function resize(dt){var actions=$(BUTTON_ACTIONS_SELECTOR+", "+KEBAB_ACTIONS_SELECTOR,dt.table().container());resetTableCells(dt,actions),resizeInlineActions(dt,actions)}function resizeInlineActions(dt,actions){actions!==undefined&&0!==actions.length&&$(actions).each(function(index,el){var parent=$(el).parent("td");parent!==undefined&&0!==parent.length&&$(el).css({height:parent[0].clientHeight})})}var DataTable=$.fn.dataTable,BUTTON_ACTIONS_SELECTOR="td.table-view-pf-actions .table-view-pf-btn",KEBAB_ACTIONS_SELECTOR="td.table-view-pf-actions .dropdown";return DataTable.pfResize={},DataTable.pfResize.init=function(dt){dt.settings()[0]._pfResize={},isIE()&&($(window).on("resize",function(){resize(dt)}),resize(dt))},DataTable.Api.register("pfResize.resize()",function(){return this.iterator("table",function(ctx){resize(new DataTable.Api(ctx))})}),$(document).on("init.dt",function(e,ctx,json){"dt"===e.namespace&&DataTable.pfResize.init(new DataTable.Api(ctx))}),DataTable.pfResize});
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/rcue/dist/img/google-calendar.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
27 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/patternfly/dist/img/google-calendar.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
27 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/angular-translate/dist/angular-translate-handler-log/angular-translate-handler-log.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * angular-translate - v2.18.2 - 2020-01-04
3 | *
4 | * Copyright (c) 2020 The angular-translate team, Pascal Precht; Licensed MIT
5 | */
6 | (function (root, factory) {
7 | if (typeof define === 'function' && define.amd) {
8 | // AMD. Register as an anonymous module unless amdModuleId is set
9 | define([], function () {
10 | return (factory());
11 | });
12 | } else if (typeof module === 'object' && module.exports) {
13 | // Node. Does not work with strict CommonJS, but
14 | // only CommonJS-like environments that support module.exports,
15 | // like Node.
16 | module.exports = factory();
17 | } else {
18 | factory();
19 | }
20 | }(this, function () {
21 |
22 | $translateMissingTranslationHandlerLog.$inject = ['$log'];
23 | angular.module('pascalprecht.translate')
24 |
25 | /**
26 | * @ngdoc object
27 | * @name pascalprecht.translate.$translateMissingTranslationHandlerLog
28 | * @requires $log
29 | *
30 | * @description
31 | * Uses angular's `$log` service to give a warning when trying to translate a
32 | * translation id which doesn't exist.
33 | *
34 | * @returns {function} Handler function
35 | */
36 | .factory('$translateMissingTranslationHandlerLog', $translateMissingTranslationHandlerLog);
37 |
38 | function $translateMissingTranslationHandlerLog ($log) {
39 |
40 | 'use strict';
41 |
42 | return function (translationId) {
43 | $log.warn('Translation for ' + translationId + ' doesn\'t exist');
44 | };
45 | }
46 |
47 | $translateMissingTranslationHandlerLog.displayName = '$translateMissingTranslationHandlerLog';
48 | return 'pascalprecht.translate';
49 |
50 | }));
51 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/rcue/dist/img/logo-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
19 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/patternfly/dist/img/logo-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
19 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/jquery/external/sizzle/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright JS Foundation and other contributors, https://js.foundation/
2 |
3 | This software consists of voluntary contributions made by many
4 | individuals. For exact contribution history, see the revision history
5 | available at https://github.com/jquery/sizzle
6 |
7 | The following license applies to all parts of this software except as
8 | documented below:
9 |
10 | ====
11 |
12 | Permission is hereby granted, free of charge, to any person obtaining
13 | a copy of this software and associated documentation files (the
14 | "Software"), to deal in the Software without restriction, including
15 | without limitation the rights to use, copy, modify, merge, publish,
16 | distribute, sublicense, and/or sell copies of the Software, and to
17 | permit persons to whom the Software is furnished to do so, subject to
18 | the following conditions:
19 |
20 | The above copyright notice and this permission notice shall be
21 | included in all copies or substantial portions of the Software.
22 |
23 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 |
31 | ====
32 |
33 | All files located in the node_modules and external directories are
34 | externally maintained libraries used by this software which have their
35 | own licenses; we recommend you read them, as their terms may differ from
36 | the terms above.
37 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/angular-loader/angular-loader.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.7.9
3 | (c) 2010-2018 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(){'use strict';function g(a,f){f=f||Error;return function(){var d=arguments[0],e;e="["+(a?a+":":"")+d+"] http://errors.angularjs.org/1.7.9/"+(a?a+"/":"")+d;for(d=1;d
2 |
3 |
4 |
23 |
--------------------------------------------------------------------------------
/jenkins/common/resources/node_modules/patternfly/dist/img/logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
23 |
--------------------------------------------------------------------------------