From ed3f3a0d4ded937b8c9864b006c15ce8148f35c1 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Thu, 15 Dec 2011 08:42:24 +0200 Subject: [PATCH] Download link for binary --- app/assets/images/download.png | Bin 0 -> 3637 bytes app/decorators/tree_decorator.rb | 9 +++++++++ app/views/projects/_form.html.haml | 2 +- app/views/refs/_tree_file.html.haml | 10 +++++++--- 4 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 app/assets/images/download.png diff --git a/app/assets/images/download.png b/app/assets/images/download.png new file mode 100644 index 0000000..50f672c Binary files /dev/null and b/app/assets/images/download.png differ diff --git a/app/decorators/tree_decorator.rb b/app/decorators/tree_decorator.rb index 11af972..c2a640f 100644 --- a/app/decorators/tree_decorator.rb +++ b/app/decorators/tree_decorator.rb @@ -32,4 +32,13 @@ class TreeDecorator < ApplicationDecorator def history_path h.project_commits_path(project, :path => path, :ref => ref) end + + def mb_size + size = (tree.size / 1024) + if size < 1024 + "#{size} KB" + else + "#{size/1024} MB" + end + end end diff --git a/app/views/projects/_form.html.haml b/app/views/projects/_form.html.haml index 0f4f108..254563b 100644 --- a/app/views/projects/_form.html.haml +++ b/app/views/projects/_form.html.haml @@ -34,7 +34,7 @@ %td= f.label :default_branch, "Default Branch" %td= f.select(:default_branch, @project.heads.map(&:name), {}, :style => "width:300px;") - %tr + -#%tr %td= f.label :tag_list %td= f.text_area :tag_list, :placeholder => "project tags", :style => "height:50px", :id => :tag_field %tr diff --git a/app/views/refs/_tree_file.html.haml b/app/views/refs/_tree_file.html.haml index 51264e3..fdc2469 100644 --- a/app/views/refs/_tree_file.html.haml +++ b/app/views/refs/_tree_file.html.haml @@ -20,6 +20,10 @@ .view_file_content_image %img{ :src => "data:#{file.mime_type};base64,#{Base64.encode64(file.data)}"} - else - %p - %center No preview for this file type - + %center + = link_to blob_project_ref_path(@project, @ref, :path => params[:path] ) do + %div + %br + = image_tag "download.png", :width => 64 + %h3 + Download (#{file.mb_size}) -- libgit2 0.21.2