Actions
Defect #13990
closedTrac importer breaks on exotic filenames and ruby 1.9+
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
See: http://www.redmine.org/boards/2/topics/31188, also reported in other forum threads and here.
The problem is due to the fact that String#[]
changed between ruby 1.8 and 1.9. In 1.8 x[0]
would return a fixnum representing the character, while it returned the character itself in 1.9 (1.8 doc, 1.9 doc). It's easily explained by the unicode support improvements in 1.9 and the fact that a single 1.9 character can map to multiple codepoints.
The easiest workaround is to let the code as is for 1.8 but only take the first codepoint above (unicode strings can have multiple codepoints per character...).
Updated by Jean-Baptiste Barth over 11 years ago
- Status changed from Confirmed to Closed
- Resolution set to Fixed
Actions