2007-03-12 20:59:02 +03:00
|
|
|
<table class="list">
|
|
|
|
<thead><tr>
|
|
|
|
<th><%= l(:field_name) %></th>
|
|
|
|
<th><%= l(:field_filesize) %></th>
|
|
|
|
<th><%= l(:label_revision) %></th>
|
|
|
|
<th><%= l(:label_date) %></th>
|
2007-04-30 22:20:22 +04:00
|
|
|
<th><%= l(:field_author) %></th>
|
|
|
|
<th><%= l(:field_comments) %></th>
|
2007-03-12 20:59:02 +03:00
|
|
|
</tr></thead>
|
|
|
|
<tbody>
|
|
|
|
<% total_size = 0
|
|
|
|
@entries.each do |entry| %>
|
|
|
|
<tr class="<%= cycle 'odd', 'even' %>">
|
2007-06-13 00:12:05 +04:00
|
|
|
<td><%= link_to h(entry.name), { :action => (entry.is_dir? ? 'browse' : 'changes'), :id => @project, :path => entry.path, :rev => @rev }, :class => ("icon " + (entry.is_dir? ? 'icon-folder' : 'icon-file')) %></td>
|
|
|
|
<td align="right"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td>
|
|
|
|
<td align="right"><%= link_to(entry.lastrev.name, :action => 'revision', :id => @project, :rev => entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %></td>
|
|
|
|
<td align="center"><%= format_time(entry.lastrev.time) if entry.lastrev %></td>
|
|
|
|
<td align="center"><em><%=h(entry.lastrev.author) if entry.lastrev %></em></td>
|
|
|
|
<% changeset = @project.repository.changesets.find_by_revision(entry.lastrev.identifier) if entry.lastrev %>
|
2007-04-30 22:20:22 +04:00
|
|
|
<td><%=h truncate(changeset.comments, 100) unless changeset.nil? %></td>
|
2007-03-12 20:59:02 +03:00
|
|
|
</tr>
|
2007-06-13 00:12:05 +04:00
|
|
|
<% total_size += entry.size if entry.size
|
2007-03-12 20:59:02 +03:00
|
|
|
end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2007-01-26 23:02:49 +03:00
|
|
|
<p class="textright"><em><%= l(:label_total) %>: <%= number_to_human_size(total_size) %></em></p>
|