Commit 788de6f1 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Better commit show page

parent 7d56a51b
...@@ -1011,23 +1011,37 @@ p.time { ...@@ -1011,23 +1011,37 @@ p.time {
} }
.issue_box, .issue_box,
.commit_box,
.merge_request_box{ .merge_request_box{
@extend .padded; @extend .padded;
@extend .borders; @extend .borders;
@extend .prepend-top-20; @extend .prepend-top-20;
@extend .append-bottom-20; @extend .append-bottom-20;
border-width:2px;
img { max-width: 100%; } img { max-width: 100%; }
pre { pre {
background: white !important;
code { code {
background: none !important; background: none !important;
} }
} }
} }
.commit_box {
.commit_message {
margin: -20px;
padding: 20px;
margin-top:10px;
border-radius:0;
border:none;
font-size:12px;
background-color:#f5f5f5;
border:none;
border-top:1px solid #eee;
}
}
.highlight_word { .highlight_word {
background:#EEDC94; background:#EEDC94;
} }
......
...@@ -32,6 +32,8 @@ class CommitsController < ApplicationController ...@@ -32,6 +32,8 @@ class CommitsController < ApplicationController
@note = @project.build_commit_note(@commit) @note = @project.build_commit_note(@commit)
@comments_allowed = true @comments_allowed = true
@line_notes = project.commit_line_notes(@commit) @line_notes = project.commit_line_notes(@commit)
@notes_count = @line_notes.count + project.commit_notes(@commit).count
end end
def compare def compare
......
.commit .commit_box
= link_to tree_project_ref_path(@project, @commit.id), :class => "btn right small" do .commit
.right
- unless @notes_count.zero?
%span.btn.small.disabled.padded= pluralize @notes_count, 'note'
= link_to tree_project_ref_path(@project, @commit.id), :class => "btn small" do
Browse Code » Browse Code »
= image_tag gravatar_icon(@commit.author_email), :class => "avatar" = image_tag gravatar_icon(@commit.author_email), :class => "avatar"
%code= @commit.id.to_s %code= @commit.id.to_s
...@@ -12,12 +17,9 @@ ...@@ -12,12 +17,9 @@
= @commit.committer_name = @commit.committer_name
%small= @commit.committed_date.stamp("Aug 21, 2011 9:23pm") %small= @commit.committed_date.stamp("Aug 21, 2011 9:23pm")
%br %pre.commit_message
%pre.commit_message.prettyprint
= commit_msg_with_link_to_issues(@project, @commit.safe_message) = commit_msg_with_link_to_issues(@project, @commit.safe_message)
.clear
%br %br
%p.cgray %p.cgray
Showing #{pluralize(@commit.diffs.count, "changed file")} Showing #{pluralize(@commit.diffs.count, "changed file")}
= render "commits/diffs", :diffs => @commit.diffs = render "commits/diffs", :diffs => @commit.diffs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment