Chris@909: <% @entries.each do |entry| %>
Chris@909: <% tr_id = Digest::MD5.hexdigest(entry.path)
Chris@909: depth = params[:depth].to_i %>
Chris@909: <% ent_path = Redmine::CodesetUtil.replace_invalid_utf8(entry.path) %>
Chris@909: <% ent_name = Redmine::CodesetUtil.replace_invalid_utf8(entry.name) %>
Chris@909:
Chris@909: ";>
Chris@909: <% if entry.is_dir? %>
Chris@909: "scmEntryClick('#{tr_id}')"
Chris@909: ) %>"> 
Chris@909: <% end %>
Chris@909: <%= link_to h(ent_name),
Chris@909: {:action => (entry.is_dir? ? 'show' : 'changes'), :id => @project, :path => to_path_param(ent_path), :rev => @rev},
Chris@909: :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(ent_name)}")%>
Chris@909: |
Chris@909: <%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %> |
Chris@909: <% changeset = @project.repository.find_changeset_by_name(entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %>
Chris@909: <% if @repository.report_last_commit %>
Chris@909: <%= link_to_revision(changeset, @project) if changeset %> |
Chris@909: <%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %> |
Chris@909: <%= changeset.nil? ? h(Redmine::CodesetUtil.replace_invalid_utf8(entry.lastrev.author.to_s.split('<').first)) : h(changeset.author) if entry.lastrev %> |
Chris@909:
Chris@909: <% end %>
Chris@909:
Chris@909: <% end %>