[ 
https://issues.apache.org/jira/browse/LANG-658?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12931693#action_12931693
 ] 

Sebb edited comment on LANG-658 at 11/13/10 11:19 AM:
------------------------------------------------------

Another duplicate entry:

{noformat} 
        {"\u00F1", "ñ"}, // ñ - lowercase n, tilde
        {"\u00F3", "ò"}, // ò - lowercase o, grave accent
        {"\u00F3", "ó"}, // ó - lowercase o, acute accent
{noformat} 

first F3 entry should be F2

      was (Author: [email protected]):
    Another duplicate entry:

        {"\u00F1", "ñ"}, // ñ - lowercase n, tilde
        {"\u00F3", "ò"}, // ò - lowercase o, grave accent
        {"\u00F3", "ó"}, // ó - lowercase o, acute accent

first F3 entry should be F2
  
> Some Entitys like Ö are not matched properly against its ISO8859-1 
> representation
> --------------------------------------------------------------------------------------
>
>                 Key: LANG-658
>                 URL: https://issues.apache.org/jira/browse/LANG-658
>             Project: Commons Lang
>          Issue Type: Bug
>          Components: lang.text.translate.*
>    Affects Versions: 3.0
>            Reporter: Michael Konietzka
>
> In EntityArrays 
> In
>  private static final String[][] ISO8859_1_ESCAPE 
> some matching is wrong, for example
>        
>         {"\u00D7", "Ö"}, // Ö - uppercase O, umlaut
>         {"\u00D8", "×"}, // multiplication sign
> but this must be   
>        {"\u00D6", "Ö"}, // Ö - uppercase O, umlaut
>         {"\u00D7", "×"}, // multiplication sign
> according to 
> http://www.fileformat.info/info/unicode/block/latin_supplement/list.htm
> First look:
> u00CA is missing in the array and all following entries are matched wrong by 
> an offset of 1.
> Found on 
> http://stackoverflow.com/questions/4172784/bug-in-apache-commons-stringescapeutil/4172915#4172915

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to