diff --git a/rhodecode/templates/changeset/changeset.html b/rhodecode/templates/changeset/changeset.html --- a/rhodecode/templates/changeset/changeset.html +++ b/rhodecode/templates/changeset/changeset.html @@ -27,15 +27,15 @@
-
${c.changeset.revision}: - ${h.link_to(h.short_id(c.changeset.raw_id),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id))} +
+ R${c.changeset.revision}:${h.link_to(h.short_id(c.changeset.raw_id),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id))} ${c.changeset.date}
- - - +
+ + ${c.ignorews_url()} ${c.context_url()} - +
${len(c.comments)} comment(s) (${c.inline_cnt} ${_('inline')})
@@ -49,7 +49,7 @@ ${h.person(c.changeset.author)}
${h.email_or_none(c.changeset.author)}
-
${h.urlify_commit(h.wrap_paragraphs(c.changeset.message))}
+
${h.urlify_commit(h.wrap_paragraphs(c.changeset.message),c.repo_name)}
@@ -138,15 +138,11 @@ YUE.on(YUQ('.show-inline-comments'),'change',function(e){ var show = 'none'; var target = e.currentTarget; - console.log(target); if(target.checked){ var show = '' } - console.log('aa') var boxid = YUD.getAttribute(target,'id_for'); - console.log(boxid); var comments = YUQ('#{0} .inline-comments'.format(boxid)); - console.log(comments) for(c in comments){ YUD.setStyle(comments[c],'display',show); }