Show repository images inline when clicking 'View' (#10362).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9776 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
44ea32afba
commit
234e5d59ac
|
@ -176,6 +176,7 @@ class RepositoriesController < ApplicationController
|
|||
send_opt = { :filename => filename_for_content_disposition(@path.split('/').last) }
|
||||
send_type = Redmine::MimeType.of(@path)
|
||||
send_opt[:type] = send_type.to_s if send_type
|
||||
send_opt[:disposition] = (Redmine::MimeType.is_type?('image', @path) && !is_raw ? 'inline' : 'attachment')
|
||||
send_data @content, send_opt
|
||||
else
|
||||
# Prevent empty lines when displaying a file with Windows style eol
|
||||
|
|
|
@ -185,6 +185,13 @@ class RepositoriesSubversionControllerTest < ActionController::TestCase
|
|||
end
|
||||
end
|
||||
|
||||
def test_entry_should_send_images_inline
|
||||
get :entry, :id => PRJ_ID,
|
||||
:path => repository_path_hash(['subversion_test', 'folder', 'subfolder', 'rubylogo.gif'])[:param]
|
||||
assert_response :success
|
||||
assert_equal 'inline; filename="rubylogo.gif"', response.headers['Content-Disposition']
|
||||
end
|
||||
|
||||
def test_entry_at_given_revision
|
||||
assert_equal 0, @repository.changesets.count
|
||||
@repository.fetch_changesets
|
||||
|
|
Loading…
Reference in New Issue