diff options
author | Georg Brandl <georg@python.org> | 2010-11-21 20:47:32 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-21 20:47:32 +0100 |
commit | f9705fc5b7bbfb30870751da40c5f59218d77859 (patch) | |
tree | b221bdd10710a29ff57381087a41a865dad55d87 /sphinx/themes/basic/static/websupport.js | |
parent | 6d6f7997101df6ff65a9a3f7c5e053b9111feed2 (diff) | |
download | sphinx-git-f9705fc5b7bbfb30870751da40c5f59218d77859.tar.gz |
Remove comment rejection; delete is fine for that now.
Diffstat (limited to 'sphinx/themes/basic/static/websupport.js')
-rw-r--r-- | sphinx/themes/basic/static/websupport.js | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/sphinx/themes/basic/static/websupport.js b/sphinx/themes/basic/static/websupport.js index 198795f00..bf8a85d58 100644 --- a/sphinx/themes/basic/static/websupport.js +++ b/sphinx/themes/basic/static/websupport.js @@ -90,10 +90,6 @@ acceptComment($(this).attr('id').substring(2)); return false; }); - $('a.reject-comment').live("click", function() { - rejectComment($(this).attr('id').substring(2)); - return false; - }); $('a.delete-comment').live("click", function() { deleteComment($(this).attr('id').substring(2)); return false; @@ -334,23 +330,6 @@ }); } - function rejectComment(id) { - $.ajax({ - type: 'POST', - url: opts.rejectCommentURL, - data: {id: id}, - success: function(data, textStatus, request) { - var div = $('#cd' + id); - div.slideUp('fast', function() { - div.remove(); - }); - }, - error: function(request, textStatus, error) { - showError('Oops, there was a problem rejecting the comment.'); - } - }); - } - function deleteComment(id) { $.ajax({ type: 'POST', @@ -568,7 +547,7 @@ /** Create a div to display a comment in. */ function createCommentDiv(comment) { - if (!comment.displayed) { + if (!comment.displayed && !opts.moderator) { return $('<div>Thank you! Your comment will show up once it is has ' + ' been approved by a moderator.</div>'); } @@ -579,7 +558,7 @@ var context = $.extend({}, opts, comment); var div = $(renderTemplate(commentTemplate, context)); - // If the user has voted on this comment, highlight the correct arrow. + // If the user has voted on this comment, highblight the correct arrow. if (comment.vote) { var direction = (comment.vote == 1) ? 'u' : 'd'; div.find('#' + direction + 'v' + comment.id).hide(); @@ -679,7 +658,6 @@ addCommentURL: '/_add_comment', getCommentsURL: '/_get_comments', acceptCommentURL: '/_accept_comment', - rejectCommentURL: '/_reject_comment', deleteCommentURL: '/_delete_comment', commentImage: '/static/_static/comment.png', closeCommentImage: '/static/_static/comment-close.png', @@ -770,7 +748,6 @@ <a href="#" id="dc<%id%>" class="delete-comment hidden">delete</a>\ <span id="cm<%id%>" class="moderation hidden">\ <a href="#" id="ac<%id%>" class="accept-comment">accept</a>\ - <a href="#" id="rc<%id%>" class="reject-comment">reject</a>\ </span>\ </p>\ <pre class="proposal" id="pr<%id%>">\ |