diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -1479,6 +1479,10 @@ padding:5px !important; border:1px solid #CCC; padding:5px; } +#changeset_compare_view_content{ +border:1px solid #CCC; +padding:5px; +} #changeset_content .container { min-height:120px; @@ -1486,6 +1490,14 @@ font-size:1.2em; overflow:hidden; } +#changeset_compare_view_content .compare_view_commits{ +width: auto !important; +} + +#changeset_compare_view_content .compare_view_commits td{ +padding:0px 0px 0px 12px !important; +} + #changeset_content .container .right { float:right; width:25%; diff --git a/rhodecode/templates/changeset/changeset_range.html b/rhodecode/templates/changeset/changeset_range.html --- a/rhodecode/templates/changeset/changeset_range.html +++ b/rhodecode/templates/changeset/changeset_range.html @@ -27,6 +27,7 @@
${_('Changesets')} - r${c.cs_ranges[0].revision}:${h.short_id(c.cs_ranges[0].raw_id)} -> r${c.cs_ranges[-1].revision}:${h.short_id(c.cs_ranges[-1].raw_id)} +

${_('Compare View')}

##» ${h.link_to(_('raw diff'), ##h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='show'))} ##» ${h.link_to(_('download diff'), @@ -34,11 +35,21 @@
-
+
- + + %for cs in c.cs_ranges: + + + + + + + + %endfor +
gravatar
${h.link_to('r%s:%s' % (cs.revision,h.short_id(cs.raw_id)),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
${h.person(cs.author)}
${cs.date}
${h.link_to(h.wrap_paragraphs(cs.message),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
- ${_('Files affected')} +
${_('Files affected')}
%for cs in c.cs_ranges:
r${cs}