plain_text_mail:
default: 0
text_formatting:
- default: textile
+ default: common_mark
cache_formatted_text:
default: 0
wiki_compression:
t.column "name", :string, :limit => 30, :default => "", :null => false
t.column "value", :text
end
+
+ # Persist text_formatting default setting for new installations
+ setting = Setting.new(:name => "text_formatting", :value => Setting.text_formatting)
+ setting.save!
end
def self.down
--- /dev/null
+class EnsureTextFormattingSettingIsStoredInDb < ActiveRecord::Migration[6.1]
+ def change
+ unless Setting.where(name: "text_formatting").exists?
+ setting = Setting.new(:name => "text_formatting", :value => 'textile')
+ setting.save!
+ end
+ end
+end
get(:show, :params => {:id => a.id})
assert_response :success
assert_equal 'text/html', @response.media_type
- assert_select 'div.wiki', :html => "<h1>Header 1</h1>\n\n<h2>Header 2</h2>\n\n<h3>Header 3</h3>"
+ assert_select 'div.wiki', :html => "<h1>Header 1</h1>\n<h2>Header 2</h2>\n<h3>Header 3</h3>"
end
def test_show_text_file_formatted_textile
end
end
end
+
+ def test_default_text_formatting_for_new_installations_is_common_mark
+ assert_equal 'common_mark', Setting.text_formatting
+ assert_equal 'common_mark', Setting.find_by(:name => 'text_formatting').value
+ end
end