##// END OF EJS Templates
Added wiki annotate view. It's accessible for each version from the page history view. ...
Added wiki annotate view. It's accessible for each version from the page history view. Slight style change: pre-wrap added on file/diff contents. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1020 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r951:f58db70bdecd
r1007:31c6ebb31046
Show More
changes.rhtml
20 lines | 942 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => (@entry ? @entry.kind : nil), :revision => @rev } %></h2>
<h3><%=h @entry.name %></h3>
<p>
<% if @entry.is_text? %>
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 <% if @repository.supports_cat? %>
<%= link_to l(:button_view), {:action => 'entry', :id => @project, :path => @path, :rev => @rev } %> |
<% end %>
<% if @repository.supports_annotate? %>
<%= link_to l(:button_annotate), {:action => 'annotate', :id => @project, :path => @path, :rev => @rev } %> |
<% end %>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <% end %>
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 <%= link_to(l(:button_download), {:action => 'entry', :id => @project, :path => @path, :rev => @rev, :format => 'raw' }) if @repository.supports_cat? %>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <%= "(#{number_to_human_size(@entry.size)})" if @entry.size %>
</p>
Jean-Philippe Lang
Fixed: log is not displayed when browsing a copy in a svn repository....
r830 <%= render :partial => 'revisions', :locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => @entry }%>
Jean-Philippe Lang
More detailed html title on several views....
r951
<% set_html_title(h(@entry.name)) -%>