changeset_file_comment.html
176 lines
| 7.0 KiB
| text/html
|
HtmlLexer
r1888 | ## -*- coding: utf-8 -*- | |||
## usage: | ||||
## <%namespace name="comment" file="/changeset/changeset_file_comment.html"/> | ||||
## ${comment.comment_block(co)} | ||||
## | ||||
<%def name="comment_block(co)"> | ||||
r2187 | <div class="comment" id="comment-${co.comment_id}" line="${co.line_no}"> | |||
r1888 | <div class="comment-wrapp"> | |||
<div class="meta"> | ||||
r2286 | <div style="float:left"> <img src="${h.gravatar_url(co.author.email, 20)}" /> </div> | |||
<div class="user"> | ||||
r1888 | ${co.author.username} | |||
r2286 | </div> | |||
<div class="date"> | ||||
r2990 | ${h.age(co.modified_at)} <a class="permalink" href="#comment-${co.comment_id}">¶</a> | |||
r2286 | </div> | |||
%if co.status_change: | ||||
<div style="float:left" class="changeset-status-container"> | ||||
<div style="float:left;padding:0px 2px 0px 2px"><span style="font-size: 18px;">›</span></div> | ||||
r2677 | <div title="${_('Changeset status')}" class="changeset-status-lbl"> ${co.status_change[0].status_lbl}</div> | |||
<div class="changeset-status-ico"><img src="${h.url(str('/images/icons/flag_status_%s.png' % co.status_change[0].status))}" /></div> | ||||
r2286 | </div> | |||
r2478 | %endif | |||
r1888 | %if h.HasPermissionAny('hg.admin', 'repository.admin')() or co.author.user_id == c.rhodecode_user.user_id: | |||
r2286 | <div class="buttons"> | |||
r1888 | <span onClick="deleteComment(${co.comment_id})" class="delete-comment ui-btn">${_('Delete')}</span> | |||
r2286 | </div> | |||
r1888 | %endif | |||
</div> | ||||
<div class="text"> | ||||
${h.rst_w_mentions(co.text)|n} | ||||
</div> | ||||
</div> | ||||
</div> | ||||
</%def> | ||||
r2489 | <%def name="comment_inline_form()"> | |||
r1888 | <div id='comment-inline-form-template' style="display:none"> | |||
r2369 | <div class="comment-inline-form ac"> | |||
r1888 | %if c.rhodecode_user.username != 'default': | |||
r2187 | <div class="overlay"><div class="overlay-text">${_('Submitting...')}</div></div> | |||
r2489 | ${h.form('#', class_='inline-form')} | |||
r1888 | <div class="clearfix"> | |||
Vincent Duvert
|
r2307 | <div class="comment-help">${_('Commenting on line {1}.')} | ||
r2427 | ${(_('Comments parsed using %s syntax with %s support.') % ( | |||
('<a href="%s">RST</a>' % h.url('rst_help')), | ||||
('<span style="color:#003367" class="tooltip" title="%s">@mention</span>' % _('Use @username inside this text to send notification to this RhodeCode user')) | ||||
) | ||||
)|n | ||||
} | ||||
r2368 | </div> | |||
<div class="mentions-container" id="mentions_container_{1}"></div> | ||||
r2369 | <textarea id="text_{1}" name="text" class="yui-ac-input"></textarea> | |||
r1888 | </div> | |||
<div class="comment-button"> | ||||
<input type="hidden" name="f_path" value="{0}"> | ||||
<input type="hidden" name="line" value="{1}"> | ||||
r2187 | ${h.submit('save', _('Comment'), class_='ui-btn save-inline-form')} | |||
r1888 | ${h.reset('hide-inline-form', _('Hide'), class_='ui-btn hide-inline-form')} | |||
</div> | ||||
${h.end_form()} | ||||
%else: | ||||
${h.form('')} | ||||
<div class="clearfix"> | ||||
<div class="comment-help"> | ||||
Vincent Duvert
|
r2302 | ${_('You need to be logged in to comment.')} <a href="${h.url('login_home',came_from=h.url.current())}">${_('Login now')}</a> | ||
r1888 | </div> | |||
</div> | ||||
<div class="comment-button"> | ||||
${h.reset('hide-inline-form', _('Hide'), class_='ui-btn hide-inline-form')} | ||||
</div> | ||||
${h.end_form()} | ||||
%endif | ||||
</div> | ||||
</div> | ||||
</%def> | ||||
r2439 | ## generates inlines taken from c.comments var | |||
<%def name="inlines()"> | ||||
Vincent Duvert
|
r2310 | <div class="comments-number">${ungettext("%d comment", "%d comments", len(c.comments)) % len(c.comments)} ${ungettext("(%d inline)", "(%d inline)", c.inline_cnt) % c.inline_cnt}</div> | ||
r1888 | %for path, lines in c.inline_comments: | |||
% for line,comments in lines.iteritems(): | ||||
r2187 | <div style="display:none" class="inline-comment-placeholder" path="${path}" target_id="${h.safeid(h.safe_unicode(path))}"> | |||
r1888 | %for co in comments: | |||
${comment_block(co)} | ||||
%endfor | ||||
</div> | ||||
%endfor | ||||
%endfor | ||||
r2188 | ||||
r2187 | </%def> | |||
r1888 | ||||
r2608 | ## generate inline comments and the main ones | |||
<%def name="generate_comments()"> | ||||
r2187 | <div class="comments"> | |||
<div id="inline-comments-container"> | ||||
r2439 | ## generate inlines for this changeset | |||
${inlines()} | ||||
r2187 | </div> | |||
r2188 | ||||
r1888 | %for co in c.comments: | |||
r2189 | <div id="comment-tr-${co.comment_id}"> | |||
${comment_block(co)} | ||||
</div> | ||||
r1888 | %endfor | |||
r2673 | </div> | |||
r2608 | </%def> | |||
## MAIN COMMENT FORM | ||||
r3104 | <%def name="comments(post_url, cur_status, close_btn=False, change_status=True)"> | |||
r2608 | ||||
<div class="comments"> | ||||
r1888 | %if c.rhodecode_user.username != 'default': | |||
r2368 | <div class="comment-form ac"> | |||
r2439 | ${h.form(post_url)} | |||
r1888 | <strong>${_('Leave a comment')}</strong> | |||
<div class="clearfix"> | ||||
<div class="comment-help"> | ||||
Vincent Duvert
|
r2307 | ${(_('Comments parsed using %s syntax with %s support.') % (('<a href="%s">RST</a>' % h.url('rst_help')), | ||
'<span style="color:#003367" class="tooltip" title="%s">@mention</span>' % | ||||
_('Use @username inside this text to send notification to this RhodeCode user')))|n} | ||||
r3104 | %if change_status: | |||
r2482 | | <label for="show_changeset_status_box" class="tooltip" title="${_('Check this to change current status of code-review for this changeset')}"> ${_('change status')}</label> | |||
r2217 | <input style="vertical-align: bottom;margin-bottom:-2px" id="show_changeset_status_box" type="checkbox" name="change_changeset_status" /> | |||
r3104 | %endif | |||
r1888 | </div> | |||
r3104 | %if change_status: | |||
r2217 | <div id="status_block_container" class="status-block" style="display:none"> | |||
%for status,lbl in c.changeset_statuses: | ||||
<div class=""> | ||||
r3103 | <img src="${h.url('/images/icons/flag_status_%s.png' % status)}" /> <input ${'checked="checked"' if status == cur_status else ''}" type="radio" class="status_change_radio" name="changeset_status" id="${status}" value="${status}"> | |||
r3102 | <label for="${status}">${lbl}</label> | |||
r2478 | </div> | |||
r2217 | %endfor | |||
r2478 | </div> | |||
r3104 | %endif | |||
r2391 | <div class="mentions-container" id="mentions_container"></div> | |||
${h.textarea('text')} | ||||
r1888 | </div> | |||
<div class="comment-button"> | ||||
r2608 | ${h.submit('save', _('Comment'), class_="ui-btn large")} | |||
r3104 | %if close_btn and change_status: | |||
${h.submit('save_close', _('Comment and close'), class_='ui-btn blue large %s' % ('hidden' if cur_status in ['not_reviewed','under_review'] else ''))} | ||||
r2608 | %endif | |||
r1888 | </div> | |||
${h.end_form()} | ||||
</div> | ||||
%endif | ||||
</div> | ||||
r2368 | <script> | |||
YUE.onDOMReady(function () { | ||||
r2369 | MentionsAutoComplete('text', 'mentions_container', _USERS_AC_DATA, _GROUPS_AC_DATA); | |||
r2478 | ||||
r2439 | // changeset status box listener | |||
YUE.on(YUD.get('show_changeset_status_box'),'change',function(e){ | ||||
if(e.currentTarget.checked){ | ||||
r2478 | YUD.setStyle('status_block_container','display',''); | |||
r2439 | } | |||
else{ | ||||
YUD.setStyle('status_block_container','display','none'); | ||||
} | ||||
}) | ||||
r3103 | YUE.on(YUQ('.status_change_radio'), 'change',function(e){ | |||
var val = e.currentTarget.value; | ||||
if (val == 'approved' || val == 'rejected') { | ||||
YUD.removeClass('save_close', 'hidden'); | ||||
}else{ | ||||
YUD.addClass('save_close', 'hidden'); | ||||
} | ||||
}) | ||||
r2478 | ||||
r2368 | }); | |||
</script> | ||||
r1888 | </%def> | |||