Skip to content

Commit

Permalink
Merge pull request #28 from smarterclayton/master
Browse files Browse the repository at this point in the history
Bug 915415 - Make plugins/themes default to wordpress defaults
  • Loading branch information
smarterclayton committed Mar 1, 2013
2 parents d08f530 + 0e82a81 commit d7aa7ae
Show file tree
Hide file tree
Showing 133 changed files with 15,460 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .openshift/action_hooks/build
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ if [ ! -d $OPENSHIFT_DATA_DIR/uploads ]; then
fi

if [ ! -d $OPENSHIFT_DATA_DIR/plugins ]; then
mkdir $OPENSHIFT_DATA_DIR/plugins
cp -r $OPENSHIFT_REPO_DIR/.openshift/plugins $OPENSHIFT_DATA_DIR/plugins
fi

if [ ! -d $OPENSHIFT_DATA_DIR/themes ]; then
mkdir $OPENSHIFT_DATA_DIR/themes
cp -r $OPENSHIFT_REPO_DIR/.openshift/themes $OPENSHIFT_DATA_DIR/themes
fi

# Add multisite upload dir
Expand All @@ -25,6 +25,3 @@ ln -sf $OPENSHIFT_DATA_DIR/blogs.dir $OPENSHIFT_REPO_DIR/php/wp-content/
ln -sf $OPENSHIFT_DATA_DIR/plugins $OPENSHIFT_REPO_DIR/php/wp-content/
ln -sf $OPENSHIFT_DATA_DIR/themes $OPENSHIFT_REPO_DIR/php/wp-content/
ln -sf $OPENSHIFT_DATA_DIR/uploads $OPENSHIFT_REPO_DIR/php/wp-content/

echo "<?php ?>" > $OPENSHIFT_DATA_DIR/plugins
echo "<?php ?>" > $OPENSHIFT_DATA_DIR/themes
2 changes: 0 additions & 2 deletions .openshift/action_hooks/pre_build
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
# available. Otherwise it will execute while your application is stopped
# before the build step. This script gets executed directly, so it
# could be python, php, ruby, etc.

echo "WordPress application credentials\n\tuser: admin\n\tpassword: OpenShiftAdmin\n" > ${OPENSHIFT_DATA_DIR}/CREDENTIALS
6 changes: 6 additions & 0 deletions .openshift/plugins/akismet/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Order Deny,Allow
Deny from all

