Skip to:
Content

BuddyPress.org

Ticket #4606: 4606.02.patch

File 4606.02.patch, 14.3 KB (added by r-a-y, 12 years ago)

Use local "jq" variable instead of "jQuery"

  • bp-templates/bp-legacy/js/buddypress.js

    jq(document).ready( function() { 
    7575
    7676                jq.post( ajaxurl, {
    7777                        action: 'post_update',
    78                         'cookie': encodeURIComponent(document.cookie),
     78                        'cookie': bp_get_cookies(),
    7979                        '_wpnonce_post_update': jq("#_wpnonce_post_update").val(),
    8080                        'content': content,
    8181                        'object': object,
    jq(document).ready( function() { 
    195195
    196196                        jq.post( ajaxurl, {
    197197                                action: 'activity_mark_' + type,
    198                                 'cookie': encodeURIComponent(document.cookie),
     198                                'cookie': bp_get_cookies(),
    199199                                'id': parent_id
    200200                        },
    201201                        function(response) {
    jq(document).ready( function() { 
    249249
    250250                        jq.post( ajaxurl, {
    251251                                action: 'delete_activity',
    252                                 'cookie': encodeURIComponent(document.cookie),
     252                                'cookie': bp_get_cookies(),
    253253                                'id': id,
    254254                                '_wpnonce': nonce
    255255                        },
    jq(document).ready( function() { 
    303303
    304304                        jq.post( ajaxurl, {
    305305                                action: 'activity_get_older_updates',
    306                                 'cookie': encodeURIComponent(document.cookie),
     306                                'cookie': bp_get_cookies(),
    307307                                'page': oldest_page
    308308                        },
    309309                        function(response)
    jq(document).ready( function() { 
    419419
    420420                        var ajaxdata = {
    421421                                action: 'new_activity_comment',
    422                                 'cookie': encodeURIComponent(document.cookie),
     422                                'cookie': bp_get_cookies(),
    423423                                '_wpnonce_new_activity_comment': jq("#_wpnonce_new_activity_comment").val(),
    424424                                'comment_id': comment_id,
    425425                                'form_id': form_id[2],
    jq(document).ready( function() { 
    492492
    493493                        jq.post( ajaxurl, {
    494494                                action: 'delete_activity_comment',
    495                                 'cookie': encodeURIComponent(document.cookie),
     495                                'cookie': bp_get_cookies(),
    496496                                '_wpnonce': nonce,
    497497                                'id': comment_id
    498498                        },
    jq(document).ready( function() { 
    770770                jq.post( ajaxurl, {
    771771                        action: 'groups_invite_user',
    772772                        'friend_action': friend_action,
    773                         'cookie': encodeURIComponent(document.cookie),
     773                        'cookie': bp_get_cookies(),
    774774                        '_wpnonce': jq("#_wpnonce_invite_uninvite_user").val(),
    775775                        'friend_id': friend_id,
    776776                        'group_id': jq("#group_id").val()
    jq(document).ready( function() { 
    803803                jq.post( ajaxurl, {
    804804                        action: 'groups_invite_user',
    805805                        'friend_action': 'uninvite',
    806                         'cookie': encodeURIComponent(document.cookie),
     806                        'cookie': bp_get_cookies(),
    807807                        '_wpnonce': jq("#_wpnonce_invite_uninvite_user").val(),
    808808                        'friend_id': friend_id,
    809809                        'group_id': jq("#group_id").val()
    jq(document).ready( function() { 
    870870
    871871                jq.post( ajaxurl, {
    872872                        action: action,
    873                         'cookie': encodeURIComponent(document.cookie),
     873                        'cookie': bp_get_cookies(),
    874874                        'id': id,
    875875                        '_wpnonce': nonce
    876876                },
    jq(document).ready( function() { 
    912912
    913913                jq.post( ajaxurl, {
    914914                        action: 'addremove_friend',
    915                         'cookie': encodeURIComponent(document.cookie),
     915                        'cookie': bp_get_cookies(),
    916916                        'fid': fid,
    917917                        '_wpnonce': nonce
    918918                },
    jq(document).ready( function() { 
    961961
    962962                jq.post( ajaxurl, {
    963963                        action: 'joinleave_group',
    964                         'cookie': encodeURIComponent(document.cookie),
     964                        'cookie': bp_get_cookies(),
    965965                        'gid': gid,
    966966                        '_wpnonce': nonce
    967967                },
    jq(document).ready( function() { 
    10181018
    10191019                        jq.post( ajaxurl, {
    10201020                                action: 'messages_send_reply',
    1021                                 'cookie': encodeURIComponent(document.cookie),
     1021                                'cookie': bp_get_cookies(),
    10221022                                '_wpnonce': jq("#send_message_nonce").val(),
    10231023
    10241024                                'content': jq("#message_content").val(),
    function bp_filter_request( object, filter, scope, target, search_terms, page, e 
    12991299
    13001300        bp_ajax_request = jq.post( ajaxurl, {
    13011301                action: object + '_filter',
    1302                 'cookie': encodeURIComponent(document.cookie),
     1302                'cookie': bp_get_cookies(),
    13031303                'object': object,
    13041304                'filter': filter,
    13051305                'search_terms': search_terms,
    function bp_activity_request(scope, filter) { 
    13471347
    13481348        bp_ajax_request = jq.post( ajaxurl, {
    13491349                action: 'activity_widget_filter',
    1350                 'cookie': encodeURIComponent(document.cookie),
     1350                'cookie': bp_get_cookies(),
    13511351                '_wpnonce_activity_filter': jq("#_wpnonce_activity_filter").val(),
    13521352                'scope': scope,
    13531353                'filter': filter
    function clear(container) { 
    14411441        return;
    14421442}
    14431443
     1444/* Returns a querystring of BP cookies (cookies beginning with 'bp-') */
     1445function bp_get_cookies() {
     1446        // get all cookies and split into an array
     1447        var allCookies   = document.cookie.split(";");
     1448
     1449        var bpCookies    = {};
     1450        var cookiePrefix = 'bp-';
     1451
     1452        // loop through cookies
     1453        for (var i = 0; i < allCookies.length; i++) {
     1454                var cookie    = allCookies[i];
     1455                var delimiter = cookie.indexOf("=");
     1456                var name      = unescape( cookie.slice(0, delimiter) ).trim();
     1457                var value     = unescape( cookie.slice(delimiter + 1) );
     1458
     1459                // if BP cookie, store it
     1460                if ( name.indexOf(cookiePrefix) == 0 ) {
     1461                        bpCookies[name] = value;
     1462                }
     1463        }
     1464
     1465        // returns BP cookies as querystring
     1466        return jq.param(bpCookies);
     1467}
     1468
    14441469/* ScrollTo plugin - just inline and minified */
    14451470;(function($){var h=$.scrollTo=function(a,b,c){$(window).scrollTo(a,b,c)};h.defaults={axis:'xy',duration:parseFloat($.fn.jquery)>=1.3?0:1,limit:true};h.window=function(a){return $(window)._scrollable()};$.fn._scrollable=function(){return this.map(function(){var a=this,isWin=!a.nodeName||$.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!isWin)return a;var b=(a.contentWindow||a).document||a.ownerDocument||a;return/webkit/i.test(navigator.userAgent)||b.compatMode=='BackCompat'?b.body:b.documentElement})};$.fn.scrollTo=function(e,f,g){if(typeof f=='object'){g=f;f=0}if(typeof g=='function')g={onAfter:g};if(e=='max')e=9e9;g=$.extend({},h.defaults,g);f=f||g.duration;g.queue=g.queue&&g.axis.length>1;if(g.queue)f/=2;g.offset=both(g.offset);g.over=both(g.over);return this._scrollable().each(function(){if(e==null)return;var d=this,$elem=$(d),targ=e,toff,attr={},win=$elem.is('html,body');switch(typeof targ){case'number':case'string':if(/^([+-]=?)?\d+(\.\d+)?(px|%)?$/.test(targ)){targ=both(targ);break}targ=$(targ,this);if(!targ.length)return;case'object':if(targ.is||targ.style)toff=(targ=$(targ)).offset()}$.each(g.axis.split(''),function(i,a){var b=a=='x'?'Left':'Top',pos=b.toLowerCase(),key='scroll'+b,old=d[key],max=h.max(d,a);if(toff){attr[key]=toff[pos]+(win?0:old-$elem.offset()[pos]);if(g.margin){attr[key]-=parseInt(targ.css('margin'+b))||0;attr[key]-=parseInt(targ.css('border'+b+'Width'))||0}attr[key]+=g.offset[pos]||0;if(g.over[pos])attr[key]+=targ[a=='x'?'width':'height']()*g.over[pos]}else{var c=targ[pos];attr[key]=c.slice&&c.slice(-1)=='%'?parseFloat(c)/100*max:c}if(g.limit&&/^\d+$/.test(attr[key]))attr[key]=attr[key]<=0?0:Math.min(attr[key],max);if(!i&&g.queue){if(old!=attr[key])animate(g.onAfterFirst);delete attr[key]}});animate(g.onAfter);function animate(a){$elem.animate(attr,f,g.easing,a&&function(){a.call(this,e,g)})}}).end()};h.max=function(a,b){var c=b=='x'?'Width':'Height',scroll='scroll'+c;if(!$(a).is('html,body'))return a[scroll]-$(a)[c.toLowerCase()]();var d='client'+c,html=a.ownerDocument.documentElement,body=a.ownerDocument.body;return Math.max(html[scroll],body[scroll])-Math.min(html[d],body[d])};function both(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
    14461471
  • bp-themes/bp-default/_inc/global.js

    jq(document).ready( function() { 
    7575
    7676                jq.post( ajaxurl, {
    7777                        action: 'post_update',
    78                         'cookie': encodeURIComponent(document.cookie),
     78                        'cookie': bp_get_cookies(),
    7979                        '_wpnonce_post_update': jq("input#_wpnonce_post_update").val(),
    8080                        'content': content,
    8181                        'object': object,
    jq(document).ready( function() { 
    195195
    196196                        jq.post( ajaxurl, {
    197197                                action: 'activity_mark_' + type,
    198                                 'cookie': encodeURIComponent(document.cookie),
     198                                'cookie': bp_get_cookies(),
    199199                                'id': parent_id
    200200                        },
    201201                        function(response) {
    jq(document).ready( function() { 
    249249
    250250                        jq.post( ajaxurl, {
    251251                                action: 'delete_activity',
    252                                 'cookie': encodeURIComponent(document.cookie),
     252                                'cookie': bp_get_cookies(),
    253253                                'id': id,
    254254                                '_wpnonce': nonce
    255255                        },
    jq(document).ready( function() { 
    303303
    304304                        jq.post( ajaxurl, {
    305305                                action: 'activity_get_older_updates',
    306                                 'cookie': encodeURIComponent(document.cookie),
     306                                'cookie': bp_get_cookies(),
    307307                                'page': oldest_page
    308308                        },
    309309                        function(response)
    jq(document).ready( function() { 
    416416
    417417                        var ajaxdata = {
    418418                                action: 'new_activity_comment',
    419                                 'cookie': encodeURIComponent(document.cookie),
     419                                'cookie': bp_get_cookies(),
    420420                                '_wpnonce_new_activity_comment': jq("input#_wpnonce_new_activity_comment").val(),
    421421                                'comment_id': comment_id,
    422422                                'form_id': form_id[2],
    jq(document).ready( function() { 
    488488
    489489                        jq.post( ajaxurl, {
    490490                                action: 'delete_activity_comment',
    491                                 'cookie': encodeURIComponent(document.cookie),
     491                                'cookie': bp_get_cookies(),
    492492                                '_wpnonce': nonce,
    493493                                'id': comment_id
    494494                        },
    jq(document).ready( function() { 
    760760                jq.post( ajaxurl, {
    761761                        action: 'groups_invite_user',
    762762                        'friend_action': friend_action,
    763                         'cookie': encodeURIComponent(document.cookie),
     763                        'cookie': bp_get_cookies(),
    764764                        '_wpnonce': jq("input#_wpnonce_invite_uninvite_user").val(),
    765765                        'friend_id': friend_id,
    766766                        'group_id': jq("input#group_id").val()
    jq(document).ready( function() { 
    793793                jq.post( ajaxurl, {
    794794                        action: 'groups_invite_user',
    795795                        'friend_action': 'uninvite',
    796                         'cookie': encodeURIComponent(document.cookie),
     796                        'cookie': bp_get_cookies(),
    797797                        '_wpnonce': jq("input#_wpnonce_invite_uninvite_user").val(),
    798798                        'friend_id': friend_id,
    799799                        'group_id': jq("input#group_id").val()
    jq(document).ready( function() { 
    860860
    861861                jq.post( ajaxurl, {
    862862                        action: action,
    863                         'cookie': encodeURIComponent(document.cookie),
     863                        'cookie': bp_get_cookies(),
    864864                        'id': id,
    865865                        '_wpnonce': nonce
    866866                },
    jq(document).ready( function() { 
    902902
    903903                jq.post( ajaxurl, {
    904904                        action: 'addremove_friend',
    905                         'cookie': encodeURIComponent(document.cookie),
     905                        'cookie': bp_get_cookies(),
    906906                        'fid': fid,
    907907                        '_wpnonce': nonce
    908908                },
    jq(document).ready( function() { 
    951951
    952952                jq.post( ajaxurl, {
    953953                        action: 'joinleave_group',
    954                         'cookie': encodeURIComponent(document.cookie),
     954                        'cookie': bp_get_cookies(),
    955955                        'gid': gid,
    956956                        '_wpnonce': nonce
    957957                },
    jq(document).ready( function() { 
    10081008
    10091009                        jq.post( ajaxurl, {
    10101010                                action: 'messages_send_reply',
    1011                                 'cookie': encodeURIComponent(document.cookie),
     1011                                'cookie': bp_get_cookies(),
    10121012                                '_wpnonce': jq("input#send_message_nonce").val(),
    10131013
    10141014                                'content': jq("#message_content").val(),
    function bp_filter_request( object, filter, scope, target, search_terms, page, e 
    12891289
    12901290        bp_ajax_request = jq.post( ajaxurl, {
    12911291                action: object + '_filter',
    1292                 'cookie': encodeURIComponent(document.cookie),
     1292                'cookie': bp_get_cookies(),
    12931293                'object': object,
    12941294                'filter': filter,
    12951295                'search_terms': search_terms,
    function bp_activity_request(scope, filter) { 
    13371337
    13381338        bp_ajax_request = jq.post( ajaxurl, {
    13391339                action: 'activity_widget_filter',
    1340                 'cookie': encodeURIComponent(document.cookie),
     1340                'cookie': bp_get_cookies(),
    13411341                '_wpnonce_activity_filter': jq("input#_wpnonce_activity_filter").val(),
    13421342                'scope': scope,
    13431343                'filter': filter
    function clear(container) { 
    14311431        return;
    14321432}
    14331433
     1434/* Returns a querystring of BP cookies (cookies beginning with 'bp-') */
     1435function bp_get_cookies() {
     1436        // get all cookies and split into an array
     1437        var allCookies   = document.cookie.split(";");
     1438
     1439        var bpCookies    = {};
     1440        var cookiePrefix = 'bp-';
     1441
     1442        // loop through cookies
     1443        for (var i = 0; i < allCookies.length; i++) {
     1444                var cookie    = allCookies[i];
     1445                var delimiter = cookie.indexOf("=");
     1446                var name      = unescape( cookie.slice(0, delimiter) ).trim();
     1447                var value     = unescape( cookie.slice(delimiter + 1) );
     1448
     1449                // if BP cookie, store it
     1450                if ( name.indexOf(cookiePrefix) == 0 ) {
     1451                        bpCookies[name] = value;
     1452                }
     1453        }
     1454
     1455        // returns BP cookies as querystring
     1456        return jq.param(bpCookies);
     1457}
     1458
    14341459/* ScrollTo plugin - just inline and minified */
    14351460;(function($){var h=$.scrollTo=function(a,b,c){$(window).scrollTo(a,b,c)};h.defaults={axis:'xy',duration:parseFloat($.fn.jquery)>=1.3?0:1,limit:true};h.window=function(a){return $(window)._scrollable()};$.fn._scrollable=function(){return this.map(function(){var a=this,isWin=!a.nodeName||$.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!isWin)return a;var b=(a.contentWindow||a).document||a.ownerDocument||a;return/webkit/i.test(navigator.userAgent)||b.compatMode=='BackCompat'?b.body:b.documentElement})};$.fn.scrollTo=function(e,f,g){if(typeof f=='object'){g=f;f=0}if(typeof g=='function')g={onAfter:g};if(e=='max')e=9e9;g=$.extend({},h.defaults,g);f=f||g.duration;g.queue=g.queue&&g.axis.length>1;if(g.queue)f/=2;g.offset=both(g.offset);g.over=both(g.over);return this._scrollable().each(function(){if(e==null)return;var d=this,$elem=$(d),targ=e,toff,attr={},win=$elem.is('html,body');switch(typeof targ){case'number':case'string':if(/^([+-]=?)?\d+(\.\d+)?(px|%)?$/.test(targ)){targ=both(targ);break}targ=$(targ,this);if(!targ.length)return;case'object':if(targ.is||targ.style)toff=(targ=$(targ)).offset()}$.each(g.axis.split(''),function(i,a){var b=a=='x'?'Left':'Top',pos=b.toLowerCase(),key='scroll'+b,old=d[key],max=h.max(d,a);if(toff){attr[key]=toff[pos]+(win?0:old-$elem.offset()[pos]);if(g.margin){attr[key]-=parseInt(targ.css('margin'+b))||0;attr[key]-=parseInt(targ.css('border'+b+'Width'))||0}attr[key]+=g.offset[pos]||0;if(g.over[pos])attr[key]+=targ[a=='x'?'width':'height']()*g.over[pos]}else{var c=targ[pos];attr[key]=c.slice&&c.slice(-1)=='%'?parseFloat(c)/100*max:c}if(g.limit&&/^\d+$/.test(attr[key]))attr[key]=attr[key]<=0?0:Math.min(attr[key],max);if(!i&&g.queue){if(old!=attr[key])animate(g.onAfterFirst);delete attr[key]}});animate(g.onAfter);function animate(a){$elem.animate(attr,f,g.easing,a&&function(){a.call(this,e,g)})}}).end()};h.max=function(a,b){var c=b=='x'?'Width':'Height',scroll='scroll'+c;if(!$(a).is('html,body'))return a[scroll]-$(a)[c.toLowerCase()]();var d='client'+c,html=a.ownerDocument.documentElement,body=a.ownerDocument.body;return Math.max(html[scroll],body[scroll])-Math.min(html[d],body[d])};function both(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
    14361461