You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Alexander Saar (JIRA)" <ji...@apache.org> on 2008/01/17 16:04:34 UTC

[jira] Created: (SLING-172) Sling console configuration management does not display multivalue selects correctly

Sling console configuration management does not display multivalue selects correctly
------------------------------------------------------------------------------------

                 Key: SLING-172
                 URL: https://issues.apache.org/jira/browse/SLING-172
             Project: Sling
          Issue Type: Bug
          Components: Console
    Affects Versions: 2.0.0
         Environment: Windows XP, Java 1.5, Tomcat 6.x
            Reporter: Alexander Saar


The display of multivalue selection boxes in the configuration management section of the Sling console does not work. The array of possible selections is split into single characters and each of them is displayed as a single entry in the selection list. This prevents changing the log level and other multivalue selections with the console.

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


[jira] Closed: (SLING-172) Sling console configuration management does not display multivalue selects correctly

Posted by "Felix Meschberger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Felix Meschberger closed SLING-172.
-----------------------------------


Done

> Sling console configuration management does not display multivalue selects correctly
> ------------------------------------------------------------------------------------
>
>                 Key: SLING-172
>                 URL: https://issues.apache.org/jira/browse/SLING-172
>             Project: Sling
>          Issue Type: Bug
>          Components: Console
>    Affects Versions: 2.0.0
>         Environment: Windows XP, Java 1.5, Tomcat 6.x
>            Reporter: Alexander Saar
>            Assignee: Felix Meschberger
>            Priority: Minor
>             Fix For: 2.0.0
>
>         Attachments: screenshot-1.jpg
>
>
> The display of multivalue selection boxes in the configuration management section of the Sling console does not work. The array of possible selections is split into single characters and each of them is displayed as a single entry in the selection list. This prevents changing the log level and other multivalue selections with the console.

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


[jira] Resolved: (SLING-172) Sling console configuration management does not display multivalue selects correctly

Posted by "Felix Meschberger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Felix Meschberger resolved SLING-172.
-------------------------------------

    Resolution: Fixed

Fixed a generics issue in the commons/json project: The generic arguments where declared as Collection<Object> and Map<String, Object>. Such arguments do not accept ArrayList<String> because the generic type hierarchy is ignored, thus String != Object.

