##// 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:

r14943:5865e39ad77d
r14954:42b5c332b2c2
Show More
entry.html.erb
19 lines | 715 B | 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
Text files can now be viewed online when browsing the repository....
r518
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
Add inline image preview/display for attachments and repository entries (#22058)....
r14942 <% if Redmine::MimeType.is_type?('image', @path) %>
<%= render :partial => 'common/image', :locals => {:path => url_for(params.merge(:action => 'raw')), :alt => @path} %>
<% else %>
Jean-Philippe Lang
Whitespace only change (#22058)....
r14943 <%= render :partial => 'common/file', :locals => {:filename => @path, :content => @content} %>
Jean-Philippe Lang
Add inline image preview/display for attachments and repository entries (#22058)....
r14942 <% end %>
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518
<% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
<% end %>