##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11926:5aa8358f97d2
r14954:42b5c332b2c2
Show More
annotate.html.erb
46 lines | 1.7 KiB | text/plain | TextLexer
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %>
<div class="contextual">
<%= render :partial => 'navigation' %>
</div>
<h2><%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'file', :revision => @rev } %></h2>
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934
Jean-Philippe Lang
Removed invalid nested p tags....
r9686 <%= render :partial => 'link_to_functions' %>
Jean-Philippe Lang
Show view/annotate/download links on repositories/entries and repositories/annotate views (#2367)....
r2165
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 <% colors = Hash.new {|k,v| k[v] = (k.size % 12) } %>
<div class="autoscroll">
Jean-Philippe Lang
Replace the hardcoded "CodeRay" css class name for highlighted elements....
r3471 <table class="filecontent annotate syntaxhl">
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 <tbody>
Jean-Philippe Lang
Don't repeat revision on annotate view....
r9922 <% line_num = 1; previous_revision = nil %>
Toshi MARUYAMA
Rails3: prevent double rendering file view and annotate on Rails 3.0.11 and Rails 3.1.3...
r8868 <% syntax_highlight_lines(@path, Redmine::CodesetUtil.to_utf8_by_setting(@annotate.content)).each do |line| %>
Toshi MARUYAMA
code layout clean up app/views/repositories/annotate.html.erb...
r7737 <% revision = @annotate.revisions[line_num - 1] %>
Jean-Philippe Lang
Highlighting of source link target line for annotate view (#13746)....
r11628 <tr id="L<%= line_num %>" class="bloc-<%= revision.nil? ? 0 : colors[revision.identifier || revision.revision] %>">
<th class="line-num"><a href="#L<%= line_num %>"><%= line_num %></a></th>
Toshi MARUYAMA
code layout clean up app/views/repositories/annotate.html.erb...
r7737 <td class="revision">
Toshi MARUYAMA
code format cleanup app/views/repositories/annotate.html.erb (#14931)...
r11908 <% if revision && revision != previous_revision %>
<%= revision.identifier ?
link_to_revision(revision, @repository) : format_revision(revision) %>
<% end %>
</td>
<td class="author">
<% if revision && revision != previous_revision %>
Toshi MARUYAMA
scm: fix annotate error with non ASCII author on Ruby 1.9 and Ruby 2.0 (#14931)...
r11926 <% author = Redmine::CodesetUtil.to_utf8(revision.author.to_s,
@repository.repo_log_encoding) %>
<%= author.split('<').first %>
Toshi MARUYAMA
code format cleanup app/views/repositories/annotate.html.erb (#14931)...
r11908 <% end %>
</td>
Toshi MARUYAMA
Rails3: prevent double rendering file view and annotate on Rails 3.0.11 and Rails 3.1.3...
r8868 <td class="line-code"><pre><%= line.html_safe %></pre></td>
Toshi MARUYAMA
code layout clean up app/views/repositories/annotate.html.erb...
r7737 </tr>
Jean-Philippe Lang
Don't repeat revision on annotate view....
r9922 <% line_num += 1; previous_revision = revision %>
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 <% end %>
Jean-Philippe Lang
Fixed: missing body closing tag in repository annotate and entry views....
r979 </tbody>
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 </table>
</div>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:button_annotate)) -%>
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 <% content_for :header_tags do %>
<%= stylesheet_link_tag 'scm' %>
<% end %>