This is an automated email from the ASF dual-hosted git repository.

gcruz pushed a commit to branch gc/8449
in repository https://gitbox.apache.org/repos/asf/allura.git

commit c47ebfe69d26ef8bc0282d778c3b912fdf900ac5
Author: Guillermo Cruz <[email protected]>
AuthorDate: Fri Aug 5 11:12:12 2022 -0600

    [#8449] jquery-base removed
---
 Allura/allura/public/nf/js/jquery-base.js | 121 ------------------------------
 1 file changed, 121 deletions(-)

diff --git a/Allura/allura/public/nf/js/jquery-base.js 
b/Allura/allura/public/nf/js/jquery-base.js
deleted file mode 100644
index 8ee3739c2..000000000
--- a/Allura/allura/public/nf/js/jquery-base.js
+++ /dev/null
@@ -1,121 +0,0 @@
-/*! jQuery v1.11.2 | (c) 2005, 2014 jQuery Foundation, Inc. | 
jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof 
module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw
 new Error("jQuery requires a window with a document");return 
b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var 
c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.2",m=function(a,b){return
 new 
m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b
 [...]
-return!0}function Q(a,b,d,e){if(m.acceptData(a)){var 
f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void
 0!==d||"string"!=typeof b)return 
k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof
 b||"function"==typeof 
b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void
 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof 
b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}fu [...]
-}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")},cur:function(){var
 a=Zb.propHooks[this.prop];return 
a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var 
b,c=Zb.propHooks[this.prop];return 
this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(
 [...]
-/*!
- * jQuery Cookie Plugin v1.4.1
- * https://github.com/carhartl/jquery-cookie
- *
- * Copyright 2006, 2014 Klaus Hartl
- * Released under the MIT license
- */
-(function (factory) {
-       if (typeof define === 'function' && define.amd) {
-               // AMD
-               define(['jquery'], factory);
-       } else if (typeof exports === 'object') {
-               // CommonJS
-               factory(require('jquery'));
-       } else {
-               // Browser globals
-               factory(jQuery);
-       }
-}(function ($) {
-
-       var pluses = /\+/g;
-
-       function encode(s) {
-               return config.raw ? s : encodeURIComponent(s);
-       }
-
-       function decode(s) {
-               return config.raw ? s : decodeURIComponent(s);
-       }
-
-       function stringifyCookieValue(value) {
-               return encode(config.json ? JSON.stringify(value) : 
String(value));
-       }
-
-       function parseCookieValue(s) {
-               if (s.indexOf('"') === 0) {
-                       // This is a quoted cookie as according to RFC2068, 
unescape...
-                       s = s.slice(1, -1).replace(/\\"/g, 
'"').replace(/\\\\/g, '\\');
-               }
-
-               try {
-                       // Replace server-side written pluses with spaces.
-                       // If we can't decode the cookie, ignore it, it's 
unusable.
-                       // If we can't parse the cookie, ignore it, it's 
unusable.
-                       s = decodeURIComponent(s.replace(pluses, ' '));
-                       return config.json ? JSON.parse(s) : s;
-               } catch(e) {}
-       }
-
-       function read(s, converter) {
-               var value = config.raw ? s : parseCookieValue(s);
-               return $.isFunction(converter) ? converter(value) : value;
-       }
-
-       var config = $.cookie = function (key, value, options) {
-
-               // Write
-
-               if (arguments.length > 1 && !$.isFunction(value)) {
-                       options = $.extend({}, config.defaults, options);
-
-                       if (typeof options.expires === 'number') {
-                               var days = options.expires, t = options.expires 
= new Date();
-                               t.setTime(+t + days * 864e+5);
-                       }
-
-                       return (document.cookie = [
-                               encode(key), '=', stringifyCookieValue(value),
-                               options.expires ? '; expires=' + 
options.expires.toUTCString() : '', // use expires attribute, max-age is not 
supported by IE
-                               options.path    ? '; path=' + options.path : '',
-                               options.domain  ? '; domain=' + options.domain 
: '',
-                               options.secure  ? '; secure' : ''
-                       ].join(''));
-               }
-
-               // Read
-
-               var result = key ? undefined : {};
-
-               // To prevent the for loop in the first place assign an empty 
array
-               // in case there are no cookies at all. Also prevents odd 
result when
-               // calling $.cookie().
-               var cookies = document.cookie ? document.cookie.split('; ') : 
[];
-
-               for (var i = 0, l = cookies.length; i < l; i++) {
-                       var parts = cookies[i].split('=');
-                       var name = decode(parts.shift());
-                       var cookie = parts.join('=');
-
-                       if (key && key === name) {
-                               // If second argument (value) is a function 
it's a converter...
-                               result = read(cookie, value);
-                               break;
-                       }
-
-                       // Prevent storing a cookie that we couldn't decode.
-                       if (!key && (cookie = read(cookie)) !== undefined) {
-                               result[name] = cookie;
-                       }
-               }
-
-               return result;
-       };
-
-       config.defaults = {};
-
-       $.removeCookie = function (key, options) {
-               if ($.cookie(key) === undefined) {
-                       return false;
-               }
-
-               // Must not alter options, thus extending a fresh object...
-               $.cookie(key, '', $.extend({}, options, { expires: -1 }));
-               return !$.cookie(key);
-       };
-
-}));
\ No newline at end of file

Reply via email to