Update links to commits
This commit is contained in:
parent
14c9723724
commit
cbce4528d0
3 changed files with 14 additions and 16 deletions
|
@ -2,16 +2,15 @@
|
||||||
.browse_code_link_holder
|
.browse_code_link_holder
|
||||||
%p
|
%p
|
||||||
%strong= link_to "Browse Code »", tree_project_ref_path(@project, commit.id), :class => "right"
|
%strong= link_to "Browse Code »", tree_project_ref_path(@project, commit.id), :class => "right"
|
||||||
= link_to project_commit_path(@project, :id => commit.id) do
|
%p
|
||||||
%p
|
%code.left= link_to commit.short_id, project_commit_path(@project, :id => commit.id)
|
||||||
%code.left= commit.short_id
|
%strong.cgray= commit.author_name
|
||||||
%strong.cgray= commit.author_name
|
–
|
||||||
–
|
= image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
|
||||||
= image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
|
= link_to truncate(commit.title, :length => 50), project_commit_path(@project, :id => commit.id), :class => "row_title"
|
||||||
%span.row_title= truncate(commit.title, :length => 50)
|
|
||||||
|
|
||||||
%span.committed_ago
|
%span.committed_ago
|
||||||
= time_ago_in_words(commit.committed_date)
|
= time_ago_in_words(commit.committed_date)
|
||||||
ago
|
ago
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
%li.wll.commit
|
%li.wll.commit
|
||||||
= link_to project_commit_path(project, :id => commit.id) do
|
= link_to project_commit_path(project, :id => commit.id) do
|
||||||
%p
|
%p
|
||||||
%code.left= commit.short_id
|
%code.left= link_to commit.short_id, project_commit_path(project, :id => commit.id)
|
||||||
%strong.cgray= commit.author_name
|
%strong.cgray= commit.author_name
|
||||||
–
|
–
|
||||||
= image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
|
= image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
|
||||||
%span.row_title= truncate(commit.title, :length => 50) rescue "--broken encoding"
|
= link_to truncate(commit.title, :length => 50), project_commit_path(project, :id => commit.id), :class => "row_title" rescue "--broken encoding"
|
||||||
|
|
||||||
|
|
|
@ -32,9 +32,8 @@
|
||||||
= commit.author_name
|
= commit.author_name
|
||||||
%td.blame_commit
|
%td.blame_commit
|
||||||
|
|
||||||
= link_to project_commit_path(@project, :id => commit.id) do
|
%code= link_to commit.short_id, project_commit_path(@project, :id => commit.id)
|
||||||
%code= commit.short_id
|
= link_to truncate(commit.title, :length => 30), project_commit_path(@project, :id => commit.id), :class => "row_title" rescue "--broken encoding"
|
||||||
%span.row_title= truncate(commit.title, :length => 30) rescue "--broken encoding"
|
|
||||||
%td.lines
|
%td.lines
|
||||||
= preserve do
|
= preserve do
|
||||||
%pre
|
%pre
|
||||||
|
|
Loading…
Reference in a new issue