Bugs item #996162, was opened at 2004-07-22 22:56
Message generated for change (Comment added) made by fgiust
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=536613&aid=996162&group_id=73068
Category: main tag library
Group: None
>Status: Deleted
Resolution: None
Priority: 5
Submitted By: Steve Swing (sswing)
Assigned to: Nobody/Anonymous (nobody)
Summary: display-el:column titleKey not Resin compatible
Initial Comment:
Resin 2.1.10 & 2.1.14 do not properly work using titleKey
attribute of display-el:column. No ancestor tag that
Resin instantiates extends BundleSupport class that
ELColumnTag imports. Since Resin uses its own
implementations of fmt:Bundle and fmt:SetBundle
neither are found by findAncestorWithClass(this,
BundleSupport.class)
Since ELColumnTag.java imports
org.apache.taglibs.standard.tag.common.fmt.BundleSupp
ort making it require the Jakarta JSTL implementation
standard.jar.
Is it valid for ELColumnTag to use the following instead?
<pre>
public int doStartTag() throws JspException
{
evaluateExpressions();
if (titleKeyExpr != null || parentTitleExpr == null)
{
String key = (titleKeyExpr != null) ?
titleKeyExpr : parentPropertyExpr;
String title =
LocaleSupport.getLocalizedMessage(pageContext, key);
super.setTitle(title != null ? title : titleKeyExpr);
}
return super.doStartTag();
}
</pre>
As a separate issue Resin doesn't appear to make use
of fmt:bundle prefix attribute within calls to
LocaleSupport.getLocalizedMessage() calls.
----------------------------------------------------------------------
>Comment By: fabrizio giustina (fgiust)
Date: 2004-09-25 10:40
Message:
Logged In: YES
user_id=798060
moved to the new jira tracker
http://jira.codehaus.org/browse/DISPL-15
You can create an account on jira and watch the issue to be
notified about progress
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=536613&aid=996162&group_id=73068
-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
displaytag-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-devel