Skip to:
Content

BuddyPress.org


Ignore:
Location:
tags/1.2.9/bp-themes/bp-default
Files:
82 edited

Legend:

Unmodified
Added
Removed
  • tags/1.2.9/bp-themes/bp-default/404.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/_inc/ajax.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/_inc/css/adminbar.css

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/css
  • tags/1.2.9/bp-themes/bp-default/_inc/css/default.css

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/css
  • tags/1.2.9/bp-themes/bp-default/_inc/css/reset.css

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/css
  • tags/1.2.9/bp-themes/bp-default/_inc/global.js

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/javascript
    r4619 r4619  
    2222    if ( jq.query.get('r') ) {
    2323        if ( jq('textarea#whats-new').length ) {
    24             jq.scrollTo( jq('textarea#whats-new'), 500, { offset:-125, easing:'easeout' } );
     24            jq.scrollTo( jq('textarea#whats-new'), 500, { offset:-125, easing:'easeOutQuad' } );
    2525            jq('textarea#whats-new').focus();
    2626        }
     
    4040        form.children().each( function() {
    4141            if ( jq.nodeName(this, "textarea") || jq.nodeName(this, "input") )
    42                 jq(this).attr( 'disabled', 'disabled' );
     42                jq(this).prop( 'disabled', true );
    4343        });
    4444
     
    4747        /* Remove any errors */
    4848        jq('div.error').remove();
    49         button.attr('disabled','disabled');
     49        button.prop('disabled', true);
    5050
    5151        /* Default POST values */
     
    7373            form.children().each( function() {
    7474                if ( jq.nodeName(this, "textarea") || jq.nodeName(this, "input") )
    75                     jq(this).attr( 'disabled', '' );
     75                    jq(this).prop( 'disabled', false );
    7676            });
    7777
     
    8080                form.prepend( response.substr( 2, response.length ) );
    8181                jq( 'form#' + form.attr('id') + ' div.error').hide().fadeIn( 200 );
    82                 button.attr("disabled", '');
     82                button.prop("disabled", false);
    8383            } else {
    8484                if ( 0 == jq("ul.activity-list").length ) {
     
    9595
    9696                /* Re-enable the submit button after 8 seconds. */
    97                 setTimeout( function() { button.attr("disabled", ''); }, 8000 );
     97                setTimeout( function() { button.prop("disabled", false); }, 8000 );
    9898            }
    9999        });
     
    301301
    302302            form.slideDown( 200 );
    303             jq.scrollTo( form, 500, { offset:-100, easing:'easeout' } );
     303            jq.scrollTo( form, 500, { offset:-100, easing:'easeOutQuad' } );
    304304            jq('#ac-form-' + ids[2] + ' textarea').focus();
    305305
     
    340340                if ( response[0] + response[1] == '-1' ) {
    341341                    form.append( response.substr( 2, response.length ) ).hide().fadeIn( 200 );
    342                     target.attr("disabled", '');
     342                    target.prop("disabled", false);
    343343                } else {
    344344                    form.fadeOut( 200,
     
    362362
    363363                    /* Re-enable the submit button after 5 seconds. */
    364                     setTimeout( function() { target.attr("disabled", ''); }, 5000 );
     364                    setTimeout( function() { target.prop("disabled", false); }, 5000 );
    365365                }
    366366            });
     
    613613        var friend_id = jq(this).val();
    614614
    615         if ( jq(this).attr('checked') == true )
     615        if ( jq(this).prop('checked') == true )
    616616            var friend_action = 'invite';
    617617        else
     
    665665            jq('.ajax-loader').toggle();
    666666            jq('#friend-list li#uid-' + friend_id).remove();
    667             jq('#invite-list input#f-' + friend_id).attr('checked', false);
     667            jq('#invite-list input#f-' + friend_id).prop('checked', false);
    668668        });
    669669
     
    825825        jq(this).removeClass('over');
    826826    });
    827        
     827
    828828    jq('body#bp-default table.zebra tbody tr:odd').addClass('alt');
    829829
     
    10551055
    10561056    if ( null != jq.cookie('bp-activity-filter') && jq('#activity-filter-select').length )
    1057         jq('#activity-filter-select select option[value=' + jq.cookie('bp-activity-filter') + ']').attr( 'selected', 'selected' );
     1057        jq('#activity-filter-select select option[value="' + jq.cookie('bp-activity-filter') + '"]').prop( 'selected', true );
    10581058
    10591059    /* Activity Tab Set */
     
    10701070    jq(objects).each( function(i) {
    10711071        if ( null != jq.cookie('bp-' + objects[i] + '-filter') && jq('li#' + objects[i] + '-order-select select').length )
    1072             jq('li#' + objects[i] + '-order-select select option[value=' + jq.cookie('bp-' + objects[i] + '-filter') + ']').attr( 'selected', 'selected' );
     1072            jq('li#' + objects[i] + '-order-select select option[value="' + jq.cookie('bp-' + objects[i] + '-filter') + '"]').prop( 'selected', true );
    10731073
    10741074        if ( null != jq.cookie('bp-' + objects[i] + '-scope') && jq('div.' + objects[i]).length ) {
     
    11031103    jq('div.item-list-tabs li#' + object + '-' + scope + ', div.item-list-tabs#object-nav li.current').addClass('selected');
    11041104    jq('div.item-list-tabs li.selected').addClass('loading');
    1105     jq('div.item-list-tabs select option[value=' + filter + ']').attr( 'selected', 'selected' );
     1105    jq('div.item-list-tabs select option[value="' + filter + '"]').prop( 'selected', true );
    11061106
    11071107    if ( 'friends' == object )
     
    11451145    jq('li#activity-' + scope + ', div.item-list-tabs li.current').addClass('selected');
    11461146    jq('div#object-nav.item-list-tabs li.selected, div.activity-type-tabs li.selected').addClass('loading');
    1147     jq('#activity-filter-select select option[value=' + filter + ']').attr( 'selected', 'selected' );
     1147    jq('#activity-filter-select select option[value="' + filter + '"]').prop( 'selected', true );
    11481148
    11491149    /* Reload the activity stream based on the selection */
     
    12511251/* ScrollTo plugin - just inline and minified */
    12521252;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
    1253 jQuery.extend({easing:{easein:function(x,t,b,c,d){return c*(t/=d)*t+b},easeinout:function(x,t,b,c,d){if(t<d/2)return 2*c*t*t/(d*d)+b;var ts=t-d/2;return-2*c*ts*ts/(d*d)+2*c*ts/d+c/2+b},easeout:function(x,t,b,c,d){return-c*t*t/(d*d)+2*c*t/d+b},expoin:function(x,t,b,c,d){var flip=1;if(c<0){flip*=-1;c*=-1}return flip*(Math.exp(Math.log(c)/d*t))+b},expoout:function(x,t,b,c,d){var flip=1;if(c<0){flip*=-1;c*=-1}return flip*(-Math.exp(-Math.log(c)/d*(t-d))+c+1)+b},expoinout:function(x,t,b,c,d){var flip=1;if(c<0){flip*=-1;c*=-1}if(t<d/2)return flip*(Math.exp(Math.log(c/2)/(d/2)*t))+b;return flip*(-Math.exp(-2*Math.log(c/2)/d*(t-d))+c+1)+b},bouncein:function(x,t,b,c,d){return c-jQuery.easing['bounceout'](x,d-t,0,c,d)+b},bounceout:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b}},bounceinout:function(x,t,b,c,d){if(t<d/2)return jQuery.easing['bouncein'](x,t*2,0,c,d)*.5+b;return jQuery.easing['bounceout'](x,t*2-d,0,c,d)*.5+c*.5+b},elasin:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b},elasout:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b},elasinout:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b},backin:function(x,t,b,c,d){var s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b},backout:function(x,t,b,c,d){var s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},backinout:function(x,t,b,c,d){var s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b},linear:function(x,t,b,c,d){return c*t/d+b}}});
     1253
     1254/* jQuery Easing Plugin, v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ */
     1255jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});
    12541256
    12551257/* jQuery Cookie plugin */
  • tags/1.2.9/bp-themes/bp-default/_inc/images/45pc_black.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • tags/1.2.9/bp-themes/bp-default/_inc/images/60pc_black.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • tags/1.2.9/bp-themes/bp-default/_inc/images/activity_arrow.gif

    • Property svn:mime-type changed from application/octet-stream to image/gif
  • tags/1.2.9/bp-themes/bp-default/_inc/images/admin-menu-arrow.gif

    • Property svn:mime-type changed from application/octet-stream to image/gif
  • tags/1.2.9/bp-themes/bp-default/_inc/images/ajax-loader.gif

    • Property svn:mime-type changed from application/octet-stream to image/gif
  • tags/1.2.9/bp-themes/bp-default/_inc/images/background.gif

    • Property svn:mime-type changed from application/octet-stream to image/gif
  • tags/1.2.9/bp-themes/bp-default/_inc/images/closed.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • tags/1.2.9/bp-themes/bp-default/_inc/images/default_header.jpg

    • Property svn:mime-type changed from application/octet-stream to image/jpeg
  • tags/1.2.9/bp-themes/bp-default/_inc/images/item_back.gif

    • Property svn:mime-type changed from application/octet-stream to image/gif
  • tags/1.2.9/bp-themes/bp-default/_inc/images/replyto_arrow.gif

    • Property svn:mime-type changed from application/octet-stream to image/gif
  • tags/1.2.9/bp-themes/bp-default/_inc/images/rss.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • tags/1.2.9/bp-themes/bp-default/_inc/images/sidebar_back.gif

    • Property svn:mime-type changed from application/octet-stream to image/gif
  • tags/1.2.9/bp-themes/bp-default/_inc/images/white-grad.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • tags/1.2.9/bp-themes/bp-default/_inc/options.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/activity/activity-loop.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/activity/entry.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/activity/index.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/activity/post-form.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/archive.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/attachment.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/blogs/blogs-loop.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/blogs/create.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/blogs/index.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/comments.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/footer.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/forums/forums-loop.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/forums/index.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/functions.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/create.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/groups-loop.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/index.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/activity.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/admin.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/forum.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/forum/edit.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/forum/topic.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/group-header.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/home.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/members.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/plugins.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/request-membership.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/groups/single/send-invites.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/header.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/index.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/links.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/index.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/members-loop.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/activity.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/activity/permalink.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/blogs.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/friends.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/friends/requests.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/groups.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/groups/invites.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/home.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/member-header.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/messages.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/messages/compose.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/messages/messages-loop.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/messages/notices-loop.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/messages/single.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/plugins.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/profile.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/profile/change-avatar.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/profile/edit.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/members/single/profile/profile-loop.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/page.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/registration/activate.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/registration/register.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/rtl.css

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/css
  • tags/1.2.9/bp-themes/bp-default/screenshot.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • tags/1.2.9/bp-themes/bp-default/search.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/searchform.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/sidebar.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/single.php

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/x-php
  • tags/1.2.9/bp-themes/bp-default/style.css

    • Property svn:eol-style set to native
    • Property svn:mime-type set to text/css
    r4619 r4619  
    33Theme URI: http://buddypress.org/extend/themes/
    44Description: The default theme for BuddyPress.
    5 Version: 1.2.7
     5Version: 1.2.9
    66Author: BuddyPress.org
    77Author URI: http://buddypress.org
Note: See TracChangeset for help on using the changeset viewer.