<FilesMatch "^akismet\.(css|js)$">
Allow from all
</FilesMatch>
833 changes: 833 additions & 0 deletions .openshift/plugins/akismet/admin.php

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions .openshift/plugins/akismet/akismet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#submitted-on { position: relative; }
#the-comment-list .author .akismet-user-comment-count { display: inline; }
#the-comment-list .author a span { text-decoration: none; color: #999; }
#the-comment-list .remove_url { margin-left: 3px; color: #999; padding: 2px 3px 2px 0; }
#the-comment-list .remove_url:hover { color: #A7301F; font-weight: bold; padding: 2px 2px 2px 0; }
#dashboard_recent_comments .akismet-status { display: none; } /* never show the flagged by text on the dashboard */
.akismet-status { float: right; }
.akismet-status a { color: #AAA; font-style: italic; }
span.comment-link a { text-decoration: underline; }
span.comment-link:after { content: " " attr(title) " "; color: #aaa; text-decoration: none; }
.mshot-arrow { width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-right:10px solid #5C5C5C; position: absolute; left: -6px; top: 91px; }
.mshot-container { background: #5C5C5C; position: absolute; top: -94px; padding: 7px; width: 450px; height: 338px; z-index: 20000; -moz-border-radius:6px; border-radius:6px; -webkit-border-radius:6px; }
Binary file added .openshift/plugins/akismet/akismet.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
114 changes: 114 additions & 0 deletions .openshift/plugins/akismet/akismet.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
jQuery(document).ready(function () {
jQuery('.akismet-status').each(function () {
var thisId = jQuery(this).attr('commentid');
jQuery(this).prependTo('#comment-' + thisId + ' .column-comment div:first-child');
});
jQuery('.akismet-user-comment-count').each(function () {
var thisId = jQuery(this).attr('commentid');
jQuery(this).insertAfter('#comment-' + thisId + ' .author strong:first').show();
});
jQuery('#the-comment-list tr.comment .column-author a[title ^= "http://"]').each(function () {
var thisTitle = jQuery(this).attr('title');
thisCommentId = jQuery(this).parents('tr:first').attr('id').split("-");

jQuery(this).attr("id", "author_comment_url_"+ thisCommentId[1]);

if (thisTitle) {
jQuery(this).after(' <a href="#" class="remove_url" commentid="'+ thisCommentId[1] +'" title="Remove this URL">x</a>');
}
});
jQuery('.remove_url').live('click', function () {
var thisId = jQuery(this).attr('commentid');
var data = {
action: 'comment_author_deurl',
_wpnonce: WPAkismet.comment_author_url_nonce,
id: thisId
};
jQuery.ajax({
url: ajaxurl,
type: 'POST',
data: data,
beforeSend: function () {
// Removes "x" link
jQuery("a[commentid='"+ thisId +"']").hide();
// Show temp status
jQuery("#author_comment_url_"+ thisId).html('<span>Removing...</span>');
},
success: function (response) {
if (response) {
// Show status/undo link
jQuery("#author_comment_url_"+ thisId).attr('cid', thisId).addClass('akismet_undo_link_removal').html('<span>URL removed (</span>undo<span>)</span>');
}
}
});

return false;
});
jQuery('.akismet_undo_link_removal').live('click', function () {
var thisId = jQuery(this).attr('cid');
var thisUrl = jQuery(this).attr('href').replace("http://www.", "").replace("http://", "");
var data = {
action: 'comment_author_reurl',
_wpnonce: WPAkismet.comment_author_url_nonce,
id: thisId,
url: thisUrl
};
jQuery.ajax({
url: ajaxurl,
type: 'POST',
data: data,
beforeSend: function () {
// Show temp status
jQuery("#author_comment_url_"+ thisId).html('<span>Re-adding…</span>');
},
success: function (response) {
if (response) {
// Add "x" link
jQuery("a[commentid='"+ thisId +"']").show();
// Show link
jQuery("#author_comment_url_"+ thisId).removeClass('akismet_undo_link_removal').html(thisUrl);
}
}
});

return false;
});
jQuery('a[id^="author_comment_url"]').mouseover(function () {
var wpcomProtocol = ( 'https:' === location.protocol ) ? 'https://' : 'http://';
// Need to determine size of author column
var thisParentWidth = jQuery(this).parent().width();
// It changes based on if there is a gravatar present
thisParentWidth = (jQuery(this).parent().find('.grav-hijack').length) ? thisParentWidth - 42 + 'px' : thisParentWidth + 'px';
if (jQuery(this).find('.mShot').length == 0 && !jQuery(this).hasClass('akismet_undo_link_removal')) {
var thisId = jQuery(this).attr('id').replace('author_comment_url_', '');
jQuery('.widefat td').css('overflow', 'visible');
jQuery(this).css('position', 'relative');
var thisHref = jQuery.URLEncode(jQuery(this).attr('href'));
jQuery(this).append('<div class="mShot mshot-container" style="left: '+thisParentWidth+'"><div class="mshot-arrow"></div><img src="'+wpcomProtocol+'s0.wordpress.com/mshots/v1/'+thisHref+'?w=450" width="450" class="mshot-image_'+thisId+'" style="margin: 0;" /></div>');
setTimeout(function () {
jQuery('.mshot-image_'+thisId).attr('src', wpcomProtocol+'s0.wordpress.com/mshots/v1/'+thisHref+'?w=450&r=2');
}, 6000);
setTimeout(function () {
jQuery('.mshot-image_'+thisId).attr('src', wpcomProtocol+'s0.wordpress.com/mshots/v1/'+thisHref+'?w=450&r=3');
}, 12000);
} else {
jQuery(this).find('.mShot').css('left', thisParentWidth).show();
}
}).mouseout(function () {
jQuery(this).find('.mShot').hide();
});
});
// URL encode plugin
jQuery.extend({URLEncode:function(c){var o='';var x=0;c=c.toString();var r=/(^[a-zA-Z0-9_.]*)/;
while(x<c.length){var m=r.exec(c.substr(x));
if(m!=null && m.length>1 && m[1]!=''){o+=m[1];x+=m[1].length;
}else{if(c[x]==' ')o+='+';else{var d=c.charCodeAt(x);var h=d.toString(16);
o+='%'+(h.length<2?'0':'')+h.toUpperCase();}x++;}}return o;}
});
// Preload mshot images after everything else has loaded
jQuery(window).load(function() {
var wpcomProtocol = ( 'https:' === location.protocol ) ? 'https://' : 'http://';
jQuery('a[id^="author_comment_url"]').each(function () {
jQuery.get(wpcomProtocol+'s0.wordpress.com/mshots/v1/'+jQuery.URLEncode(jQuery(this).attr('href'))+'?w=450');
});
});
Loading

0 comments on commit d7aa7ae

Please sign in to comment.