Project

General

Profile

Actions

Patch #4307

closed

Models fails to validate localized field names since ruby 1.9.1p343 and 1.9.2p

Added by Alexey Froloff over 14 years ago. Updated about 9 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Ruby support
Target version:
-
Start date:
2009-11-29
Due date:
% Done:

0%

Estimated time:

Description

Revisions 24544 (trunk) and 25941 (ruby_1_9_1) comes with "\d, \s and \w are now non Unicode class. [ruby-dev:39026]", which breaks validations like "validates_format_of :name, :with => /^[\w\s\'\-]*$/i".

Replace \s with [:space:] and \w with [:word:], patch attached.


Files


Related issues

Related to Redmine - Defect #5152: Cannot use certain characters for user and role names.Closed2010-03-22

Actions
Actions #1

Updated by Jean-Philippe Lang over 13 years ago

  • Category set to Ruby support

Unfortunately, this patch breaks ruby1.8 support (tested with 1.8.7p302):

irb(main):012:0> /^[[:word:][:space:]\.\'\-]*$/i
SyntaxError: compile error
(irb):12: invalid regular expression; [:word:] is not a character class: /^[[:word:][:space:]\.\'\-]*$/
        from (irb):12
        from :0
Actions #2

Updated by Go MAEDA about 9 years ago

  • Status changed from New to Closed

These 'validates_format_of' are removed by #5152 (Redmine 1.2.0).
Now we can use any characters for names.

Actions #3

Updated by Go MAEDA about 9 years ago

  • Related to Defect #5152: Cannot use certain characters for user and role names. added
Actions

Also available in: Atom PDF