Mercurial > hg > soundsoftware-site
diff .svn/pristine/61/612d194a203d45607990bc7c37b1a3f45ef3fede.svn-base @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/61/612d194a203d45607990bc7c37b1a3f45ef3fede.svn-base Tue Sep 09 09:29:00 2014 +0100 @@ -0,0 +1,31 @@ +<% @entries.each do |entry| %> +<% tr_id = Digest::MD5.hexdigest(entry.path) + depth = params[:depth].to_i %> +<% 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="<%= + @repository.report_last_commit ? "filename" : "filename_no_report" %>"> +<% if entry.is_dir? %> +<span class="expander" onclick="scmEntryClick('<%= tr_id %>', '<%= escape_javascript(url_for( + :action => 'show', + :id => @project, + :repository_id => @repository.identifier_param, + :path => to_path_param(ent_path), + :rev => @rev, + :depth => (depth + 1), + :parent_id => tr_id)) %>');"> </span> +<% end %> +<%= link_to h(ent_name), + {:action => (entry.is_dir? ? 'show' : 'changes'), :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(ent_path), :rev => @rev}, + :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(ent_name)}")%> +</td> +<td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td> +<% if @repository.report_last_commit %> +<td class="revision"><%= link_to_revision(entry.changeset, @repository) if entry.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"><%= entry.author %></td> +<td class="comments"><%= entry.changeset.comments.truncate(50) if entry.changeset %></td> +<% end %> +</tr> +<% end %>