[jira] [Commented] (TOBAGO-1870) The file attribute of tc:style is not rendered after a submit.

2018-04-04 Thread Hudson (JIRA)

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

Hudson commented on TOBAGO-1870:


SUCCESS: Integrated in Jenkins build Tobago Trunk #1349 (See 
[https://builds.apache.org/job/Tobago%20Trunk/1349/])
workaround for websphere 8.5 details see TOBAGO-1870 (bommel: rev 
92920d69459840309f56fd1dfd4af95818c37e48)
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIScript.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIMeta.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIStyle.java
workaround for websphere 8.5 details see TOBAGO-1870 (bommel: rev 
dc15ddfb92b8c34f27db717712b90b9cc9c2d938)
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIStyle.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIScript.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIMeta.java


> 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  tag.
> The problem only occures with .
> The problem NOT occures with , but the EL 
> should resolve to excactly the same string.



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


[jira] [Commented] (TOBAGO-1870) The file attribute of tc:style is not rendered after a submit.

2018-03-20 Thread Bernd Bohmann (JIRA)

[ 
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  tag.
> The problem only occures with .
> The problem NOT occures with , but the EL 
> should resolve to excactly the same string.



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


[jira] [Commented] (TOBAGO-1870) The file attribute of tc:style is not rendered after a submit.

2018-03-20 Thread Bernd Bohmann (JIRA)

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

Bernd Bohmann commented on TOBAGO-1870:
---

this is the exception

at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:912) 
 at java.util.ArrayList$Itr.next(ArrayList.java:862) 
 at java.util.Collections$UnmodifiableCollection$1.next(Collections.java:1053) 
 at 
org.apache.myfaces.application.ApplicationImpl._traverseListenerList(ApplicationImpl.java:2213)
 
 at 
org.apache.myfaces.application.ApplicationImpl.publishEvent(ApplicationImpl.java:561)
 
 at 
org.apache.myfaces.application.ApplicationImpl.publishEvent(ApplicationImpl.java:591)
 
 at 
org.apache.webbeans.jsf.OwbApplication.publishEvent(OwbApplication.java:484) 
 at 
javax.faces.application.ApplicationWrapper.publishEvent(ApplicationWrapper.java:335)
 
 at 
javax.faces.application.ApplicationWrapper.publishEvent(ApplicationWrapper.java:335)
 
 at 
org.apache.deltaspike.jsf.impl.injection.InjectionAwareApplicationWrapper.publishEvent(InjectionAwareApplicationWrapper.java:148)
 
 at 
org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:72)
 
 at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:240) 
 at 
org.apache.deltaspike.jsf.impl.listener.request.DeltaSpikeLifecycleWrapper.render(DeltaSpikeLifecycleWrapper.java:111)
 
 at javax.faces.webapp.FacesServlet.service(FacesServlet.java:191) 
 at 
com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1233)
 
 at 
com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:782)
 
 at 
com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:481)
 
 at 
com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
 
 at 
com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:136)
 
 at 
com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:97)

> 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  tag.
> The problem only occures with .
> The problem NOT occures with , but the EL 
> should resolve to excactly the same string.



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


[jira] [Commented] (TOBAGO-1870) The file attribute of tc:style is not rendered after a submit.

2018-03-19 Thread Henning Noeth (JIRA)

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

Henning Noeth commented on TOBAGO-1870:
---

Current commit '6fea424ed06c3dec49b22f765209f05552793bee' breaks WebSphere 
v8.5.5.9

ConcurrentModificationException / ServletException

> 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  tag.
> The problem only occures with .
> The problem NOT occures with , but the EL 
> should resolve to excactly the same string.



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


[jira] [Commented] (TOBAGO-1870) The file attribute of tc:style is not rendered after a submit.

2018-03-15 Thread Hudson (JIRA)

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

Hudson commented on TOBAGO-1870:


SUCCESS: Integrated in Jenkins build Tobago Trunk #1342 (See 
[https://builds.apache.org/job/Tobago%20Trunk/1342/])
(TOBAGO-1870) The file attribute of tc:style is not rendered after a (bommel: 
rev b11d3e0f1f50b64be2af6154d80f5c57633cd8b9)
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIStyle.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIMeta.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIScript.java
(TOBAGO-1870) The file attribute of tc:style is not rendered after a (bommel: 
rev 6e8f4baf4ac60e431cb00c66f5eff49e606bf17a)
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIStyle.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIMeta.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIScript.java


> 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  tag.
> The problem only occures with .
> The problem NOT occures with , but the EL 
> should resolve to excactly the same string.



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


[jira] [Commented] (TOBAGO-1870) The file attribute of tc:style is not rendered after a submit.

2018-03-07 Thread Hudson (JIRA)

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

Hudson commented on TOBAGO-1870:


SUCCESS: Integrated in Jenkins build Tobago Trunk #1327 (See 
[https://builds.apache.org/job/Tobago%20Trunk/1327/])
example to the error TOBAGO-1870 (lofwyr: rev 
bf89551c6127acf44f8aa9c95d90d5ec9a67d5ff)
* (add) 
tobago-example/tobago-example-demo/src/main/webapp/content/40-test/6000-event/event-1870.xhtml


> 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
>
> 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  tag.
> The problem only occures with .
> The problem NOT occures with , but the EL 
> should resolve to excactly the same string.



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