<%= l(:field_name) %> | <%= l(:field_filesize) %> | <%= l(:label_revision) %> | <%= l(:label_date) %> | <%= l(:field_author) %> | <%= l(:field_comments) %> |
---|---|---|---|---|---|
<%= 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')) %> | <%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %> | <%= link_to(entry.lastrev.name, :action => 'revision', :id => @project, :rev => entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %> | <%= format_time(entry.lastrev.time) if entry.lastrev %> | <%=h(entry.lastrev.author) if entry.lastrev %> | <% changeset = @project.repository.changesets.find_by_revision(entry.lastrev.identifier) if entry.lastrev %><%=h truncate(changeset.comments, 100) unless changeset.nil? %> |
<%= l(:label_total) %>: <%= number_to_human_size(total_size) %>