From 473c2898ba9dadb2b621475d6d6e8600d688e751 Mon Sep 17 00:00:00 2001 From: MAEDA Go Date: Mon, 9 Feb 2026 13:58:38 +0900 Subject: [PATCH 2/2] Show 'text-plain' icon for Markdown and Textile files --- app/helpers/icons_helper.rb | 6 ++++-- test/helpers/icons_helper_test.rb | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/helpers/icons_helper.rb b/app/helpers/icons_helper.rb index 5558bdb2a..14fb24fed 100644 --- a/app/helpers/icons_helper.rb +++ b/app/helpers/icons_helper.rb @@ -114,16 +114,18 @@ module IconsHelper end def icon_for_mime_type(mime) - if %w(text/plain text/x-c text/x-csharp text/x-java text/x-php + if %w(text/x-c text/x-csharp text/x-java text/x-php text/x-ruby text/xml text/css text/html text/css text/html application/pdf application/zip application/gzip application/javascript).include?(mime) icon_name = mime.tr('/', '-') else top_level_type, subtype = mime.to_s.split('/') icon_name = - case top_level_type # rubocop:disable Style/HashLikeCase + case top_level_type when 'audio' then 'file-music' when 'image' then 'photo' + when 'text' + %w(markdown plain x-textile).include?(subtype) ? 'text-plain' : nil when 'video' then 'movie' end end diff --git a/test/helpers/icons_helper_test.rb b/test/helpers/icons_helper_test.rb index 329cc7618..fa0ed2da5 100644 --- a/test/helpers/icons_helper_test.rb +++ b/test/helpers/icons_helper_test.rb @@ -135,8 +135,9 @@ class IconsHelperTest < Redmine::HelperTest end def test_icon_for_mime_type_should_return_specific_icon_for_known_mime_types - assert_equal 'text-plain', icon_for_mime_type('text/plain') assert_equal 'application-pdf', icon_for_mime_type('application/pdf') + assert_equal 'text-plain', icon_for_mime_type('text/markdown') + assert_equal 'text-plain', icon_for_mime_type('text/plain') end def test_icon_for_mime_type_should_return_icon_for_top_level_types -- 2.50.1