[ 
https://issues.apache.org/jira/browse/TOBAGO-1870?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16406018#comment-16406018
 ] 

Bernd Bohmann commented on TOBAGO-1870:
---------------------------------------

It looks like webspere v8.5.5.9 is still using this in 
ApplicationImpl#publishEvent
 from myfaces 2.0.2
{code:java}
            UIViewRoot uiViewRoot = facesContext.getViewRoot();
            if (uiViewRoot != null)
            {
                //Call listeners on view level
                event = 
_traverseListenerList(uiViewRoot.getViewListenersForEventClass(systemEventClass),
 
                        systemEventClass, source, event);
            }
{code}
instead of this since myfaces 2.0.3
{code:java}
            UIViewRoot uiViewRoot = facesContext.getViewRoot();
            if (uiViewRoot != null)
            {
                //Call listeners on view level
                event = 
_traverseListenerListWithCopy(uiViewRoot.getViewListenersForEventClass(systemEventClass),
 
                        systemEventClass, source, event);
            }
{code}
 

 

> The file attribute of tc:style is not rendered after a submit.
> --------------------------------------------------------------
>
>                 Key: TOBAGO-1870
>                 URL: https://issues.apache.org/jira/browse/TOBAGO-1870
>             Project: MyFaces Tobago
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 4.1.0
>            Reporter: Henning Noeth
>            Assignee: Bernd Bohmann
>            Priority: Major
>             Fix For: 4.2.1
>
>
> An example could be found in the v4.2.0-SNAPSHOT demo:
>  
> [http://localhost:8080/content/40-test/6000-event/event.xhtml|http://localhost:8080/content/40-test/6000-event/event-1870.xhtml]
> After clicking on "reload", the link to "demo.css" file is not rendered 
> inside the <head> tag.
> The problem only occures with <ui:include src="x-event-#\{''}.xhtml"/>.
> The problem NOT occures with <ui:include src="x-event-.xhtml"/>, but the EL 
> should resolve to excactly the same string.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to