added additional height attribute and reverted to default behaviour of size attribute

This commit is contained in:
Christian Franke 2016-02-21 01:26:42 +01:00
parent 14738e4360
commit 1d8223aa95
2 changed files with 13 additions and 10 deletions

View File

@ -122,6 +122,12 @@ Search will now automatically search DMSF content when a Redmine search is perfo
####An inline picture with custom size
`{{dmsf_image(8, size=50%)}}`
####An inline picture with custom height
`{{dmsf_image(8, height=300)}}`
####An inline picture with custom width
`{{dmsf_image(8, width=300)}}`
####An inline picture with custom size
`{{dmsf_image(8, size=640x480)}}`

15
init.rb
View File

@ -171,29 +171,26 @@ Redmine::Plugin.register :redmine_dmsf do
"{{dmsf_image(file_id, size=300)}} -- with custom title and size\n" +
"{{dmsf_image(file_id, size=640x480)}}"
macro :dmsf_image do |obj, args|
args, options = extract_macro_options(args, :size, :width, :title)
args, options = extract_macro_options(args, :size, :width, :height, :title)
file_id = args.first
raise 'DMSF document ID required' unless file_id.present?
size = options[:size]
width = options[:width]
height = options[:height]
if file = DmsfFile.find_by_id(file_id)
unless User.current && User.current.allowed_to?(:view_dmsf_files, file.project)
raise l(:notice_not_authorized)
end
raise 'Not supported image format' unless file.image?
url = url_for(:controller => :dmsf_files, :action => 'view', :id => file)
if size
if size.include? "%"
if size and size.include? "%"
image_tag(url, :alt => file.title, :width => size, :height => size)
elsif size.include? "x"
image_tag(url, :alt => file.title, :size => size)
else
image_tag(url, :alt => file.title, :width => 'auto', :height => size)
end
elsif height
image_tag(url, :alt => file.title, :width => 'auto', :height => height)
elsif width
image_tag(url, :alt => file.title, :width => width, :height => 'auto')
else
image_tag(url, :alt => file.title, :width => 'auto', :height => size)
image_tag(url, :alt => file.title, :size => size)
end
else
raise "Document ID #{file_id} not found"