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)
|
2012-03-12 22:52:10 +01:00
|
|
|
- if content.text?
|
|
|
|
= image_tag "file_txt.png"
|
|
|
|
- elsif content.image?
|
|
|
|
= image_tag "file_img.png"
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-03-12 22:52:10 +01:00
|
|
|
= image_tag "file_bin.png"
|
2011-10-08 23:36:38 +02:00
|
|
|
- else
|
2012-03-12 22:52:10 +01:00
|
|
|
= image_tag "file_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
|
2012-01-17 23:04:27 +01:00
|
|
|
%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
|
2012-02-27 19:51:12 +01:00
|
|
|
%strong= 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"
|