Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/_tree_item.html.haml')
-rw-r--r--app/views/projects/_tree_item.html.haml15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/projects/_tree_item.html.haml b/app/views/projects/_tree_item.html.haml
new file mode 100644
index 00000000000..25575283993
--- /dev/null
+++ b/app/views/projects/_tree_item.html.haml
@@ -0,0 +1,15 @@
+- file = params[:path] ? File.join(params[:path], content.name) : content.name
+- content_commit = @repo.log(@branch, file, :max_count => 1).last
+- return unless content_commit
+%tr{ :class => "tree-item", :url => tree_file_project_path(@project, @commit.id, file) }
+ %td.tree-item-file-name
+ - if content.is_a?(Grit::Blob)
+ = image_tag "txt.png"
+ - else
+ = image_tag "dir.png"
+ = link_to truncate(content.name, :length => 40), tree_file_project_path(@project, @commit.id, file), :remote => :true
+ %td
+ = time_ago_in_words(content_commit.committed_date)
+ ago
+ %td
+ = link_to truncate(content_commit.message, :length => 40), project_commit_path(@project, content_commit)