You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Felix Meschberger (JIRA)" <ji...@apache.org> on 2010/04/07 14:21:33 UTC

[jira] Commented: (FELIX-2256) Some small visual defects in the WebConsole

    [ https://issues.apache.org/jira/browse/FELIX-2256?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12854449#action_12854449 ] 

Felix Meschberger commented on FELIX-2256:
------------------------------------------

The BOM patch sounds like ok. 

According to http://www.unicode.org/faq/utf_bom.html#BOM the BOM is a single fixed character U+FFEF, which should be uniquely encoded in UTF-8 files. Thus I suspect we need only test for this single character instead of other byte variations ?

Somehting like:

   if (string.charAt(0) == '\uFFEF') string = string.substring(1);


> Some small visual defects in the WebConsole
> -------------------------------------------
>
>                 Key: FELIX-2256
>                 URL: https://issues.apache.org/jira/browse/FELIX-2256
>             Project: Felix
>          Issue Type: Bug
>          Components: Web Console
>    Affects Versions: webconsole-3.0.0
>            Reporter: Valentin Valchev
>         Attachments: bomfix.patch, visual_bug.JPG, visual_bug1.JPG, visual_bug2.JPG
>
>


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