1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Limit the year to 4 digits in date input (#38231).

Patch by Go MAEDA.


git-svn-id: https://svn.redmine.org/redmine/trunk@22161 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2023-03-30 01:11:19 +00:00
parent 421dc8320f
commit 0bb664e43c
2 changed files with 23 additions and 0 deletions

View File

@ -82,6 +82,13 @@ module ActionView
end
end
module FormHelper
alias :date_field_without_max :date_field
def date_field(object_name, method, options = {})
date_field_without_max(object_name, method, options.reverse_merge(max: '9999-12-31'))
end
end
module FormTagHelper
alias :select_tag_without_non_empty_blank_option :select_tag
def select_tag(name, option_tags = nil, options = {})
@ -90,6 +97,11 @@ module ActionView
end
select_tag_without_non_empty_blank_option(name, option_tags, options)
end
alias :date_field_tag_without_max :date_field_tag
def date_field_tag(name, value = nil, options = {})
date_field_tag_without_max(name, value, options.reverse_merge(max: '9999-12-31'))
end
end
module FormOptionsHelper

View File

@ -21,6 +21,7 @@ require_relative '../../test_helper'
class PatchesTest < ActiveSupport::TestCase
include Redmine::I18n
include ActionView::Helpers::FormHelper
def setup
Setting.default_language = 'en'
@ -37,4 +38,14 @@ class PatchesTest < ActiveSupport::TestCase
test "ActiveRecord::Base.human_attribute_name should default to humanized value if no translation has been found (useful for custom fields)" do
assert_equal 'Patch name', ActiveRecord::Base.human_attribute_name('Patch name')
end
test 'ActionView::Helpers::FormHelper.date_field should add max=9999-12-31 to limit year value to 4 digits by default' do
assert_include 'max="9999-12-31"', date_field('issue', 'start_date')
assert_include 'max="2099-12-31"', date_field('issue', 'start_date', max: '2099-12-31')
end
test 'ActionView::Helpers::FormTagHelper.date_field_tag should add max=9999-12-31 to limit year value to 4 digits by default' do
assert_include 'max="9999-12-31"', date_field_tag('start_date')
assert_include 'max="2099-12-31"', date_field_tag('issue', 'start_date', max: '2099-12-31')
end
end