Changes from tags/1.2.8/bp-themes at r4619 to tags/1.2.9/bp-themes at r4619
- 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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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 22 22 if ( jq.query.get('r') ) { 23 23 if ( jq('textarea#whats-new').length ) { 24 jq.scrollTo( jq('textarea#whats-new'), 500, { offset:-125, easing:'ease out' } );24 jq.scrollTo( jq('textarea#whats-new'), 500, { offset:-125, easing:'easeOutQuad' } ); 25 25 jq('textarea#whats-new').focus(); 26 26 } … … 40 40 form.children().each( function() { 41 41 if ( jq.nodeName(this, "textarea") || jq.nodeName(this, "input") ) 42 jq(this). attr( 'disabled', 'disabled');42 jq(this).prop( 'disabled', true ); 43 43 }); 44 44 … … 47 47 /* Remove any errors */ 48 48 jq('div.error').remove(); 49 button. attr('disabled','disabled');49 button.prop('disabled', true); 50 50 51 51 /* Default POST values */ … … 73 73 form.children().each( function() { 74 74 if ( jq.nodeName(this, "textarea") || jq.nodeName(this, "input") ) 75 jq(this). attr( 'disabled', '');75 jq(this).prop( 'disabled', false ); 76 76 }); 77 77 … … 80 80 form.prepend( response.substr( 2, response.length ) ); 81 81 jq( 'form#' + form.attr('id') + ' div.error').hide().fadeIn( 200 ); 82 button. attr("disabled", '');82 button.prop("disabled", false); 83 83 } else { 84 84 if ( 0 == jq("ul.activity-list").length ) { … … 95 95 96 96 /* Re-enable the submit button after 8 seconds. */ 97 setTimeout( function() { button. attr("disabled", ''); }, 8000 );97 setTimeout( function() { button.prop("disabled", false); }, 8000 ); 98 98 } 99 99 }); … … 301 301 302 302 form.slideDown( 200 ); 303 jq.scrollTo( form, 500, { offset:-100, easing:'ease out' } );303 jq.scrollTo( form, 500, { offset:-100, easing:'easeOutQuad' } ); 304 304 jq('#ac-form-' + ids[2] + ' textarea').focus(); 305 305 … … 340 340 if ( response[0] + response[1] == '-1' ) { 341 341 form.append( response.substr( 2, response.length ) ).hide().fadeIn( 200 ); 342 target. attr("disabled", '');342 target.prop("disabled", false); 343 343 } else { 344 344 form.fadeOut( 200, … … 362 362 363 363 /* Re-enable the submit button after 5 seconds. */ 364 setTimeout( function() { target. attr("disabled", ''); }, 5000 );364 setTimeout( function() { target.prop("disabled", false); }, 5000 ); 365 365 } 366 366 }); … … 613 613 var friend_id = jq(this).val(); 614 614 615 if ( jq(this). attr('checked') == true )615 if ( jq(this).prop('checked') == true ) 616 616 var friend_action = 'invite'; 617 617 else … … 665 665 jq('.ajax-loader').toggle(); 666 666 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); 668 668 }); 669 669 … … 825 825 jq(this).removeClass('over'); 826 826 }); 827 827 828 828 jq('body#bp-default table.zebra tbody tr:odd').addClass('alt'); 829 829 … … 1055 1055 1056 1056 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 ); 1058 1058 1059 1059 /* Activity Tab Set */ … … 1070 1070 jq(objects).each( function(i) { 1071 1071 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 ); 1073 1073 1074 1074 if ( null != jq.cookie('bp-' + objects[i] + '-scope') && jq('div.' + objects[i]).length ) { … … 1103 1103 jq('div.item-list-tabs li#' + object + '-' + scope + ', div.item-list-tabs#object-nav li.current').addClass('selected'); 1104 1104 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 ); 1106 1106 1107 1107 if ( 'friends' == object ) … … 1145 1145 jq('li#activity-' + scope + ', div.item-list-tabs li.current').addClass('selected'); 1146 1146 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 ); 1148 1148 1149 1149 /* Reload the activity stream based on the selection */ … … 1251 1251 /* ScrollTo plugin - just inline and minified */ 1252 1252 ;(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/ */ 1255 jQuery.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}}); 1254 1256 1255 1257 /* jQuery Cookie plugin */ -
Property
svn:eol-style
set to
-
tags/1.2.9/bp-themes/bp-default/_inc/images/45pc_black.png
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/60pc_black.png
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/activity_arrow.gif
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/gif
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/admin-menu-arrow.gif
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/gif
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/ajax-loader.gif
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/gif
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/background.gif
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/gif
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/closed.png
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/default_header.jpg
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/jpeg
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/item_back.gif
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/gif
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/replyto_arrow.gif
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/gif
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/rss.png
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/sidebar_back.gif
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/gif
-
Property
svn:mime-type
changed from
-
tags/1.2.9/bp-themes/bp-default/_inc/images/white-grad.png
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property
svn:mime-type
changed from
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
tags/1.2.9/bp-themes/bp-default/screenshot.png
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/png
-
Property
svn:mime-type
changed from
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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
-
Property
svn:eol-style
set to
-
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 3 3 Theme URI: http://buddypress.org/extend/themes/ 4 4 Description: The default theme for BuddyPress. 5 Version: 1.2. 75 Version: 1.2.9 6 6 Author: BuddyPress.org 7 7 Author URI: http://buddypress.org -
Property
svn:eol-style
set to
Note: See TracChangeset
for help on using the changeset viewer.