diff --git a/rhodecode/templates/changelog/changelog.html b/rhodecode/templates/changelog/changelog.html
--- a/rhodecode/templates/changelog/changelog.html
+++ b/rhodecode/templates/changelog/changelog.html
@@ -64,7 +64,6 @@ ${self.context_bar('changelog')}
- ${cs.revision} :
${h.short_id(cs.raw_id)}
|
@@ -101,105 +100,9 @@ ${self.context_bar('changelog')}
${h.link_to(h.shorter(cs.branch),h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
%endif
-
- <%doc>
- %if (h.is_hg(c.rhodecode_repo) and cs.bookmarks) or cs.tags:
-
- %if h.is_hg(c.rhodecode_repo):
-
- %endif
-
-
- %endif
- %doc>
- <%doc>
-
-
-
- ${len(cs.affected_files)}
-
-
-
- %if c.statuses.get(cs.raw_id):
- ${c.statuses.get(cs.raw_id)[1]}
-
- %if c.statuses.get(cs.raw_id)[2]:
- [0])})
- %else:
- [0])})
- %endif
-
- %endif
-
-
- %if cs.parents:
- %for p_cs in reversed(cs.parents):
- ${_('Parent')}
- ${p_cs.revision}:${h.link_to(h.short_id(p_cs.raw_id),
- h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
-
- %endfor
- %else:
- ${_('No parents')}
- %endif
- %if len(c.comments.get(cs.raw_id,[])) > 0:
-
- %endif
- %if (h.is_hg(c.rhodecode_repo) and cs.bookmarks) or cs.tags:
-
- %if h.is_hg(c.rhodecode_repo):
-
- %endif
-
-
- %endif
- |
- %doc>
%endfor
@@ -221,7 +124,7 @@ ${self.context_bar('changelog')}
var checkboxes = YUD.getElementsByClassName('changeset_range');
var url_tmpl = "${h.url('changeset_home',repo_name=c.repo_name,revision='__REVRANGE__')}";
var pr_tmpl = "${h.url('pullrequest_home',repo_name=c.repo_name)}";
-
+
var checkbox_checker = function(e){
var clicked_cb = e.currentTarget;
var checked_checkboxes = [];
@@ -302,14 +205,6 @@ ${self.context_bar('changelog')}
});
- // Fetch changeset details
- YUE.on(YUD.getElementsByClassName('changed_total'),'click',function(e){
- var id = e.currentTarget.id;
- var url = "${h.url('changelog_details',repo_name=c.repo_name,cs='__CS__')}";
- var url = url.replace('__CS__',id.replace('changed_total_',''));
- ypjax(url,id,function(){tooltip_activate()});
- });
-
// change branch filter
YUE.on(YUD.get('branch_filter'),'change',function(e){
var selected_branch = e.currentTarget.options[e.currentTarget.selectedIndex].value;