annotate app/views/repositories/_dir_list_content.rhtml @ 245:051f544170fe

* Update to SVN trunk revision 4993
author Chris Cannam
date Thu, 03 Mar 2011 11:42:28 +0000
parents 8661b858af72
children eeebe205a056 cbce1fd3b1b7
rev   line source
Chris@0 1 <% @entries.each do |entry| %>
Chris@0 2 <% tr_id = Digest::MD5.hexdigest(entry.path)
Chris@0 3 depth = params[:depth].to_i %>
Chris@245 4 <% ent_path = replace_invalid_utf8(entry.path) %>
Chris@245 5 <% ent_name = replace_invalid_utf8(entry.name) %>
Chris@0 6 <tr id="<%= tr_id %>" class="<%= h params[:parent_id] %> entry <%= entry.kind %>">
Chris@0 7 <td style="padding-left: <%=18 * depth%>px;" class="filename">
Chris@0 8 <% if entry.is_dir? %>
Chris@245 9 <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},
Chris@245 10 :method => :get,
Chris@0 11 :update => { :success => tr_id },
Chris@0 12 :position => :after,
Chris@0 13 :success => "scmEntryLoaded('#{tr_id}')",
Chris@0 14 :condition => "scmEntryClick('#{tr_id}')"%>">&nbsp</span>
Chris@0 15 <% end %>
Chris@245 16 <%= link_to h(ent_name),
Chris@245 17 {:action => (entry.is_dir? ? 'show' : 'changes'), :id => @project, :path => to_path_param(ent_path), :rev => @rev},
Chris@245 18 :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(ent_name)}")%>
Chris@0 19 </td>
Chris@0 20 <td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td>
Chris@245 21 <% changeset = @project.repository.find_changeset_by_name(entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %>
Chris@119 22 <td class="revision"><%= link_to_revision(changeset, @project) if changeset %></td>
Chris@0 23 <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td>
Chris@245 24 <td class="author"><%= changeset.nil? ? h(replace_invalid_utf8(entry.lastrev.author.to_s.split('<').first)) : changeset.author if entry.lastrev %></td>
Chris@0 25 <td class="comments"><%=h truncate(changeset.comments, :length => 50) unless changeset.nil? %></td>
Chris@0 26 </tr>
Chris@0 27 <% end %>