gitlabhq/app/views/refs/_tree_item.html.haml

19 lines
960 B
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
- file = params[:path] ? File.join(params[:path], content.name) : content.name
2011-11-27 16:35:49 +01:00
- content_commit = @project.commits(@commit.id, file, 1).last
2011-10-08 23:36:38 +02:00
- return unless content_commit
2011-11-16 06:38:53 +01:00
%tr{ :class => "tree-item", :url => tree_file_project_ref_path(@project, @ref, file) }
2011-10-08 23:36:38 +02:00
%td.tree-item-file-name
- if content.is_a?(Grit::Blob)
= image_tag "txt.png"
- else
= image_tag "dir.png"
2011-11-16 06:38:53 +01:00
= link_to truncate(content.name, :length => 40), tree_file_project_ref_path(@project, @ref || @commit.id, file), :remote => :true
%td.cgray
2011-10-08 23:36:38 +02:00
= time_ago_in_words(content_commit.committed_date)
ago
2011-11-06 21:21:48 +01:00
%td.commit
2011-11-06 21:38:08 +01:00
- tm = @project.team_member_by_name_or_email(content_commit.author_email, content_commit.author_name)
- if tm
= link_to "[#{tm.user_name}]", project_team_member_path(@project, tm)
2012-02-14 22:48:42 +01:00
= link_to truncate(content_commit.safe_message, :length => tm ? 30 : 50), project_commit_path(@project, content_commit.id), :class => "tree-commit-link"