The fix is to declare the arguments as Collection<?> and Map<String, ?> (I think it is a valid assumption to require String-keyed maps. Maybe this assumption is wrong, and we might then have to change this to Map<?, ?>.

Fixed in Rev. 613081.

To use
   (1) compile commons/json and install in local maven repo and
   (2) rebuild osgi/console-web and deploy to Sling

Please close if this fixes your issue. Thanks.

> Sling console configuration management does not display multivalue selects correctly
> ------------------------------------------------------------------------------------
>
>                 Key: SLING-172
>                 URL: https://issues.apache.org/jira/browse/SLING-172
>             Project: Sling
>          Issue Type: Bug
>          Components: Console
>    Affects Versions: 2.0.0
>         Environment: Windows XP, Java 1.5, Tomcat 6.x
>            Reporter: Alexander Saar
>            Assignee: Felix Meschberger
>            Priority: Minor
>         Attachments: screenshot-1.jpg
>
>
> The display of multivalue selection boxes in the configuration management section of the Sling console does not work. The array of possible selections is split into single characters and each of them is displayed as a single entry in the selection list. This prevents changing the log level and other multivalue selections with the console.

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


[jira] Assigned: (SLING-172) Sling console configuration management does not display multivalue selects correctly

Posted by "Felix Meschberger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Felix Meschberger reassigned SLING-172:
---------------------------------------

    Assignee: Felix Meschberger

> Sling console configuration management does not display multivalue selects correctly
> ------------------------------------------------------------------------------------
>
>                 Key: SLING-172
>                 URL: https://issues.apache.org/jira/browse/SLING-172
>             Project: Sling
>          Issue Type: Bug
>          Components: Console
>    Affects Versions: 2.0.0
>         Environment: Windows XP, Java 1.5, Tomcat 6.x
>            Reporter: Alexander Saar
>            Assignee: Felix Meschberger
>            Priority: Minor
>         Attachments: screenshot-1.jpg
>
>
> The display of multivalue selection boxes in the configuration management section of the Sling console does not work. The array of possible selections is split into single characters and each of them is displayed as a single entry in the selection list. This prevents changing the log level and other multivalue selections with the console.

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


[jira] Updated: (SLING-172) Sling console configuration management does not display multivalue selects correctly

Posted by "Alexander Saar (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexander Saar updated SLING-172:
---------------------------------

    Attachment: screenshot-1.jpg

> Sling console configuration management does not display multivalue selects correctly
> ------------------------------------------------------------------------------------
>
>                 Key: SLING-172
>                 URL: https://issues.apache.org/jira/browse/SLING-172
>             Project: Sling
>          Issue Type: Bug
>          Components: Console
>    Affects Versions: 2.0.0
>         Environment: Windows XP, Java 1.5, Tomcat 6.x
>            Reporter: Alexander Saar
>         Attachments: screenshot-1.jpg
>
>
> The display of multivalue selection boxes in the configuration management section of the Sling console does not work. The array of possible selections is split into single characters and each of them is displayed as a single entry in the selection list. This prevents changing the log level and other multivalue selections with the console.

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


[jira] Updated: (SLING-172) Sling console configuration management does not display multivalue selects correctly

Posted by "Felix Meschberger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Felix Meschberger updated SLING-172:
------------------------------------

    Fix Version/s: 2.0.0

> Sling console configuration management does not display multivalue selects correctly
> ------------------------------------------------------------------------------------
>
>                 Key: SLING-172
>                 URL: https://issues.apache.org/jira/browse/SLING-172
>             Project: Sling
>          Issue Type: Bug
>          Components: Console
>    Affects Versions: 2.0.0
>         Environment: Windows XP, Java 1.5, Tomcat 6.x
>            Reporter: Alexander Saar
>            Assignee: Felix Meschberger
>            Priority: Minor
>             Fix For: 2.0.0
>
>         Attachments: screenshot-1.jpg
>
>
> The display of multivalue selection boxes in the configuration management section of the Sling console does not work. The array of possible selections is split into single characters and each of them is displayed as a single entry in the selection list. This prevents changing the log level and other multivalue selections with the console.

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


[jira] Updated: (SLING-172) Sling console configuration management does not display multivalue selects correctly

Posted by "Alexander Saar (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexander Saar updated SLING-172:
---------------------------------

    Priority: Minor  (was: Major)

> Sling console configuration management does not display multivalue selects correctly
> ------------------------------------------------------------------------------------
>
>                 Key: SLING-172
>                 URL: https://issues.apache.org/jira/browse/SLING-172
>             Project: Sling
>          Issue Type: Bug
>          Components: Console
>    Affects Versions: 2.0.0
>         Environment: Windows XP, Java 1.5, Tomcat 6.x
>            Reporter: Alexander Saar
>            Priority: Minor
>         Attachments: screenshot-1.jpg
>
>
> The display of multivalue selection boxes in the configuration management section of the Sling console does not work. The array of possible selections is split into single characters and each of them is displayed as a single entry in the selection list. This prevents changing the log level and other multivalue selections with the console.

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


[jira] Commented: (SLING-172) Sling console configuration management does not display multivalue selects correctly

Posted by "Felix Meschberger (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12559954#action_12559954 ] 

Felix Meschberger commented on SLING-172:
-----------------------------------------

Thanks for reporting. This is a new issue upto now unknown to me.

> Sling console configuration management does not display multivalue selects correctly
> ------------------------------------------------------------------------------------
>
>                 Key: SLING-172
>                 URL: https://issues.apache.org/jira/browse/SLING-172
>             Project: Sling
>          Issue Type: Bug
>          Components: Console
>    Affects Versions: 2.0.0
>         Environment: Windows XP, Java 1.5, Tomcat 6.x
>            Reporter: Alexander Saar
>            Assignee: Felix Meschberger
>            Priority: Minor
>         Attachments: screenshot-1.jpg
>
>
> The display of multivalue selection boxes in the configuration management section of the Sling console does not work. The array of possible selections is split into single characters and each of them is displayed as a single entry in the selection list. This prevents changing the log level and other multivalue selections with the console.

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