]> source.dussan.org Git - redmine.git/commitdiff
scm: git: show only filename and filesize if setting of reporting last commit is...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 13 May 2011 03:55:21 +0000 (03:55 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 13 May 2011 03:55:21 +0000 (03:55 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5775 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/repository.rb
app/models/repository/git.rb
app/views/repositories/_dir_list.rhtml
app/views/repositories/_dir_list_content.rhtml
public/stylesheets/application.css

index de2720661d9b7bd7a182a0b83d800171ca6216f4..00d80fb3168d4f6f596b0af56e6ebad5bb7735fb 100644 (file)
@@ -80,6 +80,10 @@ class Repository < ActiveRecord::Base
     write_attribute(:extra_info, h)
   end
 
+  def report_last_commit
+    true
+  end
+
   def supports_cat?
     scm.supports_cat?
   end
index 3c89ba6d5a1491bb8205deae7a313f80f65adc15..51a2ca82de2e4c0166ad12a7ecdccd7467a0b7c6 100644 (file)
@@ -38,6 +38,10 @@ class Repository::Git < Repository
     'Git'
   end
 
+  def report_last_commit
+    extra_report_last_commit
+  end
+
   def extra_report_last_commit
     return false if extra_info.nil?
     v = extra_info["extra_report_last_commit"]
index 5590652f567fc47a614a4f8bdd77bd88ef22b9d1..84efcfc27b80e43ff0504db2f53e354084d33758 100644 (file)
@@ -3,10 +3,12 @@
 <tr id="root">
 <th><%= l(:field_name) %></th>
 <th><%= l(:field_filesize) %></th>
-<th><%= l(:label_revision) %></th>
-<th><%= l(:label_age) %></th>
-<th><%= l(:field_author) %></th>
-<th><%= l(:field_comments) %></th>
+<% if @repository.report_last_commit %>
+<th><%= l(:label_revision)  %></th>
+<th><%= l(:label_age)       %></th>
+<th><%= l(:field_author)    %></th>
+<th><%= l(:field_comments)  %></th>
+<% end %>
 </tr>
 </thead>
 <tbody>
index a4e08b046e4a72ac30582650eac8ea875dd60818..be7e48a34a8db58d2b84c8d19a1d4b99e5ecbf45 100644 (file)
@@ -4,7 +4,8 @@
 <%  ent_path = Redmine::CodesetUtil.replace_invalid_utf8(entry.path)   %>
 <%  ent_name = Redmine::CodesetUtil.replace_invalid_utf8(entry.name)   %>
 <tr id="<%= tr_id %>" class="<%= h params[:parent_id] %> entry <%= entry.kind %>">
-<td style="padding-left: <%=18 * depth%>px;" class="filename">
+<td style="padding-left: <%=18 * depth%>px;" class="<%=
+           @repository.report_last_commit ? "filename" : "filename_no_report" %>";>
 <% if entry.is_dir? %>
 <span class="expander" onclick="<%=  remote_function :url => {:action => 'show', :id => @project, :path => to_path_param(ent_path), :rev => @rev, :depth => (depth + 1), :parent_id => tr_id},
                   :method => :get,
 </td>
 <td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td>
 <% changeset = @project.repository.find_changeset_by_name(entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %>
+<% if @repository.report_last_commit %>
 <td class="revision"><%= link_to_revision(changeset, @project) if changeset %></td>
 <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td>
 <td class="author"><%= changeset.nil? ? h(Redmine::CodesetUtil.replace_invalid_utf8(entry.lastrev.author.to_s.split('<').first)) : changeset.author if entry.lastrev %></td>
 <td class="comments"><%=h truncate(changeset.comments, :length => 50) unless changeset.nil? %></td>
+<% end %>
 </tr>
 <% end %>
index 862ba460ba2ee4a38657dbc6320e5f07ee9dc376..47eb839c8799d1b1c1be0fe83b032af99d3660c4 100644 (file)
@@ -145,10 +145,12 @@ tr.issue.idnt-9 td.subject {padding-left: 12.5em;}
 tr.entry { border: 1px solid #f8f8f8; }
 tr.entry td { white-space: nowrap; }
 tr.entry td.filename { width: 30%; }
+tr.entry td.filename_no_report { width: 70%; }
 tr.entry td.size { text-align: right; font-size: 90%; }
 tr.entry td.revision, tr.entry td.author { text-align: center; }
 tr.entry td.age { text-align: right; }
 tr.entry.file td.filename a { margin-left: 16px; }
+tr.entry.file td.filename_no_report a { margin-left: 16px; }
 
 tr span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
 tr.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}