##// END OF EJS Templates
Do not show 'Send information' checkbox if email delivery is not configured....
Do not show 'Send information' checkbox if email delivery is not configured. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6167 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4493:2e1bcb2abff6
r6047:37aba18c8f1e
Show More
annotate.rhtml
36 lines | 1.3 KiB | text/html+ruby | RhtmlLexer
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
Show view/annotate/download links on repositories/entries and repositories/annotate views (#2367)....
r2165 <p><%= render :partial => 'link_to_functions' %></p>
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>
<% line_num = 1 %>
<% syntax_highlight(@path, to_utf8(@annotate.content)).each_line do |line| %>
<% revision = @annotate.revisions[line_num-1] %>
<tr class="bloc-<%= revision.nil? ? 0 : colors[revision.identifier || revision.revision] %>">
Jean-Philippe Lang
Clickable/linkable line #'s while browsing the repo or viewing a text file (#2835)....
r2463 <th class="line-num" id="L<%= line_num %>"><a href="#L<%= line_num %>"><%= line_num %></a></th>
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 <td class="revision">
Toshi MARUYAMA
Changing revision label and identifier at SCM adapter level (#3724, #6092)...
r4493 <%= (revision.identifier ? link_to_revision(revision, @project) : format_revision(revision)) if revision %></td>
Jean-Philippe Lang
Strip out email address from authors in repository screens (#814)....
r1194 <td class="author"><%= h(revision.author.to_s.split('<').first) if revision %></td>
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 <td class="line-code"><pre><%= line %></pre></td>
</tr>
<% line_num += 1 %>
<% 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 %>