[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-2499) Seam Messages strips any MessageFormat formatting parameters

Calvin Yu (JIRA) jira-events at lists.jboss.org
Tue Jan 15 16:14:49 EST 2008


Seam Messages strips any MessageFormat formatting parameters
------------------------------------------------------------

                 Key: JBSEAM-2499
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-2499
             Project: JBoss Seam
          Issue Type: Bug
          Components: Core
    Affects Versions: 2.0.0.GA
            Reporter: Calvin Yu


I want to use f:outputFormat to format text so that I can specify the formatting style from resource bundles.

In messages.properties:

foo=Howdy {0}\!  The time is {1, date, MMMM dd}

In my Facelets view:

<h:outputFormat value="#{messages['foo']}">
  <f:param value="#{exampleAction.name}"/>
  <f:param value="#{exampleAction.date}"/>
</h:outputFormat>

The result of '#{messages['foo']}' is actually: Howdy {0}\!  The time is {1}

The reason this is happening is because the Interpolator is using MessageFormat to evaluate {1, date, MMMM dd} with empty parameters (line #141 in Interpolator.java), which results in just {1}.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list