From jira-events at lists.jboss.org Thu Mar 1 03:49:41 2012 Content-Type: multipart/mixed; boundary="===============2788874317593755310==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Thu, 01 Mar 2012 03:49:40 -0500 Message-ID: <1055117762.56320.1330591780521.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2788874317593755310== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672460#com= ment-12672460 ] = Juraj Huska commented on RF-12003: ---------------------------------- I was able to reproduce it. = The code with this example can be found [here|https://github.com/jhuska/ric= hfaces-sanbox/tree/RF-12003]. The behavior is the same as described above. When the h:head tag is removed= than the expected behavior works. However, the look and feel of command bu= tton changes to plain HTML(please see the screenshot). = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Assignee: Juraj Huska > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2788874317593755310==-- From jira-events at lists.jboss.org Thu Mar 1 03:49:41 2012 Content-Type: multipart/mixed; boundary="===============0034639681957892044==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Thu, 01 Mar 2012 03:49:41 -0500 Message-ID: <284472895.56324.1330591781236.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0034639681957892044== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12003: ----------------------------- Attachment: brokenRFHheadAdded.png = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Assignee: Juraj Huska > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0034639681957892044==-- From jira-events at lists.jboss.org Thu Mar 1 03:55:37 2012 Content-Type: multipart/mixed; boundary="===============5326099190786919828==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Thu, 01 Mar 2012 03:55:37 -0500 Message-ID: <659965063.56339.1330592137335.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5326099190786919828== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672463#com= ment-12672463 ] = Juraj Huska commented on RF-12003: ---------------------------------- I have removed richfaces dependencies (as there is not RichFaces component = used in the example), and the behavior is the same. = So IMHO it is not caused by RichFaces but JSF mojarra. I can file an issue = there, if you agree ? = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Assignee: Juraj Huska > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5326099190786919828==-- From jira-events at lists.jboss.org Thu Mar 1 05:03:43 2012 Content-Type: multipart/mixed; boundary="===============4297667411431442742==" MIME-Version: 1.0 From: Balaji Thangamani (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11988) rich:fileUpload doesn't seem to work on GlassFish Date: Thu, 01 Mar 2012 05:03:38 -0500 Message-ID: <69763603.56646.1330596218803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1031298844.7144.1329428856250.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4297667411431442742== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11988?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672506#com= ment-12672506 ] = Balaji Thangamani commented on RF-11988: ---------------------------------------- This issue has nothinf to do with glassfish. The issue is the MyFaces versi= on. rich:fileUpload works smoothly with Mojarra RI(atleast with the latest = version). I checked with version MyFaces 2.0.2 it did not work. But when up= graded to Latest MyFaces release (2.0.12) it worked. I tested this in Tomca= t and Glassfish and rich:upload works smoothly. = > rich:fileUpload doesn't seem to work on GlassFish > ------------------------------------------------- > > Key: RF-11988 > URL: https://issues.jboss.org/browse/RF-11988 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Mac OS X, Firefox 10, Chrome 17, GlassFish 3.1.2, Gl= assFish 4.0 > Reporter: Jason Lee > Fix For: 4.3-Tracking > > Attachments: rfupload.log, rfupload.tar.gz > > > While it renders fine, POSTs initiated from rich:fileUpload error out. I= have tested this using both Firefox 10+ and Chrome 17+ against GlassFish 3= .1.2 and GlassFish 4.0. I will attach both the log file and a sample appli= cation that should demonstrate the issue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4297667411431442742==-- From jira-events at lists.jboss.org Thu Mar 1 05:05:37 2012 Content-Type: multipart/mixed; boundary="===============3955012294309507201==" MIME-Version: 1.0 From: Balaji Thangamani (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11988) rich:fileUpload doesn't seem to work on GlassFish Date: Thu, 01 Mar 2012 05:05:37 -0500 Message-ID: <1473385016.56655.1330596337233.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1031298844.7144.1329428856250.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3955012294309507201== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11988?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672506#com= ment-12672506 ] = Balaji Thangamani edited comment on RF-11988 at 3/1/12 5:05 AM: ---------------------------------------------------------------- This issue has nothinf to do with glassfish. The issue is the MyFaces versi= on. rich:fileUpload works smoothly with Mojarra RI(atleast with the latest = version). I checked with version MyFaces 2.0.2 it did not work. But when up= graded to Latest MyFaces release (2.0.12) it worked. I tested this in Tomca= t and Glassfish and rich:upload works smoothly with MyFaces 2.0.12 atleast.= I have not tried with JSF 2.1 implementations. = was (Author: balaji.thangamani): This issue has nothinf to do with glassfish. The issue is the MyFaces v= ersion. rich:fileUpload works smoothly with Mojarra RI(atleast with the lat= est version). I checked with version MyFaces 2.0.2 it did not work. But whe= n upgraded to Latest MyFaces release (2.0.12) it worked. I tested this in T= omcat and Glassfish and rich:upload works smoothly. = > rich:fileUpload doesn't seem to work on GlassFish > ------------------------------------------------- > > Key: RF-11988 > URL: https://issues.jboss.org/browse/RF-11988 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Mac OS X, Firefox 10, Chrome 17, GlassFish 3.1.2, Gl= assFish 4.0 > Reporter: Jason Lee > Fix For: 4.3-Tracking > > Attachments: rfupload.log, rfupload.tar.gz > > > While it renders fine, POSTs initiated from rich:fileUpload error out. I= have tested this using both Firefox 10+ and Chrome 17+ against GlassFish 3= .1.2 and GlassFish 4.0. I will attach both the log file and a sample appli= cation that should demonstrate the issue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3955012294309507201==-- From jira-events at lists.jboss.org Thu Mar 1 05:10:51 2012 Content-Type: multipart/mixed; boundary="===============8598737621166352767==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Thu, 01 Mar 2012 05:10:50 -0500 Message-ID: <239801596.56696.1330596650757.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8598737621166352767== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672463#com= ment-12672463 ] = Juraj Huska edited comment on RF-12003 at 3/1/12 5:09 AM: ---------------------------------------------------------- I have removed richfaces dependencies (as there is not any RichFaces compon= ent used in the example), and the behavior is the same. = So IMHO it is not caused by RichFaces but JSF mojarra instead. I can file a= n issue there, if you agree ? = was (Author: jhuska): I have removed richfaces dependencies (as there is not RichFaces compon= ent used in the example), and the behavior is the same. = So IMHO it is not caused by RichFaces but JSF mojarra. I can file an issue = there, if you agree ? = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Assignee: Juraj Huska > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8598737621166352767==-- From jira-events at lists.jboss.org Thu Mar 1 05:11:07 2012 Content-Type: multipart/mixed; boundary="===============2638763530403394137==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Thu, 01 Mar 2012 05:10:51 -0500 Message-ID: <1677632868.56700.1330596651584.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2638763530403394137== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska reassigned RF-12003: -------------------------------- Assignee: (was: Juraj Huska) = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2638763530403394137==-- From jira-events at lists.jboss.org Thu Mar 1 07:20:36 2012 Content-Type: multipart/mixed; boundary="===============1111081885623533614==" MIME-Version: 1.0 From: Joern Ohmen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Thu, 01 Mar 2012 07:20:36 -0500 Message-ID: <1415618735.57240.1330604436550.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1111081885623533614== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672584#com= ment-12672584 ] = Joern Ohmen commented on RF-12003: ---------------------------------- I think you are right, sorry I didn't test it without RichFaces. = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1111081885623533614==-- From jira-events at lists.jboss.org Thu Mar 1 11:33:39 2012 Content-Type: multipart/mixed; boundary="===============3557873548210035691==" MIME-Version: 1.0 From: Jason Lee (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11988) rich:fileUpload doesn't seem to work on GlassFish Date: Thu, 01 Mar 2012 11:33:39 -0500 Message-ID: <1067849341.58845.1330619619651.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1031298844.7144.1329428856250.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3557873548210035691== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11988?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672806#com= ment-12672806 ] = Jason Lee commented on RF-11988: -------------------------------- GlassFish does not use MyFaces. It uses Mojarra. = > rich:fileUpload doesn't seem to work on GlassFish > ------------------------------------------------- > > Key: RF-11988 > URL: https://issues.jboss.org/browse/RF-11988 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Mac OS X, Firefox 10, Chrome 17, GlassFish 3.1.2, Gl= assFish 4.0 > Reporter: Jason Lee > Fix For: 4.3-Tracking > > Attachments: rfupload.log, rfupload.tar.gz > > > While it renders fine, POSTs initiated from rich:fileUpload error out. I= have tested this using both Firefox 10+ and Chrome 17+ against GlassFish 3= .1.2 and GlassFish 4.0. I will attach both the log file and a sample appli= cation that should demonstrate the issue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3557873548210035691==-- From jira-events at lists.jboss.org Thu Mar 1 16:07:37 2012 Content-Type: multipart/mixed; boundary="===============3414185942125551182==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11635) rich:calendar missing attribute title Date: Thu, 01 Mar 2012 16:07:36 -0500 Message-ID: <314395588.60174.1330636056755.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 466623820.48577.1320229605292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3414185942125551182== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11635?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672930#com= ment-12672930 ] = Brian Leathem commented on RF-11635: ------------------------------------ This should be a trivial matter of adding a title @Attribute, and passing t= he attribute through in the render to the input component. = > rich:calendar missing attribute title > ------------------------------------- > > Key: RF-11635 > URL: https://issues.jboss.org/browse/RF-11635 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone3 > Reporter: Rene O > Priority: Minor > Fix For: 4.3-Tracking > > > The rich:calendar component has no title-attribute. > Example: > shows no tooltip. > shows the tooltip 'some text' -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3414185942125551182==-- From jira-events at lists.jboss.org Thu Mar 1 16:50:39 2012 Content-Type: multipart/mixed; boundary="===============6717444213928365728==" MIME-Version: 1.0 From: Vairavan Laxman (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10758) Input fields in popupPanel loose focus Date: Thu, 01 Mar 2012 16:50:39 -0500 Message-ID: <1424859652.60231.1330638639032.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 285449601.26426.1300194531841.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6717444213928365728== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10758?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12672938#com= ment-12672938 ] = Vairavan Laxman commented on RF-10758: -------------------------------------- Even I'm facing the same issue on both Firefox and Internet Explorer. Any fix for this would be great! = > Input fields in popupPanel loose focus > -------------------------------------- > > Key: RF-10758 > URL: https://issues.jboss.org/browse/RF-10758 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.CR1 > Environment: Tomcat 7.0.8, MyFaces 2.0.4, RichFaces 4.0.0-SNAPSHO= T, Firefox 3.6.15, InternetExplorer 8 > Reporter: Marc-Christian Schroeer > Fix For: 4.Future > > > When opening a popupPanel with inputText-components, pressing the tab key= to switch between input fields results in the address input field getting = the focus. tabindex-attributes do not help this issue. This issue does not = exist with Google Chrome browsers. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6717444213928365728==-- From jira-events at lists.jboss.org Fri Mar 2 00:07:38 2012 Content-Type: multipart/mixed; boundary="===============3360969145802953613==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10758) Input fields in popupPanel loose focus Date: Fri, 02 Mar 2012 00:07:38 -0500 Message-ID: <1256284190.61310.1330664858030.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 285449601.26426.1300194531841.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3360969145802953613== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10758?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-10758: ------------------------------- Fix Version/s: 4.3.0.Milestone1 (was: 4.Future) Forum Reference: http://community.jboss.org/message/593845#593845 (was= : http://community.jboss.org/message/593845#593845) = > Input fields in popupPanel loose focus > -------------------------------------- > > Key: RF-10758 > URL: https://issues.jboss.org/browse/RF-10758 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.CR1 > Environment: Tomcat 7.0.8, MyFaces 2.0.4, RichFaces 4.0.0-SNAPSHO= T, Firefox 3.6.15, InternetExplorer 8 > Reporter: Marc-Christian Schroeer > Fix For: 4.3.0.Milestone1 > > > When opening a popupPanel with inputText-components, pressing the tab key= to switch between input fields results in the address input field getting = the focus. tabindex-attributes do not help this issue. This issue does not = exist with Google Chrome browsers. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3360969145802953613==-- From jira-events at lists.jboss.org Fri Mar 2 02:41:36 2012 Content-Type: multipart/mixed; boundary="===============6947985133265464195==" MIME-Version: 1.0 From: Marek Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12020) Reduce number of absolute opened files Date: Fri, 02 Mar 2012 02:41:36 -0500 Message-ID: <756676139.61444.1330674096251.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6947985133265464195== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Marek Novotny created RF-12020: ---------------------------------- Summary: Reduce number of absolute opened files Key: RF-12020 URL: https://issues.jboss.org/browse/RF-12020 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: cdk Affects Versions: 4.2.0.Final Environment: linux Reporter: Marek Novotny While RF Components is compiled, it normally over goes under limit for maxi= mum open files. I did some change which helped a little, but there will be probably bigger = effect if the logic is re-factored to not open all files at the same time i= n generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassG= enerator.java of render method. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6947985133265464195==-- From jira-events at lists.jboss.org Fri Mar 2 02:43:36 2012 Content-Type: multipart/mixed; boundary="===============3872685968434369305==" MIME-Version: 1.0 From: Marek Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12020) Reduce number of absolute opened files Date: Fri, 02 Mar 2012 02:43:36 -0500 Message-ID: <507708856.61447.1330674216163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 756676139.61444.1330674096251.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3872685968434369305== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12020?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Marek Novotny updated RF-12020: ------------------------------- Attachment: cdk-generator.patch Patch for closing files in finally block to be sure not to let open files. = > Reduce number of absolute opened files > -------------------------------------- > > Key: RF-12020 > URL: https://issues.jboss.org/browse/RF-12020 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.2.0.Final > Environment: linux > Reporter: Marek Novotny > Attachments: cdk-generator.patch > > > While RF Components is compiled, it normally over goes under limit for ma= ximum open files. > I did some change which helped a little, but there will be probably bigge= r effect if the logic is re-factored to not open all files at the same time= in generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClas= sGenerator.java of render method. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3872685968434369305==-- From jira-events at lists.jboss.org Fri Mar 2 02:49:36 2012 Content-Type: multipart/mixed; boundary="===============4497150523350112459==" MIME-Version: 1.0 From: Marek Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12021) Compilation of Input UI component logs 2 errors about faces-config.xml Date: Fri, 02 Mar 2012 02:49:36 -0500 Message-ID: <518462150.61467.1330674576214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4497150523350112459== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Marek Novotny created RF-12021: ---------------------------------- Summary: Compilation of Input UI component logs 2 errors about= faces-config.xml Key: RF-12021 URL: https://issues.jboss.org/browse/RF-12021 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.2.0.Final Reporter: Marek Novotny Compilation of RF UI Components specifically Input UI has got 2 errors in l= og - related to bad faces-config.xml on line number 29 and 240. The following is snippet of log: {noformat} [INFO] --------------------------------------------------------------------= ---- [INFO] Building RichFaces UI Components: Input UI 4.2.0.Final [INFO] --------------------------------------------------------------------= ---- [INFO] = [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-java-version= ) @ richfaces-ui-input-ui --- [INFO] The requirePluginVersions rule is currently not compatible with Mave= n3. [INFO] = [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-maven-versio= n) @ richfaces-ui-input-ui --- [INFO] The requirePluginVersions rule is currently not compatible with Mave= n3. [INFO] = [INFO] --- maven-cdk-plugin:4.2.0.Final-redhat-1:generate (cdk-generate-sou= rces) @ richfaces-ui-input-ui --- [Error] faces-config.xml:29:71: cvc-complex-type.2.4.a: Invalid content was= found starting with element 'xi:include'. One of '{"http://java.sun.com/xm= l/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-extens= ion}' is expected. [Error] faces-config.xml:240:71: cvc-complex-type.2.4.a: Invalid content wa= s found starting with element 'xi:include'. One of '{"http://java.sun.com/x= ml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-exten= sion}' is expected. {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4497150523350112459==-- From jira-events at lists.jboss.org Fri Mar 2 09:45:37 2012 Content-Type: multipart/mixed; boundary="===============3098205896824274145==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11882) a4j jsFunction cannot transform java class to json in the getData method call Date: Fri, 02 Mar 2012 09:45:37 -0500 Message-ID: <575814952.63417.1330699537012.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1733561605.53594.1326459021528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3098205896824274145== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11882?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11882. -------------------------------- Assignee: Brian Leathem Resolution: Incomplete Description = > a4j jsFunction cannot transform java class to json in the getData method = call > -------------------------------------------------------------------------= ---- > > Key: RF-11882 > URL: https://issues.jboss.org/browse/RF-11882 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Reporter: Dirk Dollar > Assignee: Brian Leathem > Priority: Minor > Labels: waiting_on_user > > I get a = > FATAL: > {code} > ...javax.faces.FacesException: Error in conversion Java Object to JavaScr= ipt > at org.ajax4jsf.javascript.ScriptUtils.appendScript(ScriptUtils.java:194= ) [:4.1.0.Final] > at org.ajax4jsf.javascript.ScriptUtils.appendScript(ScriptUtils.java:123= ) [:4.1.0.Final] > .... > Caused by: java.lang.IllegalAccessException: Class org.ajax4jsf.javascrip= t.PropertyUtils can not access a member of class java.util.HashMap$Entry wi= th modifiers "public final" > {code} > Which wasn't there in richfaces 3.3.3 > The code snippet: > {code} > class MyBean{ > public String actionMethod(){ > ....do something which creates a Map data, now I want to = sort it before I return it: > private List> sortDataIntoList(Map= data) { > List> sortedList =3D new ArrayList>(data.entrySet()); > Collections.sort(sortedList, new Comparator>() { > public int compare(Entry f1, Entry f2= ) { > return f1.getValue().compareTo(f2.getValue()); > } > }); > if(sortedList.size()>max) > return sortedList.subList(0, max); > return sortedList; > } > ...and return it from... > public static MyInnerClass{ > List> data > public MyInnerClass(List> data){ > this.data=3Ddata > } > public List> getData(){ > return data;} > } > } > {code} > results in the mentioned error > A possible workaround is to use one's own implementation of a key value o= bject e.g. something like = > http://stackoverflow.com/questions/521171/a-java-collection-of-value-pair= s-tuples -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3098205896824274145==-- From jira-events at lists.jboss.org Fri Mar 2 09:47:37 2012 Content-Type: multipart/mixed; boundary="===============5541505761530850415==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11966) Radiobuttons not visible in firefox but visible in IE Date: Fri, 02 Mar 2012 09:47:37 -0500 Message-ID: <360401397.63452.1330699657868.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 179375426.30615.1328707969055.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5541505761530850415== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11966?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11966: ------------------------------- Fix Version/s: 3.Future Labels: (was: waiting_on_user) Use of the a4j:support tag indicates this is an RF 3 issue. = > Radiobuttons not visible in firefox but visible in IE > ----------------------------------------------------- > > Key: RF-11966 > URL: https://issues.jboss.org/browse/RF-11966 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Roopa Shenoy > Priority: Blocker > Fix For: 3.Future > > > Hi , > We are facing certain issues regarding rendering radio buttons in firefox. > It works fine in IE but doesnot work in Firefox > Please find the below block of code. > In the code shown below,there are two panels for displaying radio buttons. > Last piece of code which displays commandlink is visible ,but the radiobu= ttons which needs to be shown on pageload is not visible. > When we click on commandlink , the flag showMoreValues turns true and onl= y on click of this link the radiobuttons in second part of the code is visi= ble. > Can you please help me out regarding this issue? > {code} > > > > > > > valueChangeListener=3D"#{subscripti= onCard.productChanged}" > value=3D"#{subscriptionCard.selecte= dProductCode}"> > reRender=3D"convertingForm,privatePa= ramCard,businessParamCard,errorDetailsSubs,facilitiesCard,numberSelectCard,= npPanel,paymentFormCard"/> > > > > > > > > items=3D"#{subscriptionCard.showMoreValues}"> > > valueChangeListener=3D"#{subscr= iptionCard.productChanged}" > value=3D"#{subscriptionCard.sel= ectedProductCode}"> > reRender=3D"convertingForm,priva= teParamCard,businessParamCard,errorDetailsSubs,facilitiesCard,numberSelectC= ard,npPanel,paymentFormCard"/> > itemValue=3D"#{privateAllProduc= ts.value}"/> > > > > > > > > action=3D"#{subscriptionCard.retrieveMor= eValuess}" > reRender=3D"moreValues" > value=3D"#{msgs.subscriptioncard_link_mo= re_Values}"> > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5541505761530850415==-- From jira-events at lists.jboss.org Fri Mar 2 10:23:36 2012 Content-Type: multipart/mixed; boundary="===============4496856290911425420==" MIME-Version: 1.0 From: Chris Ligon (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-7921) DropDownMenu: wrong vertical positioning of popup list on scrolling in Firefox Date: Fri, 02 Mar 2012 10:23:36 -0500 Message-ID: <50231828.63648.1330701816704.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1149049456.1253702269266.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============4496856290911425420== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7921?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12673223#comm= ent-12673223 ] = Chris Ligon commented on RF-7921: --------------------------------- I had a drop down menu in a rich:dataTable and it worked fine (no offset). = But, when I put the rich:dataTable inside of a rich:tab this offset issue = presented itself. = Mano, could you explain a little bit about what this piece of code is doing= ? Why are you doing the layer.replace part? It seems that maybe you are e= scaping the :, but why is that? This workaround works to some extent. The problem is that for another drop= down menu (with sub-menus) outside of the rich:dataTable this script causes= errors. Basically, the menu does not drop down, it's not visible at all. = And, after removing the mouse from over the menu item, I see just below th= e menu item, "/:/g/:/g". Is there a way to limit the scope of this script so that it just works on t= he dropdown menus that need it? = > DropDownMenu: wrong vertical positioning of popup list on scrolling in Fi= refox > -------------------------------------------------------------------------= ----- > > Key: RF-7921 > URL: https://issues.jboss.org/browse/RF-7921 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 3.3.1, 3.3.2.CR1 > Environment: winXP, hibernate 3.2.4.sp1, seam 2.1.0.SP1, firefox = 3.5.3 > Reporter: rofl rofl > Priority: Minor > Labels: drop_down_menu, firefox, position > Fix For: 3.Future > > Attachments: cannot_reproduce.jpg, ddmenu_pos_noScrolling.JPG, dd= menu_pos_withScrolling.JPG > > > The popup list of the drop down menu is wrongly positioned when one scrol= ls the page. It is shown too far below it's anchor point (i.e. it is not di= rectly connected to it's anchor point) - the offset changes on scrolling (i= .e. the more one scrools down, the farer below it is shown) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4496856290911425420==-- From jira-events at lists.jboss.org Fri Mar 2 11:00:38 2012 Content-Type: multipart/mixed; boundary="===============1817678663875717631==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8287) CDK Make build incremental Date: Fri, 02 Mar 2012 11:00:38 -0500 Message-ID: <1995453384.63786.1330704038258.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1018283144.1264201219651.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============1817678663875717631== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8287?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-8287: --------------------------- Attachment: IMAG0064.jpg = > CDK Make build incremental > -------------------------- > > Key: RF-8287 > URL: https://issues.jboss.org/browse/RF-8287 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: cdk > Reporter: Alexander Smirnov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > Attachments: AptBuilder-profile.png, CDKProcessorImpl-profile.png= , FreeMarker-usage.png, IMAG0064.jpg > > > To speed-up development builds, CDK should record "last modified" time of= source files in the model. Generated file should be written only if target= does not exist or its modification time is less then recorded for source f= iles. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1817678663875717631==-- From jira-events at lists.jboss.org Sat Mar 3 06:31:39 2012 Content-Type: multipart/mixed; boundary="===============7729646519275871820==" MIME-Version: 1.0 From: Frank Cornelis (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11382) Datatable and ExtendedDatatable evaluate value attribute even if rendered=false Date: Sat, 03 Mar 2012 06:31:38 -0500 Message-ID: <804248965.64904.1330774298829.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1693354179.35301.1315563986219.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7729646519275871820== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11382?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12673362#com= ment-12673362 ] = Frank Cornelis commented on RF-11382: ------------------------------------- This is a very annoying bug. If you have RBAC enabled on the bean that is b= eing called, the application explodes. When rendered evaluated to false, th= e dataTable should not call the bean as it might not have enough permission= s in this case. = > Datatable and ExtendedDatatable evaluate value attribute even if rendered= =3Dfalse > -------------------------------------------------------------------------= ------ > > Key: RF-11382 > URL: https://issues.jboss.org/browse/RF-11382 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final, 4.1.0.Milestone2 > Environment: Fedora 15, Glassfish 3.1.1, CDI (Weld) > Reporter: Frederick K=C3=A4mpfer > Assignee: Brian Leathem > Labels: lazy-loaded > Fix For: 4.3-Tracking > > > In Richfaces 4 both datatable and extendedDatatable evaluate the value at= tribute even when rendered is set to false, even though it is not necessary= . This makes it hard to achieve performance by trimming parts of the view t= ree. The built-in h:dataTable behaves correctly in that case. > To reproduce simply try this snipplet: > {code:xml} > > > > > {code} > Side note: The reason I'm posting this is, that i want to embed a rich:da= taTable in a ajax loaded rich:togglePanelItem which is loaded on demand. Pr= obably fixing the "render" problem will also make the dataTable lazy-loadab= le when switching to the corresponding togglePanelItem. > I hope this is no duplicate, I only found RichFaces 3 issues mentioning t= his problem. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7729646519275871820==-- From jira-events at lists.jboss.org Mon Mar 5 12:45:37 2012 Content-Type: multipart/mixed; boundary="===============4175774455922858110==" MIME-Version: 1.0 From: Virage Group (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8176) Upgrade Prototype to version 1.6.1 Date: Mon, 05 Mar 2012 12:45:37 -0500 Message-ID: <1951188654.67865.1330969537873.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1734615056.1259759489663.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============4175774455922858110== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8176?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12673702#comm= ent-12673702 ] = Virage Group commented on RF-8176: ---------------------------------- Hi, We ran into the prototype/hanging IE bug = https://community.jboss.org/message/560209 https://community.jboss.org/message/553262 and http://blog.swwomm.com/2010/04/1-item-remaining-problem-in-ie.html It seems that prototype 1.6.1 solves that bug. as "org.richfaces.ExcludeScripts" parameter seems not be available in 3.3.3= and patching the framework.pack.js file seems not easy, is there any chance to see a bug fix release of richfaces with Prototype ve= rsion 1.6.1 ? Perhaps is there any workaround ? (Of course, we are looking to upgrade to RF 4 but it won't be done in a sho= rt term and the "hanging ie" bug is upsetting the users) = > Upgrade Prototype to version 1.6.1 > ---------------------------------- > > Key: RF-8176 > URL: https://issues.jboss.org/browse/RF-8176 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 3.3.2.SR1 > Reporter: Francois Botha > Priority: Minor > Fix For: 3.Future > > > I know you guys had performance issues with Prototype 1.6.0.2, but maybe = the latest version (1.6.1 at time of writing) fixes those issues. = > I have a specific interest in version 1.6.1 because I'd like to use Growl= er for Prototype. Unfortunately Prototype 1.6.0.x has a bug which makes it = useless on IE. 1.6.1 solves that bug. Bug logged at https://prototype.light= houseapp.com/projects/8886/tickets/529-element-constructor-doesnt-add-class= name-in-ie8 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4175774455922858110==-- From jira-events at lists.jboss.org Mon Mar 5 18:17:36 2012 Content-Type: multipart/mixed; boundary="===============3332590675590583096==" MIME-Version: 1.0 From: Evan Toliopoulos (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11585) mediaOutput doesn't work in CDI @ConversationScoped Date: Mon, 05 Mar 2012 18:17:36 -0500 Message-ID: <769148453.68682.1330989456343.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1543595142.24553.1319547285289.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3332590675590583096== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11585?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12673800#com= ment-12673800 ] = Evan Toliopoulos commented on RF-11585: --------------------------------------- This problem also exists with @ViewScoped (JSF scope) beans. = > mediaOutput doesn't work in CDI @ConversationScoped > --------------------------------------------------- > > Key: RF-11585 > URL: https://issues.jboss.org/browse/RF-11585 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Environment: NetBeans7.0.1 + GlassFish 3.1.1 + CDI 1.1 + JSF2.1 += RichFaces4.0.0-Final. > Reporter: Edilmar Alves > Priority: Critical > Fix For: 4.3-Tracking > > Original Estimate: 4 weeks > Remaining Estimate: 4 weeks > > When using a controller with @ConversationScoped (CDI scope), the followi= ng exception arises: GRAVE: org.jboss.weld.context.ContextNotActiveExceptio= n: WELD-001303 No active contexts for scope type javax.enterprise.context.C= onversationScoped -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3332590675590583096==-- From jira-events at lists.jboss.org Mon Mar 5 18:21:36 2012 Content-Type: multipart/mixed; boundary="===============8645010134307344015==" MIME-Version: 1.0 From: Evan Toliopoulos (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11585) mediaOutput doesn't work in CDI @ConversationScoped Date: Mon, 05 Mar 2012 18:21:36 -0500 Message-ID: <192032280.68697.1330989696410.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1543595142.24553.1319547285289.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8645010134307344015== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11585?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12673800#com= ment-12673800 ] = Evan Toliopoulos edited comment on RF-11585 at 3/5/12 6:20 PM: --------------------------------------------------------------- This problem also exists with @ViewScoped (JSF scope) beans. [JBoss 6.1/JEE6, JSF 2.0, Seam 3.1.0, RichFaces 4.1.0] = was (Author: evantoliopoulos): This problem also exists with @ViewScoped (JSF scope) beans. = > mediaOutput doesn't work in CDI @ConversationScoped > --------------------------------------------------- > > Key: RF-11585 > URL: https://issues.jboss.org/browse/RF-11585 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Environment: NetBeans7.0.1 + GlassFish 3.1.1 + CDI 1.1 + JSF2.1 += RichFaces4.0.0-Final. > Reporter: Edilmar Alves > Priority: Critical > Fix For: 4.3-Tracking > > Original Estimate: 4 weeks > Remaining Estimate: 4 weeks > > When using a controller with @ConversationScoped (CDI scope), the followi= ng exception arises: GRAVE: org.jboss.weld.context.ContextNotActiveExceptio= n: WELD-001303 No active contexts for scope type javax.enterprise.context.C= onversationScoped -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8645010134307344015==-- From jira-events at lists.jboss.org Mon Mar 5 19:23:36 2012 Content-Type: multipart/mixed; boundary="===============3519839198283253709==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11985) rich:dataTable with MyFaces 2.x.x - Target Unreachable, identifier 'client' resolved to null Date: Mon, 05 Mar 2012 19:23:36 -0500 Message-ID: <132264452.68814.1330993416274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 119852735.5474.1329403117984.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3519839198283253709== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11985?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12673815#com= ment-12673815 ] = Brian Leathem commented on RF-11985: ------------------------------------ Jean ANDRE, The attached java files here are not compilable; they reference classes tha= t have not been provided. There are 4 facelet files included, and 3 java f= iles - is all this complexity required to reproduce this issue? Have you t= ried reproducing it with simpler conditions? As it stand now, I have to dis= ect the code samples you provided to discern your intent, and build a simpl= e example that reproduces the issue. Providing an EAR bundle is only goes = so far, as one is not easily able to make and observe changes to the framew= ork, nor the provided code. I've written a wiki article that highlights some important aspects to keep = in mind when submitting an issue report: https://community.jboss.org/wiki/SubmittingEffectiveIssueReports Please review the article, and consider any work you put into helping us is= olate the issue as your "contribution" to the open-source process. = Keep in mind that we are as interested in coming to a resolution with this = issue as you are, but with many individuals reporting bugs in many differen= t areas, we have to focus our attention on resolving issues that will have = the biggest impact to our user-base. = > rich:dataTable with MyFaces 2.x.x - Target Unreachable, identifier 'clien= t' resolved to null > -------------------------------------------------------------------------= ------------------- > > Key: RF-11985 > URL: https://issues.jboss.org/browse/RF-11985 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.CR1 > Environment: MyFaces 2.0.x and 2.1.6 - RichFaces 4.2.0 CR1 - WAS = 8.0.0.1 - Spring 3.0.6 - Hibernate Validator 4.2.0 Final > Reporter: Jean ANDRE > Priority: Critical > Labels: myfaces, waiting_on_user > Attachments: index.xhtml, listClient.xhtml, ResultClientControlle= r.java, searchClient.xhtml, SearchClientController.java, tabsClient.xhtml, = TabsClientController.java > > > We made a test under MyFaces implementation of JSF 2.0 and actually we go= t an error with the dataTable. At the first call of the web page, the dataT= able performs well but once the dataTable is redisplayed, the dataTable is = unable to reach an existing variable declared by the attribute var (ex.var= =3D"client"). > We made also the test by using the h:dataTable, the standard JSF tag and = it is working perfectly - As you know we also use Mojarra as JSF implementa= tion and it's working too. Then the problem seems to come from with rich:da= taTable. Nothing very special here in using the tag. > {code} > > > > > > >   > > rendered=3D"#{resultClientController.isDejaVu(client.id)}" > alt=3D"#{msg['common.dejaVu.alt']}" > title=3D"#{msg['common.dejaVu.tooltip']}" /> > > {code} > {code} > javax.faces.FacesException: javax.el.Prop= ertyNotFoundException: /pages/client/listClient.xhtml at line 78 and column= 51 rendered=3D"#{resultClientController.isDejaVu(client.id)}": Target Unre= achable, identifier 'client' resolved to null > at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.wrap(Exce= ptionHandlerImpl.java:241) > at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.handle(Ex= ceptionHandlerImpl.java:156) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl= .java:191) > at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java= :118) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:189) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper= .java:1147) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletW= rapper.java:722) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletW= rapper.java:449) > at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(Serv= letWrapperImpl.java:178) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppF= ilterChain.java:125) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilte= rChain.java:92) > at com.intact.crm.web.filter.LoginFilter.doFilter(LoginFilter.java:56) > at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterI= nstanceWrapper.java:192) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilte= rChain.java:89) > at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFil= terManager.java:919) > at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebA= ppFilterManager.java:1016) > at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(Cac= heServletWrapper.java:87) > at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:= 886) > at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.j= ava:1655) > at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.jav= a:195) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimina= tion(HttpInboundLink.java:452) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest= (HttpInboundLink.java:511) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(H= ttpInboundLink.java:305) > at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(Htt= pICLReadCallback.java:83) > at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted= (AioReadCompletionListener.java:165) > at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFutu= re.java:217) > at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChanne= lFuture.java:161) > at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138) > at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204) > at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.j= ava:775) > at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905) > at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1650) > Caused by: javax.el.PropertyNotFoundException: /pages/client/listClient.x= html at line 78 and column 51 rendered=3D"#{resultClientController.isDejaVu= (client.id)}": Target Unreachable, identifier 'client' resolved to null > at org.apache.myfaces.view.facelets.el.TagValueExpression.getValue(TagVa= lueExpression.java:89) > at javax.faces.component._DeltaStateHelper.eval(_DeltaStateHelper.java:2= 60) > at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java= :1007) > at javax.faces.component.UIComponent.isVisitable(UIComponent.java:289) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:767) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.richfaces.component.UIDataAdaptor.visitComponents(UIDataAdaptor.j= ava:1259) > at org.richfaces.component.UIDataAdaptor.visitDataChildren(UIDataAdaptor= .java:1286) > at org.richfaces.component.UIDataTableBase.visitDataChildren(UIDataTable= Base.java:359) > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:13= 60) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UINamingContainer.visitTree(UINamingContainer.j= ava:169) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractToggleP= anel.java:719) > at javax.faces.component.UIForm.visitTree(UIForm.java:269) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.apache.myfaces.view.facelets.tag.ui.DebugPhaseListener._doTreeVis= it(DebugPhaseListener.java:310) > at org.apache.myfaces.view.facelets.tag.ui.DebugPhaseListener.afterPhase= (DebugPhaseListener.java:286) > at org.apache.myfaces.lifecycle.PhaseListenerManager.informPhaseListener= sAfter(PhaseListenerManager.java:111) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl= .java:185) > ... 29 more > {code} > Please, not that the application is a single page application, everything= appends inside a single page. Dynamic include is used to achieve this goal= (see index.xhtml) - Tab is also dynamic except for the search. See screen = shot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3519839198283253709==-- From jira-events at lists.jboss.org Tue Mar 6 07:37:37 2012 Content-Type: multipart/mixed; boundary="===============0384804744618380518==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11970) Ajax event create exception on form submission when defined on dataTable inside that form Date: Tue, 06 Mar 2012 07:37:37 -0500 Message-ID: <1209297530.69886.1331037457195.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1907532891.33570.1328789028473.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0384804744618380518== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11970?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reassigned RF-11970: -------------------------------- Assignee: (was: J=C3=A1n Jamrich) Add problem simulation into Metamer. It still appears in RF 4.2.0-SNAPSHOT. For more info see following commit: https://github.com/richfaces/qa/commit/= d50647d277a47ba1833cfda75d5a8e2053233694 (metamer/application/src/main/webapp/components/richDataTable/rf-11970.xhtm= l) = > Ajax event create exception on form submission when defined on dataTable = inside that form > -------------------------------------------------------------------------= ---------------- > > Key: RF-11970 > URL: https://issues.jboss.org/browse/RF-11970 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Environment: All > Reporter: shimon lifshitz > > I defined ajax support event=3D"rowclick" on rich:dataTable. This table i= s defined inside a form. When I tried to submit the form (h:command). I got= an exception: > {code} > Caused by: java.lang.NullPointerException > at org.richfaces.renderkit.DataTableRenderer.doDecode(DataTableRen= derer.java:111) > at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:8= 0) > at javax.faces.component.UIComponentBase.decode(UIComponentBase.ja= va:787) > {code} > Problem can be easily fixed by addind check for null in relevent line: > {code} > if (!behaviorEvent.startsWith(ROW)) { ---> > if (behaviorEvent =3D=3D null ||!behaviorEvent.startsWith(ROW)) = > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0384804744618380518==-- From jira-events at lists.jboss.org Tue Mar 6 07:43:39 2012 Content-Type: multipart/mixed; boundary="===============4554473655137088210==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11985) rich:dataTable with MyFaces 2.x.x - Target Unreachable, identifier 'client' resolved to null Date: Tue, 06 Mar 2012 07:43:39 -0500 Message-ID: <1292865319.69903.1331037819604.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 119852735.5474.1329403117984.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4554473655137088210== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11985?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12673937#com= ment-12673937 ] = Jean ANDRE commented on RF-11985: --------------------------------- Hello Brian, Well, agree with your request - We understand your needs. For this bug, we = have cancelled the migration to MyFaces/CDI because under WAS we are not ab= le to upgrade to the latest version of 2.1.6. We learnt that WAS 8 is using= MyFaces 2.0.2.... We got also some other problems as explained below: After we changed the code to use the c:if and the subView (see forum: https= ://community.jboss.org/message/721147), the modifications made to the code = does not allow the application to perform well under MyFaces. We got some e= rror messages about duplicate Ids even if the application does not have any= duplicate Ids and even if the application is running perfectly under Mojar= ra. Another problem we found is about the id syntax. Under RAD/MyFaces, hav= ing an id like #{tab.id}-blabla is not correct but with Mojarra, it is. We = absolutely need to have a calculated Id as we create dynamically some tabs = and as we include several occurrences of the same physical fragment. Actually, the status is: under Mojorra, the application performs well. Unde= r MyFaces 2.0.2 the application is not compatible. (sounds strange...) If time permit, we will try to test the application under another applicati= on server with the latest implementation of MyFaces and with the latest imp= lementation of CDI (OWB). I will return back to you if we got some interest= ing results for you. Sincerely - Jean. = > rich:dataTable with MyFaces 2.x.x - Target Unreachable, identifier 'clien= t' resolved to null > -------------------------------------------------------------------------= ------------------- > > Key: RF-11985 > URL: https://issues.jboss.org/browse/RF-11985 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.CR1 > Environment: MyFaces 2.0.x and 2.1.6 - RichFaces 4.2.0 CR1 - WAS = 8.0.0.1 - Spring 3.0.6 - Hibernate Validator 4.2.0 Final > Reporter: Jean ANDRE > Priority: Critical > Labels: myfaces, waiting_on_user > Attachments: index.xhtml, listClient.xhtml, ResultClientControlle= r.java, searchClient.xhtml, SearchClientController.java, tabsClient.xhtml, = TabsClientController.java > > > We made a test under MyFaces implementation of JSF 2.0 and actually we go= t an error with the dataTable. At the first call of the web page, the dataT= able performs well but once the dataTable is redisplayed, the dataTable is = unable to reach an existing variable declared by the attribute var (ex.var= =3D"client"). > We made also the test by using the h:dataTable, the standard JSF tag and = it is working perfectly - As you know we also use Mojarra as JSF implementa= tion and it's working too. Then the problem seems to come from with rich:da= taTable. Nothing very special here in using the tag. > {code} > > > > > > >   > > rendered=3D"#{resultClientController.isDejaVu(client.id)}" > alt=3D"#{msg['common.dejaVu.alt']}" > title=3D"#{msg['common.dejaVu.tooltip']}" /> > > {code} > {code} > javax.faces.FacesException: javax.el.Prop= ertyNotFoundException: /pages/client/listClient.xhtml at line 78 and column= 51 rendered=3D"#{resultClientController.isDejaVu(client.id)}": Target Unre= achable, identifier 'client' resolved to null > at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.wrap(Exce= ptionHandlerImpl.java:241) > at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.handle(Ex= ceptionHandlerImpl.java:156) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl= .java:191) > at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java= :118) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:189) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper= .java:1147) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletW= rapper.java:722) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletW= rapper.java:449) > at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(Serv= letWrapperImpl.java:178) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppF= ilterChain.java:125) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilte= rChain.java:92) > at com.intact.crm.web.filter.LoginFilter.doFilter(LoginFilter.java:56) > at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterI= nstanceWrapper.java:192) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilte= rChain.java:89) > at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFil= terManager.java:919) > at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebA= ppFilterManager.java:1016) > at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(Cac= heServletWrapper.java:87) > at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:= 886) > at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.j= ava:1655) > at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.jav= a:195) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimina= tion(HttpInboundLink.java:452) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest= (HttpInboundLink.java:511) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(H= ttpInboundLink.java:305) > at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(Htt= pICLReadCallback.java:83) > at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted= (AioReadCompletionListener.java:165) > at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFutu= re.java:217) > at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChanne= lFuture.java:161) > at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138) > at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204) > at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.j= ava:775) > at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905) > at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1650) > Caused by: javax.el.PropertyNotFoundException: /pages/client/listClient.x= html at line 78 and column 51 rendered=3D"#{resultClientController.isDejaVu= (client.id)}": Target Unreachable, identifier 'client' resolved to null > at org.apache.myfaces.view.facelets.el.TagValueExpression.getValue(TagVa= lueExpression.java:89) > at javax.faces.component._DeltaStateHelper.eval(_DeltaStateHelper.java:2= 60) > at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java= :1007) > at javax.faces.component.UIComponent.isVisitable(UIComponent.java:289) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:767) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.richfaces.component.UIDataAdaptor.visitComponents(UIDataAdaptor.j= ava:1259) > at org.richfaces.component.UIDataAdaptor.visitDataChildren(UIDataAdaptor= .java:1286) > at org.richfaces.component.UIDataTableBase.visitDataChildren(UIDataTable= Base.java:359) > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:13= 60) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UINamingContainer.visitTree(UINamingContainer.j= ava:169) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractToggleP= anel.java:719) > at javax.faces.component.UIForm.visitTree(UIForm.java:269) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.apache.myfaces.view.facelets.tag.ui.DebugPhaseListener._doTreeVis= it(DebugPhaseListener.java:310) > at org.apache.myfaces.view.facelets.tag.ui.DebugPhaseListener.afterPhase= (DebugPhaseListener.java:286) > at org.apache.myfaces.lifecycle.PhaseListenerManager.informPhaseListener= sAfter(PhaseListenerManager.java:111) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl= .java:185) > ... 29 more > {code} > Please, not that the application is a single page application, everything= appends inside a single page. Dynamic include is used to achieve this goal= (see index.xhtml) - Tab is also dynamic except for the search. See screen = shot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4554473655137088210==-- From jira-events at lists.jboss.org Tue Mar 6 10:21:37 2012 Content-Type: multipart/mixed; boundary="===============7551461527604165712==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12022) showcase - UAgentInfo is not serialized Date: Tue, 06 Mar 2012 10:21:37 -0500 Message-ID: <1295764103.70688.1331047297172.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7551461527604165712== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12022: -------------------------------- Summary: showcase - UAgentInfo is not serialized Key: RF-12022 URL: https://issues.jboss.org/browse/RF-12022 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.2.0.Final Environment: -showcase, -Tomcat 6,7, -arquillian tests Reporter: Juraj Huska Priority: Trivial When running functional tests for showcase with Arquillian on Tomcat 6 or 7= , I am encountering following exception during showcase undeploying process: {code} WARNING: Cannot serialize session attribute userAgent for session E4F43AA62= 674D093726971AC8361F9F8 java.io.NotSerializableException: org.richfaces.demo.ui.UAgentInfo at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1164) at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1= 518) at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1483) at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) at org.apache.catalina.session.StandardSession.writeObject(StandardSession= .java:1585) at org.apache.catalina.session.StandardSession.writeObjectData(StandardSes= sion.java:1015) at org.apache.catalina.session.StandardManager.doUnload(StandardManager.ja= va:528) at org.apache.catalina.session.StandardManager.unload(StandardManager.java= :469) at org.apache.catalina.session.StandardManager.stop(StandardManager.java:6= 78) at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4882) at org.apache.catalina.manager.ManagerServlet.undeploy(ManagerServlet.java= :1390) at org.apache.catalina.manager.ManagerServlet.doGet(ManagerServlet.java:38= 2) at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:191) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authenticato= rBase.java:563) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 293) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 59) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:602) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) at java.lang.Thread.run(Thread.java:662) {code} UAgentInfo is used by UserAgentProcessor(session scoped bean) and therefore= IMHO should be serialized. When I made it serialize-able, the exception di= sappeared. I did not notice any broken functionality by this exception, and= same for the fixed one showcase, only cleaner test output. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7551461527604165712==-- From jira-events at lists.jboss.org Tue Mar 6 10:45:43 2012 Content-Type: multipart/mixed; boundary="===============8646731330409008936==" MIME-Version: 1.0 From: Bertrand P (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12023) comboBox in dataTable Date: Tue, 06 Mar 2012 10:45:42 -0500 Message-ID: <1186358326.70819.1331048742987.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8646731330409008936== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Bertrand P created RF-12023: ------------------------------- Summary: comboBox in dataTable Key: RF-12023 URL: https://issues.jboss.org/browse/RF-12023 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects, component-tables Affects Versions: 4.1.0.Final Environment: All Reporter: Bertrand P When a is in a of a , t= he row is selected when comboBox is selected. A workaround is: , but th= at doesn't work when the arrow is clicked. Because the arrow is generated in an independent span: = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8646731330409008936==-- From jira-events at lists.jboss.org Tue Mar 6 12:17:40 2012 Content-Type: multipart/mixed; boundary="===============1630925294921308727==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11992) cache bug in portlet Date: Tue, 06 Mar 2012 12:17:40 -0500 Message-ID: <1461297369.71211.1331054260375.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 162483894.26432.1329646296148.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1630925294921308727== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11992?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11992: ------------------------------- Fix Version/s: 4.3.0.Milestone1 Forum Reference: https://community.jboss.org/thread/178136?tstart=3D150= (was: https://community.jboss.org/thread/178136?tstart=3D150) = > cache bug in portlet > -------------------- > > Key: RF-11992 > URL: https://issues.jboss.org/browse/RF-11992 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final, 4.2.0.CR1 > Environment: jboss portal 2.7.2; Gatein portal > Reporter: Ivan Ravin > Priority: Minor > Fix For: 4.3.0.Milestone1 > > > On Jboss and Gatein portal richfaces cant be cached when user is logged i= n. > Bug is found for richfaces 3.3.3 but i think can be reproduced for 4.x be= cause org.richfaces.resource.AbstractCacheableResource has similar code. > The steps for reproduce bug are: > download portlet bridge 2.2 archive > deploy richFacesPortlet.war from portlet bridge archive (i used jboss= portal 2.7.2 bundle and GateIn-3.1.0-FINAL-jbossas) > look at network activity (i did with firefox + firebug, the same resu= lt on any other browser). Just open page with richfaces portlet. > When user is not logged in, all richfaces resources are caching well, and= this is headers returned by server: > |Cache-Control |max-age=3D86400| > |Content-Type |text/javascript| > |Date |Thu, 26 Jan 2012 17:57:39 GMT| > |Expires |27 Jan 2012 17:57:39 GMT| > |Last-Modified |26 Jan 2012 17:42:17 GMT| > |Server |Apache-Coyote/1.1| > |X-Powered-By |Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=3DJBoss_4_2_3_G= A date=3D200807181417)/JBossWeb-2.0| > But when user is logged in all richfaces stuff come from network every ti= me (more than 1.3 mb). > This is headers returned by portal 2.7.2 when user logged in: > |Cache-Control |{color:red}no-cache,{color} max-age=3D86400| > |Content-Type |text/javascript| > |Date |Thu, 26 Jan 2012 18:26:49 GMT| > |Expires |{color:red}Thu, 01 Jan 1970 03:00:00 MSK,{color} 27 Jan 2012 18= :26:49 GMT| > |Last-Modified |26 Jan 2012 18:05:56 GMT| > |{color:red}Pragma{color} |{color:red}No-cache{color}| > |Server |Apache-Coyote/1.1| > |Transfer-Encoding |chunked| > |X-Powered-By |Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=3DJBoss_4_2_3_G= A date=3D200807181417)/JBossWeb-2.0| > The same problem with GateIn-3.1.0-FINAL-jbossas bundle, but now only one= wrong header: > |Cache-Control |max-age=3D86400| > |Content-Type |text/javascript;charset=3DUTF-8| > |Date |Sat, 28 Jan 2012 08:54:14 GMT| > |Expires |29 Jan 2012 08:54:14 GMT| > |Last-Modified |28 Jan 2012 08:51:11 GMT| > |{color:red}Pragma{color} |{color:red}No-cache{color}| > |Server |Apache-Coyote/1.1| > |Transfer-Encoding |chunked| > |X-Powered-By |Servlet 2.5; JBoss-5.0/JBossWeb-2.1| > This header (Pragma) appears only when user is logged in, and again, all = richfaces resources come through network. > I did some debug and found that richfaces create good headers, but there = is some code in portal which put wrong values into real response before ric= hfaces. I cant find this code in portal sources, so maybe it is JBoss AS pr= oblem, or third party component. > In Gatein portal problem was partially resolved: it overwrites 2 wrong he= aders with values provided by richfaces, but "pragma" header is absent in r= ichfaces response, and this way in secured portlets richfaces generate too = much unnesessary traffic. > To solve problem for GateIn there is enough to provide empty Pragma heade= r; To solve problem for JBoss Portal its required to fix resource headers p= rocessing in portal code, like it done in gatein. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1630925294921308727==-- From jira-events at lists.jboss.org Tue Mar 6 12:17:40 2012 Content-Type: multipart/mixed; boundary="===============8580318815470263930==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11992) cache bug in portlet Date: Tue, 06 Mar 2012 12:17:39 -0500 Message-ID: <780022530.71206.1331054259177.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 162483894.26432.1329646296148.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8580318815470263930== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11992?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674079#com= ment-12674079 ] = Brian Leathem commented on RF-11992: ------------------------------------ Comments from Ken Finnigan in IRC: {quote} (07:05:42 AM) kenfinnigan: bleathem: if the code snippet in the JIRA is acc= urate, in terms of what RF *does* set in headers (07:06:19 AM) kenfinnigan: then I would say it makes sense to set the blank= Pragma to prevent any browsers from ignoring the Cache Control settings (07:06:38 AM) kenfinnigan: as it appears HTTP 1.0 uses Pragma, whereas 1.1 = uses Cache Control (07:06:52 AM) kenfinnigan: so it could be that the portal servers only unde= rstand 1.0 of HTTP (07:07:51 AM) kenfinnigan: though not sure about that last stmt, as that wo= uld imply EAP 5 doesn't understand HTTP 1.1 (07:07:54 AM) kenfinnigan: which I know is not the case (07:08:06 AM) kenfinnigan: either way, probably makes sense for RF to set it {quote} = > cache bug in portlet > -------------------- > > Key: RF-11992 > URL: https://issues.jboss.org/browse/RF-11992 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final, 4.2.0.CR1 > Environment: jboss portal 2.7.2; Gatein portal > Reporter: Ivan Ravin > Priority: Minor > Fix For: 4.3.0.Milestone1 > > > On Jboss and Gatein portal richfaces cant be cached when user is logged i= n. > Bug is found for richfaces 3.3.3 but i think can be reproduced for 4.x be= cause org.richfaces.resource.AbstractCacheableResource has similar code. > The steps for reproduce bug are: > download portlet bridge 2.2 archive > deploy richFacesPortlet.war from portlet bridge archive (i used jboss= portal 2.7.2 bundle and GateIn-3.1.0-FINAL-jbossas) > look at network activity (i did with firefox + firebug, the same resu= lt on any other browser). Just open page with richfaces portlet. > When user is not logged in, all richfaces resources are caching well, and= this is headers returned by server: > |Cache-Control |max-age=3D86400| > |Content-Type |text/javascript| > |Date |Thu, 26 Jan 2012 17:57:39 GMT| > |Expires |27 Jan 2012 17:57:39 GMT| > |Last-Modified |26 Jan 2012 17:42:17 GMT| > |Server |Apache-Coyote/1.1| > |X-Powered-By |Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=3DJBoss_4_2_3_G= A date=3D200807181417)/JBossWeb-2.0| > But when user is logged in all richfaces stuff come from network every ti= me (more than 1.3 mb). > This is headers returned by portal 2.7.2 when user logged in: > |Cache-Control |{color:red}no-cache,{color} max-age=3D86400| > |Content-Type |text/javascript| > |Date |Thu, 26 Jan 2012 18:26:49 GMT| > |Expires |{color:red}Thu, 01 Jan 1970 03:00:00 MSK,{color} 27 Jan 2012 18= :26:49 GMT| > |Last-Modified |26 Jan 2012 18:05:56 GMT| > |{color:red}Pragma{color} |{color:red}No-cache{color}| > |Server |Apache-Coyote/1.1| > |Transfer-Encoding |chunked| > |X-Powered-By |Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=3DJBoss_4_2_3_G= A date=3D200807181417)/JBossWeb-2.0| > The same problem with GateIn-3.1.0-FINAL-jbossas bundle, but now only one= wrong header: > |Cache-Control |max-age=3D86400| > |Content-Type |text/javascript;charset=3DUTF-8| > |Date |Sat, 28 Jan 2012 08:54:14 GMT| > |Expires |29 Jan 2012 08:54:14 GMT| > |Last-Modified |28 Jan 2012 08:51:11 GMT| > |{color:red}Pragma{color} |{color:red}No-cache{color}| > |Server |Apache-Coyote/1.1| > |Transfer-Encoding |chunked| > |X-Powered-By |Servlet 2.5; JBoss-5.0/JBossWeb-2.1| > This header (Pragma) appears only when user is logged in, and again, all = richfaces resources come through network. > I did some debug and found that richfaces create good headers, but there = is some code in portal which put wrong values into real response before ric= hfaces. I cant find this code in portal sources, so maybe it is JBoss AS pr= oblem, or third party component. > In Gatein portal problem was partially resolved: it overwrites 2 wrong he= aders with values provided by richfaces, but "pragma" header is absent in r= ichfaces response, and this way in secured portlets richfaces generate too = much unnesessary traffic. > To solve problem for GateIn there is enough to provide empty Pragma heade= r; To solve problem for JBoss Portal its required to fix resource headers p= rocessing in portal code, like it done in gatein. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8580318815470263930==-- From jira-events at lists.jboss.org Tue Mar 6 12:23:36 2012 Content-Type: multipart/mixed; boundary="===============1317265750832272700==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11985) rich:dataTable with MyFaces 2.x.x - Target Unreachable, identifier 'client' resolved to null Date: Tue, 06 Mar 2012 12:23:36 -0500 Message-ID: <105709060.71226.1331054616255.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 119852735.5474.1329403117984.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1317265750832272700== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11985?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11985: ------------------------------- Fix Version/s: 4.Future = > rich:dataTable with MyFaces 2.x.x - Target Unreachable, identifier 'clien= t' resolved to null > -------------------------------------------------------------------------= ------------------- > > Key: RF-11985 > URL: https://issues.jboss.org/browse/RF-11985 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.CR1 > Environment: MyFaces 2.0.x and 2.1.6 - RichFaces 4.2.0 CR1 - WAS = 8.0.0.1 - Spring 3.0.6 - Hibernate Validator 4.2.0 Final > Reporter: Jean ANDRE > Priority: Critical > Labels: myfaces, waiting_on_user > Fix For: 4.Future > > Attachments: index.xhtml, listClient.xhtml, ResultClientControlle= r.java, searchClient.xhtml, SearchClientController.java, tabsClient.xhtml, = TabsClientController.java > > > We made a test under MyFaces implementation of JSF 2.0 and actually we go= t an error with the dataTable. At the first call of the web page, the dataT= able performs well but once the dataTable is redisplayed, the dataTable is = unable to reach an existing variable declared by the attribute var (ex.var= =3D"client"). > We made also the test by using the h:dataTable, the standard JSF tag and = it is working perfectly - As you know we also use Mojarra as JSF implementa= tion and it's working too. Then the problem seems to come from with rich:da= taTable. Nothing very special here in using the tag. > {code} > > > > > > >   > > rendered=3D"#{resultClientController.isDejaVu(client.id)}" > alt=3D"#{msg['common.dejaVu.alt']}" > title=3D"#{msg['common.dejaVu.tooltip']}" /> > > {code} > {code} > javax.faces.FacesException: javax.el.Prop= ertyNotFoundException: /pages/client/listClient.xhtml at line 78 and column= 51 rendered=3D"#{resultClientController.isDejaVu(client.id)}": Target Unre= achable, identifier 'client' resolved to null > at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.wrap(Exce= ptionHandlerImpl.java:241) > at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.handle(Ex= ceptionHandlerImpl.java:156) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl= .java:191) > at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java= :118) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:189) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper= .java:1147) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletW= rapper.java:722) > at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletW= rapper.java:449) > at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(Serv= letWrapperImpl.java:178) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppF= ilterChain.java:125) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilte= rChain.java:92) > at com.intact.crm.web.filter.LoginFilter.doFilter(LoginFilter.java:56) > at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterI= nstanceWrapper.java:192) > at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilte= rChain.java:89) > at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFil= terManager.java:919) > at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebA= ppFilterManager.java:1016) > at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(Cac= heServletWrapper.java:87) > at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:= 886) > at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.j= ava:1655) > at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.jav= a:195) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimina= tion(HttpInboundLink.java:452) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest= (HttpInboundLink.java:511) > at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(H= ttpInboundLink.java:305) > at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(Htt= pICLReadCallback.java:83) > at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted= (AioReadCompletionListener.java:165) > at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFutu= re.java:217) > at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChanne= lFuture.java:161) > at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138) > at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204) > at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.j= ava:775) > at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905) > at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1650) > Caused by: javax.el.PropertyNotFoundException: /pages/client/listClient.x= html at line 78 and column 51 rendered=3D"#{resultClientController.isDejaVu= (client.id)}": Target Unreachable, identifier 'client' resolved to null > at org.apache.myfaces.view.facelets.el.TagValueExpression.getValue(TagVa= lueExpression.java:89) > at javax.faces.component._DeltaStateHelper.eval(_DeltaStateHelper.java:2= 60) > at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java= :1007) > at javax.faces.component.UIComponent.isVisitable(UIComponent.java:289) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:767) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.richfaces.component.UIDataAdaptor.visitComponents(UIDataAdaptor.j= ava:1259) > at org.richfaces.component.UIDataAdaptor.visitDataChildren(UIDataAdaptor= .java:1286) > at org.richfaces.component.UIDataTableBase.visitDataChildren(UIDataTable= Base.java:359) > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:13= 60) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UINamingContainer.visitTree(UINamingContainer.j= ava:169) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractToggleP= anel.java:719) > at javax.faces.component.UIForm.visitTree(UIForm.java:269) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at javax.faces.component.UIComponent.visitTree(UIComponent.java:793) > at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:= 991) > at org.apache.myfaces.view.facelets.tag.ui.DebugPhaseListener._doTreeVis= it(DebugPhaseListener.java:310) > at org.apache.myfaces.view.facelets.tag.ui.DebugPhaseListener.afterPhase= (DebugPhaseListener.java:286) > at org.apache.myfaces.lifecycle.PhaseListenerManager.informPhaseListener= sAfter(PhaseListenerManager.java:111) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl= .java:185) > ... 29 more > {code} > Please, not that the application is a single page application, everything= appends inside a single page. Dynamic include is used to achieve this goal= (see index.xhtml) - Tab is also dynamic except for the search. See screen = shot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1317265750832272700==-- From jira-events at lists.jboss.org Tue Mar 6 12:47:40 2012 Content-Type: multipart/mixed; boundary="===============2381051134949610238==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Tue, 06 Mar 2012 12:47:40 -0500 Message-ID: <983438734.71285.1331056060059.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2381051134949610238== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11884: ------------------------------- Fix Version/s: 4.2.1.CR1 = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2381051134949610238==-- From jira-events at lists.jboss.org Tue Mar 6 13:26:37 2012 Content-Type: multipart/mixed; boundary="===============0902111086484578111==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11801) ClientValidatorImpl ClassCastException in restoreState (StateHolderSaver not an Object[]) Date: Tue, 06 Mar 2012 13:26:37 -0500 Message-ID: <2093836170.71356.1331058397594.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1599733089.80179.1323286480699.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0902111086484578111== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11801?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11801: ------------------------------- Labels: waiting_on_user (was: ) For details on how to submit an effective code sample, refer to the guide: = https://community.jboss.org/wiki/SubmittingEffectiveIssueReports = > ClientValidatorImpl ClassCastException in restoreState (StateHolderSaver = not an Object[]) > -------------------------------------------------------------------------= ---------------- > > Key: RF-11801 > URL: https://issues.jboss.org/browse/RF-11801 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.CR1 > Reporter: Giovanni Pelosi > Assignee: Jan Papousek > Labels: waiting_on_user > Attachments: abDataTemplate.xhtml, dataform.xhtml, input.xhtml > > > when i do an ajax submit on a form with inputs fields = (h:inputText) = > (defined in a composite component), i got this exception: > ClassCastException > in org.richfaces.component.behavior.ClientValidatorImpl.restoreState at l= ine 357 > {code} > @Override > public void restoreState(FacesContext context, Object state) { > if (context =3D=3D null) { > throw new NullPointerException(); > } > if (state !=3D null) { > =3D=3D> Object[] values =3D (Object[]) state; > super.restoreState(context, values[0]); > if (values.length !=3D 1) { > groups =3D (Class[]) values[1]; > // If we saved state last time, save state again next tim= e. > clearInitialState(); > } > } > } > {code} > because state is an instance of javax.faces.component.StateHolderSaver > RF 4.1CR1 > MOJARRA 2.1.3 > JBoss 7.0.2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0902111086484578111==-- From jira-events at lists.jboss.org Tue Mar 6 13:30:39 2012 Content-Type: multipart/mixed; boundary="===============8037469401683315624==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11950) rich:findComponent does not retrieve the component for multiply-nested, dynamically generated tab components Date: Tue, 06 Mar 2012 13:30:37 -0500 Message-ID: <82987916.71370.1331058637955.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 25533681.21797.1328288808791.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8037469401683315624== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11950?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11950: ------------------------------- Summary: rich:findComponent does not retrieve the component for m= ultiply-nested, dynamically generated tab components (was: rich:findCompon= ent does not retrieve the component ) Fix Version/s: 4.Future Assignee: (was: J=C3=A1n Jamrich) = > rich:findComponent does not retrieve the component for multiply-nested, d= ynamically generated tab components > -------------------------------------------------------------------------= ----------------------------------- > > Key: RF-11950 > URL: https://issues.jboss.org/browse/RF-11950 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final > Environment: Websphere 8 - RAD 8 - JSF Mojorra 2.1.4 - Spring 3.0= .6 Final - Firefox 10.0 - Windows 7 (6.1 sp1) = > Reporter: Jean ANDRE > Fix For: 4.Future > > Attachments: index.xhtml, index.xhtml, listClient.xhtml, requestC= lientDocument.xhtml, requestClientDocument.xhtml, tabsClient.xhtml, tabsCli= ent.xhtml > > > The rich:findComponent does not retrieve the component - What we want to = achieve is to send .click() event on a command button. We got different err= ors depending the tests we made such as syntax error. > The involved code: > ------------------ > {code} > > > > value=3D"#{msg['common.command.cancel']}" > onclick=3D"#{rich:findComponent('#{activity.id}-closeCmd')}.click(= );;return false;" > render=3D"#{tab.id}-tabsClient" > immediate=3D"true" /> > {code} > The error we got: > ---------------- > {code} > syntax error - [Stopper sur une erreur] - jsf.js.jsf?ln=3Djavax.faces (li= gne 1) > .click();return false; > {code} > The corresponding view source: > ------------------------------ > {code} > onclick=3D"jsf.util.chain(this,event,".click();return false;", > "RichFaces.ajax( \"tabbedForm:TAB_CLIENT\\u002D1\\u002Drcd\\u00= 2DcancelCreateCmd\",event,{\"incId\":\"1\"} )"= ;); > return false;" = > name=3D"tabbedForm:TAB_CLIENT-1-rcd-cancelCreateCmd" id=3D"tabbedForm:TAB= _CLIENT-1-rcd-cancelCreateCmd"> > {code} > The generated javaScript under firebug: > -------------------------------------- > {code} > function onclick(event) { > jsf.util.chain(this, event, ".click();return false;", "RichFaces.ajax(\"t= abbedForm:TAB_CLIENT\\u002D1\\u002Drcd\\u002DcancelCreateCmd\",event,{\"inc= Id\":\"1\"} )"); > return false; > } > {code} > If we hard code the Id instead of the calculated one we got following err= or: > {code} > uncaught exception: Syntax error, unrecognized expression: TAB_CLIENT-1-T= AB_RCD-closeCmd > Line 0 > {code} > The generated javaScript under firebug: > -------------------------------------- > {code} > function anonymous(event) { > rich: > findComponent("TAB_CLIENT-1-TAB_RCD-closeCmd").click(); > return false; > } > {code} > If we use directly jQuery: > {code} > > > > value=3D"#{msg['common.command.cancel']}" > onclick=3D"$('##{activity.id}-closeCmd').click();return fal= se;" > render=3D"desktopTabPanel" > immediate=3D"true" /> > {code} > {code} > missing ; before statement > http://localhost:12000/crm/javax.faces.resource/jsf.js.jsf?ln=3Djavax.fac= es > Line 1 > {code} > If we hardcode an existing static Id, we got the error as shown the scree= n capture: > {code} > function onclick(event) { > jsf.util.chain(this, event, "org.richfaces.component.UICommandButton(a)39= de2ca.click();", "RichFaces.ajax(\"tabbedForm:TAB_CLIENT\\u002D1\\u002Drcd\= \u002DcancelCreateCmd\",event,{\"incId\":\"1\"} )"); > return false; > } > {code} > {code} > value=3D"#{msg['common.command.cancel']}" > onclick=3D"#{rich:findComponent('qsearchClient')}.click();" > render=3D"#{tab.id}-tabsClient" > immediate=3D"true" />  > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8037469401683315624==-- From jira-events at lists.jboss.org Tue Mar 6 14:18:41 2012 Content-Type: multipart/mixed; boundary="===============3030714290777411682==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11970) Ajax event create exception on form submission when defined on dataTable inside that form Date: Tue, 06 Mar 2012 14:18:41 -0500 Message-ID: <1984151675.71412.1331061521328.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1907532891.33570.1328789028473.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3030714290777411682== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11970?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11970: ------------------------------- Fix Version/s: 4.3.0.Milestone1 Shimon - thanks for the debug work and identifying the source of the proble= m. = If you could submit a pull request with this fix in place, that would be ev= en better (should you be interested in doing so, check out the [Contributor= Getting Started Guide|https://community.jboss.org/wiki/ContributorGettingS= tartedGuide]) = > Ajax event create exception on form submission when defined on dataTable = inside that form > -------------------------------------------------------------------------= ---------------- > > Key: RF-11970 > URL: https://issues.jboss.org/browse/RF-11970 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Environment: All > Reporter: shimon lifshitz > Fix For: 4.3.0.Milestone1 > > > I defined ajax support event=3D"rowclick" on rich:dataTable. This table i= s defined inside a form. When I tried to submit the form (h:command). I got= an exception: > {code} > Caused by: java.lang.NullPointerException > at org.richfaces.renderkit.DataTableRenderer.doDecode(DataTableRen= derer.java:111) > at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:8= 0) > at javax.faces.component.UIComponentBase.decode(UIComponentBase.ja= va:787) > {code} > Problem can be easily fixed by addind check for null in relevent line: > {code} > if (!behaviorEvent.startsWith(ROW)) { ---> > if (behaviorEvent =3D=3D null ||!behaviorEvent.startsWith(ROW)) = > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3030714290777411682==-- From jira-events at lists.jboss.org Tue Mar 6 14:20:36 2012 Content-Type: multipart/mixed; boundary="===============1316708100975160663==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12000) TabPanel - Backing bean initialization when a same bean manages multiple dynamic tabs Date: Tue, 06 Mar 2012 14:20:36 -0500 Message-ID: <573618106.71414.1331061636156.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 572385267.36048.1329946356737.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1316708100975160663== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12000?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12000: ------------------------------- Fix Version/s: 4.3-Tracking Forum Reference: https://community.jboss.org/message/718460#718460 (wa= s: https://community.jboss.org/message/718460#718460) There is some ongoing work at the moment, investigating using a the UIRepea= t mechanism to back the TabPanel, rather than a UIOutput component. This s= hould provide a better mechanism for adding dynamic panels. = > TabPanel - Backing bean initialization when a same bean manages multiple = dynamic tabs > -------------------------------------------------------------------------= ------------ > > Key: RF-12000 > URL: https://issues.jboss.org/browse/RF-12000 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Jean ANDRE > Fix For: 4.3-Tracking > > > See the conversation : https://community.jboss.org/message/718460#718460 > Based on the work done, it is more clear about what we need. When a tabPa= nel, contains dynamic tabs handle by the same backing-bean (because of the = same include xhtml), we need a way, a reliable manner to initialize the bac= king bean when the user switch from a tab to another tab. It might be a spe= cific tag, as rich:bean init=3D"#{.....initialize(params)}". This tab shou= ld be executed first, before any other calls of the backing bean whatever i= ts place inside the xhtml page. If several such tags exist wherever (templa= te, include), they must be executed in their natural order, from the deeper= to the top of the page hierarchy. > So, what we need is a contextual initialization, because the @PostContruc= t is not well suitable for that situation and also a more simple solution r= ather trying to do it by the PhaseListener (and what about the context???). = > Related links around of this feature: > - http://www.coderanch.com/t/213757/JSF/java/initialize-backing-bean-bef= ore-page > - http://stackoverflow.com/questions/8132394/backing-bean-initialization > - http://www.icefaces.org/JForum/posts/list/13260.page > - http://cagataycivici.wordpress.com/2006/06/06/managed_beans_aware_of_t= he/ > - http://boardreader.com/thread/how_to_initialize_a_backing_bean_before_= w2nvX36qxy.html > Thank you -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1316708100975160663==-- From jira-events at lists.jboss.org Tue Mar 6 14:22:36 2012 Content-Type: multipart/mixed; boundary="===============1992760788796057175==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Tue, 06 Mar 2012 14:22:36 -0500 Message-ID: <280625553.71417.1331061756269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1992760788796057175== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12003: ---------------------------------- Assignee: Juraj Huska Excellent work Juraj - thanks for diggin into this. If you could file an u= pstream issue, and close this RichFaces issue, that would excellent. = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Assignee: Juraj Huska > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1992760788796057175==-- From jira-events at lists.jboss.org Tue Mar 6 14:26:36 2012 Content-Type: multipart/mixed; boundary="===============4197474800516030401==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12004) rich:dataTable. DataModel data & rowIndex are not synchronized when using breakRowBefore Date: Tue, 06 Mar 2012 14:26:36 -0500 Message-ID: <148444614.71429.1331061996127.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1570155572.44239.1330333297321.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4197474800516030401== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12004?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12004: ------------------------------- Fix Version/s: 4.Future = > rich:dataTable. DataModel data & rowIndex are not synchronized when using= breakRowBefore > -------------------------------------------------------------------------= --------------- > > Key: RF-12004 > URL: https://issues.jboss.org/browse/RF-12004 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Reporter: Logan MAUZAIZE > Priority: Minor > Labels: DataModel, breakRowBefore, isRowAvailable, rich:data= Table, rowData, rowIndex > Fix For: 4.Future > > > When activating breakRowBefore, the rowIndex of DataTable is using _physi= cal_ row (TR tag) where as rowData is using _logical_ row. > It causes the following incorrect behaviors (when selecting a valid line)= : > _if physical row index is greater than (or equal to) logical row count_ > * isRowAvailable() returns false > * getRowData() throws NoRowAvailableException > * Using both getRowIndex() and source data (ie from a backing-bean) cause= s RowIndexOutOfBoundException > _if physical row index is lower than logical row count and greather than = zero_ > * getRowData() doesn't return the matching row data > * Using both getRowIndex() and source data (ie from a backing-bean) doesn= 't return the matching row data > Note: Row filter usage haven't been tested and may cause more unexpected = behavior. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4197474800516030401==-- From jira-events at lists.jboss.org Tue Mar 6 14:28:36 2012 Content-Type: multipart/mixed; boundary="===============1203980992174801357==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12005) Issues of VDL docs in 4.2.0.Final Date: Tue, 06 Mar 2012 14:28:36 -0500 Message-ID: <177465407.71432.1331062116497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1573569927.44313.1330335036519.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1203980992174801357== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12005?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12005: ------------------------------- Fix Version/s: 4.3.0.Milestone1 Component/s: cdk = > Issues of VDL docs in 4.2.0.Final > --------------------------------- > > Key: RF-12005 > URL: https://issues.jboss.org/browse/RF-12005 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: cdk, doc > Affects Versions: 4.2.0.Final > Reporter: Pavol Pitonak > Fix For: 4.3.0.Milestone1 > > > a4j:queue > * attribute onevent undocumented (shouldn't be removed?) > rich:toScript() > * what is this? it is not documented neither in Developer Guide nor in = Component Reference > rich:graphValidator > * attributes groups, summary, type and value have strange description > rich:hashParam > * value false java.util.Map Not used, it is computed automatically > * shouldn't it be hidden if it is not used? > rich:notifyMessage(s) > * no component description > rich:notifyStack > * attribute position - all available options should be listed > rich:treeModelAdaptor > * no component description > rich:treeSelectionChangeListener > * no component description > rich:treeToggleListener > * no component description > rich:validator = > * no component description -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1203980992174801357==-- From jira-events at lists.jboss.org Tue Mar 6 14:30:36 2012 Content-Type: multipart/mixed; boundary="===============5429291645426660839==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12006) Some of resources like jquery.focus.js and ckeditor.js are not packaged Date: Tue, 06 Mar 2012 14:30:36 -0500 Message-ID: <950161369.71434.1331062236183.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 83400370.44769.1330343496187.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5429291645426660839== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12006?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12006: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D To be clear, this issue deals with resource packaging wehn resourceOptimiza= tion is enabled? Is the above resource still placed in the mapping file? Does this result i= n the resource not getting served? Seems like a significant bug if that's = the case. = > Some of resources like jquery.focus.js and ckeditor.js are not packaged > ----------------------------------------------------------------------- > > Key: RF-12006 > URL: https://issues.jboss.org/browse/RF-12006 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > In build of {{dist/static-resources}}, some of components are not package= d: > * {{jquery.focus.js}} > * {{ckeditor.js}} > It it not convenient to package {{ckeditor.js}}, but this issue might aff= ect more resources. > Further investigations required. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5429291645426660839==-- From jira-events at lists.jboss.org Tue Mar 6 14:32:38 2012 Content-Type: multipart/mixed; boundary="===============2271135930304410923==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12009) Showcase: wrong look of page header in Opera Mobile Date: Tue, 06 Mar 2012 14:32:37 -0500 Message-ID: <694200894.71448.1331062357565.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 208215608.44849.1330346556934.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2271135930304410923== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12009?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12009: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, so far the mobile compatibility targets Webkit based browsers. Does= the rest of the mobile showcase work well in the Opera Mobile browser? I= f so, then it's worth addressing this issue, otherwise, we should treat Ope= ra Mobile issues as a whole. = > Showcase: wrong look of page header in Opera Mobile > --------------------------------------------------- > > Key: RF-12009 > URL: https://issues.jboss.org/browse/RF-12009 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.2.0.Final > Environment: http://showcase.richfaces.org/ > Opera Mobile v 12.00.ADR-1202131246 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: Android.jpg, Opera.jpg > > > The header in Opera Mobile does not have the background. > It also means the AJAX status (which is white) is not shown when loading = new page. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2271135930304410923==-- From jira-events at lists.jboss.org Tue Mar 6 14:36:37 2012 Content-Type: multipart/mixed; boundary="===============8316420609078631626==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12012) rich:contextMenu re-render problem Date: Tue, 06 Mar 2012 14:36:36 -0500 Message-ID: <1193090039.71482.1331062596937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 739413833.48708.1330440217630.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8316420609078631626== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12012?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674125#com= ment-12674125 ] = Brian Leathem commented on RF-12012: ------------------------------------ Philip - thanks for taking the time to file an issue. To me this seems like a duplicate of RF-11973, with the same workaround. C= an you point out anything that makes this a distinct issue? If not, I will= close this issue as a duplicate, and address the problem when we address R= F-11973. = > rich:contextMenu re-render problem > ---------------------------------- > > Key: RF-12012 > URL: https://issues.jboss.org/browse/RF-12012 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: Apache Tomcat/7.0.23 , Mojarra 2.1.5, RichFaces 4.2.= 0.Final > Reporter: Philip Maes > Priority: Critical > Labels: waiting_on_user > > I have a extendedDataTable with a contextMenu attached to it. > When the selection changes on the extendedDataTable, a a4j:jsFunction is = called. This jsFunction renders the contextMenu. > {quote} > onselectionchange=3D"selChange('dtLivingCosts')" = > ... > > ... > action=3D"#{fhIndBean.selectionListener()}" > status=3D"none" render=3D"dtLivingCosts, contextMenu_dtLivingCosts"> > > > ... > attached=3D"true" mode=3D"ajax" > > ... > > {quote} > The problem is that as soon as I right-click, the contextMenu appears, th= e ajax request is sent and received, the view is partially updated (dtLivin= gCosts, contextMenu_dtLivingCosts) and then the contextMenu disappears and = won't appear anymore. > I noticed that the javascript code generated by RichFaces for the context= Menu is not rerendered as you can see on these two screenshots. The first o= ne shows the code when the page is generated for the first time. The second= one, when a right-click has been done on a row in the extendedDataTable: > http://img848.imageshack.us/img848/8876/cm1j.png > http://img19.imageshack.us/img19/5170/cm2c.png > A possible workaround is to refresh only menuItems of the contextMenu (ht= tps://issues.jboss.org/browse/RF-11973). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8316420609078631626==-- From jira-events at lists.jboss.org Tue Mar 6 14:38:37 2012 Content-Type: multipart/mixed; boundary="===============0373356506956956909==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Tue, 06 Mar 2012 14:38:37 -0500 Message-ID: <765107013.71487.1331062717098.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0373356506956956909== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12013: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, please assess and schedule this issue as appropriate. = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0373356506956956909==-- From jira-events at lists.jboss.org Tue Mar 6 14:38:40 2012 Content-Type: multipart/mixed; boundary="===============6557890892781077598==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12018) Typo in BOM: jsf-api should be jsp-api Date: Tue, 06 Mar 2012 14:38:38 -0500 Message-ID: <80312054.71509.1331062718168.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 269810633.51309.1330504476269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6557890892781077598== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12018?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12018: ------------------------------- Fix Version/s: 4.2.1.CR1 = > Typo in BOM: jsf-api should be jsp-api > -------------------------------------- > > Key: RF-12018 > URL: https://issues.jboss.org/browse/RF-12018 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.2.0.Final > Reporter: Marek Novotny > Priority: Minor > Fix For: 4.2.1.CR1 > > > This typo is not causing any issue, it is just confusing. > usage of version: > https://github.com/richfaces/build/blob/4.2.0.20120215-Final/bom/pom.xml#= L245 > definition of version: > https://github.com/richfaces/build/blob/4.2.0.20120215-Final/bom/pom.xml#= L62 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6557890892781077598==-- From jira-events at lists.jboss.org Tue Mar 6 14:40:37 2012 Content-Type: multipart/mixed; boundary="===============5689315579736896109==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12020) Reduce number of absolute opened files Date: Tue, 06 Mar 2012 14:40:37 -0500 Message-ID: <1015384607.71511.1331062837346.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 756676139.61444.1330674096251.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5689315579736896109== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12020?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12020: ------------------------------- Fix Version/s: 4.2.1.CR1 4.Future Assigning to 4.2.1.CR1 to address inclusion of the patch. The issue of fix= ing the underlying problem will be bumped to 4.Future, as this is only pose= s a problem building in restricted build environments. = > Reduce number of absolute opened files > -------------------------------------- > > Key: RF-12020 > URL: https://issues.jboss.org/browse/RF-12020 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.2.0.Final > Environment: linux > Reporter: Marek Novotny > Fix For: 4.2.1.CR1, 4.Future > > Attachments: cdk-generator.patch > > > While RF Components is compiled, it normally over goes under limit for ma= ximum open files. > I did some change which helped a little, but there will be probably bigge= r effect if the logic is re-factored to not open all files at the same time= in generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClas= sGenerator.java of render method. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5689315579736896109==-- From jira-events at lists.jboss.org Tue Mar 6 14:42:36 2012 Content-Type: multipart/mixed; boundary="===============4289409203222403660==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12022) showcase - UAgentInfo is not serialized Date: Tue, 06 Mar 2012 14:42:36 -0500 Message-ID: <1401743521.71518.1331062956251.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1295764103.70688.1331047297172.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4289409203222403660== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12022?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12022: ------------------------------- Fix Version/s: 4.3.0.Milestone1 = > showcase - UAgentInfo is not serialized > --------------------------------------- > > Key: RF-12022 > URL: https://issues.jboss.org/browse/RF-12022 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.2.0.Final > Environment: -showcase, > -Tomcat 6,7, > -arquillian tests > Reporter: Juraj Huska > Priority: Trivial > Fix For: 4.3.0.Milestone1 > > > When running functional tests for showcase with Arquillian on Tomcat 6 or= 7, I am encountering following exception during showcase undeploying proce= ss: > {code} > WARNING: Cannot serialize session attribute userAgent for session E4F43AA= 62674D093726971AC8361F9F8 > java.io.NotSerializableException: org.richfaces.demo.ui.UAgentInfo > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1164) > at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java= :1518) > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 83) > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) > at org.apache.catalina.session.StandardSession.writeObject(StandardSessi= on.java:1585) > at org.apache.catalina.session.StandardSession.writeObjectData(StandardS= ession.java:1015) > at org.apache.catalina.session.StandardManager.doUnload(StandardManager.= java:528) > at org.apache.catalina.session.StandardManager.unload(StandardManager.ja= va:469) > at org.apache.catalina.session.StandardManager.stop(StandardManager.java= :678) > at org.apache.catalina.core.StandardContext.stop(StandardContext.java:48= 82) > at org.apache.catalina.manager.ManagerServlet.undeploy(ManagerServlet.ja= va:1390) > at org.apache.catalina.manager.ManagerServlet.doGet(ManagerServlet.java:= 382) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:206) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:233) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:191) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authentica= torBase.java:563) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:127) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:293) > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :859) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:602) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:48= 9) > at java.lang.Thread.run(Thread.java:662) > {code} > UAgentInfo is used by UserAgentProcessor(session scoped bean) and therefo= re IMHO should be serialized. When I made it serialize-able, the exception = disappeared. I did not notice any broken functionality by this exception, a= nd same for the fixed one showcase, only cleaner test output. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4289409203222403660==-- From jira-events at lists.jboss.org Tue Mar 6 14:42:36 2012 Content-Type: multipart/mixed; boundary="===============3686646165913067439==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12023) comboBox in dataTable Date: Tue, 06 Mar 2012 14:42:36 -0500 Message-ID: <1626382553.71521.1331062956355.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1186358326.70819.1331048742987.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3686646165913067439== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12023?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12023: ------------------------------- Fix Version/s: 4.3-Tracking = > comboBox in dataTable > ---------------------- > > Key: RF-12023 > URL: https://issues.jboss.org/browse/RF-12023 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects, component-tables > Affects Versions: 4.1.0.Final > Environment: All > Reporter: Bertrand P > Labels: richfaces > Fix For: 4.3-Tracking > > Original Estimate: 1 day, 4 hours > Remaining Estimate: 1 day, 4 hours > > When a is in a of a ,= the row is selected when comboBox is selected. > A workaround is: , but = that doesn't work when the arrow is clicked. > Because the arrow is generated in an independent span: > > > > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3686646165913067439==-- From jira-events at lists.jboss.org Tue Mar 6 14:42:36 2012 Content-Type: multipart/mixed; boundary="===============3685818864321011679==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12021) Compilation of Input UI component logs 2 errors about faces-config.xml Date: Tue, 06 Mar 2012 14:42:36 -0500 Message-ID: <2143113894.71516.1331062956185.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 518462150.61467.1330674576214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3685818864321011679== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12021?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12021: ---------------------------------- Assignee: Brian Leathem = > Compilation of Input UI component logs 2 errors about faces-config.xml > ---------------------------------------------------------------------- > > Key: RF-12021 > URL: https://issues.jboss.org/browse/RF-12021 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: Marek Novotny > Assignee: Brian Leathem > > Compilation of RF UI Components specifically Input UI has got 2 errors in= log - related to bad faces-config.xml on line number 29 and 240. > The following is snippet of log: > {noformat} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces UI Components: Input UI 4.2.0.Final > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-java-versi= on) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-maven-vers= ion) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-cdk-plugin:4.2.0.Final-redhat-1:generate (cdk-generate-s= ources) @ richfaces-ui-input-ui --- > [Error] faces-config.xml:29:71: cvc-complex-type.2.4.a: Invalid content w= as found starting with element 'xi:include'. One of '{"http://java.sun.com/= xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-exte= nsion}' is expected. > [Error] faces-config.xml:240:71: cvc-complex-type.2.4.a: Invalid content = was found starting with element 'xi:include'. One of '{"http://java.sun.com= /xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-ext= ension}' is expected. > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3685818864321011679==-- From jira-events at lists.jboss.org Tue Mar 6 15:19:40 2012 Content-Type: multipart/mixed; boundary="===============7951315893918019434==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12019) Upstream mojarra issue requires IE9 to be in compatibility mode Date: Tue, 06 Mar 2012 15:19:40 -0500 Message-ID: <266173146.71649.1331065180197.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 676753656.53754.1330535076071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7951315893918019434== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12019?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-12019: ----------------------------------------- Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=3D8006= 28 = > Upstream mojarra issue requires IE9 to be in compatibility mode > --------------------------------------------------------------- > > Key: RF-12019 > URL: https://issues.jboss.org/browse/RF-12019 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Reporter: Brian Leathem > Fix For: 4.3-Tracking > > > An upstream issue with mojarra ([JAVASERVERFACES-2063|http://java.net/jir= a/browse/JAVASERVERFACES-2063]) requires that IE9 be placed in compatibilit= y mode. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7951315893918019434==-- From jira-events at lists.jboss.org Tue Mar 6 15:19:40 2012 Content-Type: multipart/mixed; boundary="===============6300011978754483386==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12019) Upstream mojarra issue requires IE9 to be in compatibility mode Date: Tue, 06 Mar 2012 15:19:40 -0500 Message-ID: <1078416747.71647.1331065180115.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 676753656.53754.1330535076071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6300011978754483386== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12019?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-12019: ----------------------------------------- Bugzilla Update: Perform = > Upstream mojarra issue requires IE9 to be in compatibility mode > --------------------------------------------------------------- > > Key: RF-12019 > URL: https://issues.jboss.org/browse/RF-12019 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Reporter: Brian Leathem > Fix For: 4.3-Tracking > > > An upstream issue with mojarra ([JAVASERVERFACES-2063|http://java.net/jir= a/browse/JAVASERVERFACES-2063]) requires that IE9 be placed in compatibilit= y mode. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6300011978754483386==-- From jira-events at lists.jboss.org Tue Mar 6 15:40:36 2012 Content-Type: multipart/mixed; boundary="===============6331209289308418090==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12019) Upstream mojarra issue requires IE9 to be in compatibility mode Date: Tue, 06 Mar 2012 15:40:36 -0500 Message-ID: <859971843.71768.1331066436245.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 676753656.53754.1330535076071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6331209289308418090== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12019?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674159#com= ment-12674159 ] = RH Bugzilla Integration commented on RF-12019: ---------------------------------------------- Brian Leathem made a comment on [bug 800628|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D800628] Technical note added. If any revisions are required, please edit the "T= echnical Notes" field accordingly. All revisions will be proofread by the Engineering Content= Services team. = New Contents: An upstream issue (http://java.net/jira/browse/JAVASERVERFACES-2063) requir= es IE 9 to be run in compatibility mode. This can be accomplished by addin= g a meta tag to your page template, as described in: http://msdn.microsoft.= com/en-us/library/cc288325(v=3Dvs.85).aspx#SetMode. = > Upstream mojarra issue requires IE9 to be in compatibility mode > --------------------------------------------------------------- > > Key: RF-12019 > URL: https://issues.jboss.org/browse/RF-12019 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Reporter: Brian Leathem > Fix For: 4.3-Tracking > > > An upstream issue with mojarra ([JAVASERVERFACES-2063|http://java.net/jir= a/browse/JAVASERVERFACES-2063]) requires that IE9 be placed in compatibilit= y mode. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6331209289308418090==-- From jira-events at lists.jboss.org Tue Mar 6 17:38:36 2012 Content-Type: multipart/mixed; boundary="===============6142280294061314564==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11994) Xcss2EcssConverter error handling f:importResource Date: Tue, 06 Mar 2012 17:38:36 -0500 Message-ID: <698617468.72065.1331073516313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 377878399.29898.1329814962021.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6142280294061314564== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11994?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11994: ---------------------------- Git Pull Request: https://github.com/richfaces/core/pull/7 = > Xcss2EcssConverter error handling f:importResource > -------------------------------------------------- > > Key: RF-11994 > URL: https://issues.jboss.org/browse/RF-11994 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.CR1 > Reporter: Dupont Dupont > Assignee: Dupont Dupont > > When using Xcss2EcssConverter to transform xcss to ecss, I've the followi= ng error : > Source xcss : > {code:xml} = > > {code} > Is transformed to : > {noformat} = > @import url("#{resource['META-INF/skins/charte/commun/css/sx_commun.ecss'= ]"} > {noformat} > It should be : > {noformat} = > @import url("#{resource['META-INF/skins/charte/commun/css/sx_commun.ecss'= ]}"); > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6142280294061314564==-- From jira-events at lists.jboss.org Tue Mar 6 17:41:37 2012 Content-Type: multipart/mixed; boundary="===============8686066116009883129==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11994) Xcss2EcssConverter error handling f:importResource Date: Tue, 06 Mar 2012 17:41:36 -0500 Message-ID: <487613147.72071.1331073696958.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 377878399.29898.1329814962021.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8686066116009883129== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11994?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674200#com= ment-12674200 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11994 at 3/6/12 5:41 PM: --------------------------------------------------------- The pull request has been reviewed and merged. Thanks for your efforts! = was (Author: lfryc): The pull request has been reviewed and merge. Thanks for your efforts! = > Xcss2EcssConverter error handling f:importResource > -------------------------------------------------- > > Key: RF-11994 > URL: https://issues.jboss.org/browse/RF-11994 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.CR1 > Reporter: Dupont Dupont > Assignee: Dupont Dupont > Fix For: 4.3.0.Milestone1 > > > When using Xcss2EcssConverter to transform xcss to ecss, I've the followi= ng error : > Source xcss : > {code:xml} = > > {code} > Is transformed to : > {noformat} = > @import url("#{resource['META-INF/skins/charte/commun/css/sx_commun.ecss'= ]"} > {noformat} > It should be : > {noformat} = > @import url("#{resource['META-INF/skins/charte/commun/css/sx_commun.ecss'= ]}"); > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8686066116009883129==-- From jira-events at lists.jboss.org Tue Mar 6 18:50:37 2012 Content-Type: multipart/mixed; boundary="===============2073622998996024667==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Tue, 06 Mar 2012 18:50:37 -0500 Message-ID: <948204292.72295.1331077837221.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2073622998996024667== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674228#com= ment-12674228 ] = Karsten Wutzke commented on RF-11592: ------------------------------------- I also get this exception: {code}org.richfaces.exception.FileUploadException: Exception parsing multip= art request: Request prolog cannot be read at org.richfaces.request.MultipartRequestParser.parse(MultipartRequestPars= er.java:156) at org.richfaces.request.MultipartRequest25.parseIfNecessary(MultipartRequ= est25.java:77) at org.richfaces.request.MultipartRequest25.getParameter(MultipartRequest2= 5.java:114) at com.sun.faces.context.RequestParameterMap.containsKey(RequestParameterM= ap.java:99) at java.util.Collections$UnmodifiableMap.containsKey(Collections.java:1337) at org.jboss.weld.jsf.WeldPhaseListener.getConversationId(WeldPhaseListene= r.java:171) at org.jboss.weld.jsf.WeldPhaseListener.activateConversations(WeldPhaseLis= tener.java:99) at org.jboss.weld.jsf.WeldPhaseListener.beforePhase(WeldPhaseListener.java= :85) at com.sun.faces.lifecycle.Phase.handleBeforePhase(Phase.java:228) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:99) at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:= 116) at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1= 542) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:343) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:217) at org.jboss.solder.servlet.exception.CatchExceptionFilter.doFilter(CatchE= xceptionFilter.java:65) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:256) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:217) at org.jboss.solder.servlet.event.ServletEventBridgeFilter.doFilter(Servle= tEventBridgeFilter.java:74) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:256) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:217) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:279) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:175) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.jav= a:655) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:= 595) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:161) at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.jav= a:331) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 231) at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.cal= l(ContainerMapper.java:317) at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMa= pper.java:195) at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849) at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746) at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045) at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilte= r.java:228) at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProto= colChain.java:137) at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:= 104) at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:= 90) at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:7= 9) at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTas= k.java:54) at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.ja= va:59) at com.sun.grizzly.ContextTask.run(ContextTask.java:71) at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPoo= l.java:532) at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.j= ava:513) at java.lang.Thread.run(Thread.java:722) Caused by: java.io.IOException: Request prolog cannot be read at org.richfaces.request.MultipartRequestParser.readProlog(MultipartReques= tParser.java:270) at org.richfaces.request.MultipartRequestParser.initialize(MultipartReques= tParser.java:172) at org.richfaces.request.MultipartRequestParser.parse(MultipartRequestPars= er.java:148) ... 44 more{code} {code}java.lang.NullPointerException at com.sun.faces.context.PartialViewContextImpl.createPartialResponseWrite= r(PartialViewContextImpl.java:441) at com.sun.faces.context.PartialViewContextImpl.access$300(PartialViewCont= extImpl.java:71) at com.sun.faces.context.PartialViewContextImpl$DelayedInitPartialResponse= Writer.getWrapped(PartialViewContextImpl.java:582) at javax.faces.context.PartialResponseWriter.startDocument(PartialResponse= Writer.java:115) at com.sun.faces.context.AjaxExceptionHandlerImpl.handlePartialResponseErr= or(AjaxExceptionHandlerImpl.java:199) at com.sun.faces.context.AjaxExceptionHandlerImpl.handle(AjaxExceptionHand= lerImpl.java:123) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:119) at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:= 116) at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1= 542) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:343) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:217) at org.jboss.solder.servlet.exception.CatchExceptionFilter.doFilter(CatchE= xceptionFilter.java:65) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:256) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:217) at org.jboss.solder.servlet.event.ServletEventBridgeFilter.doFilter(Servle= tEventBridgeFilter.java:74) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:256) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:217) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:279) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:175) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.jav= a:655) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:= 595) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:161) at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.jav= a:331) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 231) at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.cal= l(ContainerMapper.java:317) at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMa= pper.java:195) at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849) at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746) at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045) at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilte= r.java:228) at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProto= colChain.java:137) at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:= 104) at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:= 90) at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:7= 9) at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTas= k.java:54) at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.ja= va:59) at com.sun.grizzly.ContextTask.run(ContextTask.java:71) at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPoo= l.java:532) at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.j= ava:513) at java.lang.Thread.run(Thread.java:722){code} I'm using Windows 7, GlassFish 3.1.2, Mojarra 2.1.6 (SNAPSHOT 20111206), Ri= chFaces 4.1.0.Final using *Firefox 12 Aurora* 12.0a2 (2012-02-14) I doubt this has to do with Myfaces. = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2073622998996024667==-- From jira-events at lists.jboss.org Tue Mar 6 18:52:36 2012 Content-Type: multipart/mixed; boundary="===============1122011318863363176==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Tue, 06 Mar 2012 18:52:36 -0500 Message-ID: <262783936.72301.1331077956870.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1122011318863363176== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Karsten Wutzke updated RF-11592: -------------------------------- Attachment: server.log GlassFish server.log = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip, server.log > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1122011318863363176==-- From jira-events at lists.jboss.org Tue Mar 6 18:52:37 2012 Content-Type: multipart/mixed; boundary="===============3407317552038339662==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Tue, 06 Mar 2012 18:52:37 -0500 Message-ID: <559793704.72306.1331077957149.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3407317552038339662== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674230#com= ment-12674230 ] = Karsten Wutzke commented on RF-11592: ------------------------------------- Note I can provide a webapp that demonstrates the problem, however I cannot= make it public. Please PM me. = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip, server.log > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3407317552038339662==-- From jira-events at lists.jboss.org Tue Mar 6 18:56:36 2012 Content-Type: multipart/mixed; boundary="===============0004771279488011801==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Tue, 06 Mar 2012 18:56:36 -0500 Message-ID: <2034606744.72320.1331078196510.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0004771279488011801== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674229#com= ment-12674229 ] = Karsten Wutzke edited comment on RF-11592 at 3/6/12 6:56 PM: ------------------------------------------------------------- GlassFish server.log attached = was (Author: kwutzke): GlassFish server.log = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip, server.log > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0004771279488011801==-- From jira-events at lists.jboss.org Tue Mar 6 19:20:37 2012 Content-Type: multipart/mixed; boundary="===============2393169032708353368==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10128) File upload doesn't work with MyFaces Date: Tue, 06 Mar 2012 19:20:37 -0500 Message-ID: <1789604945.72353.1331079637237.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 762375458.40353.1294228517967.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2393169032708353368== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10128?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674235#com= ment-12674235 ] = Karsten Wutzke commented on RF-10128: ------------------------------------- I'm facing https://issues.jboss.org/browse/RF-11592 without any MyFaces stu= ff. = > File upload doesn't work with MyFaces > ------------------------------------- > > Key: RF-10128 > URL: https://issues.jboss.org/browse/RF-10128 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Milestone5 > Environment: RichFaces 4.0.0.20101226-M5 r.20800 > Metamer 4.0.0.20110104-M5 r.20882 > Apache MyFaces JSF-2.0 Core Impl 2.0.2 > Apache Tomcat 6.0.29 > OpenJDK Runtime Environment 1.6.0_20-b20 @Linux > Chrome 8.0.552.224 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Labels: myfaces > Fix For: 4.3.0.Milestone1 > > Attachments: fileUpload.png > > > 1. deploy Metamer = > 2. open http://localhost:8080/metamer/faces/components/richFileUpload/sim= ple.xhtml > 3. select some file > 4. click Upload > result: > nothing is uploaded, no other files can be uploaded -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2393169032708353368==-- From jira-events at lists.jboss.org Tue Mar 6 19:27:36 2012 Content-Type: multipart/mixed; boundary="===============5789564714565152644==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12024) rich:dataGrid component and a4j:status don't cooperate together Date: Tue, 06 Mar 2012 19:27:36 -0500 Message-ID: <953422806.72367.1331080056746.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5789564714565152644== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Artur Mioduszewski created RF-12024: --------------------------------------- Summary: rich:dataGrid component and a4j:status don't cooperat= e together Key: RF-12024 URL: https://issues.jboss.org/browse/RF-12024 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final, 4.1.0.Final Environment: JDK1.6, JBoss 6.0.Final, richfaces 4.1.Final/4.2.Final Reporter: Artur Mioduszewski rich:dataGrid component and a4j:status don't cooperate together. = 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dataG= rid behaves properly, but a4j:status component is not able to hide. 2. When I remove a4j:status component, everything is OK (but rerendering ri= ch:dataGrid is taking a while, so I would like to get a4j:status component = functionality on page) 3. a4j:commandButton present at that page (not shown in below code extract)= cooperate to a4j:status corectly ------------------------- EXTRACT OF MY CODE: -----------------------------= ---------------------------------------------- ---------------------------------------------------------------------------= -------------------------------------------- -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5789564714565152644==-- From jira-events at lists.jboss.org Tue Mar 6 19:29:36 2012 Content-Type: multipart/mixed; boundary="===============4888278923628530294==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12024) rich:dataGrid component and a4j:status don't cooperate together Date: Tue, 06 Mar 2012 19:29:36 -0500 Message-ID: <357261935.72378.1331080176158.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 953422806.72367.1331080056746.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4888278923628530294== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12024?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12024: ------------------------------------ Environment: = JDK1.6, JBoss 6.0.Final, richfaces 4.1.0.Final/4.2.0.Final was: JDK1.6, JBoss 6.0.Final, richfaces 4.1.Final/4.2.Final = > rich:dataGrid component and a4j:status don't cooperate together > --------------------------------------------------------------- > > Key: RF-12024 > URL: https://issues.jboss.org/browse/RF-12024 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final, 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > Reporter: Artur Mioduszewski > > rich:dataGrid component and a4j:status don't cooperate together. = > 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dat= aGrid behaves properly, but a4j:status component is not able to hide. > 2. When I remove a4j:status component, everything is OK (but rerendering = rich:dataGrid is taking a while, so I would like to get a4j:status componen= t functionality on page) > 3. a4j:commandButton present at that page (not shown in below code extrac= t) cooperate to a4j:status corectly > ------------------------- EXTRACT OF MY CODE: ---------------------------= ------------------------------------------------ > > columns=3D"7" elements=3D"168" styleClass=3D"noPaddings"> > > > > > > > > > > > > > -------------------------------------------------------------------------= ---------------------------------------------- -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4888278923628530294==-- From jira-events at lists.jboss.org Tue Mar 6 19:54:40 2012 Content-Type: multipart/mixed; boundary="===============2848445420522845708==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12025) [rich:tabPanel] Switching tabs doesn't work correctly Date: Tue, 06 Mar 2012 19:54:40 -0500 Message-ID: <564356619.72400.1331081680333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2848445420522845708== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Artur Mioduszewski created RF-12025: --------------------------------------- Summary: [rich:tabPanel] Switching tabs doesn't work correctly Key: RF-12025 URL: https://issues.jboss.org/browse/RF-12025 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final, 4.1.0.Final Environment: JDK1.6, JBoss 6.0.Final, richfaces 4.1.0.Final/4.2.0.Final = Reporter: Artur Mioduszewski STEPS TO REPRODUCE A PROBLEM: 1. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) 2. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) 3. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) 4. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) 5. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) 6. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) ... Every tab switching caused more (perhaps 2 times more) calling of logger.de= bug("----preRenderHomeView"); =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ------------------------- XHTML FILE CODE EXTRACT: ------------------------= --------------------------------------------------- = ---------------------------------------------------------------------------= ----------------------------- HomeAction: public void preRenderHomeView() { logger.debug("----preRenderHomeView"); } -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2848445420522845708==-- From jira-events at lists.jboss.org Tue Mar 6 20:20:36 2012 Content-Type: multipart/mixed; boundary="===============5248796253666116494==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12024) rich:dataGrid component and a4j:status don't cooperate together Date: Tue, 06 Mar 2012 20:20:36 -0500 Message-ID: <1019240402.72424.1331083236376.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 953422806.72367.1331080056746.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5248796253666116494== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12024?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12024: ------------------------------------ Description: = rich:dataGrid component and a4j:status don't cooperate together. = 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dataG= rid behaves properly, but a4j:status component is not able to hide. 2. When I remove a4j:status component, everything is OK (but rerendering ri= ch:dataGrid is taking a while, so I would like to get a4j:status component = functionality on page) 3. a4j:commandButton present at that page (not shown in below code extract)= cooperate to a4j:status correctly ------------- (I just have noticed: a4j:status component also does not cooperate correctl= y to richfaces tabs: durring first tab switching, a4j:status component is n= ot able to hide After refresh: tabs and a4j:status component start to behave correctly ). =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ------------------------- EXTRACT OF MY CODE: -----------------------------= ---------------------------------------------- ---------------------------------------------------------------------------= -------------------------------------------- was: rich:dataGrid component and a4j:status don't cooperate together. = 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dataG= rid behaves properly, but a4j:status component is not able to hide. 2. When I remove a4j:status component, everything is OK (but rerendering ri= ch:dataGrid is taking a while, so I would like to get a4j:status component = functionality on page) 3. a4j:commandButton present at that page (not shown in below code extract)= cooperate to a4j:status corectly ------------------------- EXTRACT OF MY CODE: -----------------------------= ---------------------------------------------- ---------------------------------------------------------------------------= -------------------------------------------- = > rich:dataGrid component and a4j:status don't cooperate together > --------------------------------------------------------------- > > Key: RF-12024 > URL: https://issues.jboss.org/browse/RF-12024 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final, 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > Reporter: Artur Mioduszewski > > rich:dataGrid component and a4j:status don't cooperate together. = > 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dat= aGrid behaves properly, but a4j:status component is not able to hide. > 2. When I remove a4j:status component, everything is OK (but rerendering = rich:dataGrid is taking a while, so I would like to get a4j:status componen= t functionality on page) > 3. a4j:commandButton present at that page (not shown in below code extrac= t) cooperate to a4j:status correctly > ------------- > (I just have noticed: a4j:status component also does not cooperate correc= tly to richfaces tabs: durring first tab switching, a4j:status component is= not able to hide > After refresh: tabs and a4j:status component start to behave correctly ). > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > ------------------------- EXTRACT OF MY CODE: ---------------------------= ------------------------------------------------ > > columns=3D"7" elements=3D"168" styleClass=3D"noPaddings"> > > > > > > > > > > > > > -------------------------------------------------------------------------= ---------------------------------------------- -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5248796253666116494==-- From jira-events at lists.jboss.org Tue Mar 6 20:27:36 2012 Content-Type: multipart/mixed; boundary="===============9189125432066706437==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12024) rich:dataGrid component and a4j:status don't cooperate together Date: Tue, 06 Mar 2012 20:27:36 -0500 Message-ID: <79271874.72434.1331083656481.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 953422806.72367.1331080056746.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9189125432066706437== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12024?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12024: ------------------------------------ Environment: = JDK1.6, JBoss 6.0.Final, richfaces 4.1.0.Final/4.2.0.Final IE 9 was: JDK1.6, JBoss 6.0.Final, richfaces 4.1.0.Final/4.2.0.Final = > rich:dataGrid component and a4j:status don't cooperate together > --------------------------------------------------------------- > > Key: RF-12024 > URL: https://issues.jboss.org/browse/RF-12024 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final, 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > IE 9 > Reporter: Artur Mioduszewski > > rich:dataGrid component and a4j:status don't cooperate together. = > 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dat= aGrid behaves properly, but a4j:status component is not able to hide. > 2. When I remove a4j:status component, everything is OK (but rerendering = rich:dataGrid is taking a while, so I would like to get a4j:status componen= t functionality on page) > 3. a4j:commandButton present at that page (not shown in below code extrac= t) cooperate to a4j:status correctly > ------------- > (I just have noticed: a4j:status component also does not cooperate correc= tly to richfaces tabs: durring first tab switching, a4j:status component is= not able to hide > After refresh: tabs and a4j:status component start to behave correctly ). > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > ------------------------- EXTRACT OF MY CODE: ---------------------------= ------------------------------------------------ > > columns=3D"7" elements=3D"168" styleClass=3D"noPaddings"> > > > > > > > > > > > > > -------------------------------------------------------------------------= ---------------------------------------------- -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9189125432066706437==-- From jira-events at lists.jboss.org Tue Mar 6 20:27:36 2012 Content-Type: multipart/mixed; boundary="===============2542783058557778019==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12025) [rich:tabPanel] Switching tabs doesn't work correctly Date: Tue, 06 Mar 2012 20:27:36 -0500 Message-ID: <731872755.72432.1331083656424.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 564356619.72400.1331081680333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2542783058557778019== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12025?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12025: ------------------------------------ Environment: = JDK1.6, JBoss 6.0.Final, richfaces 4.1.0.Final/4.2.0.Final = IE 9 was: JDK1.6, JBoss 6.0.Final, richfaces 4.1.0.Final/4.2.0.Final = = > [rich:tabPanel] Switching tabs doesn't work correctly > ----------------------------------------------------- > > Key: RF-12025 > URL: https://issues.jboss.org/browse/RF-12025 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final, 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final = > IE 9 > Reporter: Artur Mioduszewski > > STEPS TO REPRODUCE A PROBLEM: > 1. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) > 2. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) > 3. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) > 4. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) > 5. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) > 6. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) > ... > Every tab switching caused more (perhaps 2 times more) calling of logger.= debug("----preRenderHomeView"); > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > ------------------------- XHTML FILE CODE EXTRACT: ----------------------= ----------------------------------------------------- > > > > > > > > > > > > = > > -------------------------------------------------------------------------= ------------------------------- > HomeAction: > public void preRenderHomeView() > { > logger.debug("----preRenderHomeView"); > } -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2542783058557778019==-- From jira-events at lists.jboss.org Tue Mar 6 21:04:37 2012 Content-Type: multipart/mixed; boundary="===============8654970674094723732==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12025) [rich:tabPanel] Switching tabs doesn't work correctly Date: Tue, 06 Mar 2012 21:04:37 -0500 Message-ID: <1872425385.72482.1331085877522.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 564356619.72400.1331081680333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8654970674094723732== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12025?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12025: ------------------------------- Description: = Every tab switching caused more (perhaps 2 times more) calling of logger.de= bug("----preRenderHomeView"); {code:title=3DXHTML FILE CODE EXTRACT} = {code} {code:title=3D"HomeAction"} public void preRenderHomeView() { logger.debug("----preRenderHomeView"); } {code} was: STEPS TO REPRODUCE A PROBLEM: 1. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) 2. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) 3. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) 4. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) 5. Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) 6. Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) ... Every tab switching caused more (perhaps 2 times more) calling of logger.de= bug("----preRenderHomeView"); =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ------------------------- XHTML FILE CODE EXTRACT: ------------------------= --------------------------------------------------- = ---------------------------------------------------------------------------= ----------------------------- HomeAction: public void preRenderHomeView() { logger.debug("----preRenderHomeView"); } Steps to Reproduce: = # Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) # Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) # Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) # Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) # Switch tab: UserDataTab -> UserEmailTab (look on JBoss console) # Switch tab: UserEmailTab -> UserDataTab (look on JBoss console) Component/s: component-panels-layout-themes = > [rich:tabPanel] Switching tabs doesn't work correctly > ----------------------------------------------------- > > Key: RF-12025 > URL: https://issues.jboss.org/browse/RF-12025 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.1.0.Final, 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final = > IE 9 > Reporter: Artur Mioduszewski > > Every tab switching caused more (perhaps 2 times more) calling of logger.= debug("----preRenderHomeView"); > {code:title=3DXHTML FILE CODE EXTRACT} > > > > > > > > > > > > = > > {code} > {code:title=3D"HomeAction"} > public void preRenderHomeView() { > logger.debug("----preRenderHomeView"); > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8654970674094723732==-- From jira-events at lists.jboss.org Wed Mar 7 02:44:36 2012 Content-Type: multipart/mixed; boundary="===============5438631922242750781==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12024) rich:dataGrid component and a4j:status don't cooperate together Date: Wed, 07 Mar 2012 02:44:36 -0500 Message-ID: <1309066849.72677.1331106276655.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 953422806.72367.1331080056746.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5438631922242750781== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12024?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12024: ------------------------------------ Description: = rich:dataGrid component and a4j:status don't cooperate together. = 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dataG= rid behaves properly, but a4j:status component is not able to hide. 2. When I remove a4j:status component, everything is OK (but rerendering ri= ch:dataGrid is taking a while, so I would like to get a4j:status component = functionality on page) 3. a4j:commandButton present at that page (not shown in below code extract)= cooperate to a4j:status correctly ------------- (I just have noticed: a4j:status component also does not cooperate correctl= y to richfaces tabs: durring first tab switching, a4j:status component is n= ot able to hide After refresh: tabs and a4j:status component start to behave correctly ). {code:title=3D"XHTML FILE CODE EXTRACT"} {code} was: rich:dataGrid component and a4j:status don't cooperate together. = 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dataG= rid behaves properly, but a4j:status component is not able to hide. 2. When I remove a4j:status component, everything is OK (but rerendering ri= ch:dataGrid is taking a while, so I would like to get a4j:status component = functionality on page) 3. a4j:commandButton present at that page (not shown in below code extract)= cooperate to a4j:status correctly ------------- (I just have noticed: a4j:status component also does not cooperate correctl= y to richfaces tabs: durring first tab switching, a4j:status component is n= ot able to hide After refresh: tabs and a4j:status component start to behave correctly ). =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ------------------------- EXTRACT OF MY CODE: -----------------------------= ---------------------------------------------- ---------------------------------------------------------------------------= -------------------------------------------- = > rich:dataGrid component and a4j:status don't cooperate together > --------------------------------------------------------------- > > Key: RF-12024 > URL: https://issues.jboss.org/browse/RF-12024 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final, 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > IE 9 > Reporter: Artur Mioduszewski > > rich:dataGrid component and a4j:status don't cooperate together. = > 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dat= aGrid behaves properly, but a4j:status component is not able to hide. > 2. When I remove a4j:status component, everything is OK (but rerendering = rich:dataGrid is taking a while, so I would like to get a4j:status componen= t functionality on page) > 3. a4j:commandButton present at that page (not shown in below code extrac= t) cooperate to a4j:status correctly > ------------- > (I just have noticed: a4j:status component also does not cooperate correc= tly to richfaces tabs: durring first tab switching, a4j:status component is= not able to hide > After refresh: tabs and a4j:status component start to behave correctly ). > {code:title=3D"XHTML FILE CODE EXTRACT"} > > columns=3D"7" elements=3D"168" styleClass=3D"noPaddings"> > > > > > > > > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5438631922242750781==-- From jira-events at lists.jboss.org Wed Mar 7 08:13:36 2012 Content-Type: multipart/mixed; boundary="===============6025406422599475060==" MIME-Version: 1.0 From: Ulf Almehed (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Wed, 07 Mar 2012 08:13:36 -0500 Message-ID: <1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6025406422599475060== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ulf Almehed created RF-12026: -------------------------------- Summary: Javascript error in AjaxRequests on FireFox "invalid = 'in' operand event" Key: RF-12026 URL: https://issues.jboss.org/browse/RF-12026 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: core Affects Versions: 4.2.0.Final Environment: FireFox 3.6.27 Reporter: Ulf Almehed Ajax request fails with javascript error "invalid 'in' operand event", rich= faces-queue.js line 130. This was introduced by the fix in RF-11943. Checking for existence of layer= X fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6025406422599475060==-- From jira-events at lists.jboss.org Wed Mar 7 10:00:38 2012 Content-Type: multipart/mixed; boundary="===============4815963289679945669==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12021) Compilation of Input UI component logs 2 errors about faces-config.xml Date: Wed, 07 Mar 2012 10:00:38 -0500 Message-ID: <1925643138.74141.1331132438222.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 518462150.61467.1330674576214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4815963289679945669== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12021?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-12021: ----------------------------------------- Bugzilla Update: Perform = > Compilation of Input UI component logs 2 errors about faces-config.xml > ---------------------------------------------------------------------- > > Key: RF-12021 > URL: https://issues.jboss.org/browse/RF-12021 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: Marek Novotny > Assignee: Brian Leathem > > Compilation of RF UI Components specifically Input UI has got 2 errors in= log - related to bad faces-config.xml on line number 29 and 240. > The following is snippet of log: > {noformat} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces UI Components: Input UI 4.2.0.Final > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-java-versi= on) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-maven-vers= ion) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-cdk-plugin:4.2.0.Final-redhat-1:generate (cdk-generate-s= ources) @ richfaces-ui-input-ui --- > [Error] faces-config.xml:29:71: cvc-complex-type.2.4.a: Invalid content w= as found starting with element 'xi:include'. One of '{"http://java.sun.com/= xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-exte= nsion}' is expected. > [Error] faces-config.xml:240:71: cvc-complex-type.2.4.a: Invalid content = was found starting with element 'xi:include'. One of '{"http://java.sun.com= /xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-ext= ension}' is expected. > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4815963289679945669==-- From jira-events at lists.jboss.org Wed Mar 7 10:00:39 2012 Content-Type: multipart/mixed; boundary="===============3756606442062416532==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12021) Compilation of Input UI component logs 2 errors about faces-config.xml Date: Wed, 07 Mar 2012 10:00:38 -0500 Message-ID: <1162581219.74145.1331132438937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 518462150.61467.1330674576214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3756606442062416532== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12021?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-12021: ----------------------------------------- Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=3D8010= 48 = > Compilation of Input UI component logs 2 errors about faces-config.xml > ---------------------------------------------------------------------- > > Key: RF-12021 > URL: https://issues.jboss.org/browse/RF-12021 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: Marek Novotny > Assignee: Brian Leathem > > Compilation of RF UI Components specifically Input UI has got 2 errors in= log - related to bad faces-config.xml on line number 29 and 240. > The following is snippet of log: > {noformat} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces UI Components: Input UI 4.2.0.Final > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-java-versi= on) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-maven-vers= ion) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-cdk-plugin:4.2.0.Final-redhat-1:generate (cdk-generate-s= ources) @ richfaces-ui-input-ui --- > [Error] faces-config.xml:29:71: cvc-complex-type.2.4.a: Invalid content w= as found starting with element 'xi:include'. One of '{"http://java.sun.com/= xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-exte= nsion}' is expected. > [Error] faces-config.xml:240:71: cvc-complex-type.2.4.a: Invalid content = was found starting with element 'xi:include'. One of '{"http://java.sun.com= /xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-ext= ension}' is expected. > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3756606442062416532==-- From jira-events at lists.jboss.org Wed Mar 7 10:00:44 2012 Content-Type: multipart/mixed; boundary="===============1377805300758384535==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12021) Compilation of Input UI component logs 2 errors about faces-config.xml Date: Wed, 07 Mar 2012 10:00:39 -0500 Message-ID: <444633272.74148.1331132439266.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 518462150.61467.1330674576214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1377805300758384535== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12021?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674754#com= ment-12674754 ] = RH Bugzilla Integration commented on RF-12021: ---------------------------------------------- Marek Novotny made a comment on [bug 801048|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D801048] Compilation of RF UI Components specifically Input UI has got 2 errors in l= og - related to bad faces-config.xml on line number 29 and 240. The following is snippet of log: [INFO] --------------------------------------------------------------------= ---- [INFO] Building RichFaces UI Components: Input UI 4.2.0.Final [INFO] --------------------------------------------------------------------= ---- [INFO] = [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-java-version= ) @ richfaces-ui-input-ui --- [INFO] The requirePluginVersions rule is currently not compatible with Mave= n3. [INFO] = [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-maven-versio= n) @ richfaces-ui-input-ui --- [INFO] The requirePluginVersions rule is currently not compatible with Mave= n3. [INFO] = [INFO] --- maven-cdk-plugin:4.2.0.Final-redhat-1:generate (cdk-generate-sou= rces) @ richfaces-ui-input-ui --- [Error] faces-config.xml:29:71: cvc-complex-type.2.4.a: Invalid content was= found starting with element 'xi:include'. One of '{"http://java.sun.com/xm= l/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-extens= ion}' is expected. [Error] faces-config.xml:240:71: cvc-complex-type.2.4.a: Invalid content wa= s found starting with element 'xi:include'. One of '{"http://java.sun.com/x= ml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-exten= sion}' is expected. = > Compilation of Input UI component logs 2 errors about faces-config.xml > ---------------------------------------------------------------------- > > Key: RF-12021 > URL: https://issues.jboss.org/browse/RF-12021 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: Marek Novotny > Assignee: Brian Leathem > > Compilation of RF UI Components specifically Input UI has got 2 errors in= log - related to bad faces-config.xml on line number 29 and 240. > The following is snippet of log: > {noformat} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces UI Components: Input UI 4.2.0.Final > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-java-versi= on) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-maven-vers= ion) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-cdk-plugin:4.2.0.Final-redhat-1:generate (cdk-generate-s= ources) @ richfaces-ui-input-ui --- > [Error] faces-config.xml:29:71: cvc-complex-type.2.4.a: Invalid content w= as found starting with element 'xi:include'. One of '{"http://java.sun.com/= xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-exte= nsion}' is expected. > [Error] faces-config.xml:240:71: cvc-complex-type.2.4.a: Invalid content = was found starting with element 'xi:include'. One of '{"http://java.sun.com= /xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-ext= ension}' is expected. > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1377805300758384535==-- From jira-events at lists.jboss.org Wed Mar 7 12:25:36 2012 Content-Type: multipart/mixed; boundary="===============4486250589281032018==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12027) Add a maximum number of selectable elements to rich:pickList Date: Wed, 07 Mar 2012 12:25:36 -0500 Message-ID: <102106719.74777.1331141136257.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4486250589281032018== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Karsten Wutzke created RF-12027: ----------------------------------- Summary: Add a maximum number of selectable elements to rich:p= ickList Key: RF-12027 URL: https://issues.jboss.org/browse/RF-12027 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Environment: any Reporter: Karsten Wutzke Please add a maximum number of selectable elements to rich:pickList via an = attribute like maxItems=3D"n" or maxValues=3D"n" -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4486250589281032018==-- From jira-events at lists.jboss.org Wed Mar 7 14:39:37 2012 Content-Type: multipart/mixed; boundary="===============4119965155716681495==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Wed, 07 Mar 2012 14:39:37 -0500 Message-ID: <1066435768.75138.1331149177080.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4119965155716681495== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674869#com= ment-12674869 ] = Karsten Wutzke commented on RF-11592: ------------------------------------- My issue seems to be http://java.net/jira/browse/GLASSFISH-18444 (as seen h= ere: https://community.jboss.org/thread/196311) = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip, server.log > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4119965155716681495==-- From jira-events at lists.jboss.org Wed Mar 7 14:41:36 2012 Content-Type: multipart/mixed; boundary="===============4873385805161812026==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Wed, 07 Mar 2012 14:41:36 -0500 Message-ID: <866436563.75148.1331149296331.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4873385805161812026== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674871#com= ment-12674871 ] = Karsten Wutzke commented on RF-11592: ------------------------------------- My issue seems to be http://java.net/jira/browse/GLASSFISH-18444 (as seen h= ere: https://community.jboss.org/thread/196311) = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip, server.log > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4873385805161812026==-- From jira-events at lists.jboss.org Wed Mar 7 15:28:36 2012 Content-Type: multipart/mixed; boundary="===============8760244109068791005==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12000) TabPanel - Backing bean initialization when a same bean manages multiple dynamic tabs Date: Wed, 07 Mar 2012 15:28:36 -0500 Message-ID: <1249505189.75217.1331152116320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 572385267.36048.1329946356737.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8760244109068791005== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12000?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12000: ------------------------------- Component/s: component-panels-layout-themes Forum Reference: https://community.jboss.org/message/718460#718460 (wa= s: https://community.jboss.org/message/718460#718460) = > TabPanel - Backing bean initialization when a same bean manages multiple = dynamic tabs > -------------------------------------------------------------------------= ------------ > > Key: RF-12000 > URL: https://issues.jboss.org/browse/RF-12000 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Reporter: Jean ANDRE > Fix For: 4.3-Tracking > > > See the conversation : https://community.jboss.org/message/718460#718460 > Based on the work done, it is more clear about what we need. When a tabPa= nel, contains dynamic tabs handle by the same backing-bean (because of the = same include xhtml), we need a way, a reliable manner to initialize the bac= king bean when the user switch from a tab to another tab. It might be a spe= cific tag, as rich:bean init=3D"#{.....initialize(params)}". This tab shou= ld be executed first, before any other calls of the backing bean whatever i= ts place inside the xhtml page. If several such tags exist wherever (templa= te, include), they must be executed in their natural order, from the deeper= to the top of the page hierarchy. > So, what we need is a contextual initialization, because the @PostContruc= t is not well suitable for that situation and also a more simple solution r= ather trying to do it by the PhaseListener (and what about the context???). = > Related links around of this feature: > - http://www.coderanch.com/t/213757/JSF/java/initialize-backing-bean-bef= ore-page > - http://stackoverflow.com/questions/8132394/backing-bean-initialization > - http://www.icefaces.org/JForum/posts/list/13260.page > - http://cagataycivici.wordpress.com/2006/06/06/managed_beans_aware_of_t= he/ > - http://boardreader.com/thread/how_to_initialize_a_backing_bean_before_= w2nvX36qxy.html > Thank you -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8760244109068791005==-- From jira-events at lists.jboss.org Wed Mar 7 15:32:36 2012 Content-Type: multipart/mixed; boundary="===============1723693926161887155==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11560) Showcase on OpenShift Express: Push stops to work after first long-polling request Date: Wed, 07 Mar 2012 15:32:36 -0500 Message-ID: <1428635344.75232.1331152356483.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 703843376.3936.1318926525118.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1723693926161887155== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11560?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11560: ------------------------------- Fix Version/s: (was: 4.3-Tracking) Priority: Major (was: Critical) Assignee: Jan Papousek (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Component/s: component-push/poll Jan, it's not clear from your last comment whether the summary/description = of this issue still applies. If you are describing a new problem, please f= ile a new issue and close this one. Otherwise, please clarify the state of= this issue with a comment. = > Showcase on OpenShift Express: Push stops to work after first long-pollin= g request > -------------------------------------------------------------------------= --------- > > Key: RF-11560 > URL: https://issues.jboss.org/browse/RF-11560 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Jan Papousek > > Both demos affected: TopicsContext and Push CDI. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1723693926161887155==-- From jira-events at lists.jboss.org Wed Mar 7 15:36:37 2012 Content-Type: multipart/mixed; boundary="===============4184608286698012345==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11108) Showcase GAE support is broken: NoClassDefFound: InitialContext Date: Wed, 07 Mar 2012 15:36:37 -0500 Message-ID: <59838048.75236.1331152597073.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2010466994.39420.1310033183774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4184608286698012345== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11108?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11108. -------------------------------- Assignee: Brian Leathem (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Fix Version/s: (was: 4.3-Tracking) Resolution: Won't Fix While RichFaces on GAE remains a priority for us, we are no longer deployin= g the showcase to GAE. = > Showcase GAE support is broken: NoClassDefFound: InitialContext > --------------------------------------------------------------- > > Key: RF-11108 > URL: https://issues.jboss.org/browse/RF-11108 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples, showcase > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > > When running mvn gae:run -Pgae > deployment ends with NoClassDefFound: InitialContext. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4184608286698012345==-- From jira-events at lists.jboss.org Wed Mar 7 15:36:39 2012 Content-Type: multipart/mixed; boundary="===============0599925754583070190==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Wed, 07 Mar 2012 15:36:39 -0500 Message-ID: <442643798.75247.1331152599477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0599925754583070190== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-11739: ----------------------------------------- Bugzilla Update: Perform Forum Reference: http://community.jboss.org/message/642770#642770, http= ://community.jboss.org/message/638045#638045 (was: http://community.jboss.= org/message/642770#642770, http://community.jboss.org/message/638045#638045) = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0599925754583070190==-- From jira-events at lists.jboss.org Wed Mar 7 15:36:40 2012 Content-Type: multipart/mixed; boundary="===============4217285958197660717==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Wed, 07 Mar 2012 15:36:40 -0500 Message-ID: <1287560660.75251.1331152600126.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4217285958197660717== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-11739: ----------------------------------------- Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=3D8011= 72 Forum Reference: http://community.jboss.org/message/642770#642770, = http://community.jboss.org/message/638045#638045 (was: http://community.jb= oss.org/message/642770#642770, http://community.jboss.org/message/638045#63= 8045) = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4217285958197660717==-- From jira-events at lists.jboss.org Wed Mar 7 15:42:37 2012 Content-Type: multipart/mixed; boundary="===============2343276900982403037==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11255) Notify - the messages are not displayed (MyFaces) Date: Wed, 07 Mar 2012 15:42:36 -0500 Message-ID: <1698621729.75266.1331152956740.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 923449259.9455.1312964784560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2343276900982403037== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11255?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11255: ------------------------------- Fix Version/s: 4.3.0.Milestone1 (was: 4.3-Tracking) = > Notify - the messages are not displayed (MyFaces) > ------------------------------------------------- > > Key: RF-11255 > URL: https://issues.jboss.org/browse/RF-11255 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.1.0.Milestone1 > Environment: RichFaces 4.1.0-SNAPSHOT r.d0f9c11eb0dacc1444c0a3182= b12567e28aef6bc > Metamer 4.1.0-SNAPSHOT r.22610 > Apache MyFaces JSF-2.1 Core Impl 2.1.1 > Apache Tomcat 6.0.32 > OpenJDK Runtime Environment 1.6.0_22-b22 @Linux > Internet Explorer 8.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: myfaces > Fix For: 4.3.0.Milestone1 > > > The messages and validator messages are not displayed. This can be reprod= uced in Metamer: > - faces/components/richNotify/simple.xhtml > - faces/components/richNotify/validation.xhtml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2343276900982403037==-- From jira-events at lists.jboss.org Wed Mar 7 15:44:37 2012 Content-Type: multipart/mixed; boundary="===============2505776080442379909==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11440) Migrate the Seam Faces module into a RichFaces module. Date: Wed, 07 Mar 2012 15:44:36 -0500 Message-ID: <2081053892.75268.1331153076199.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1940562171.84403.1317221727057.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2505776080442379909== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11440?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11440. -------------------------------- Assignee: Brian Leathem Fix Version/s: (was: 4.3-Tracking) Resolution: Rejected Seam Faces CDI extensions will be moved to the DeltaSpike project. Any Ric= hFaces specific CDI extensions we develop will be considered individually. = > Migrate the Seam Faces module into a RichFaces module. > ------------------------------------------------------ > > Key: RF-11440 > URL: https://issues.jboss.org/browse/RF-11440 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Reporter: Brian Leathem > Assignee: Brian Leathem > > Further development of the Seam Faces collections of JSF and CDI extensio= ns will continue in the RichFaces project, as an independent and option Ric= hFaces module. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2505776080442379909==-- From jira-events at lists.jboss.org Wed Mar 7 15:46:39 2012 Content-Type: multipart/mixed; boundary="===============3462994357365927150==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11590) showcase - only first push is done using Atmosphere CR2 Date: Wed, 07 Mar 2012 15:46:39 -0500 Message-ID: <1425789888.75280.1331153199277.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926719144.28309.1319617905803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3462994357365927150== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11590?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11590: ------------------------------- Fix Version/s: (was: 4.3-Tracking) Assignee: Juraj Huska (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Juraj, would you verify whether or not this is still an issue, as we upgrad= ed the Atmosphere library in the RichFaces 4.2.0.Final release. = > showcase - only first push is done using Atmosphere CR2 > ------------------------------------------------------- > > Key: RF-11590 > URL: https://issues.jboss.org/browse/RF-11590 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: Tomcat 6.0.32 > Reporter: Juraj Huska > Assignee: Juraj Huska > > Only the first push is done in demos for a4j:push component in showcase. = No exception is thrown, or any other warning is generated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3462994357365927150==-- From jira-events at lists.jboss.org Wed Mar 7 15:52:37 2012 Content-Type: multipart/mixed; boundary="===============8139210644038152146==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11618) Build with jsf_profile=myfaces does not work Date: Wed, 07 Mar 2012 15:52:37 -0500 Message-ID: <1251133853.75314.1331153557236.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 738657218.39980.1320064305124.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8139210644038152146== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11618?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11618: ------------------------------- Fix Version/s: 4.3.0.Milestone1 (was: 4.3-Tracking) = > Build with jsf_profile=3Dmyfaces does not work > -------------------------------------------- > > Key: RF-11618 > URL: https://issues.jboss.org/browse/RF-11618 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Milestone4 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: myfaces > Fix For: 4.3.0.Milestone1 > > > When using jsf_profile=3Dmyfaces, build does not work. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8139210644038152146==-- From jira-events at lists.jboss.org Wed Mar 7 15:52:39 2012 Content-Type: multipart/mixed; boundary="===============7401105080805441770==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11668) CDK should support arbitrary objects with the tag Date: Wed, 07 Mar 2012 15:52:37 -0500 Message-ID: <1913464677.75316.1331153557726.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 508966317.72263.1320861765215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7401105080805441770== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11668?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11668: ------------------------------- Fix Version/s: 4.3.0.Milestone1 (was: 4.3-Tracking) = > CDK should support arbitrary objects with the tag > -------------------------------------------------------------- > > Key: RF-11668 > URL: https://issues.jboss.org/browse/RF-11668 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: cdk > Reporter: Brian Leathem > Fix For: 4.3.0.Milestone1 > > > The __ tag should accept arbitrary classes in the _type_ para= meter, and perform the cast in the generated code. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7401105080805441770==-- From jira-events at lists.jboss.org Wed Mar 7 16:00:26 2012 Content-Type: multipart/mixed; boundary="===============7661816485739674661==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Wed, 07 Mar 2012 16:00:25 -0500 Message-ID: <1789810763.75335.1331154025997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7661816485739674661== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674890#com= ment-12674890 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Karel Piwko made a comment on [bug 801172|https://bug= zilla.redhat.com/show_bug.cgi?id=3D801172] Possible reason why that happens: While comparing ER1 and ER2 releases: /tmp/richfaces-components-ui-4.2.0.Final-redhat-1.jar.diffjars.Dfb/META-INF= /richfaces/staticResourceMapping/Packed.properties contains line 117 javax.faces\:jsf.js=3Dorg.richfaces.staticResource/4.2.0.= Final-redhat-1/Packed/packed/packed.js = which load packed.js before jquery.js. Kudos to Lukas Fryc for discovering this issue. = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7661816485739674661==-- From jira-events at lists.jboss.org Wed Mar 7 16:00:27 2012 Content-Type: multipart/mixed; boundary="===============1447512458148625113==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11589) showcase - a Warning is generated when there is interaction with Atmosphere CR2 framework Date: Wed, 07 Mar 2012 16:00:27 -0500 Message-ID: <951050557.75338.1331154027338.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26512795.28270.1319616945421.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1447512458148625113== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11589?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11589: ------------------------------- Assignee: Juraj Huska Fix Version/s: (was: 4.3-Tracking) Juraj, please verify with the updated Atmosphere available with RichFaces 4= .2.0.Final = > showcase - a Warning is generated when there is interaction with Atmosphe= re CR2 framework > -------------------------------------------------------------------------= ---------------- > > Key: RF-11589 > URL: https://issues.jboss.org/browse/RF-11589 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: JBoss AS 7.0.2.Final, , JBoss 6.0.0.Final, Tomcat 6.0.0.32 > Reporter: Juraj Huska > Assignee: Juraj Huska > Priority: Minor > > An WARNING is generated when there is any interaction with Atmosphere CR2= framework in showcase push demos. > The warning: > {code} > 10:08:12,102 WARNING [org.atmosphere.cpr.AtmosphereResourceImpl] (http-lo= calhost.localdomain-127.0.0.1-8080-2) Broadcaster DefaultBroadcaster9dd3cba= c-4e33-482d-8c8c-cd2c0936e695 has been destroyed and cannot be re-used. Rec= reating a new one with the same name. You can turn off that mechanism by ad= ding, in web.xml, org.atmosphere.cpr.recoverFromDestroyedBroadcaster set to= false > {code} > The demos however work as expected. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1447512458148625113==-- From jira-events at lists.jboss.org Wed Mar 7 16:01:37 2012 Content-Type: multipart/mixed; boundary="===============5505039590486957362==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12019) Upstream mojarra issue requires IE9 to be in compatibility mode Date: Wed, 07 Mar 2012 16:01:36 -0500 Message-ID: <262262283.75340.1331154096975.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 676753656.53754.1330535076071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5505039590486957362== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12019?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12019: ------------------------------- Fix Version/s: 4.3.0.Milestone1 (was: 4.3-Tracking) Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=3D8006= 28 (was: https://bugzilla.redhat.com/show_bug.cgi?id=3D800628) = > Upstream mojarra issue requires IE9 to be in compatibility mode > --------------------------------------------------------------- > > Key: RF-12019 > URL: https://issues.jboss.org/browse/RF-12019 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Reporter: Brian Leathem > Fix For: 4.3.0.Milestone1 > > > An upstream issue with mojarra ([JAVASERVERFACES-2063|http://java.net/jir= a/browse/JAVASERVERFACES-2063]) requires that IE9 be placed in compatibilit= y mode. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5505039590486957362==-- From jira-events at lists.jboss.org Wed Mar 7 16:03:39 2012 Content-Type: multipart/mixed; boundary="===============8760584149839518046==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Wed, 07 Mar 2012 16:03:38 -0500 Message-ID: <149291965.75345.1331154219020.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8760584149839518046== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674893#com= ment-12674893 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Karel Piwko made a comment on [bug 801172|https://bug= zilla.redhat.com/show_bug.cgi?id=3D801172] Likely caused by wrong classpath ordering in file https://github.com/richfa= ces/components/blob/develop/dist/static-resources/pom.xml = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8760584149839518046==-- From jira-events at lists.jboss.org Wed Mar 7 16:05:41 2012 Content-Type: multipart/mixed; boundary="===============6584572894115072905==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Wed, 07 Mar 2012 16:05:40 -0500 Message-ID: <521271699.75385.1331154340820.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6584572894115072905== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674897#com= ment-12674897 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Karel Piwko made a comment on [bug 801172|https://bug= zilla.redhat.com/show_bug.cgi?id=3D801172] The classpath ordering is influenced by scope of artifacts. This concrete issue happened because /home/kpiwko/installations/wfk/2.0.0.E= R2/jboss-wfk-2.0.0.ER2-maven-repository/org/richfaces/richfaces-root-parent= /4.2.0.Final-redhat-1/richfaces-root-parent-4.2.0.Final-redhat-1.pom com.sun.faces jsf-impl line 846 was switched from test to compile scope. = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6584572894115072905==-- From jira-events at lists.jboss.org Wed Mar 7 16:19:38 2012 Content-Type: multipart/mixed; boundary="===============8057356131375665512==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11821) RF4 extendedDataTable rowClasses not working in lazyloading of rows as it was working in Richfaces3.3.3.Final Date: Wed, 07 Mar 2012 16:19:38 -0500 Message-ID: <625242273.75447.1331155178177.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 377651505.17009.1324039329660.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8057356131375665512== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11821?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674904#com= ment-12674904 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11821: --------------------------------- Ulf: = Thanks for the efforts you put to fixing this bug and sending the pull request. It's highly appreciated! = > RF4 extendedDataTable rowClasses not working in lazyloading of rows as it= was working in Richfaces3.3.3.Final > -------------------------------------------------------------------------= ------------------------------------ > > Key: RF-11821 > URL: https://issues.jboss.org/browse/RF-11821 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.CR2 > Environment: Windows XP 32 bit OS, Mozilla Firefox 8.0, Google Ch= rome 16.0.912.63, IE 7 and 8 > Reporter: Saroj Padhy > Labels: extendedDataTable, lazy-loaded, rowClasses > Fix For: 4.3.0.Milestone1 > > > The attribute in extendedDataTable component, "rowClasses" not working as= it used to work in Richfaces3.3.3.Final version. = > Normally rowClasses usage is as below: > .. > .. > And in CSS file we define, = > tr.odd { > background-color: #F3F3F3; > } > tr.even { > background-color: #FFFFFF; > } > So the row colors differ as odd and even row background colors. = > This is not working in Richfaces4 extendedDataTable component when rows a= re getting loaded on request (lazyloading). All rows shows odd background c= olor. > There is a work around for this issue, which is only working in Mozilla b= rowser. > Link:http://community.jboss.org/thread/168326?tstart=3D0 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8057356131375665512==-- From jira-events at lists.jboss.org Wed Mar 7 16:23:37 2012 Content-Type: multipart/mixed; boundary="===============5565699216932875954==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12028) a4j:outputPanel - Error message enhancement Date: Wed, 07 Mar 2012 16:23:36 -0500 Message-ID: <1368665910.75459.1331155416313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5565699216932875954== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jean ANDRE created RF-12028: ------------------------------- Summary: a4j:outputPanel - Error message enhancement Key: RF-12028 URL: https://issues.jboss.org/browse/RF-12028 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Environment: JSF / Mojarra 2.1.6 - cssparser-0.9.6 - guava-11.0.1 = - hibernate-validator-4.2.0.Final - springframework 3.0.6.RELEASE - richfac= es--4.2.0.Final - sac-1.3 - FireFox 10 - WAS 8.0.0.1 / Windows 7 Reporter: Jean ANDRE When we set an non existing attribute on a4j:outputPanel, for eg. "class" b= ecause we have converted a div to a a4j:outputPanel, the error message disp= layed at the user interface does not inform the developer about the faulty = component neither pinpoint the bad attribute. The message we got is only : > Error 500: javax.servlet.ServletException: Setter not found for property = class = This error message is not very helpful to debug.... ;) {code} {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5565699216932875954==-- From jira-events at lists.jboss.org Wed Mar 7 16:25:38 2012 Content-Type: multipart/mixed; boundary="===============1387900103599087267==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12028) a4j:outputPanel - Error message enhancement Date: Wed, 07 Mar 2012 16:25:37 -0500 Message-ID: <80756005.75463.1331155537873.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1368665910.75459.1331155416313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1387900103599087267== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12028?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12028: ---------------------------- Description: = When we set an non existing attribute on a4j:outputPanel, for eg. "class" b= ecause we have converted a div to a a4j:outputPanel, the error message disp= layed at the user interface does not inform the developer about the faulty = component. The message we got is only : > Error 500: javax.servlet.ServletException: Setter not found for property = class = This error message is not very helpful to debug.... ;) {code} {code} was: When we set an non existing attribute on a4j:outputPanel, for eg. "class" b= ecause we have converted a div to a a4j:outputPanel, the error message disp= layed at the user interface does not inform the developer about the faulty = component neither pinpoint the bad attribute. The message we got is only : > Error 500: javax.servlet.ServletException: Setter not found for property = class = This error message is not very helpful to debug.... ;) {code} {code} = > a4j:outputPanel - Error message enhancement > ------------------------------------------- > > Key: RF-12028 > URL: https://issues.jboss.org/browse/RF-12028 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: JSF / Mojarra 2.1.6 - cssparser-0.9.6 - guava-11.0.1= - hibernate-validator-4.2.0.Final - springframework 3.0.6.RELEASE - richfa= ces--4.2.0.Final - sac-1.3 - FireFox 10 - WAS 8.0.0.1 / Windows 7 > Reporter: Jean ANDRE > > When we set an non existing attribute on a4j:outputPanel, for eg. "class"= because we have converted a div to a a4j:outputPanel, the error message di= splayed at the user interface does not inform the developer about the fault= y component. The message we got is only : > > Error 500: javax.servlet.ServletException: Setter not found for propert= y class = > This error message is not very helpful to debug.... ;) > {code} > layout=3D"block" > class=3D"dark-box" > rendered=3D"#{productBean.expanded eq true}"> > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1387900103599087267==-- From jira-events at lists.jboss.org Wed Mar 7 16:27:36 2012 Content-Type: multipart/mixed; boundary="===============0512243149700723642==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12028) a4j:outputPanel - Error message enhancement Date: Wed, 07 Mar 2012 16:27:36 -0500 Message-ID: <2035113012.75470.1331155656420.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1368665910.75459.1331155416313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0512243149700723642== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12028?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12028: ---------------------------- Description: = When we set an non existing attribute on a4j:outputPanel, for eg. "class" b= ecause we have converted a div to a a4j:outputPanel, the error message disp= layed at the user interface does not inform the developer about the faulty = component. The message we got is only : > Error 500: javax.servlet.ServletException: Setter not found for property = class = This error message is not very helpful to debug.... ;) {code} {code} We should have, as usual, the line of the XHTML file or the component name,= the line number, well something more accurate that really help to go faste= r. was: When we set an non existing attribute on a4j:outputPanel, for eg. "class" b= ecause we have converted a div to a a4j:outputPanel, the error message disp= layed at the user interface does not inform the developer about the faulty = component. The message we got is only : > Error 500: javax.servlet.ServletException: Setter not found for property = class = This error message is not very helpful to debug.... ;) {code} {code} = > a4j:outputPanel - Error message enhancement > ------------------------------------------- > > Key: RF-12028 > URL: https://issues.jboss.org/browse/RF-12028 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: JSF / Mojarra 2.1.6 - cssparser-0.9.6 - guava-11.0.1= - hibernate-validator-4.2.0.Final - springframework 3.0.6.RELEASE - richfa= ces--4.2.0.Final - sac-1.3 - FireFox 10 - WAS 8.0.0.1 / Windows 7 > Reporter: Jean ANDRE > > When we set an non existing attribute on a4j:outputPanel, for eg. "class"= because we have converted a div to a a4j:outputPanel, the error message di= splayed at the user interface does not inform the developer about the fault= y component. The message we got is only : > > Error 500: javax.servlet.ServletException: Setter not found for propert= y class = > This error message is not very helpful to debug.... ;) > {code} > layout=3D"block" > class=3D"dark-box" > rendered=3D"#{productBean.expanded eq true}"> > {code} > We should have, as usual, the line of the XHTML file or the component nam= e, the line number, well something more accurate that really help to go fas= ter. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0512243149700723642==-- From jira-events at lists.jboss.org Wed Mar 7 17:57:36 2012 Content-Type: multipart/mixed; boundary="===============7289135906121963953==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12029) AbstractTogglePanel should extend UIRepeat, instead of UIOutput Date: Wed, 07 Mar 2012 17:57:36 -0500 Message-ID: <1430073926.75557.1331161056577.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7289135906121963953== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-12029: ---------------------------------- Summary: AbstractTogglePanel should extend UIRepeat, instead o= f UIOutput Key: RF-12029 URL: https://issues.jboss.org/browse/RF-12029 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component-output Reporter: Brian Leathem Assignee: Bernard Labno Valid uses exist for dynamically generating rich:tab, rich:togglePanelItem,= rich:accordionItem. Current techniques for supporting this use case invol= ve using c:forEach, which is a problem since c: tags are processed too earl= y to nicely support dynamic use cases. One idea to support this use case, is to have AbstractTogglePanel extend UI= Repeat, instead of UIOutput to better dynamic child components. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7289135906121963953==-- From jira-events at lists.jboss.org Wed Mar 7 18:01:37 2012 Content-Type: multipart/mixed; boundary="===============2422240241366322879==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12029) AbstractTogglePanel should extend UIRepeat, instead of UIOutput Date: Wed, 07 Mar 2012 18:01:36 -0500 Message-ID: <1284143263.75568.1331161296908.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1430073926.75557.1331161056577.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2422240241366322879== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674926#com= ment-12674926 ] = Brian Leathem commented on RF-12029: ------------------------------------ Summary of a discussion in IRC: {quote} (02:35:14 AM) blabno: AbstractTogglePanel was extending UIOutput (i guess f= or holding info about selected tab), i've changed this (basically c'n'p nec= essary stuff from UIOutput to ATogP) and now ATogP extends UIRepeat ... (08:31:55 AM) blabno: ok, I understand, well, as with carousel component i'= ve noticed that there are use cases where component may be used as iterativ= e or non-iterative (08:32:26 AM) blabno: i.e. we want to have fixed 3 tabs, so we hardcode (08:33:22 AM) blabno: this is how i've done it for carousel and it works li= ke a charm (08:33:42 AM) blabno: however here with those tabs it's very hard (08:34:17 AM) blabno: especiale because of that getActiveItem method (used = in many places to see if tab should be executed,updated,validated,etc) (08:35:18 AM) blabno: so the datamodel (in case of iterative case) is being= visited over and over again (08:36:33 AM) blabno: the impl of that method is very annoying (08:36:51 AM) blabno: first it gets activeItem which is string (08:37:12 AM) blabno: then runs over all tabs to see if that tab is disabled (08:37:29 AM) blabno: and in such case it switches to the first item (08:37:46 AM) blabno: but anyways, optimization can be done later, right no= w i'm having problem with ajax (08:37:54 AM) blabno: client and server switches work great (08:40:25 AM) blabno: in short the problem is with switching tab in ajax mo= de (08:41:18 AM) bleathem: what goes wrong? (08:41:26 AM) blabno: partialContext first wants to estblish which compone= nts should be executed, and only later it sets submited value (selected tab= ) so the new tab is not rendered in response (08:41:56 AM) blabno: because (i suspect) getActiveItem points to old tab a= nd is changed when submitted value is set (08:42:23 AM) blabno: and that getActiveItem is used in determining if tab = should be processed (08:43:07 AM) blabno: i must have messed sth up, cause old version of compo= nent worked, but i'm stuck and fresh eye would be handy {quote} = > AbstractTogglePanel should extend UIRepeat, instead of UIOutput > --------------------------------------------------------------- > > Key: RF-12029 > URL: https://issues.jboss.org/browse/RF-12029 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Brian Leathem > Assignee: Bernard Labno > > Valid uses exist for dynamically generating rich:tab, rich:togglePanelIte= m, rich:accordionItem. Current techniques for supporting this use case inv= olve using c:forEach, which is a problem since c: tags are processed too ea= rly to nicely support dynamic use cases. > One idea to support this use case, is to have AbstractTogglePanel extend = UIRepeat, instead of UIOutput to better dynamic child components. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2422240241366322879==-- From jira-events at lists.jboss.org Wed Mar 7 19:47:41 2012 Content-Type: multipart/mixed; boundary="===============5683007828020706913==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12019) Upstream mojarra issue requires IE9 to be in compatibility mode Date: Wed, 07 Mar 2012 19:47:41 -0500 Message-ID: <1998596535.75776.1331167661353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 676753656.53754.1330535076071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5683007828020706913== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12019?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674944#com= ment-12674944 ] = RH Bugzilla Integration commented on RF-12019: ---------------------------------------------- Rebecca Newton made a comment on [bug 800628|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D800628] Technical note updated. If any revisions are required, please edit the = "Technical Notes" field accordingly. All revisions will be proofread by the Engineering Content= Services team. = Diffed Contents: @@ -1 +1,3 @@ -An upstream issue (http://java.net/jira/browse/JAVASERVERFACES-2063) requi= res IE 9 to be run in compatibility mode. This can be accomplished by addi= ng a meta tag to your page template, as described in: http://msdn.microsoft= .com/en-us/library/cc288325(v=3Dvs.85).aspx#SetMode.+An upstream issue requ= ires IE 9 to be run in compatibility mode. To run Internet Explorer 9 in co= mpatibility mode, add a meta tag to your page like this: + +This can be accomplished by adding a meta tag to your page template, as de= scribed in: http://msdn.microsoft.com/en-us/library/cc288325(v=3Dvs.85).asp= x#SetMode. = > Upstream mojarra issue requires IE9 to be in compatibility mode > --------------------------------------------------------------- > > Key: RF-12019 > URL: https://issues.jboss.org/browse/RF-12019 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Reporter: Brian Leathem > Fix For: 4.3.0.Milestone1 > > > An upstream issue with mojarra ([JAVASERVERFACES-2063|http://java.net/jir= a/browse/JAVASERVERFACES-2063]) requires that IE9 be placed in compatibilit= y mode. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5683007828020706913==-- From jira-events at lists.jboss.org Wed Mar 7 19:47:41 2012 Content-Type: multipart/mixed; boundary="===============3342932601687419046==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12019) Upstream mojarra issue requires IE9 to be in compatibility mode Date: Wed, 07 Mar 2012 19:47:41 -0500 Message-ID: <1697044613.75775.1331167661324.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 676753656.53754.1330535076071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3342932601687419046== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12019?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674943#com= ment-12674943 ] = RH Bugzilla Integration commented on RF-12019: ---------------------------------------------- Rebecca Newton made a comment on [bug 800628|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D800628] Brian, is this bug closed (Fixed Issue) or open (Known Issue)? If this is t= he last we will ever hear about it, it should be a closed issue. If the sol= ution to run in compatibility mode is a temporary workaround and a full fix= will be found later, it should be a known issue. And, is this the information the customer needs, to add the meta tag (taken= from the included link)?: Specifying Document Compatibility Modes Document compatibility modes allow you to control the way Internet Explorer= interprets and displays your webpage. To specify a specific document mode = for your webpage, use the meta element to include an X-UA-Compatible header= in your webpage. The following example specifies EmulateIE7 mode. My webpage

Content goes here.

= Thanks! = > Upstream mojarra issue requires IE9 to be in compatibility mode > --------------------------------------------------------------- > > Key: RF-12019 > URL: https://issues.jboss.org/browse/RF-12019 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Reporter: Brian Leathem > Fix For: 4.3.0.Milestone1 > > > An upstream issue with mojarra ([JAVASERVERFACES-2063|http://java.net/jir= a/browse/JAVASERVERFACES-2063]) requires that IE9 be placed in compatibilit= y mode. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3342932601687419046==-- From jira-events at lists.jboss.org Wed Mar 7 20:02:45 2012 Content-Type: multipart/mixed; boundary="===============7269513920526869670==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12019) Upstream mojarra issue requires IE9 to be in compatibility mode Date: Wed, 07 Mar 2012 20:02:36 -0500 Message-ID: <1938602888.75814.1331168556349.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 676753656.53754.1330535076071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7269513920526869670== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12019?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674948#com= ment-12674948 ] = RH Bugzilla Integration commented on RF-12019: ---------------------------------------------- Brian Leathem made a comment on [bug 800628|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D800628] Hi Bec, This is an open, known issue, with a workaround. It is an upstream issue t= hat has been resolved, and we will incorporate the fix in out next micro re= lease (4.2.1). The code snippet you extracted from the linked page is indeed the correct i= nstructions for the workaround. = > Upstream mojarra issue requires IE9 to be in compatibility mode > --------------------------------------------------------------- > > Key: RF-12019 > URL: https://issues.jboss.org/browse/RF-12019 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Reporter: Brian Leathem > Fix For: 4.3.0.Milestone1 > > > An upstream issue with mojarra ([JAVASERVERFACES-2063|http://java.net/jir= a/browse/JAVASERVERFACES-2063]) requires that IE9 be placed in compatibilit= y mode. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7269513920526869670==-- From jira-events at lists.jboss.org Wed Mar 7 20:28:36 2012 Content-Type: multipart/mixed; boundary="===============8179738572458644382==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12019) Upstream mojarra issue requires IE9 to be in compatibility mode Date: Wed, 07 Mar 2012 20:28:36 -0500 Message-ID: <299920255.75844.1331170116391.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 676753656.53754.1330535076071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8179738572458644382== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12019?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12674953#com= ment-12674953 ] = RH Bugzilla Integration commented on RF-12019: ---------------------------------------------- Rebecca Newton made a comment on [bug 800628|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D800628] Technical note updated. If any revisions are required, please edit the = "Technical Notes" field accordingly. All revisions will be proofread by the Engineering Content= Services team. = Diffed Contents: @@ -1,3 +1,14 @@ An upstream issue requires IE 9 to be run in compatibility mode. To run In= ternet Explorer 9 in compatibility mode, add a meta tag to your page like t= his: = -This can be accomplished by adding a meta tag to your page template, as de= scribed in: http://msdn.microsoft.com/en-us/library/cc288325(v=3Dvs.85).asp= x#SetMode.+ + + + + My webpage + + +

Content goes here.

+ + = + +See http://msdn.microsoft.com/en-us/library/cc288325(v=3Dvs.85).aspx#SetMo= de.for more information. = > Upstream mojarra issue requires IE9 to be in compatibility mode > --------------------------------------------------------------- > > Key: RF-12019 > URL: https://issues.jboss.org/browse/RF-12019 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Reporter: Brian Leathem > Fix For: 4.3.0.Milestone1 > > > An upstream issue with mojarra ([JAVASERVERFACES-2063|http://java.net/jir= a/browse/JAVASERVERFACES-2063]) requires that IE9 be placed in compatibilit= y mode. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8179738572458644382==-- From jira-events at lists.jboss.org Thu Mar 8 04:00:41 2012 Content-Type: multipart/mixed; boundary="===============0731670555189283705==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12030) rich:dataScroller doesn't work if a rich:message exists inside of a collapsed rich:collapsiblePanel with switchType='ajax' Date: Thu, 08 Mar 2012 04:00:37 -0500 Message-ID: <474795285.76394.1331197237559.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0731670555189283705== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Rene O created RF-12030: --------------------------- Summary: rich:dataScroller doesn't work if a rich:message exis= ts inside of a collapsed rich:collapsiblePanel with switchType=3D'ajax' Key: RF-12030 URL: https://issues.jboss.org/browse/RF-12030 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final Environment: tomcat 7, richfaces-4.2.0.Final, myfaces-2.1.6 Reporter: Rene O rich:dataScroller doesn't work if a rich:message exists inside of a collaps= ed rich:collapsiblePanel with switchType=3D'ajax' Steps to reproduce this issue: 1. use dataScroller to switch table-pages. you can see, that this works. 2. collaps collapsiblePanel 3. if collapsiblePanel is collapsed, the dataScroller doesn't react anymore. 4. if you use switchType=3D'client' everything works correct {code:title=3Dexamplepage.xhtml} JSF Test = = = = = if rich:message doesn't exists, everything works... = = ColA #{item.itemA} = = {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0731670555189283705==-- From jira-events at lists.jboss.org Thu Mar 8 04:24:37 2012 Content-Type: multipart/mixed; boundary="===============5819265519629263279==" MIME-Version: 1.0 From: Andries Ehlers (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12031) rich:validator does not work after re render (ajax) Date: Thu, 08 Mar 2012 04:24:36 -0500 Message-ID: <245851677.76479.1331198676205.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5819265519629263279== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Andries Ehlers created RF-12031: ----------------------------------- Summary: rich:validator does not work after re render (ajax) Key: RF-12031 URL: https://issues.jboss.org/browse/RF-12031 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final Reporter: Andries Ehlers When you have a simple inputText component with rich:validator inside, vali= dation works perfectly when you move focus away from the component - valida= tion messages display, e.g: {code:xml|borderStyle=3Dsolid} {code} If the above code resides in a panel, which is conditionally rendered, then= ceases to function when you re-render the panel with ajax= , eg: {code:xml|borderStyle=3Dsolid} =
{code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5819265519629263279==-- From jira-events at lists.jboss.org Thu Mar 8 08:03:36 2012 Content-Type: multipart/mixed; boundary="===============0123456257252663134==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11902) [rich:autocomplete] add attribute queueId Date: Thu, 08 Mar 2012 08:03:36 -0500 Message-ID: <1108170142.77276.1331211816402.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1022848615.10266.1326969138391.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0123456257252663134== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11902?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reassigned RF-11902: -------------------------------- Assignee: (was: J=C3=A1n Jamrich) Issue simulated in Metamer using code snippet provided by reporter. See following commit for more details: https://github.com/richfaces/qa/commit/eb60f82f7b80f6e6d1a1f4762b4a981d41a1= 8466 = > [rich:autocomplete] add attribute queueId > ----------------------------------------- > > Key: RF-11902 > URL: https://issues.jboss.org/browse/RF-11902 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Reporter: Rene O > > It would be nice if rich:autocomplete has an attribute queueId like a4j:a= jax component. With this you will have more control over the ajax requests = if ajax mode is enabled within autocomplete component. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0123456257252663134==-- From jira-events at lists.jboss.org Thu Mar 8 10:35:40 2012 Content-Type: multipart/mixed; boundary="===============8764777006098766281==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Thu, 08 Mar 2012 10:35:40 -0500 Message-ID: <1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8764777006098766281== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jean ANDRE created RF-12032: ------------------------------- Summary: rich:calendar : Ajax request - Error message enhancem= ent - sql.Date Key: RF-12032 URL: https://issues.jboss.org/browse/RF-12032 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richfaces= -4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. Reporter: Jean ANDRE When a backing-bean have a type of sql.Date which is mapped to a rich:calen= dar, there is an conversion error due to the rich:calendar component uses u= til.Date by default. Unfortunately, we do not see any error message at the = screen when an ajax request is sent and returned back to us. What we got, and thanks to Firebug, is the text below as an answer from our= Ajax request POST. Nothing is rendered at the screen and the method of the= backing bean is not called. {code} class javax.faces.component.UpdateMode= lException {code} Our code looks like this (we remove unecessary field and decoration): {code} = {code} Is is possible to have a message returned back to the UI??? or is there a w= ay to handle this error properly? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8764777006098766281==-- From jira-events at lists.jboss.org Thu Mar 8 10:39:36 2012 Content-Type: multipart/mixed; boundary="===============1103053928139261343==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Thu, 08 Mar 2012 10:39:36 -0500 Message-ID: <655044029.77976.1331221176406.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1103053928139261343== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12032?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12032: ---------------------------- Description: = When a backing-bean have a type of sql.Date which is mapped to a rich:calen= dar, there is an conversion error due to the rich:calendar component uses u= til.Date by default. Unfortunately, we do not see any error message at the = screen when an ajax request is sent and returned back to us. What we got, and thanks to Firebug, is the text below as an answer from our= Ajax request POST. Nothing is rendered at the screen and the method of the= backing bean is not called. {code} class javax.faces.component.UpdateMode= lException {code} Our code looks like this (we remove unecessary field and decoration): {code} = {code} Is is possible to have a message returned back to the UI??? or is there a w= ay to handle this error properly? Other information =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The form is inside a dynamic tab - Fragment are also include dynamically - = we use c:if et subView as shown below: {code} {code} was: When a backing-bean have a type of sql.Date which is mapped to a rich:calen= dar, there is an conversion error due to the rich:calendar component uses u= til.Date by default. Unfortunately, we do not see any error message at the = screen when an ajax request is sent and returned back to us. What we got, and thanks to Firebug, is the text below as an answer from our= Ajax request POST. Nothing is rendered at the screen and the method of the= backing bean is not called. {code} class javax.faces.component.UpdateMode= lException {code} Our code looks like this (we remove unecessary field and decoration): {code} = {code} Is is possible to have a message returned back to the UI??? or is there a w= ay to handle this error properly? = > rich:calendar : Ajax request - Error message enhancement - sql.Date > ------------------------------------------------------------------- > > Key: RF-12032 > URL: https://issues.jboss.org/browse/RF-12032 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richface= s-4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. > Reporter: Jean ANDRE > > When a backing-bean have a type of sql.Date which is mapped to a rich:cal= endar, there is an conversion error due to the rich:calendar component uses= util.Date by default. Unfortunately, we do not see any error message at th= e screen when an ajax request is sent and returned back to us. > What we got, and thanks to Firebug, is the text below as an answer from o= ur Ajax request POST. Nothing is rendered at the screen and the method of t= he backing bean is not called. > {code} > > class javax.faces.component.UpdateMo= delException > {code} > Our code looks like this (we remove unecessary field and decoration): > {code} > > > > > value=3D"#{msg['common.command.add.phone']}" > action=3D"#{createClientController.doAddPhone}"> > > > > > > > value=3D"#{phoneBean.effectiveDate}" > popup=3D"true" > showApplyButton=3D"false" > enableManualInput=3D"true" > datePattern=3D"#{msg['client.date.format']}" > inputSize=3D"12" > styleClass=3D"calendar"> > > > > > > > = > {code} > Is is possible to have a message returned back to the UI??? or is there a= way to handle this error properly? > Other information > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The form is inside a dynamic tab - Fragment are also include dynamically = - we use c:if et subView as shown below: > {code} > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1103053928139261343==-- From jira-events at lists.jboss.org Thu Mar 8 10:53:36 2012 Content-Type: multipart/mixed; boundary="===============0828657054324609603==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Thu, 08 Mar 2012 10:53:36 -0500 Message-ID: <1711131224.78101.1331222016229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0828657054324609603== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12032?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12032: ---------------------------- Attachment: rich_calendar_errorMsg_Enhancement.png Here a sample of our screen to give you only an idea of our form. = > rich:calendar : Ajax request - Error message enhancement - sql.Date > ------------------------------------------------------------------- > > Key: RF-12032 > URL: https://issues.jboss.org/browse/RF-12032 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richface= s-4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. > Reporter: Jean ANDRE > Attachments: rich_calendar_errorMsg_Enhancement.png > > > When a backing-bean have a type of sql.Date which is mapped to a rich:cal= endar, there is an conversion error due to the rich:calendar component uses= util.Date by default. Unfortunately, we do not see any error message at th= e screen when an ajax request is sent and returned back to us. > What we got, and thanks to Firebug, is the text below as an answer from o= ur Ajax request POST. Nothing is rendered at the screen and the method of t= he backing bean is not called. > {code} > > class javax.faces.component.UpdateMo= delException > {code} > Our code looks like this (we remove unecessary field and decoration): > {code} > > > > > value=3D"#{msg['common.command.add.phone']}" > action=3D"#{createClientController.doAddPhone}"> > > > > > > > value=3D"#{phoneBean.effectiveDate}" > popup=3D"true" > showApplyButton=3D"false" > enableManualInput=3D"true" > datePattern=3D"#{msg['client.date.format']}" > inputSize=3D"12" > styleClass=3D"calendar"> > > > > > > > = > {code} > Is is possible to have a message returned back to the UI??? or is there a= way to handle this error properly? > Other information > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The form is inside a dynamic tab - Fragment are also include dynamically = - we use c:if et subView as shown below: > {code} > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0828657054324609603==-- From jira-events at lists.jboss.org Thu Mar 8 15:37:36 2012 Content-Type: multipart/mixed; boundary="===============5286700570252373971==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11763) javascript error : item is undefined on nested tabPanel with switchType='ajax' Date: Thu, 08 Mar 2012 15:37:36 -0500 Message-ID: <822625650.78834.1331239056362.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 984864127.56421.1322674601141.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5286700570252373971== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11763?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-11763: ---------------------------- Steps to Reproduce: = See also RF-11750 but basically we have two level of tab:Panel (a.k.a neste= d tab). See screen shot. The parent tab is ajax switchType The child tab is ajax swithType - When 'client' switchType is working but f= rom our side, refreshing the whole page is performance penalty as we have m= any 'customer' files opened at the same. Each file (which is a tab) can con= tains at least 6 tabs up to 15. was: See also RF-11750 but basically we have two level of tab:Panel (a.k.a neste= d tab). See screen shot. The parent tab is ajax switchType The child tab is ajax swithType - When 'client' switchType is working well = but not ajax available...:( = > javascript error : item is undefined on nested tabPanel with switchType= =3D'ajax' > -------------------------------------------------------------------------= ----- > > Key: RF-11763 > URL: https://issues.jboss.org/browse/RF-11763 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Environment: Websphere 8 - RAD 8 - JSF Mojorra 2.1.4 - Spring 3.0= .6 Final - Use @Inject @Named @SessionScoped as annotations - Firefox 7.0.1= - Windows 7 (6.1 sp1) - AspectJ 1.6.12 / AJDT = > Reporter: Jean ANDRE > Priority: Blocker > Fix For: 4.Future > > Attachments: screenshot-1.jpg > > > See also RF-11750 for the context. > Briefly, we have nested tabPanel - The firs tabPanel is made of static an= d dynamic tabPanel. One tabPanel contains the search form. When the user pe= rforms a search and for each search we open a new tab that contains the res= ult list. When the user click on an item, we update the tab with the detail= ed information. > The detailed information is made of 6 tabs - There are like a subtabs fro= m the parent tabs. When we set the switchType to 'client' the tab performs = well. But as we want that the same tab serves as form to edit and view the = detailed information, we want to refresh the tab to display the inputText i= nstead of the outputText. This is the edit mode. > Then, we need to refresh the tab and we decided to pass in ajax switchTyp= e for theses subTab. Owener, switching to the 'ajax' triggers a javascript = error that blocks the UI. None tab is selectable, user cannot switch from a= tab to another tab. Moreover we failed to refresh the tab but the reason i= s still unknown. > Javascript error is : > {code} > item is undefined - [Stopper sur une erreur] if (!item.disabled && item.g= etName() =3D=3D=3D itemName) { = > toggle...chfaces (ligne 363) > http://localhost:12000/crm/javax.faces.resource/togglePanel.js.jsf?ln=3Do= rg.richfaces > {code} > The involved code is (where >>>> is): > {code} > /** > * @private > * */ > __getItemIndex : function (itemName) { > var item; > for (var i =3D 0; i < this.items.length; i++) { > item =3D this.items[i]; > >>>>>> if (!item.disabled && item.getName() =3D=3D=3D itemName) { > return i; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5286700570252373971==-- From jira-events at lists.jboss.org Thu Mar 8 15:49:36 2012 Content-Type: multipart/mixed; boundary="===============1557014596957572675==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11763) javascript error : item is undefined on nested tabPanel with switchType='ajax' Date: Thu, 08 Mar 2012 15:49:36 -0500 Message-ID: <1160413021.78866.1331239776503.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 984864127.56421.1322674601141.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1557014596957572675== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11763?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675292#com= ment-12675292 ] = Jean ANDRE commented on RF-11763: --------------------------------- This bug is still here in 4.2 - Actually, we are in 'server' mode, but in '= client' mode, ajax request with "@form' lost the current tab - it like refr= eshing the whole page. ActiveItem does not seems take in account in this mo= de. It would be nice to resolve this bug because 'sever' or 'client' switch= Type is so-so. In fact, this bug does not allow us to switch from a tab to another tab. Se= e also the 2 second screen shot to give you an idea of the bug and also of = our screen. = > javascript error : item is undefined on nested tabPanel with switchType= =3D'ajax' > -------------------------------------------------------------------------= ----- > > Key: RF-11763 > URL: https://issues.jboss.org/browse/RF-11763 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Environment: Websphere 8 - RAD 8 - JSF Mojorra 2.1.4 - Spring 3.0= .6 Final - Use @Inject @Named @SessionScoped as annotations - Firefox 7.0.1= - Windows 7 (6.1 sp1) - AspectJ 1.6.12 / AJDT = > Reporter: Jean ANDRE > Priority: Blocker > Fix For: 4.Future > > Attachments: RF-11763_ScreenShot.png, screenshot-1.jpg > > > See also RF-11750 for the context. > Briefly, we have nested tabPanel - The firs tabPanel is made of static an= d dynamic tabPanel. One tabPanel contains the search form. When the user pe= rforms a search and for each search we open a new tab that contains the res= ult list. When the user click on an item, we update the tab with the detail= ed information. > The detailed information is made of 6 tabs - There are like a subtabs fro= m the parent tabs. When we set the switchType to 'client' the tab performs = well. But as we want that the same tab serves as form to edit and view the = detailed information, we want to refresh the tab to display the inputText i= nstead of the outputText. This is the edit mode. > Then, we need to refresh the tab and we decided to pass in ajax switchTyp= e for theses subTab. Owener, switching to the 'ajax' triggers a javascript = error that blocks the UI. None tab is selectable, user cannot switch from a= tab to another tab. Moreover we failed to refresh the tab but the reason i= s still unknown. > Javascript error is : > {code} > item is undefined - [Stopper sur une erreur] if (!item.disabled && item.g= etName() =3D=3D=3D itemName) { = > toggle...chfaces (ligne 363) > http://localhost:12000/crm/javax.faces.resource/togglePanel.js.jsf?ln=3Do= rg.richfaces > {code} > The involved code is (where >>>> is): > {code} > /** > * @private > * */ > __getItemIndex : function (itemName) { > var item; > for (var i =3D 0; i < this.items.length; i++) { > item =3D this.items[i]; > >>>>>> if (!item.disabled && item.getName() =3D=3D=3D itemName) { > return i; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1557014596957572675==-- From jira-events at lists.jboss.org Thu Mar 8 15:49:37 2012 Content-Type: multipart/mixed; boundary="===============7494583657571738003==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11763) javascript error : item is undefined on nested tabPanel with switchType='ajax' Date: Thu, 08 Mar 2012 15:49:37 -0500 Message-ID: <1799117644.78873.1331239777078.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 984864127.56421.1322674601141.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7494583657571738003== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11763?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-11763: ---------------------------- Attachment: RF-11763_ScreenShot.png Screen shot - JavaScript error during the tab switch. = > javascript error : item is undefined on nested tabPanel with switchType= =3D'ajax' > -------------------------------------------------------------------------= ----- > > Key: RF-11763 > URL: https://issues.jboss.org/browse/RF-11763 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Environment: Websphere 8 - RAD 8 - JSF Mojorra 2.1.4 - Spring 3.0= .6 Final - Use @Inject @Named @SessionScoped as annotations - Firefox 7.0.1= - Windows 7 (6.1 sp1) - AspectJ 1.6.12 / AJDT = > Reporter: Jean ANDRE > Priority: Blocker > Fix For: 4.Future > > Attachments: RF-11763_ScreenShot.png, screenshot-1.jpg > > > See also RF-11750 for the context. > Briefly, we have nested tabPanel - The firs tabPanel is made of static an= d dynamic tabPanel. One tabPanel contains the search form. When the user pe= rforms a search and for each search we open a new tab that contains the res= ult list. When the user click on an item, we update the tab with the detail= ed information. > The detailed information is made of 6 tabs - There are like a subtabs fro= m the parent tabs. When we set the switchType to 'client' the tab performs = well. But as we want that the same tab serves as form to edit and view the = detailed information, we want to refresh the tab to display the inputText i= nstead of the outputText. This is the edit mode. > Then, we need to refresh the tab and we decided to pass in ajax switchTyp= e for theses subTab. Owener, switching to the 'ajax' triggers a javascript = error that blocks the UI. None tab is selectable, user cannot switch from a= tab to another tab. Moreover we failed to refresh the tab but the reason i= s still unknown. > Javascript error is : > {code} > item is undefined - [Stopper sur une erreur] if (!item.disabled && item.g= etName() =3D=3D=3D itemName) { = > toggle...chfaces (ligne 363) > http://localhost:12000/crm/javax.faces.resource/togglePanel.js.jsf?ln=3Do= rg.richfaces > {code} > The involved code is (where >>>> is): > {code} > /** > * @private > * */ > __getItemIndex : function (itemName) { > var item; > for (var i =3D 0; i < this.items.length; i++) { > item =3D this.items[i]; > >>>>>> if (!item.disabled && item.getName() =3D=3D=3D itemName) { > return i; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7494583657571738003==-- From jira-events at lists.jboss.org Thu Mar 8 15:55:36 2012 Content-Type: multipart/mixed; boundary="===============7597459271733389141==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11763) javascript error : item is undefined on nested tabPanel with switchType='ajax' Date: Thu, 08 Mar 2012 15:55:36 -0500 Message-ID: <53775961.78891.1331240136185.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 984864127.56421.1322674601141.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7597459271733389141== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11763?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675296#com= ment-12675296 ] = Jean ANDRE commented on RF-11763: --------------------------------- Due to the error, the ajax response is partial. {code} ]]>
{code} = > javascript error : item is undefined on nested tabPanel with switchType= =3D'ajax' > -------------------------------------------------------------------------= ----- > > Key: RF-11763 > URL: https://issues.jboss.org/browse/RF-11763 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Environment: Websphere 8 - RAD 8 - JSF Mojorra 2.1.4 - Spring 3.0= .6 Final - Use @Inject @Named @SessionScoped as annotations - Firefox 7.0.1= - Windows 7 (6.1 sp1) - AspectJ 1.6.12 / AJDT = > Reporter: Jean ANDRE > Priority: Blocker > Fix For: 4.Future > > Attachments: RF-11763_ScreenShot.png, screenshot-1.jpg > > > See also RF-11750 for the context. > Briefly, we have nested tabPanel - The firs tabPanel is made of static an= d dynamic tabPanel. One tabPanel contains the search form. When the user pe= rforms a search and for each search we open a new tab that contains the res= ult list. When the user click on an item, we update the tab with the detail= ed information. > The detailed information is made of 6 tabs - There are like a subtabs fro= m the parent tabs. When we set the switchType to 'client' the tab performs = well. But as we want that the same tab serves as form to edit and view the = detailed information, we want to refresh the tab to display the inputText i= nstead of the outputText. This is the edit mode. > Then, we need to refresh the tab and we decided to pass in ajax switchTyp= e for theses subTab. Owener, switching to the 'ajax' triggers a javascript = error that blocks the UI. None tab is selectable, user cannot switch from a= tab to another tab. Moreover we failed to refresh the tab but the reason i= s still unknown. > Javascript error is : > {code} > item is undefined - [Stopper sur une erreur] if (!item.disabled && item.g= etName() =3D=3D=3D itemName) { = > toggle...chfaces (ligne 363) > http://localhost:12000/crm/javax.faces.resource/togglePanel.js.jsf?ln=3Do= rg.richfaces > {code} > The involved code is (where >>>> is): > {code} > /** > * @private > * */ > __getItemIndex : function (itemName) { > var item; > for (var i =3D 0; i < this.items.length; i++) { > item =3D this.items[i]; > >>>>>> if (!item.disabled && item.getName() =3D=3D=3D itemName) { > return i; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7597459271733389141==-- From jira-events at lists.jboss.org Thu Mar 8 16:15:37 2012 Content-Type: multipart/mixed; boundary="===============7676308950612174365==" MIME-Version: 1.0 From: =?utf-8?q?Marek_B=C4=99dkowski_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss?= =?utf-8?q?=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8608) rich:effect name does not properly create the JS function to be called Date: Thu, 08 Mar 2012 16:15:37 -0500 Message-ID: <454452341.78908.1331241337121.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1051306858.1271854511462.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============7676308950612174365== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8608?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Marek B=C4=99dkowski updated RF-8608: -------------------------------- Attachment: processEffect.js.patch Patch to processEffect removing with and eval statements. = > rich:effect name does not properly create the JS function to be called > ---------------------------------------------------------------------- > > Key: RF-8608 > URL: https://issues.jboss.org/browse/RF-8608 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, regression > Affects Versions: 3.3.3.Final > Reporter: Tomas Cerny > Fix For: 3.Future > > Attachments: processEffect.js.patch, richFacesRegister.xhtml > > > rich:effect name does not properly create the JS function.. > Consider your documentation example: > >
...
> > > > > it worked on the older version but in 3.3.3 so I must downgrade :| > This is my browser complaint: > Error: Effect[A.type] is not a constructor > Source File: http://localhost/a4j/g/3_3_3.Final/org/richfaces/ui.pack.js > Line: 15201 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7676308950612174365==-- From jira-events at lists.jboss.org Thu Mar 8 16:17:36 2012 Content-Type: multipart/mixed; boundary="===============8182875925109112529==" MIME-Version: 1.0 From: =?utf-8?q?Marek_B=C4=99dkowski_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss?= =?utf-8?q?=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8608) rich:effect name does not properly create the JS function to be called Date: Thu, 08 Mar 2012 16:17:36 -0500 Message-ID: <506041663.78915.1331241456461.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1051306858.1271854511462.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============8182875925109112529== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8608?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675300#comm= ent-12675300 ] = Marek B=C4=99dkowski commented on RF-8608: ------------------------------------- If you experience this problem and still using richfaces 3.3.x - please ign= ore comment above by Thomas Cerny, it doesn't change anything (btw I've no = idea how it should since it's just swapping variable name in the local cont= ext). To make it quick - just apply the supplied patch (processEffect.js.patch) t= o the formentioned processEffect.js file - current solution there uses two = of the top 10 JS worst practices: with and eval :) Enjoy! = > rich:effect name does not properly create the JS function to be called > ---------------------------------------------------------------------- > > Key: RF-8608 > URL: https://issues.jboss.org/browse/RF-8608 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, regression > Affects Versions: 3.3.3.Final > Reporter: Tomas Cerny > Fix For: 3.Future > > Attachments: processEffect.js.patch, richFacesRegister.xhtml > > > rich:effect name does not properly create the JS function.. > Consider your documentation example: > >
...
> > > > > it worked on the older version but in 3.3.3 so I must downgrade :| > This is my browser complaint: > Error: Effect[A.type] is not a constructor > Source File: http://localhost/a4j/g/3_3_3.Final/org/richfaces/ui.pack.js > Line: 15201 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8182875925109112529==-- From jira-events at lists.jboss.org Thu Mar 8 16:17:37 2012 Content-Type: multipart/mixed; boundary="===============8731933130019661724==" MIME-Version: 1.0 From: =?utf-8?q?Marek_B=C4=99dkowski_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss?= =?utf-8?q?=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8608) rich:effect name does not properly create the JS function to be called Date: Thu, 08 Mar 2012 16:17:36 -0500 Message-ID: <903141810.78922.1331241456945.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1051306858.1271854511462.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============8731933130019661724== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8608?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675300#comm= ent-12675300 ] = Marek B=C4=99dkowski edited comment on RF-8608 at 3/8/12 4:17 PM: ------------------------------------------------------------- If you experience this problem and still using richfaces 3.3.x - please ign= ore comment above by Thomas Cerny, swapping local variable names seemed to = make no difference in my environment. To make it quick - just apply the supplied patch (processEffect.js.patch) t= o the formentioned processEffect.js file - I got rid of 'with' and 'eval' e= vils and seems to work :) Enjoy! = was (Author: bendi): If you experience this problem and still using richfaces 3.3.x - please= ignore comment above by Thomas Cerny, it doesn't change anything (btw I've= no idea how it should since it's just swapping variable name in the local = context). To make it quick - just apply the supplied patch (processEffect.js.patch) t= o the formentioned processEffect.js file - current solution there uses two = of the top 10 JS worst practices: with and eval :) Enjoy! = > rich:effect name does not properly create the JS function to be called > ---------------------------------------------------------------------- > > Key: RF-8608 > URL: https://issues.jboss.org/browse/RF-8608 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, regression > Affects Versions: 3.3.3.Final > Reporter: Tomas Cerny > Fix For: 3.Future > > Attachments: processEffect.js.patch, richFacesRegister.xhtml > > > rich:effect name does not properly create the JS function.. > Consider your documentation example: > >
...
> > > > > it worked on the older version but in 3.3.3 so I must downgrade :| > This is my browser complaint: > Error: Effect[A.type] is not a constructor > Source File: http://localhost/a4j/g/3_3_3.Final/org/richfaces/ui.pack.js > Line: 15201 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8731933130019661724==-- From jira-events at lists.jboss.org Thu Mar 8 16:19:36 2012 Content-Type: multipart/mixed; boundary="===============8209360076093895398==" MIME-Version: 1.0 From: =?utf-8?q?Marek_B=C4=99dkowski_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss?= =?utf-8?q?=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8608) rich:effect name does not properly create the JS function to be called Date: Thu, 08 Mar 2012 16:19:36 -0500 Message-ID: <2086289423.78929.1331241576642.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1051306858.1271854511462.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============8209360076093895398== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8608?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675300#comm= ent-12675300 ] = Marek B=C4=99dkowski edited comment on RF-8608 at 3/8/12 4:19 PM: ------------------------------------------------------------- Hi Since the problem still exists in 3.3.3.Final I decided to prepare a patch = (processEffect.js.patch) to the formentioned processEffect.js file - I got = rid of 'with' and 'eval' evils and seems to do the trick :) @Thomas - I tried swapping variable name from params to myparams but it mad= e no difference. = was (Author: bendi): If you experience this problem and still using richfaces 3.3.x - please= ignore comment above by Thomas Cerny, swapping local variable names seemed= to make no difference in my environment. To make it quick - just apply the supplied patch (processEffect.js.patch) t= o the formentioned processEffect.js file - I got rid of 'with' and 'eval' e= vils and seems to work :) Enjoy! = > rich:effect name does not properly create the JS function to be called > ---------------------------------------------------------------------- > > Key: RF-8608 > URL: https://issues.jboss.org/browse/RF-8608 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, regression > Affects Versions: 3.3.3.Final > Reporter: Tomas Cerny > Fix For: 3.Future > > Attachments: processEffect.js.patch, richFacesRegister.xhtml > > > rich:effect name does not properly create the JS function.. > Consider your documentation example: > >
...
> > > > > it worked on the older version but in 3.3.3 so I must downgrade :| > This is my browser complaint: > Error: Effect[A.type] is not a constructor > Source File: http://localhost/a4j/g/3_3_3.Final/org/richfaces/ui.pack.js > Line: 15201 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8209360076093895398==-- From jira-events at lists.jboss.org Fri Mar 9 09:42:37 2012 Content-Type: multipart/mixed; boundary="===============0338692026786570109==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Fri, 09 Mar 2012 09:42:37 -0500 Message-ID: <2038048861.81724.1331304157193.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0338692026786570109== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675510#com= ment-12675510 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Marek Novotny changed the Status of [bug 801172|htt= ps://bugzilla.redhat.com/show_bug.cgi?id=3D801172] from NEW to ASSIGNED = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0338692026786570109==-- From jira-events at lists.jboss.org Fri Mar 9 14:08:36 2012 Content-Type: multipart/mixed; boundary="===============1026633716404628888==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Fri, 09 Mar 2012 14:08:36 -0500 Message-ID: <650145397.82355.1331320116752.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1026633716404628888== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675587#com= ment-12675587 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Marek Novotny changed the Status of [bug 801172|htt= ps://bugzilla.redhat.com/show_bug.cgi?id=3D801172] from ASSIGNED to ON_DEV = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1026633716404628888==-- From jira-events at lists.jboss.org Fri Mar 9 14:08:36 2012 Content-Type: multipart/mixed; boundary="===============2036923994789128454==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Fri, 09 Mar 2012 14:08:36 -0500 Message-ID: <1125290668.82356.1331320116811.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2036923994789128454== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675588#com= ment-12675588 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Marek Novotny made a comment on [bug 801172|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D801172] I have found where the origin intention for changing the scope was. Showcas= e hides jboss profile for variable dependency-scope for jsf-impl. = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2036923994789128454==-- From jira-events at lists.jboss.org Fri Mar 9 14:52:36 2012 Content-Type: multipart/mixed; boundary="===============6364868463417129991==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Fri, 09 Mar 2012 14:52:36 -0500 Message-ID: <857126560.82424.1331322756340.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6364868463417129991== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675601#com= ment-12675601 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Marek Novotny made a comment on [bug 801172|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D801172] After rebuild, the line with: javax.faces\:jsf.js disappeared, so I consider that as fixed. = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6364868463417129991==-- From jira-events at lists.jboss.org Fri Mar 9 15:24:36 2012 Content-Type: multipart/mixed; boundary="===============1403793101072170001==" MIME-Version: 1.0 From: Josh Hill (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" Date: Fri, 09 Mar 2012 15:24:36 -0500 Message-ID: <1476360638.82467.1331324676272.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1403793101072170001== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Josh Hill created RF-12033: ------------------------------ Summary: ExtendedDataTable doesn't show up in tabpanel with sw= itchType=3D"client" Key: RF-12033 URL: https://issues.jboss.org/browse/RF-12033 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.2.0.Final Environment: FireFox 10.0.2 (works in IE7) GlassFish 3.1 Reporter: Josh Hill Attachments: richfaces-test.zip testcase attached 1. Open test1.xhtml 2. Switch to Tab Two Expected Result: ExtendedDataTable shows up Actual Result: Grey bar shows up Workaround is to set switchType to "ajax" instead of "client" -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1403793101072170001==-- From jira-events at lists.jboss.org Fri Mar 9 15:24:36 2012 Content-Type: multipart/mixed; boundary="===============8201394098514870490==" MIME-Version: 1.0 From: Josh Hill (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" Date: Fri, 09 Mar 2012 15:24:36 -0500 Message-ID: <659926780.82475.1331324676608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1476360638.82467.1331324676272.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8201394098514870490== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12033?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Josh Hill updated RF-12033: --------------------------- Attachment: richfaces-test.zip = > ExtendedDataTable doesn't show up in tabpanel with switchType=3D"client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Attachments: richfaces-test.zip > > > testcase attached > 1. Open test1.xhtml > 2. Switch to Tab Two > Expected Result: ExtendedDataTable shows up > Actual Result: Grey bar shows up > Workaround is to set switchType to "ajax" instead of "client" -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8201394098514870490==-- From jira-events at lists.jboss.org Fri Mar 9 15:47:36 2012 Content-Type: multipart/mixed; boundary="===============5148291862290591435==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Fri, 09 Mar 2012 15:47:36 -0500 Message-ID: <2003835680.82537.1331326056641.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5148291862290591435== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675617#com= ment-12675617 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Marek Novotny changed the Status of [bug 801172|htt= ps://bugzilla.redhat.com/show_bug.cgi?id=3D801172] from ON_DEV to ON_QA = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5148291862290591435==-- From jira-events at lists.jboss.org Fri Mar 9 17:45:36 2012 Content-Type: multipart/mixed; boundary="===============0812132898652547722==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12029) AbstractTogglePanel should extend UIRepeat, instead of UIOutput Date: Fri, 09 Mar 2012 17:45:36 -0500 Message-ID: <295199497.82674.1331333136535.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1430073926.75557.1331161056577.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0812132898652547722== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675636#com= ment-12675636 ] = Brian Leathem commented on RF-12029: ------------------------------------ To get the error to work: {quote} uncomment dynamic panel with ajax fragment on facelet in demo {quote} = > AbstractTogglePanel should extend UIRepeat, instead of UIOutput > --------------------------------------------------------------- > > Key: RF-12029 > URL: https://issues.jboss.org/browse/RF-12029 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Brian Leathem > Assignee: Bernard Labno > > Valid uses exist for dynamically generating rich:tab, rich:togglePanelIte= m, rich:accordionItem. Current techniques for supporting this use case inv= olve using c:forEach, which is a problem since c: tags are processed too ea= rly to nicely support dynamic use cases. > One idea to support this use case, is to have AbstractTogglePanel extend = UIRepeat, instead of UIOutput to better dynamic child components. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0812132898652547722==-- From jira-events at lists.jboss.org Sun Mar 11 00:45:47 2012 Content-Type: multipart/mixed; boundary="===============7604834824056421365==" MIME-Version: 1.0 From: Sunil Chauraha (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12034) Accepting multiple date format in rich calendar Date: Sun, 11 Mar 2012 00:45:47 -0500 Message-ID: <2086963364.234.1331444747307.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7604834824056421365== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sunil Chauraha created RF-12034: ----------------------------------- Summary: Accepting multiple date format in rich calendar Key: RF-12034 URL: https://issues.jboss.org/browse/RF-12034 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Reporter: Sunil Chauraha -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7604834824056421365==-- From jira-events at lists.jboss.org Sun Mar 11 00:51:47 2012 Content-Type: multipart/mixed; boundary="===============8178168128541646579==" MIME-Version: 1.0 From: Sunil Chauraha (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12034) Accepting multiple date format in rich calendar Date: Sun, 11 Mar 2012 00:51:47 -0500 Message-ID: <145394468.238.1331445107295.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2086963364.234.1331444747307.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8178168128541646579== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12034?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Sunil Chauraha updated RF-12034: -------------------------------- Labels: richfaces (was: ) Description: = Sometimes it is required to deal with multiple date formats in rich:calenda= r in both calendar selection and manual input. But here we can define only one date pattern. = Could it be possible to accept for this component to accept multiple date f= ormats, based on locale or other requirement. I could write a workaround using javascript but this would be great if we c= an do it by defining just the date patterns inside the component. My javascript solution is here : https://community.jboss.org/wiki/Accepting= MultipleDateFormatsInRichcalendar Complexity: Medium Component/s: component-input = > Accepting multiple date format in rich calendar > ----------------------------------------------- > > Key: RF-12034 > URL: https://issues.jboss.org/browse/RF-12034 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Sunil Chauraha > Labels: richfaces > > Sometimes it is required to deal with multiple date formats in rich:calen= dar in both calendar selection and manual input. > But here we can define only one date pattern. = > Could it be possible to accept for this component to accept multiple date= formats, based on locale or other requirement. > I could write a workaround using javascript but this would be great if we= can do it by defining just the date patterns inside the component. > My javascript solution is here : https://community.jboss.org/wiki/Accepti= ngMultipleDateFormatsInRichcalendar -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8178168128541646579==-- From jira-events at lists.jboss.org Mon Mar 12 05:09:47 2012 Content-Type: multipart/mixed; boundary="===============1462357910957916271==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12006) Some of resources like jquery.focus.js and ckeditor.js are not packaged Date: Mon, 12 Mar 2012 05:09:47 -0400 Message-ID: <275125264.1001.1331543387908.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 83400370.44769.1330343496187.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1462357910957916271== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12006?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675840#com= ment-12675840 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12006: --------------------------------- These resources are referenced correctly, they are not only part of the pac= kage, which seems as {{richfaces-resources-maven-plugin}}. = > Some of resources like jquery.focus.js and ckeditor.js are not packaged > ----------------------------------------------------------------------- > > Key: RF-12006 > URL: https://issues.jboss.org/browse/RF-12006 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > In build of {{dist/static-resources}}, some of components are not package= d: > * {{jquery.focus.js}} > * {{ckeditor.js}} > It it not convenient to package {{ckeditor.js}}, but this issue might aff= ect more resources. > Further investigations required. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1462357910957916271==-- From jira-events at lists.jboss.org Mon Mar 12 05:13:47 2012 Content-Type: multipart/mixed; boundary="===============3543331421874453147==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12009) Showcase: wrong look of page header in Opera Mobile Date: Mon, 12 Mar 2012 05:13:47 -0400 Message-ID: <1856086145.1020.1331543627747.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 208215608.44849.1330346556934.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3543331421874453147== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12009?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675842#com= ment-12675842 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12009: --------------------------------- I have tried several various samples and these works fine (can't speak abou= t all of the samples, since it would need complete manual testing). = > Showcase: wrong look of page header in Opera Mobile > --------------------------------------------------- > > Key: RF-12009 > URL: https://issues.jboss.org/browse/RF-12009 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.2.0.Final > Environment: http://showcase.richfaces.org/ > Opera Mobile v 12.00.ADR-1202131246 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: mobile, mobile-opera > Attachments: Android.jpg, Opera.jpg > > > The header in Opera Mobile does not have the background. > It also means the AJAX status (which is white) is not shown when loading = new page. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3543331421874453147==-- From jira-events at lists.jboss.org Mon Mar 12 05:13:48 2012 Content-Type: multipart/mixed; boundary="===============5381131158673480611==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12009) Showcase: wrong look of page header in Opera Mobile Date: Mon, 12 Mar 2012 05:13:48 -0400 Message-ID: <1222864596.1027.1331543628141.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 208215608.44849.1330346556934.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5381131158673480611== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12009?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12009: ---------------------------- Assignee: (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Showcase: wrong look of page header in Opera Mobile > --------------------------------------------------- > > Key: RF-12009 > URL: https://issues.jboss.org/browse/RF-12009 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.2.0.Final > Environment: http://showcase.richfaces.org/ > Opera Mobile v 12.00.ADR-1202131246 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: mobile, mobile-opera > Attachments: Android.jpg, Opera.jpg > > > The header in Opera Mobile does not have the background. > It also means the AJAX status (which is white) is not shown when loading = new page. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5381131158673480611==-- From jira-events at lists.jboss.org Mon Mar 12 05:13:48 2012 Content-Type: multipart/mixed; boundary="===============1362101592277407389==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12009) Showcase: wrong look of page header in Opera Mobile Date: Mon, 12 Mar 2012 05:13:48 -0400 Message-ID: <740792552.1024.1331543628027.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 208215608.44849.1330346556934.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1362101592277407389== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12009?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675843#com= ment-12675843 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12009: --------------------------------- I would suggest to consider fix in later phases of 4.3. = > Showcase: wrong look of page header in Opera Mobile > --------------------------------------------------- > > Key: RF-12009 > URL: https://issues.jboss.org/browse/RF-12009 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.2.0.Final > Environment: http://showcase.richfaces.org/ > Opera Mobile v 12.00.ADR-1202131246 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: mobile, mobile-opera > Attachments: Android.jpg, Opera.jpg > > > The header in Opera Mobile does not have the background. > It also means the AJAX status (which is white) is not shown when loading = new page. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1362101592277407389==-- From jira-events at lists.jboss.org Mon Mar 12 05:13:48 2012 Content-Type: multipart/mixed; boundary="===============5243406481714046662==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12009) Showcase: wrong look of page header in Opera Mobile Date: Mon, 12 Mar 2012 05:13:48 -0400 Message-ID: <2067343665.1025.1331543628067.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 208215608.44849.1330346556934.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5243406481714046662== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12009?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12009: ---------------------------- Priority: Minor (was: Major) = > Showcase: wrong look of page header in Opera Mobile > --------------------------------------------------- > > Key: RF-12009 > URL: https://issues.jboss.org/browse/RF-12009 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.2.0.Final > Environment: http://showcase.richfaces.org/ > Opera Mobile v 12.00.ADR-1202131246 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: mobile, mobile-opera > Attachments: Android.jpg, Opera.jpg > > > The header in Opera Mobile does not have the background. > It also means the AJAX status (which is white) is not shown when loading = new page. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5243406481714046662==-- From jira-events at lists.jboss.org Mon Mar 12 07:46:48 2012 Content-Type: multipart/mixed; boundary="===============6637213661269167891==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Mon, 12 Mar 2012 07:46:48 -0400 Message-ID: <193095829.1696.1331552808384.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6637213661269167891== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675918#com= ment-12675918 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Karel Piwko changed the Status of [bug 801172|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D801172] from ON_QA to VERIFIED = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6637213661269167891==-- From jira-events at lists.jboss.org Mon Mar 12 07:46:49 2012 Content-Type: multipart/mixed; boundary="===============1856678539055340927==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Mon, 12 Mar 2012 07:46:49 -0400 Message-ID: <1003425657.1702.1331552809073.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1856678539055340927== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675920#com= ment-12675920 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Karel Piwko made a comment on [bug 801172|https://bug= zilla.redhat.com/show_bug.cgi?id=3D801172] Verified fix in WFK 2.0.0.ER3. = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1856678539055340927==-- From jira-events at lists.jboss.org Mon Mar 12 07:46:49 2012 Content-Type: multipart/mixed; boundary="===============8904302698080237861==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11739) Components that don't require jsf.js can break ResourceMapping Date: Mon, 12 Mar 2012 07:46:48 -0400 Message-ID: <1958058112.1701.1331552808989.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8904302698080237861== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11739?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12675919#com= ment-12675919 ] = RH Bugzilla Integration commented on RF-11739: ---------------------------------------------- Marek Novotny made a comment on [bug 801172|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D801172] Referenced built jar in MEAD is here http://download.devel.redhat.com/brewr= oot/work/tasks/9529/4139529/org/richfaces/ui/richfaces-components-ui/4.2.0.= Final-redhat-1/richfaces-components-ui-4.2.0.Final-redhat-1.jar = > Components that don't require jsf.js can break ResourceMapping > -------------------------------------------------------------- > > Key: RF-11739 > URL: https://issues.jboss.org/browse/RF-11739 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.0.0.CR1 > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > This bug is only observable when resourceMapping is enabled. > If a component doesn't require jsf.js, and it is the first component to r= equire a resource, it will trigger packed.js to redner before jsf.js. This= breaks some of the scripts in packed.js, that require jsf.js. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8904302698080237861==-- From jira-events at lists.jboss.org Mon Mar 12 09:09:47 2012 Content-Type: multipart/mixed; boundary="===============6444823028287257153==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12035) Switchable panels do not work after rerendering whole page Date: Mon, 12 Mar 2012 09:09:47 -0400 Message-ID: <1502418805.1981.1331557787347.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6444823028287257153== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-12035: ---------------------------------- Summary: Switchable panels do not work after rerendering whole= page Key: RF-12035 URL: https://issues.jboss.org/browse/RF-12035 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-panels-layout-themes Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.7-jbossorg-1 JBoss AS 7.1.1.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Chrome 17.0.963.79 @ Linux i686 Reporter: Pavol Pitonak # deploy Metamer and open http://localhost:8080/metamer/faces/components/ri= chAccordion/simple.xhtml # click on panel 3 # verify that panel 3 is displayed # click rerender all button (4th button in page header) # verify that panel 3 is displayed # click on panel 2 # click on panel 2 result: * accordion is not switched to panel 2 on first click, second click is nece= ssary * there is the same problem with rich:collapsiblePanel -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6444823028287257153==-- From jira-events at lists.jboss.org Mon Mar 12 10:30:48 2012 Content-Type: multipart/mixed; boundary="===============8971592961512971190==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12036) showcase - rich:progressBar - client side mode of progressBar halts another progress bar in AJAX mode Date: Mon, 12 Mar 2012 10:30:47 -0400 Message-ID: <653082305.2290.1331562647939.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8971592961512971190== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12036: -------------------------------- Summary: showcase - rich:progressBar - client side mode of pro= gressBar halts another progress bar in AJAX mode Key: RF-12036 URL: https://issues.jboss.org/browse/RF-12036 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-output, showcase Affects Versions: 4.2.0.Final Environment: browsers: Firefox 10, Chrome 17 Reporter: Juraj Huska When you have open both samples for the rich:progressBar at the same browse= r(in separated cards), and run Ajax mode one and during of execution of thi= s one also the client mode one, then the Ajax one is halted. The server updates are still coming for that Ajax one, however the visual s= tate is not updated. It is not restored even when the second one is complet= ed. This is noticeable on showcase since RF 4.0.0.Final, and reproducible on GA= E or OpenShift accounts. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8971592961512971190==-- From jira-events at lists.jboss.org Mon Mar 12 11:02:48 2012 Content-Type: multipart/mixed; boundary="===============7525099997028417009==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12037) Fileupload:onbegin, oncomplete and onbeforedomupdate does not work Date: Mon, 12 Mar 2012 11:02:47 -0400 Message-ID: <59538813.2564.1331564567977.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7525099997028417009== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-12037: -------------------------------- Summary: Fileupload:onbegin, oncomplete and onbeforedomupdate = does not work Key: RF-12037 URL: https://issues.jboss.org/browse/RF-12037 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Firefox 10.0.1 @ Linux x86_64 Chrome 17.0.963.56 @ Linux i686 Reporter: Ji=C5=99=C3=AD =C5=A0tefek # Deploy metamer # open http://localhost:8080/metamer/faces/components/richFileUpload/simple= .xhtml # Attribute onbegin=3Dalert('1') = # Attribute onbeforedomupdate=3Dalert('2') # Attribute oncomplete=3Dalert('3') # Upload file # 3 alerts should show = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7525099997028417009==-- From jira-events at lists.jboss.org Mon Mar 12 11:04:49 2012 Content-Type: multipart/mixed; boundary="===============5930341252985765922==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11590) showcase - only first push is done using Atmosphere CR2 Date: Mon, 12 Mar 2012 11:04:49 -0400 Message-ID: <561353362.2576.1331564689159.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926719144.28309.1319617905803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5930341252985765922== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11590?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676013#com= ment-12676013 ] = Juraj Huska commented on RF-11590: ---------------------------------- I have verified that it is OK for releases 4.2.0.Final and higher. = > showcase - only first push is done using Atmosphere CR2 > ------------------------------------------------------- > > Key: RF-11590 > URL: https://issues.jboss.org/browse/RF-11590 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: Tomcat 6.0.32 > Reporter: Juraj Huska > Assignee: Juraj Huska > > Only the first push is done in demos for a4j:push component in showcase. = No exception is thrown, or any other warning is generated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5930341252985765922==-- From jira-events at lists.jboss.org Mon Mar 12 11:06:47 2012 Content-Type: multipart/mixed; boundary="===============9121308377160652801==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11590) showcase - only first push is done using Atmosphere CR2 Date: Mon, 12 Mar 2012 11:06:47 -0400 Message-ID: <406911584.2581.1331564807728.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926719144.28309.1319617905803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9121308377160652801== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11590?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska resolved RF-11590. ------------------------------ Resolution: Done = > showcase - only first push is done using Atmosphere CR2 > ------------------------------------------------------- > > Key: RF-11590 > URL: https://issues.jboss.org/browse/RF-11590 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: Tomcat 6.0.32 > Reporter: Juraj Huska > Assignee: Juraj Huska > > Only the first push is done in demos for a4j:push component in showcase. = No exception is thrown, or any other warning is generated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9121308377160652801==-- From jira-events at lists.jboss.org Mon Mar 12 11:06:48 2012 Content-Type: multipart/mixed; boundary="===============4026428034980491028==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: push sample doesn't work Date: Mon, 12 Mar 2012 11:06:48 -0400 Message-ID: <612942910.2594.1331564808513.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4026428034980491028== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-11983: ----------------------------------------- Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=3D8024= 44 = > Showcase: push sample doesn't work > ---------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4026428034980491028==-- From jira-events at lists.jboss.org Mon Mar 12 11:06:48 2012 Content-Type: multipart/mixed; boundary="===============0731282709616842749==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11590) showcase - only first push is done using Atmosphere CR2 Date: Mon, 12 Mar 2012 11:06:47 -0400 Message-ID: <2085419780.2586.1331564807950.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926719144.28309.1319617905803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0731282709616842749== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11590?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska reopened RF-11590: ------------------------------ Sorry accidentally closed after verification, therefore reopening = > showcase - only first push is done using Atmosphere CR2 > ------------------------------------------------------- > > Key: RF-11590 > URL: https://issues.jboss.org/browse/RF-11590 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: Tomcat 6.0.32 > Reporter: Juraj Huska > Assignee: Juraj Huska > > Only the first push is done in demos for a4j:push component in showcase. = No exception is thrown, or any other warning is generated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0731282709616842749==-- From jira-events at lists.jboss.org Mon Mar 12 11:06:48 2012 Content-Type: multipart/mixed; boundary="===============2307551925486768428==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: push sample doesn't work Date: Mon, 12 Mar 2012 11:06:48 -0400 Message-ID: <555921577.2590.1331564808256.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2307551925486768428== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-11983: ----------------------------------------- Bugzilla Update: Perform = > Showcase: push sample doesn't work > ---------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2307551925486768428==-- From jira-events at lists.jboss.org Mon Mar 12 11:08:47 2012 Content-Type: multipart/mixed; boundary="===============4059905609014009224==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11590) showcase - only first push is done using Atmosphere CR2 Date: Mon, 12 Mar 2012 11:08:47 -0400 Message-ID: <98098408.2612.1331564927399.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926719144.28309.1319617905803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4059905609014009224== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11590?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska reassigned RF-11590: -------------------------------- Assignee: (was: Juraj Huska) = > showcase - only first push is done using Atmosphere CR2 > ------------------------------------------------------- > > Key: RF-11590 > URL: https://issues.jboss.org/browse/RF-11590 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: Tomcat 6.0.32 > Reporter: Juraj Huska > > Only the first push is done in demos for a4j:push component in showcase. = No exception is thrown, or any other warning is generated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4059905609014009224==-- From jira-events at lists.jboss.org Mon Mar 12 11:18:49 2012 Content-Type: multipart/mixed; boundary="===============5051901342396987436==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11590) showcase - only first push is done using Atmosphere CR2 Date: Mon, 12 Mar 2012 11:18:49 -0400 Message-ID: <178698583.2675.1331565529754.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926719144.28309.1319617905803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5051901342396987436== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11590?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11590. ---------------------------- Resolution: Done fixed with upgrading of Atmosphere framework in 4.2.0.Final release. = > showcase - only first push is done using Atmosphere CR2 > ------------------------------------------------------- > > Key: RF-11590 > URL: https://issues.jboss.org/browse/RF-11590 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: Tomcat 6.0.32 > Reporter: Juraj Huska > > Only the first push is done in demos for a4j:push component in showcase. = No exception is thrown, or any other warning is generated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5051901342396987436==-- From jira-events at lists.jboss.org Mon Mar 12 12:00:48 2012 Content-Type: multipart/mixed; boundary="===============5752822426460286834==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Mon, 12 Mar 2012 12:00:48 -0400 Message-ID: <1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5752822426460286834== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jean ANDRE created RF-12038: ------------------------------- Summary: IE8 - Object does not support this property or method= - a4j:jsFunction Key: RF-12038 URL: https://issues.jboss.org/browse/RF-12038 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-4= .2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 - = Windows 7 - IE 8.0.1.7601.17514 Reporter: Jean ANDRE Under IE8, IE reports the following error message due to a javascript error= . However, the page are well displayed and the application is running ok. Object doesn't support this property or method line 177 caracter 1 Object doesn't support this property or method line 177 caracter 99 Under IE Debugger, the line is: {code} closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","par= ameters":{"tabId":tabId} } )};< The caracter 99, is........................................................= ......................| (here) {code} This is a code generated by a4j:jsFunction from the XHTML {code} {code} The rendered code is : {code} closeTab=3Dfunction(tabId){RichFaces.ajax("close= Tab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; {code} See also this link as we got almost a similar: https://bugzilla.redhat.com/= show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5752822426460286834==-- From jira-events at lists.jboss.org Mon Mar 12 12:04:47 2012 Content-Type: multipart/mixed; boundary="===============6587400064920595424==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Mon, 12 Mar 2012 12:04:47 -0400 Message-ID: <2140521297.3083.1331568287346.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6587400064920595424== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12038: ---------------------------- Attachment: index.xhtml The XHTML page where the error appears - Line 299 = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Attachments: index.xhtml > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6587400064920595424==-- From jira-events at lists.jboss.org Mon Mar 12 12:30:48 2012 Content-Type: multipart/mixed; boundary="===============1352940277704501584==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11589) showcase - a Warning is generated when there is interaction with Atmosphere CR2 framework Date: Mon, 12 Mar 2012 12:30:47 -0400 Message-ID: <515952031.3417.1331569847892.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26512795.28270.1319616945421.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1352940277704501584== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11589?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676113#com= ment-12676113 ] = Juraj Huska commented on RF-11589: ---------------------------------- I can not reproduce this issue anymore with releases 4.2.0.Final and higher. = > showcase - a Warning is generated when there is interaction with Atmosphe= re CR2 framework > -------------------------------------------------------------------------= ---------------- > > Key: RF-11589 > URL: https://issues.jboss.org/browse/RF-11589 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: JBoss AS 7.0.2.Final, , JBoss 6.0.0.Final, Tomcat 6.0.0.32 > Reporter: Juraj Huska > Assignee: Juraj Huska > Priority: Minor > > An WARNING is generated when there is any interaction with Atmosphere CR2= framework in showcase push demos. > The warning: > {code} > 10:08:12,102 WARNING [org.atmosphere.cpr.AtmosphereResourceImpl] (http-lo= calhost.localdomain-127.0.0.1-8080-2) Broadcaster DefaultBroadcaster9dd3cba= c-4e33-482d-8c8c-cd2c0936e695 has been destroyed and cannot be re-used. Rec= reating a new one with the same name. You can turn off that mechanism by ad= ding, in web.xml, org.atmosphere.cpr.recoverFromDestroyedBroadcaster set to= false > {code} > The demos however work as expected. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1352940277704501584==-- From jira-events at lists.jboss.org Mon Mar 12 12:32:47 2012 Content-Type: multipart/mixed; boundary="===============7776404742333876140==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11589) showcase - a Warning is generated when there is interaction with Atmosphere CR2 framework Date: Mon, 12 Mar 2012 12:32:47 -0400 Message-ID: <626366682.3423.1331569967429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26512795.28270.1319616945421.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7776404742333876140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11589?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska resolved RF-11589. ------------------------------ Resolution: Done fixed with upgrade of Atmosphere framework in RF 4.2.0.Final release = > showcase - a Warning is generated when there is interaction with Atmosphe= re CR2 framework > -------------------------------------------------------------------------= ---------------- > > Key: RF-11589 > URL: https://issues.jboss.org/browse/RF-11589 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: JBoss AS 7.0.2.Final, , JBoss 6.0.0.Final, Tomcat 6.0.0.32 > Reporter: Juraj Huska > Assignee: Juraj Huska > Priority: Minor > > An WARNING is generated when there is any interaction with Atmosphere CR2= framework in showcase push demos. > The warning: > {code} > 10:08:12,102 WARNING [org.atmosphere.cpr.AtmosphereResourceImpl] (http-lo= calhost.localdomain-127.0.0.1-8080-2) Broadcaster DefaultBroadcaster9dd3cba= c-4e33-482d-8c8c-cd2c0936e695 has been destroyed and cannot be re-used. Rec= reating a new one with the same name. You can turn off that mechanism by ad= ding, in web.xml, org.atmosphere.cpr.recoverFromDestroyedBroadcaster set to= false > {code} > The demos however work as expected. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7776404742333876140==-- From jira-events at lists.jboss.org Mon Mar 12 12:32:47 2012 Content-Type: multipart/mixed; boundary="===============7050640644613626098==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11589) showcase - a Warning is generated when there is interaction with Atmosphere CR2 framework Date: Mon, 12 Mar 2012 12:32:47 -0400 Message-ID: <2024429729.3426.1331569967579.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26512795.28270.1319616945421.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7050640644613626098== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11589?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11589. ---------------------------- = > showcase - a Warning is generated when there is interaction with Atmosphe= re CR2 framework > -------------------------------------------------------------------------= ---------------- > > Key: RF-11589 > URL: https://issues.jboss.org/browse/RF-11589 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Environment: app: showcase > container: JBoss AS 7.0.2.Final, , JBoss 6.0.0.Final, Tomcat 6.0.0.32 > Reporter: Juraj Huska > Assignee: Juraj Huska > Priority: Minor > > An WARNING is generated when there is any interaction with Atmosphere CR2= framework in showcase push demos. > The warning: > {code} > 10:08:12,102 WARNING [org.atmosphere.cpr.AtmosphereResourceImpl] (http-lo= calhost.localdomain-127.0.0.1-8080-2) Broadcaster DefaultBroadcaster9dd3cba= c-4e33-482d-8c8c-cd2c0936e695 has been destroyed and cannot be re-used. Rec= reating a new one with the same name. You can turn off that mechanism by ad= ding, in web.xml, org.atmosphere.cpr.recoverFromDestroyedBroadcaster set to= false > {code} > The demos however work as expected. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7050640644613626098==-- From jira-events at lists.jboss.org Tue Mar 13 00:51:48 2012 Content-Type: multipart/mixed; boundary="===============5579230934267762661==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: push sample doesn't work Date: Tue, 13 Mar 2012 00:51:48 -0400 Message-ID: <267422553.4969.1331614308371.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5579230934267762661== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676281#com= ment-12676281 ] = RH Bugzilla Integration commented on RF-11983: ---------------------------------------------- Rebecca Newton made a comment on [bug 802444|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D802444] Technical note updated. If any revisions are required, please edit the = "Technical Notes" field accordingly. All revisions will be proofread by the Engineering Content= Services team. = Diffed Contents: @@ -1,18 +1,6 @@ -The default installation of JBoss Enterprise Application Platform comes se= cured by default. RichFaces Showcase example uses JMS Push functionality, w= hich is secured as well. +Both the default installation of JBoss Enterprise Application Platform and= JMS Push, which is required by RichFaces Showcase example, are secured by = default. To deploy the application, choose one of the following options: = -Users wishing to deploy the application needs to do one of the following a= dditional configurations: +1. Add a new user ApplicationRealm with the $JBOSS_HOME/bin/add-user.bat/s= h script, with the role: guest. - +2. Modify web.xml in the RichFaces Showcase to contain created credentials: -1/ Add an user to via ApplicationRealm via $JBOSS_HOME/bin/add-user.bat/sh= script into roles guest. = +adkslfjasdfk - +3. Disable security for HornetQ completely.-2/ Modify web.xml in the RichF= aces Showcase to contain created credentials, e.g.: - - - org.richfaces.push.jms.connectionUsername - guest - - - org.richfaces.push.jms.connectionPassword - password - - -The other way is to disable security for HornetQ completely. = > Showcase: push sample doesn't work > ---------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5579230934267762661==-- From jira-events at lists.jboss.org Tue Mar 13 00:53:47 2012 Content-Type: multipart/mixed; boundary="===============4714760687839012745==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: push sample doesn't work Date: Tue, 13 Mar 2012 00:53:47 -0400 Message-ID: <1631509332.4973.1331614427548.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4714760687839012745== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676282#com= ment-12676282 ] = RH Bugzilla Integration commented on RF-11983: ---------------------------------------------- Rebecca Newton made a comment on [bug 802444|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D802444] Technical note updated. If any revisions are required, please edit the = "Technical Notes" field accordingly. All revisions will be proofread by the Engineering Content= Services team. = Diffed Contents: @@ -2,5 +2,11 @@ = 1. Add a new user ApplicationRealm with the $JBOSS_HOME/bin/add-user.bat/s= h script, with the role: guest. 2. Modify web.xml in the RichFaces Showcase to contain created credentials: -adkslfjasdfk + +- org.richfaces.push.jms.connectionUsername guest + + + org.richfaces.push.jms.connectionPassword + password + 3. Disable security for HornetQ completely. = > Showcase: push sample doesn't work > ---------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4714760687839012745==-- From jira-events at lists.jboss.org Tue Mar 13 02:55:47 2012 Content-Type: multipart/mixed; boundary="===============5542740072840804818==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12023) comboBox in dataTable Date: Tue, 13 Mar 2012 02:55:47 -0400 Message-ID: <329645732.5042.1331621747473.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1186358326.70819.1331048742987.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5542740072840804818== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12023?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-12023: -------------------------------------- Forum Reference: https://community.jboss.org/message/723275#723275 = > comboBox in dataTable > ---------------------- > > Key: RF-12023 > URL: https://issues.jboss.org/browse/RF-12023 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects, component-tables > Affects Versions: 4.1.0.Final > Environment: All > Reporter: Bertrand P > Labels: richfaces > Fix For: 4.3-Tracking > > Original Estimate: 1 day, 4 hours > Remaining Estimate: 1 day, 4 hours > > When a is in a of a ,= the row is selected when comboBox is selected. > A workaround is: , but = that doesn't work when the arrow is clicked. > Because the arrow is generated in an independent span: > > > > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5542740072840804818==-- From jira-events at lists.jboss.org Tue Mar 13 04:01:48 2012 Content-Type: multipart/mixed; boundary="===============7236750523723433828==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12039) fileupload: attribute data does not work Date: Tue, 13 Mar 2012 04:01:48 -0400 Message-ID: <1594423263.5104.1331625708133.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7236750523723433828== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-12039: -------------------------------- Summary: fileupload: attribute data does not work Key: RF-12039 URL: https://issues.jboss.org/browse/RF-12039 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss Web 7.0.10.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Firefox 10.0.1 @ Linux x86_64 Chrome 17.0.963.56 @ Linux i686 Reporter: Ji=C5=99=C3=AD =C5=A0tefek # Deploy metamer # open http://localhost:8080/metamer/faces/components/richFileUpload/simple= .xhtml # Set attribute data =3D 'RichFaces 4' # Set attribute onuploadcomplete =3D alert(event.data) = # Upload file # Alert with "RichFaces 4" should show -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7236750523723433828==-- From jira-events at lists.jboss.org Tue Mar 13 04:37:47 2012 Content-Type: multipart/mixed; boundary="===============0840424708002023485==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Tue, 13 Mar 2012 04:37:47 -0400 Message-ID: <568515786.5161.1331627867674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0840424708002023485== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676302#com= ment-12676302 ] = Stian Thorgersen commented on RF-12013: --------------------------------------- Happened again now, this time it was caused by a re-deploy = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0840424708002023485==-- From jira-events at lists.jboss.org Tue Mar 13 10:15:49 2012 Content-Type: multipart/mixed; boundary="===============8947399717923683076==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Tue, 13 Mar 2012 10:15:49 -0400 Message-ID: <1304031747.6315.1331648149291.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8947399717923683076== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12038: ---------------------------- Attachment: NestedWeb.zip We have prepared a simple but realistic application that demonstrates the b= ug. Please read the readme.txt file for more information. Do not hesitate t= o request additional information. = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Attachments: index.xhtml, NestedWeb.zip > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8947399717923683076==-- From jira-events at lists.jboss.org Tue Mar 13 11:43:47 2012 Content-Type: multipart/mixed; boundary="===============4153297302304019151==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Tue, 13 Mar 2012 11:43:47 -0400 Message-ID: <749152919.6674.1331653427489.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4153297302304019151== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska resolved RF-12003. ------------------------------ Resolution: Done I have filled upstream issue which can be accessible [here|http://java.net/= jira/browse/JAVASERVERFACES-2345]. = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Assignee: Juraj Huska > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4153297302304019151==-- From jira-events at lists.jboss.org Tue Mar 13 11:43:48 2012 Content-Type: multipart/mixed; boundary="===============0901044954870500433==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12003) Including h:head breaks f:ajax events of commandButton Date: Tue, 13 Mar 2012 11:43:47 -0400 Message-ID: <142269467.6678.1331653427895.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135907437.40978.1330081357692.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0901044954870500433== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12003?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-12003. ---------------------------- = > Including h:head breaks f:ajax events of commandButton > ------------------------------------------------------ > > Key: RF-12003 > URL: https://issues.jboss.org/browse/RF-12003 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final, 4.2.0.CR1 > Environment: JBoss 7.0.2 Final, JBoss 7.1.0 Final, RichFaces 4.2.= 0 Final, 4.1.0 Final, Chrome and Safari > Reporter: Joern Ohmen > Assignee: Juraj Huska > Priority: Critical > Labels: Header, JSF2.0, RichFaces4 > Attachments: brokenRFHheadAdded.png > > > If I add h:head-Tag to my page, the ajax events of the h:commandButton ar= e not working. The example should show up a panel with a click on a button,= but nothing happens. The example is working when h:head is removed. I use = a ConversationScoped Bean. > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > Test > > > listener=3D"#{testController.beginConversation}" /> > > > > > action=3D"#{testController.changeRenderInputPanel}"> > > > rendered=3D"#{testController.renderInputPanel}"> > > > > > > > > {code} > {code} > import java.io.Serializable; > import javax.enterprise.context.Conversation; > import javax.enterprise.context.ConversationScoped; > import javax.inject.Inject; > import javax.inject.Named; > import org.apache.commons.logging.Log; > @Named > @ConversationScoped > public class TestController implements Serializable{ > private static final long serialVersionUID =3D 1L; > = > @Inject > private Conversation conversation; > = > private String newCommentAuthor; > = > private boolean renderInputPanel =3D true; > = > @Inject > private Log logger; > = > public boolean isRenderInputPanel() { > return renderInputPanel; > } > public void setRenderInputPanel(boolean renderInputPanel) { > this.renderInputPanel =3D renderInputPanel; > } > = > public void changeRenderInputPanel() { > this.setRenderInputPanel(!isRenderInputPanel()); > logger.info("render panel: " + renderInputPanel); > } > public String getNewCommentAuthor() { > return newCommentAuthor; > } > public void setNewCommentAuthor(String newCommentAuthor) { > this.newCommentAuthor =3D newCommentAuthor; > } > public void beginConversation() { > if (conversation.isTransient()) { > conversation.setTimeout(120000); > conversation.begin(); > } > } > public void endConversation() { > if (!conversation.isTransient()) { > conversation.end(); > return; > } > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0901044954870500433==-- From jira-events at lists.jboss.org Tue Mar 13 11:45:49 2012 Content-Type: multipart/mixed; boundary="===============4025568145300982472==" MIME-Version: 1.0 From: Edilmar Alves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11345) If two extendedDataTable placed on the page, both lose horizontal scroll. Date: Tue, 13 Mar 2012 11:45:47 -0400 Message-ID: <1811634074.6697.1331653547542.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1151360355.22349.1314110597689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4025568145300982472== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11345?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676481#com= ment-12676481 ] = Edilmar Alves commented on RF-11345: ------------------------------------ I have the same problem with RF4.1, and I submitted a sample code in this f= orum link: https://community.jboss.org/message/723003 = > If two extendedDataTable placed on the page, both lose horizontal scroll. > ------------------------------------------------------------------------- > > Key: RF-11345 > URL: https://issues.jboss.org/browse/RF-11345 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Environment: Windows xp sp3, java (jdk1.6.0_26), jboss-6.0.0, Ric= hFaces 4.0.0 Final, Browsers: Firefox 5.0, IE7, Google Chrom. > Reporter: Vitaliy Pavlov > Labels: extendedDataTable, richfaces, scroll > Fix For: 4.Future > > Original Estimate: 2 weeks > Remaining Estimate: 2 weeks > > If two extendedDataTable put on page, both extendedDataTables lose horizo= ntal scroll. > Vertical scroll is still working. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4025568145300982472==-- From jira-events at lists.jboss.org Tue Mar 13 13:12:48 2012 Content-Type: multipart/mixed; boundary="===============8035186482764250101==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12040) Multi-form document - command button (submit) does not work after rendering Date: Tue, 13 Mar 2012 13:12:48 -0400 Message-ID: <375257168.7025.1331658768095.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8035186482764250101== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jean ANDRE created RF-12040: ------------------------------- Summary: Multi-form document - command button (submit) does no= t work after rendering Key: RF-12040 URL: https://issues.jboss.org/browse/RF-12040 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - FireFox 10 - RichFaces 4.2 Final Reporter: Jean ANDRE We have one page that contains two forms. The first form contain a menus ba= r (ajax switchType) while the second contains a tabPanel (also in ajax swit= chType). When a user select a menu, we select the corresponding tab that co= ntains a submit button. Once the tab is selected, the submit button does no= t work. We have to click twice for submitting. 1) If we move the menu bar inside the second forms, it is working. = 2) If we set the menu bar in client switchType, selecting the menu doesn't = do anything. 3) If we set the menu bar in server switchType it's working. As the rendering is well executed, the submit button should works but is no= t whatever we set as render=3D"@all, or any valid id". We have prepared a small application that demonstrates the case. This is a = simple but realistic application. Edit the index.xhtml to play with the men= u. Let us know if we doing something wrong. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8035186482764250101==-- From jira-events at lists.jboss.org Tue Mar 13 13:22:47 2012 Content-Type: multipart/mixed; boundary="===============8459613396509955023==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12040) Multi-form document - command button (submit) does not work after rendering Date: Tue, 13 Mar 2012 13:22:47 -0400 Message-ID: <93542900.7054.1331659367304.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 375257168.7025.1331658768095.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8459613396509955023== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12040?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12040: ---------------------------- Description: = We have one page that contains two forms. The first form contain a menus ba= r (ajax switchType) while the second contains a tabPanel (also in ajax swit= chType). When a user select a menu, we select the corresponding tab that co= ntains a submit button. Once the tab is selected, the submit button does no= t work. We have to click twice for submitting. 1) If we move the menu bar inside the second forms, it is working. = 2) If we set the menu bar in client switchType, selecting the menu doesn't = do anything. 3) If we set the menu bar in server switchType it's working. As the rendering is well executed, the submit button should works but is no= t whatever we set as render=3D"@all, or any valid id". We have prepared a small application that demonstrates the case. This is a = simple but realistic application. Edit the index.xhtml to play with the men= u. Let us know if we doing something wrong. Note also that the JIRA JAVASERVERFACES-2016 was reopened :[JIRA] Reopened:= (JAVASERVERFACES-2016) Resources not loaded when using a dynamic ui:inlclu= de and rendered via ajax [ http://java.net/jira/browse/JAVASERVERFACES-2016?page=3Dcom.atlassian.jir= a.plugin.system.issuetabpanels:all-tabpanel ] was: We have one page that contains two forms. The first form contain a menus ba= r (ajax switchType) while the second contains a tabPanel (also in ajax swit= chType). When a user select a menu, we select the corresponding tab that co= ntains a submit button. Once the tab is selected, the submit button does no= t work. We have to click twice for submitting. 1) If we move the menu bar inside the second forms, it is working. = 2) If we set the menu bar in client switchType, selecting the menu doesn't = do anything. 3) If we set the menu bar in server switchType it's working. As the rendering is well executed, the submit button should works but is no= t whatever we set as render=3D"@all, or any valid id". We have prepared a small application that demonstrates the case. This is a = simple but realistic application. Edit the index.xhtml to play with the men= u. Let us know if we doing something wrong. Steps to Reproduce: = 1) Setup the application, read the readme.txt file 2) Once the index page is displayed, the menu "Items Management" is selecte= d by default 3) Click one the first static tab "Tab S-#1" 4) From the menu, select the menu "items management" 5) Then click on button "New List" 6) A list of item should be displayed was: 1) Setup the application, read the readme.txt file 2) Once the index page is displayed, the menu "Items Management" is selecte= d by default 3) Click one the first static tab "Tab S-#1" 4) From the menu, select the menu "items management" 5) Then click on button "New List" = > Multi-form document - command button (submit) does not work after renderi= ng > -------------------------------------------------------------------------= -- > > Key: RF-12040 > URL: https://issues.jboss.org/browse/RF-12040 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 = - Windows 7 - FireFox 10 - RichFaces 4.2 Final > Reporter: Jean ANDRE > > We have one page that contains two forms. The first form contain a menus = bar (ajax switchType) while the second contains a tabPanel (also in ajax sw= itchType). When a user select a menu, we select the corresponding tab that = contains a submit button. Once the tab is selected, the submit button does = not work. We have to click twice for submitting. > 1) If we move the menu bar inside the second forms, it is working. = > 2) If we set the menu bar in client switchType, selecting the menu doesn'= t do anything. > 3) If we set the menu bar in server switchType it's working. > As the rendering is well executed, the submit button should works but is = not whatever we set as render=3D"@all, or any valid id". > We have prepared a small application that demonstrates the case. This is = a simple but realistic application. Edit the index.xhtml to play with the m= enu. Let us know if we doing something wrong. > Note also that the JIRA JAVASERVERFACES-2016 was reopened :[JIRA] Reopene= d: (JAVASERVERFACES-2016) Resources not loaded when using a dynamic ui:inlc= lude and rendered via ajax > [ http://java.net/jira/browse/JAVASERVERFACES-2016?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:all-tabpanel ] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8459613396509955023==-- From jira-events at lists.jboss.org Wed Mar 14 03:37:49 2012 Content-Type: multipart/mixed; boundary="===============4892051357315223159==" MIME-Version: 1.0 From: Gabor Nagy (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11606) rich:select : doesn't cast selectItem value Date: Wed, 14 Mar 2012 03:37:48 -0400 Message-ID: <1424694505.7900.1331710668998.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1015553429.37674.1319809245181.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4892051357315223159== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11606?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676604#com= ment-12676604 ] = Gabor Nagy commented on RF-11606: --------------------------------- Same with enums (of course). = > rich:select : doesn't cast selectItem value > ------------------------------------------- > > Key: RF-11606 > URL: https://issues.jboss.org/browse/RF-11606 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.1.0.Milestone2 > Environment: Internet Explorer 8, Google Chrome 14, Oracle Weblog= ic 11g > Reporter: Frederic Allard > Labels: rich:select, richfaces4 > Fix For: 4.3-Tracking > > > If you define f:selectItem(s) directly in the xhtml file as children of a= rich:select, the values of the selectItem(s) are not cast to the bound val= ue of the rich:select. = > This results in the value to be not selected by the rich:select after ren= dering the page. > As the documentation of the component says: "The rich:select component is= designed to replace standard h:selectOneMenu." > The h:selectOneMenu casts and selects the value in this case. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4892051357315223159==-- From jira-events at lists.jboss.org Wed Mar 14 04:11:50 2012 Content-Type: multipart/mixed; boundary="===============3463641910581320551==" MIME-Version: 1.0 From: Dmitry Tsekhmistrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11954) RF 3.3.3 Columnresizing of ExtendedDataTables does not work properly anymore on Firefox 10 and newer. Date: Wed, 14 Mar 2012 04:11:50 -0400 Message-ID: <703256353.7986.1331712710464.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 360403425.23388.1328471028849.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3463641910581320551== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11954?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676610#com= ment-12676610 ] = Dmitry Tsekhmistrov commented on RF-11954: ------------------------------------------ Also is reproduced on Win XP with Firefox 11. Have anyone solved it? = > RF 3.3.3 Columnresizing of ExtendedDataTables does not work properly anym= ore on Firefox 10 and newer. > -------------------------------------------------------------------------= ---------------------------- > > Key: RF-11954 > URL: https://issues.jboss.org/browse/RF-11954 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 3.3.3.Final > Environment: Windows 7 with Firefox 10 or Firefox 13 (nightly) > archlinux with Firefox 10 > Reporter: Christian Peter > Fix For: 3.Future > > > Using the showcase for richfaces 3.3.3.... > Take a look into: > https://community.jboss.org/thread/194728?tstart=3D0 > I'm not sure if this is a RF issue or just a bug in the firefox javascrip= t engine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3463641910581320551==-- From jira-events at lists.jboss.org Wed Mar 14 04:51:48 2012 Content-Type: multipart/mixed; boundary="===============4535558621216436046==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12041) BeanValidator: no way to use BeanValidation with a custom config Date: Wed, 14 Mar 2012 04:51:48 -0400 Message-ID: <1809953065.8110.1331715108624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4535558621216436046== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Markus Staab created RF-12041: --------------------------------- Summary: BeanValidator: no way to use BeanValidation with a cu= stom config Key: RF-12041 URL: https://issues.jboss.org/browse/RF-12041 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 3.3.3.Final Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2 Reporter: Markus Staab The BeanValidator class bootstraps a whole new BeanValidation context in it= s constructor: {code} = BeanValidator() { // Enforce class to load ValidatorFactory.class.getName(); // Check Factory, to avoid instantiation errors // https://jira.jboss.org/jira/browse/RF-7226 validatorFactory =3D Validation .buildDefaultValidatorFactory(); validatorContext =3D validatorFactory.usingContext(); MessageInterpolator jsfMessageInterpolator =3D new JsfMessageInterpolator( validatorFactory.getMessageInterpolator()); validatorContext.messageInterpolator(jsfMessageInterpolator); } {/code} = because of this, there is no way to use the programmatic configuration feat= ure of BeanValidation. I tried to pre-configure a custom MessageInterpolator with {code} = Configuration config =3D Validation.byDefaultProvider().configure(= ); config.messageInterpolator( new MyInterpolator() ); {/code} = but this configuration change is not taken into account by the BeanValidato= r of Richfaces. ATM the only way to achive this sort of customization is to use a META-INF/= validation.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4535558621216436046==-- From jira-events at lists.jboss.org Wed Mar 14 04:51:50 2012 Content-Type: multipart/mixed; boundary="===============7407755778828102950==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12041) BeanValidator: no way to use BeanValidation with a custom config Date: Wed, 14 Mar 2012 04:51:50 -0400 Message-ID: <1012420263.8119.1331715110234.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1809953065.8110.1331715108624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7407755778828102950== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12041?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Markus Staab updated RF-12041: ------------------------------ Description: = The BeanValidator class bootstraps a whole new BeanValidation context in it= s constructor: {code} = BeanValidator() { // Enforce class to load ValidatorFactory.class.getName(); // Check Factory, to avoid instantiation errors // https://jira.jboss.org/jira/browse/RF-7226 validatorFactory =3D Validation .buildDefaultValidatorFactory(); validatorContext =3D validatorFactory.usingContext(); MessageInterpolator jsfMessageInterpolator =3D new JsfMessageInterpolator( validatorFactory.getMessageInterpolator()); validatorContext.messageInterpolator(jsfMessageInterpolator); } {code} = because of this, there is no way to use the programmatic configuration feat= ure of BeanValidation. I tried to pre-configure a custom MessageInterpolator with {code} = Configuration config =3D Validation.byDefaultProvider().configure(= ); config.messageInterpolator( new MyInterpolator() ); {code} = but this configuration change is not taken into account by the BeanValidato= r of Richfaces. ATM the only way to achive this sort of customization is to use a META-INF/= validation.xml was: The BeanValidator class bootstraps a whole new BeanValidation context in it= s constructor: {code} = BeanValidator() { // Enforce class to load ValidatorFactory.class.getName(); // Check Factory, to avoid instantiation errors // https://jira.jboss.org/jira/browse/RF-7226 validatorFactory =3D Validation .buildDefaultValidatorFactory(); validatorContext =3D validatorFactory.usingContext(); MessageInterpolator jsfMessageInterpolator =3D new JsfMessageInterpolator( validatorFactory.getMessageInterpolator()); validatorContext.messageInterpolator(jsfMessageInterpolator); } {/code} = because of this, there is no way to use the programmatic configuration feat= ure of BeanValidation. I tried to pre-configure a custom MessageInterpolator with {code} = Configuration config =3D Validation.byDefaultProvider().configure(= ); config.messageInterpolator( new MyInterpolator() ); {/code} = but this configuration change is not taken into account by the BeanValidato= r of Richfaces. ATM the only way to achive this sort of customization is to use a META-INF/= validation.xml = > BeanValidator: no way to use BeanValidation with a custom config > ---------------------------------------------------------------- > > Key: RF-12041 > URL: https://issues.jboss.org/browse/RF-12041 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2 > Reporter: Markus Staab > > The BeanValidator class bootstraps a whole new BeanValidation context in = its constructor: > {code} = > BeanValidator() { > // Enforce class to load > ValidatorFactory.class.getName(); > // Check Factory, to avoid instantiation errors > // https://jira.jboss.org/jira/browse/RF-7226 > validatorFactory =3D Validation > .buildDefaultValidatorFactory(); > validatorContext =3D validatorFactory.usingContext(); > MessageInterpolator jsfMessageInterpolator =3D new JsfMessageInterpolat= or( > validatorFactory.getMessageInterpolator()); > validatorContext.messageInterpolator(jsfMessageInterpolator); > } > {code} = > because of this, there is no way to use the programmatic configuration fe= ature of BeanValidation. > I tried to pre-configure a custom MessageInterpolator with > {code} = > Configuration config =3D Validation.byDefaultProvider().configur= e(); > config.messageInterpolator( new MyInterpolator() ); > {code} = > but this configuration change is not taken into account by the BeanValida= tor of Richfaces. > ATM the only way to achive this sort of customization is to use a META-IN= F/validation.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7407755778828102950==-- From jira-events at lists.jboss.org Wed Mar 14 04:55:48 2012 Content-Type: multipart/mixed; boundary="===============0456655902595690187==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12041) BeanValidator: no way to use BeanValidation with a custom config Date: Wed, 14 Mar 2012 04:55:48 -0400 Message-ID: <1320502019.8130.1331715348162.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1809953065.8110.1331715108624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0456655902595690187== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12041?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676629#com= ment-12676629 ] = Markus Staab commented on RF-12041: ----------------------------------- same problem when bootstrapping the pre-configuration like this. {code} ValidatorFactory validatorFactory =3D Validation.buildDefaultValidato= rFactory(); ValidatorContext validatorContext =3D validatorFactory.usingContext(); validatorContext.messageInterpolator( new DpdResourceBundle() ); {code} = > BeanValidator: no way to use BeanValidation with a custom config > ---------------------------------------------------------------- > > Key: RF-12041 > URL: https://issues.jboss.org/browse/RF-12041 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2 > Reporter: Markus Staab > > The BeanValidator class bootstraps a whole new BeanValidation context in = its constructor: > {code} = > BeanValidator() { > // Enforce class to load > ValidatorFactory.class.getName(); > // Check Factory, to avoid instantiation errors > // https://jira.jboss.org/jira/browse/RF-7226 > validatorFactory =3D Validation > .buildDefaultValidatorFactory(); > validatorContext =3D validatorFactory.usingContext(); > MessageInterpolator jsfMessageInterpolator =3D new JsfMessageInterpolat= or( > validatorFactory.getMessageInterpolator()); > validatorContext.messageInterpolator(jsfMessageInterpolator); > } > {code} = > because of this, there is no way to use the programmatic configuration fe= ature of BeanValidation. > I tried to pre-configure a custom MessageInterpolator with > {code} = > Configuration config =3D Validation.byDefaultProvider().configur= e(); > config.messageInterpolator( new MyInterpolator() ); > {code} = > but this configuration change is not taken into account by the BeanValida= tor of Richfaces. > ATM the only way to achive this sort of customization is to use a META-IN= F/validation.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0456655902595690187==-- From jira-events at lists.jboss.org Wed Mar 14 04:55:48 2012 Content-Type: multipart/mixed; boundary="===============7885992024075138135==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12041) BeanValidator: no way to use BeanValidation with a custom config Date: Wed, 14 Mar 2012 04:55:48 -0400 Message-ID: <1575021941.8132.1331715348457.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1809953065.8110.1331715108624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7885992024075138135== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12041?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676629#com= ment-12676629 ] = Markus Staab edited comment on RF-12041 at 3/14/12 4:55 AM: ------------------------------------------------------------ same problem when bootstrapping the pre-configuration like this. {code} ValidatorFactory validatorFactory =3D Validation.buildDefaultValidato= rFactory(); ValidatorContext validatorContext =3D validatorFactory.usingContext(); validatorContext.messageInterpolator( new MyInterpolator() ); {code} = was (Author: maggus): same problem when bootstrapping the pre-configuration like this. {code} ValidatorFactory validatorFactory =3D Validation.buildDefaultValidato= rFactory(); ValidatorContext validatorContext =3D validatorFactory.usingContext(); validatorContext.messageInterpolator( new DpdResourceBundle() ); {code} = > BeanValidator: no way to use BeanValidation with a custom config > ---------------------------------------------------------------- > > Key: RF-12041 > URL: https://issues.jboss.org/browse/RF-12041 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2 > Reporter: Markus Staab > > The BeanValidator class bootstraps a whole new BeanValidation context in = its constructor: > {code} = > BeanValidator() { > // Enforce class to load > ValidatorFactory.class.getName(); > // Check Factory, to avoid instantiation errors > // https://jira.jboss.org/jira/browse/RF-7226 > validatorFactory =3D Validation > .buildDefaultValidatorFactory(); > validatorContext =3D validatorFactory.usingContext(); > MessageInterpolator jsfMessageInterpolator =3D new JsfMessageInterpolat= or( > validatorFactory.getMessageInterpolator()); > validatorContext.messageInterpolator(jsfMessageInterpolator); > } > {code} = > because of this, there is no way to use the programmatic configuration fe= ature of BeanValidation. > I tried to pre-configure a custom MessageInterpolator with > {code} = > Configuration config =3D Validation.byDefaultProvider().configur= e(); > config.messageInterpolator( new MyInterpolator() ); > {code} = > but this configuration change is not taken into account by the BeanValida= tor of Richfaces. > ATM the only way to achive this sort of customization is to use a META-IN= F/validation.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7885992024075138135==-- From jira-events at lists.jboss.org Wed Mar 14 04:55:50 2012 Content-Type: multipart/mixed; boundary="===============2011733430854843352==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12018) Typo in BOM: jsf-api should be jsp-api Date: Wed, 14 Mar 2012 04:55:49 -0400 Message-ID: <2123580119.8136.1331715349212.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 269810633.51309.1330504476269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2011733430854843352== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12018?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-12018: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Typo in BOM: jsf-api should be jsp-api > -------------------------------------- > > Key: RF-12018 > URL: https://issues.jboss.org/browse/RF-12018 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.2.0.Final > Reporter: Marek Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > This typo is not causing any issue, it is just confusing. > usage of version: > https://github.com/richfaces/build/blob/4.2.0.20120215-Final/bom/pom.xml#= L245 > definition of version: > https://github.com/richfaces/build/blob/4.2.0.20120215-Final/bom/pom.xml#= L62 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2011733430854843352==-- From jira-events at lists.jboss.org Wed Mar 14 04:55:51 2012 Content-Type: multipart/mixed; boundary="===============7516154706005773805==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10941) a4j:command* components misses default behavior event Date: Wed, 14 Mar 2012 04:55:50 -0400 Message-ID: <1086322591.8139.1331715350929.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1049007299.42458.1303309173106.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7516154706005773805== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10941?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-10941: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > a4j:command* components misses default behavior event > ----------------------------------------------------- > > Key: RF-10941 > URL: https://issues.jboss.org/browse/RF-10941 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > Attachments: AbstractCommandButtonHierarchy.png > > > Excerpt from the thread: http://community.jboss.org/message/601191#601191\ > {quote} > ClientBehaviorHolder interface implementors supposed to provide default e= vent for behaviors. And some RF components misses it. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7516154706005773805==-- From jira-events at lists.jboss.org Wed Mar 14 04:57:48 2012 Content-Type: multipart/mixed; boundary="===============1248585330853985943==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Wed, 14 Mar 2012 04:57:48 -0400 Message-ID: <1388212226.8142.1331715468621.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1248585330853985943== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11833: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.2.1.CR1 > > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1248585330853985943==-- From jira-events at lists.jboss.org Wed Mar 14 04:57:49 2012 Content-Type: multipart/mixed; boundary="===============3753048619539671499==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Wed, 14 Mar 2012 04:57:48 -0400 Message-ID: <2067231743.8146.1331715468936.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3753048619539671499== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11990: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3753048619539671499==-- From jira-events at lists.jboss.org Wed Mar 14 04:57:49 2012 Content-Type: multipart/mixed; boundary="===============4268719284484730380==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12020) Reduce number of absolute opened files Date: Wed, 14 Mar 2012 04:57:49 -0400 Message-ID: <1553236950.8155.1331715469820.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 756676139.61444.1330674096251.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4268719284484730380== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12020?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-12020: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Reduce number of absolute opened files > -------------------------------------- > > Key: RF-12020 > URL: https://issues.jboss.org/browse/RF-12020 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.2.0.Final > Environment: linux > Reporter: Marek Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1, 4.Future > > Attachments: cdk-generator.patch > > > While RF Components is compiled, it normally over goes under limit for ma= ximum open files. > I did some change which helped a little, but there will be probably bigge= r effect if the logic is re-factored to not open all files at the same time= in generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClas= sGenerator.java of render method. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4268719284484730380==-- From jira-events at lists.jboss.org Wed Mar 14 04:57:49 2012 Content-Type: multipart/mixed; boundary="===============7425031284427593997==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11755) ScrollableDataTableRowKeyConverter expects Integer as RowKey Type Date: Wed, 14 Mar 2012 04:57:49 -0400 Message-ID: <261804092.8152.1331715469628.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2144406349.53746.1322648440937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7425031284427593997== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11755?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676630#com= ment-12676630 ] = Markus Staab commented on RF-11755: ----------------------------------- Any change to get this fixed, when I provide a PullRequest? = > ScrollableDataTableRowKeyConverter expects Integer as RowKey Type > ----------------------------------------------------------------- > > Key: RF-11755 > URL: https://issues.jboss.org/browse/RF-11755 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, JSF 1.2_15, Richfaces 3.3.3, Portlet = 2.0 > Reporter: Markus Staab > Fix For: 3.Future > > > The ScrollableDataTableRowKeyConverter which is used by the scrollableDat= aTable expects the rowKey to be an Integer. > Since we use the primary of our database as a rowKey and this is of type = Long, we got in trouble with this component. > The converter would be more compatible with this situation if it would ch= eck against Long instead of Integer. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7425031284427593997==-- From jira-events at lists.jboss.org Wed Mar 14 04:59:52 2012 Content-Type: multipart/mixed; boundary="===============1474930386336641135==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11978) Graph Validator - does not mark context to fail validation Date: Wed, 14 Mar 2012 04:59:52 -0400 Message-ID: <1405150887.8173.1331715592361.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1183055506.1477.1329142441059.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1474930386336641135== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11978?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11978: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Graph Validator - does not mark context to fail validation > ---------------------------------------------------------- > > Key: RF-11978 > URL: https://issues.jboss.org/browse/RF-11978 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > GraphValidator is using BeanValidator to check that instance does not fai= led [1], > and it calls [{{facesContext.renderResponse()}}|http://docs.oracle.com/ja= vaee/6/api/javax/faces/context/FacesContext.html#renderResponse()] when bea= nValidation returns some message. > However it does not call [{{facesContext.validationFailed()}}|http://docs= .oracle.com/javaee/6/api/javax/faces/context/FacesContext.html#isValidation= Failed()]. > [1] https://github.com/richfaces/components/blob/develop/validator/ui/src= /main/java/org/richfaces/component/AbstractGraphValidator.java#L213 > ---- > This causes problem when another component reads the [{{FacesContext.isVa= lidationFailed()}}|http://docs.oracle.com/javaee/6/api/javax/faces/context/= FacesContext.html#isValidationFailed()] flag in order to distinguish is it = should proceed or not, like in following snippet. > ---- > Following snippet is part of the wizard using togglePanel and toggleContr= ol in order to switch panels. > When user hits Continue button, togglePanel is switched regardless the gr= aphValidator validation failed or not - when validation for another compone= nt like {{h:inputText}} fails, toggleControl does not switch. > {code:XML} > ... > > > > = > > = > > > > > > > > > = > = > > > > > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1474930386336641135==-- From jira-events at lists.jboss.org Wed Mar 14 04:59:52 2012 Content-Type: multipart/mixed; boundary="===============6660804736431021926==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11755) ScrollableDataTableRowKeyConverter expects Integer as RowKey Type Date: Wed, 14 Mar 2012 04:59:52 -0400 Message-ID: <1581899583.8176.1331715592483.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2144406349.53746.1322648440937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6660804736431021926== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11755?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676630#com= ment-12676630 ] = Markus Staab edited comment on RF-11755 at 3/14/12 4:59 AM: ------------------------------------------------------------ Any chance to get this fixed, when I provide a PullRequest? = was (Author: maggus): Any change to get this fixed, when I provide a PullRequest? = > ScrollableDataTableRowKeyConverter expects Integer as RowKey Type > ----------------------------------------------------------------- > > Key: RF-11755 > URL: https://issues.jboss.org/browse/RF-11755 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, JSF 1.2_15, Richfaces 3.3.3, Portlet = 2.0 > Reporter: Markus Staab > Fix For: 3.Future > > > The ScrollableDataTableRowKeyConverter which is used by the scrollableDat= aTable expects the rowKey to be an Integer. > Since we use the primary of our database as a rowKey and this is of type = Long, we got in trouble with this component. > The converter would be more compatible with this situation if it would ch= eck against Long instead of Integer. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6660804736431021926==-- From jira-events at lists.jboss.org Wed Mar 14 04:59:52 2012 Content-Type: multipart/mixed; boundary="===============4013249266116062895==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11905) showcase - shutdown of the JBoss AS with showcase deployed throws DB error Date: Wed, 14 Mar 2012 04:59:51 -0400 Message-ID: <339275076.8171.1331715591908.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4013249266116062895== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11905?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11905: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > showcase - shutdown of the JBoss AS with showcase deployed throws DB error > -------------------------------------------------------------------------- > > Key: RF-11905 > URL: https://issues.jboss.org/browse/RF-11905 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 7.1.0.CR1b, 7.0.2.Final > app: showcase 4.2.0-SNAPSHOT > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > When shutting down JBoss AS 7 with showcase deployed, then the DB error i= s thrown: > {code} > 16:09:52,334 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] HHH000231: S= chema export unsuccessful: org.h2.jdbc.JdbcSQLException: Database is alread= y closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EX= IT=3DFALSE" to the db URL) [90121-161] > at org.h2.message.DbException.getJdbcSQLException(DbException.java:329) > at org.h2.message.DbException.get(DbException.java:169) > at org.h2.message.DbException.get(DbException.java:146) > at org.h2.message.DbException.get(DbException.java:135) > at org.h2.jdbc.JdbcConnection.checkClosed(JdbcConnection.java:1394) > at org.h2.jdbc.JdbcConnection.checkClosed(JdbcConnection.java:1369) > at org.h2.jdbc.JdbcConnection.createStatement(JdbcConnection.java:191) > at org.jboss.jca.adapters.jdbc.WrappedConnection.createStatement(Wrapped= Connection.java:301) > at org.hibernate.tool.hbm2ddl.DatabaseExporter.(DatabaseExporter.j= ava:54) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.execute(SchemaExport.java:368= ) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:319) [= hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:315) [= hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.internal.SessionFactoryImpl.close(SessionFactoryImpl.ja= va:1305) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.ejb.EntityManagerFactoryImpl.close(EntityManagerFactory= Impl.java:126) [hibernate-entitymanager-4.0.0.Final.jar:4.0.0.Final] > at org.richfaces.demo.arrangeablemodel.PersistenceService.destroy(Persis= tenceService.java:159) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.jboss.as.ee.component.ManagedReferenceLifecycleMethodInterceptorF= actory$ManagedReferenceLifecycleMethodInterceptor.processInvocation(Managed= ReferenceLifecycleMethodInterceptorFactory.java:130) [jboss-as-ee-7.1.0.CR1= b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterc= eptor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.ManagedReferenceReleaseInterceptorFactory$M= anagedReferenceReleaseInterceptor.processInvocation(ManagedReferenceRelease= InterceptorFactory.java:90) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterc= eptor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInter= ceptor.java:45) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInte= rceptor.java:61) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.BasicComponentInstance.destroy(BasicCompone= ntInstance.java:122) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.as.web.deployment.component.WebComponentInstantiator$2.rele= ase(WebComponentInstantiator.java:102) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.C= R1b] > at org.jboss.as.web.deployment.WebInjectionContainer.destroyInstance(Web= InjectionContainer.java:67) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.as.web.deployment.jsf.JsfInjectionProvider.invokePreDestroy= (JsfInjectionProvider.java:56) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at com.sun.faces.mgbean.BeanBuilder.destroy(BeanBuilder.java:116) [jsf-i= mpl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at com.sun.faces.mgbean.BeanManager.destroy(BeanManager.java:283) [jsf-i= mpl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at com.sun.faces.application.WebappLifecycleListener.handleAttributeEven= t(WebappLifecycleListener.java:314) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SN= APSHOT] > at com.sun.faces.application.WebappLifecycleListener.contextDestroyed(We= bappLifecycleListener.java:368) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSH= OT] > at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureList= ener.java:308) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at org.apache.catalina.core.StandardContext.listenerStop(StandardContext= .java:3489) [jbossweb-7.0.7.Final.jar:] > at org.apache.catalina.core.StandardContext.stop(StandardContext.java:39= 99) [jbossweb-7.0.7.Final.jar:] > at org.jboss.as.web.deployment.WebDeploymentService.stop(WebDeploymentSe= rvice.java:96) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.msc.service.ServiceControllerImpl$StopTask.stopService(Serv= iceControllerImpl.java:1909) > at org.jboss.msc.service.ServiceControllerImpl$StopTask.run(ServiceContr= ollerImpl.java:1872) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) [:1.6.0_22] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) [:1.6.0_22] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4013249266116062895==-- From jira-events at lists.jboss.org Wed Mar 14 07:50:47 2012 Content-Type: multipart/mixed; boundary="===============3592106612502351337==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12040) Multi-form document - command button (submit) does not work after rendering Date: Wed, 14 Mar 2012 07:50:47 -0400 Message-ID: <694737638.8552.1331725847298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 375257168.7025.1331658768095.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3592106612502351337== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12040?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12040: ---------------------------- Steps to Reproduce: = 1) Setup the application, read the readme.txt file 2) Once the index page is displayed, the tab "Items Management" is selected= by default 3) Click one the first static tab "Tab S-#1" 4) From the menu, select the menu "items management" 5) Then click on button "New List" 6) A list of item should be displayed But at the step 5, you have to click twice the button or to do F5 that refr= esh the whole page, it is like restarting the appl. from the beginning. was: 1) Setup the application, read the readme.txt file 2) Once the index page is displayed, the menu "Items Management" is selecte= d by default 3) Click one the first static tab "Tab S-#1" 4) From the menu, select the menu "items management" 5) Then click on button "New List" 6) A list of item should be displayed = > Multi-form document - command button (submit) does not work after renderi= ng > -------------------------------------------------------------------------= -- > > Key: RF-12040 > URL: https://issues.jboss.org/browse/RF-12040 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 = - Windows 7 - FireFox 10 - RichFaces 4.2 Final > Reporter: Jean ANDRE > Attachments: NestedWebWithMenu.zip > > > We have one page that contains two forms. The first form contain a menus = bar (ajax switchType) while the second contains a tabPanel (also in ajax sw= itchType). When a user select a menu, we select the corresponding tab that = contains a submit button. Once the tab is selected, the submit button does = not work. We have to click twice for submitting. > 1) If we move the menu bar inside the second forms, it is working. = > 2) If we set the menu bar in client switchType, selecting the menu doesn'= t do anything. > 3) If we set the menu bar in server switchType it's working. > As the rendering is well executed, the submit button should works but is = not whatever we set as render=3D"@all, or any valid id". > We have prepared a small application that demonstrates the case. This is = a simple but realistic application. Edit the index.xhtml to play with the m= enu. Let us know if we doing something wrong. > Note also that the JIRA JAVASERVERFACES-2016 was reopened :[JIRA] Reopene= d: (JAVASERVERFACES-2016) Resources not loaded when using a dynamic ui:inlc= lude and rendered via ajax > [ http://java.net/jira/browse/JAVASERVERFACES-2016?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:all-tabpanel ] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3592106612502351337==-- From jira-events at lists.jboss.org Wed Mar 14 08:49:48 2012 Content-Type: multipart/mixed; boundary="===============8234167082194466926==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: push sample doesn't work Date: Wed, 14 Mar 2012 08:49:48 -0400 Message-ID: <593082722.8913.1331729388171.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8234167082194466926== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676700#com= ment-12676700 ] = RH Bugzilla Integration commented on RF-11983: ---------------------------------------------- Karel Piwko made a comment on [bug 802444|https://bug= zilla.redhat.com/show_bug.cgi?id=3D802444] Technical note updated. If any revisions are required, please edit the = "Technical Notes" field accordingly. All revisions will be proofread by the Engineering Content= Services team. = Diffed Contents: @@ -1,12 +1,14 @@ -Both the default installation of JBoss Enterprise Application Platform and= JMS Push, which is required by RichFaces Showcase example, are secured by = default. To deploy the application, choose one of the following options: +Both the default installation of JBoss Enterprise Application Platform and= JMS Push, which is required by RichFaces Showcase example, are secured by = default. To deploy the application, you have add an user to a secured Appli= cationRealm via following commands: = -1. Add a new user ApplicationRealm with the $JBOSS_HOME/bin/add-user.bat/s= h script, with the role: guest. -2. Modify web.xml in the RichFaces Showcase to contain created credentials: +1. Add a new user ApplicationRealm with the $JBOSS_HOME/bin/add-user.bat o= r add-user.sh script, with the role: guest. = + +2. Modify web.xml in the RichFaces Showcase. Replace ${username} and ${pas= sword} with actual credentials. + -- org.richfaces.push.jms.connectionUsername guest + org.richfaces.push.jms.connectionUsername ${username} org.richfaces.push.jms.connectionPassword - password + ${password} - + -3. Disable security for HornetQ completely. = > Showcase: push sample doesn't work > ---------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8234167082194466926==-- From jira-events at lists.jboss.org Wed Mar 14 08:52:47 2012 Content-Type: multipart/mixed; boundary="===============2220561491200687571==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: push sample doesn't work Date: Wed, 14 Mar 2012 08:52:47 -0400 Message-ID: <141347776.8918.1331729567349.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2220561491200687571== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676702#com= ment-12676702 ] = RH Bugzilla Integration commented on RF-11983: ---------------------------------------------- Karel Piwko made a private comment on [bug 802444|htt= ps://bugzilla.redhat.com/show_bug.cgi?id=3D802444] = > Showcase: push sample doesn't work > ---------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2220561491200687571==-- From jira-events at lists.jboss.org Wed Mar 14 08:54:48 2012 Content-Type: multipart/mixed; boundary="===============1434866892350103798==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: push sample doesn't work Date: Wed, 14 Mar 2012 08:54:48 -0400 Message-ID: <1893793447.8924.1331729688098.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1434866892350103798== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676703#com= ment-12676703 ] = RH Bugzilla Integration commented on RF-11983: ---------------------------------------------- Karel Piwko made a private comment on [bug 802444|htt= ps://bugzilla.redhat.com/show_bug.cgi?id=3D802444] = > Showcase: push sample doesn't work > ---------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1434866892350103798==-- From jira-events at lists.jboss.org Wed Mar 14 09:28:47 2012 Content-Type: multipart/mixed; boundary="===============0443400842629063372==" MIME-Version: 1.0 From: Karel Piwko (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: push sample doesn't work Date: Wed, 14 Mar 2012 09:28:47 -0400 Message-ID: <300589682.9039.1331731727580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0443400842629063372== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676716#com= ment-12676716 ] = Karel Piwko commented on RF-11983: ---------------------------------- Lukas, can you change default password to be different than username? AS7 d= oes not allow you have password the same as username. = > Showcase: push sample doesn't work > ---------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0443400842629063372==-- From jira-events at lists.jboss.org Wed Mar 14 11:07:47 2012 Content-Type: multipart/mixed; boundary="===============2335171636690781318==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12042) Metamer: rich:contextMenu doesn't disappear after clicking out of the menu Date: Wed, 14 Mar 2012 11:07:47 -0400 Message-ID: <1422678186.9420.1331737667612.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2335171636690781318== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jan Papousek created RF-12042: --------------------------------- Summary: Metamer: rich:contextMenu doesn't disappear after cli= cking out of the menu Key: RF-12042 URL: https://issues.jboss.org/browse/RF-12042 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu Affects Versions: 4.2.0.Final Environment: =E2=80=A2RichFaces 4.2.1-SNAPSHOT =E2=80=A2Metamer 4.2.1-SNAPSHOT =E2=80=A2Mojarra 2.1.5-SNAPSHOT =E2=80=A2JBoss AS 7.1.0.Final =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux =E2=80=A2Internet Explorer 9.0 @ Win32 Reporter: Jan Papousek -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2335171636690781318==-- From jira-events at lists.jboss.org Wed Mar 14 11:11:47 2012 Content-Type: multipart/mixed; boundary="===============6367932401471412970==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12043) Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility mode Date: Wed, 14 Mar 2012 11:11:47 -0400 Message-ID: <714594071.9445.1331737907625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6367932401471412970== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jan Papousek created RF-12043: --------------------------------- Summary: Metamer: rich:contextMenu isn't rendered correctly in= IE 9 compatibility mode Key: RF-12043 URL: https://issues.jboss.org/browse/RF-12043 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT = Metamer 4.2.1-SNAPSHOT = Mojarra 2.1.5-SNAPSHOT = JBoss AS 7.1.0.Final = Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux = Internet Explorer 7.0 @ Win32 (this is IE 9 Compatibility Mode) Reporter: Jan Papousek -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6367932401471412970==-- From jira-events at lists.jboss.org Wed Mar 14 11:13:47 2012 Content-Type: multipart/mixed; boundary="===============8573483952108523100==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12043) Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility mode Date: Wed, 14 Mar 2012 11:13:47 -0400 Message-ID: <1846914414.9450.1331738027508.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 714594071.9445.1331737907625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8573483952108523100== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12043?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-12043: ------------------------------ Attachment: metamer-ie-9-rich_contextMenu.png = > Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility = mode > -------------------------------------------------------------------------= ---- > > Key: RF-12043 > URL: https://issues.jboss.org/browse/RF-12043 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT = > Metamer 4.2.1-SNAPSHOT = > Mojarra 2.1.5-SNAPSHOT = > JBoss AS 7.1.0.Final = > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux = > Internet Explorer 7.0 @ Win32 (this is IE 9 Compatibility Mode) > Reporter: Jan Papousek > Labels: IE9 > Attachments: metamer-ie-9-rich_contextMenu.png > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8573483952108523100==-- From jira-events at lists.jboss.org Wed Mar 14 11:13:48 2012 Content-Type: multipart/mixed; boundary="===============0293927959522605841==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12043) Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility mode Date: Wed, 14 Mar 2012 11:13:48 -0400 Message-ID: <1506163575.9458.1331738028208.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 714594071.9445.1331737907625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0293927959522605841== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12043?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-12043: ------------------------------ Labels: IE9 (was: ) = > Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility = mode > -------------------------------------------------------------------------= ---- > > Key: RF-12043 > URL: https://issues.jboss.org/browse/RF-12043 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT = > Metamer 4.2.1-SNAPSHOT = > Mojarra 2.1.5-SNAPSHOT = > JBoss AS 7.1.0.Final = > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux = > Internet Explorer 7.0 @ Win32 (this is IE 9 Compatibility Mode) > Reporter: Jan Papousek > Labels: IE9 > Attachments: metamer-ie-9-rich_contextMenu.png > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0293927959522605841==-- From jira-events at lists.jboss.org Wed Mar 14 11:37:47 2012 Content-Type: multipart/mixed; boundary="===============9146629150720114314==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 14 Mar 2012 11:37:47 -0400 Message-ID: <283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============9146629150720114314== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jan Papousek created RF-12044: --------------------------------- Summary: Metamer: @preventDefault attribute of rich:hotKey com= ponent doesn't work in IE 9 and Google Chrome Key: RF-12044 URL: https://issues.jboss.org/browse/RF-12044 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc Affects Versions: 4.1.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux Chrome 17.0.963.78 @ Linux i686 =E2=80=A2RichFaces 4.2.1-SNAPSHOT =E2=80=A2Metamer 4.2.1-SNAPSHOT =E2=80=A2Mojarra 2.1.5-SNAPSHOT =E2=80=A2JBoss AS 7.1.0.Final =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux =E2=80=A2Internet Explorer 9.0 @ Win32 Reporter: Jan Papousek It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9146629150720114314==-- From jira-events at lists.jboss.org Wed Mar 14 11:41:47 2012 Content-Type: multipart/mixed; boundary="===============3352340580436526136==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12042) Metamer: rich:contextMenu doesn't disappear after clicking out of the menu in IE9 and Google Chrome Date: Wed, 14 Mar 2012 11:41:47 -0400 Message-ID: <631444617.9566.1331739707745.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1422678186.9420.1331737667612.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3352340580436526136== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12042?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-12042: ------------------------------ Summary: Metamer: rich:contextMenu doesn't disappear after clicking out= of the menu in IE9 and Google Chrome (was: Metamer: rich:contextMenu does= n't disappear after clicking out of the menu) Labels: Chrome IE9 (was: IE9) = > Metamer: rich:contextMenu doesn't disappear after clicking out of the men= u in IE9 and Google Chrome > -------------------------------------------------------------------------= -------------------------- > > Key: RF-12042 > URL: https://issues.jboss.org/browse/RF-12042 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Labels: Chrome, IE9 > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3352340580436526136==-- From jira-events at lists.jboss.org Wed Mar 14 11:41:47 2012 Content-Type: multipart/mixed; boundary="===============8484095954762682367==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12042) Metamer: rich:contextMenu doesn't disappear after clicking out of the menu in IE9 and Google Chrome Date: Wed, 14 Mar 2012 11:41:47 -0400 Message-ID: <1569903893.9568.1331739707817.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1422678186.9420.1331737667612.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8484095954762682367== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12042?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-12042: ------------------------------ Environment: = =E2=80=A2RichFaces 4.2.1-SNAPSHOT =E2=80=A2Metamer 4.2.1-SNAPSHOT =E2=80=A2Mojarra 2.1.5-SNAPSHOT =E2=80=A2JBoss AS 7.1.0.Final =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux =E2=80=A2Internet Explorer 9.0 @ Win32 RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux Chrome 17.0.963.78 @ Linux i686 = was: =E2=80=A2RichFaces 4.2.1-SNAPSHOT =E2=80=A2Metamer 4.2.1-SNAPSHOT =E2=80=A2Mojarra 2.1.5-SNAPSHOT =E2=80=A2JBoss AS 7.1.0.Final =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux =E2=80=A2Internet Explorer 9.0 @ Win32 = > Metamer: rich:contextMenu doesn't disappear after clicking out of the men= u in IE9 and Google Chrome > -------------------------------------------------------------------------= -------------------------- > > Key: RF-12042 > URL: https://issues.jboss.org/browse/RF-12042 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 = > Reporter: Jan Papousek > Labels: Chrome, IE9 > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8484095954762682367==-- From jira-events at lists.jboss.org Wed Mar 14 11:43:49 2012 Content-Type: multipart/mixed; boundary="===============5154523379384461101==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10383) Showcase: add samples for listeners Date: Wed, 14 Mar 2012 11:43:48 -0400 Message-ID: <2071819358.9574.1331739828918.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1782521794.5980.1296495639551.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5154523379384461101== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-10383: ---------------------------------- Assignee: Brian Leathem (was: Ilya Shaikovsky) = > Showcase: add samples for listeners > ----------------------------------- > > Key: RF-10383 > URL: https://issues.jboss.org/browse/RF-10383 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: examples, showcase > Affects Versions: 4.0.0.Milestone5 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Fix For: 4.Future > > > Add samples for following tags so that community knows they exist and how= to use them: > * rich:itemChangeListener > * rich:panelToggleListener > * rich:treeSelectionChangeListener > * rich:treeToggleListener -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5154523379384461101==-- From jira-events at lists.jboss.org Wed Mar 14 11:45:48 2012 Content-Type: multipart/mixed; boundary="===============5354953258191967931==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-7932) photoalbum: tree with albums collapses after drag&drop Date: Wed, 14 Mar 2012 11:45:47 -0400 Message-ID: <1046369587.9578.1331739947970.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2103165271.1254293089386.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============5354953258191967931== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7932?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak resolved RF-7932. ------------------------------- Resolution: Won't Fix Left for community to resolve. = > photoalbum: tree with albums collapses after drag&drop > ------------------------------------------------------ > > Key: RF-7932 > URL: https://issues.jboss.org/browse/RF-7932 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 3.3.2.GA > Environment: JBoss AS 5.1, IE 7, FF 3.5 > Reporter: Pavol Pitonak > Priority: Minor > Fix For: 3.Future > > > When the user expands all albums and then d&d a picture from one album to= another one, picture is moved and the tree is collapsed -- usability probl= em. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5354953258191967931==-- From jira-events at lists.jboss.org Wed Mar 14 11:45:50 2012 Content-Type: multipart/mixed; boundary="===============5079178433388787359==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8347) Demo: Tree with D&D -- not rendered correctly Date: Wed, 14 Mar 2012 11:45:50 -0400 Message-ID: <906597916.9583.1331739950362.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 850614813.1265211081831.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============5079178433388787359== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8347?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak resolved RF-8347. ------------------------------- Resolution: Won't Fix Left for community to resolve. = > Demo: Tree with D&D -- not rendered correctly > --------------------------------------------- > > Key: RF-8347 > URL: https://issues.jboss.org/browse/RF-8347 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 3.3.3.CR1 > Environment: Linux, FF 3.5, Chrome 5, JSF 2 > Reporter: Pavol Pitonak > Fix For: 3.Future > > Attachments: tree-dnd.png, tree-laguna.png, tree-ruby.png > > > 1. open richfaces-demo > 2. navigate to the page with tree using D&D (3rd tab) > result: tree is rendered wrong, see attached screenshot > 3. D&D one picture to the trash (in Chrome) > result: tree disappears -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5079178433388787359==-- From jira-events at lists.jboss.org Wed Mar 14 11:47:47 2012 Content-Type: multipart/mixed; boundary="===============2170063113965870951==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 14 Mar 2012 11:47:47 -0400 Message-ID: <1337752252.9586.1331740067435.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2170063113965870951== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-12044: ------------------------------ Affects Version/s: 4.2.0.Final (was: 4.1.0.Final) = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Labels: Chrome, IE9 > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2170063113965870951==-- From jira-events at lists.jboss.org Wed Mar 14 11:49:47 2012 Content-Type: multipart/mixed; boundary="===============6797090544499502889==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12045) Metamer: focusing of rich:inplaceInput behaves in Google Chrome differently than in other browsers Date: Wed, 14 Mar 2012 11:49:47 -0400 Message-ID: <645136326.9592.1331740187653.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6797090544499502889== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jan Papousek created RF-12045: --------------------------------- Summary: Metamer: focusing of rich:inplaceInput behaves in Goo= gle Chrome differently than in other browsers Key: RF-12045 URL: https://issues.jboss.org/browse/RF-12045 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux Chrome 17.0.963.78 @ Linux i686 = Reporter: Jan Papousek Priority: Optional After clicking on rich:inplaceInput in Firefox, the cursor is placed in the= beginning of the input and nothing is selected. Doing the same in Google C= hrome - the text in the input is selected. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6797090544499502889==-- From jira-events at lists.jboss.org Wed Mar 14 11:49:48 2012 Content-Type: multipart/mixed; boundary="===============4337499466559534073==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12045) Metamer: focusing of rich:inplaceInput behaves in Google Chrome differently than in other browsers Date: Wed, 14 Mar 2012 11:49:48 -0400 Message-ID: <1522831974.9606.1331740188840.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 645136326.9592.1331740187653.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4337499466559534073== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12045?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-12045: ------------------------------ Description: = After clicking on rich:inplaceInput in Firefox, the cursor is placed in the= beginning of the input and nothing is selected. Doing the same in Google C= hrome - the text in the input is selected. EDIT: It happens only after the first click on the input. was:After clicking on rich:inplaceInput in Firefox, the cursor is placed = in the beginning of the input and nothing is selected. Doing the same in Go= ogle Chrome - the text in the input is selected. = > Metamer: focusing of rich:inplaceInput behaves in Google Chrome different= ly than in other browsers > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12045 > URL: https://issues.jboss.org/browse/RF-12045 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 = > Reporter: Jan Papousek > Priority: Optional > Labels: Chrome > > After clicking on rich:inplaceInput in Firefox, the cursor is placed in t= he beginning of the input and nothing is selected. Doing the same in Google= Chrome - the text in the input is selected. > EDIT: It happens only after the first click on the input. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4337499466559534073==-- From jira-events at lists.jboss.org Wed Mar 14 12:59:49 2012 Content-Type: multipart/mixed; boundary="===============3961804065552377788==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11763) javascript error : item is undefined on nested tabPanel with switchType='ajax' Date: Wed, 14 Mar 2012 12:59:49 -0400 Message-ID: <824988840.9824.1331744389009.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 984864127.56421.1322674601141.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3961804065552377788== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11763?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-11763: ---------------------------- Attachment: RF-11763_ScreenShot_Undefined.png Hello RichFaces Team, Actually we're looking for the bug by producing the smaller application we = can. Here is a screen shot of what we have found but we still do not unders= tand why there is an undefined element in the object. = We have also produce a workbench with the same functionalities, program str= ucture and complexity and this workbench does not have this kind of error. = So, the bug is particular to the application. See you soon. = > javascript error : item is undefined on nested tabPanel with switchType= =3D'ajax' > -------------------------------------------------------------------------= ----- > > Key: RF-11763 > URL: https://issues.jboss.org/browse/RF-11763 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Environment: Websphere 8 - RAD 8 - JSF Mojorra 2.1.4 - Spring 3.0= .6 Final - Use @Inject @Named @SessionScoped as annotations - Firefox 7.0.1= - Windows 7 (6.1 sp1) - AspectJ 1.6.12 / AJDT = > Reporter: Jean ANDRE > Priority: Blocker > Fix For: 4.Future > > Attachments: RF-11763_ScreenShot.png, RF-11763_ScreenShot_Undefin= ed.png, screenshot-1.jpg > > > See also RF-11750 for the context. > Briefly, we have nested tabPanel - The firs tabPanel is made of static an= d dynamic tabPanel. One tabPanel contains the search form. When the user pe= rforms a search and for each search we open a new tab that contains the res= ult list. When the user click on an item, we update the tab with the detail= ed information. > The detailed information is made of 6 tabs - There are like a subtabs fro= m the parent tabs. When we set the switchType to 'client' the tab performs = well. But as we want that the same tab serves as form to edit and view the = detailed information, we want to refresh the tab to display the inputText i= nstead of the outputText. This is the edit mode. > Then, we need to refresh the tab and we decided to pass in ajax switchTyp= e for theses subTab. Owener, switching to the 'ajax' triggers a javascript = error that blocks the UI. None tab is selectable, user cannot switch from a= tab to another tab. Moreover we failed to refresh the tab but the reason i= s still unknown. > Javascript error is : > {code} > item is undefined - [Stopper sur une erreur] if (!item.disabled && item.g= etName() =3D=3D=3D itemName) { = > toggle...chfaces (ligne 363) > http://localhost:12000/crm/javax.faces.resource/togglePanel.js.jsf?ln=3Do= rg.richfaces > {code} > The involved code is (where >>>> is): > {code} > /** > * @private > * */ > __getItemIndex : function (itemName) { > var item; > for (var i =3D 0; i < this.items.length; i++) { > item =3D this.items[i]; > >>>>>> if (!item.disabled && item.getName() =3D=3D=3D itemName) { > return i; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3961804065552377788==-- From jira-events at lists.jboss.org Wed Mar 14 13:38:48 2012 Content-Type: multipart/mixed; boundary="===============0702182824664820417==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11965) showcase - a4j:push - error thrown after creating topic for pushCdi Date: Wed, 14 Mar 2012 13:38:48 -0400 Message-ID: <1584126285.9963.1331746728338.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1869426390.30466.1328703648739.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0702182824664820417== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11965?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska reopened RF-11965: ------------------------------ I can reproduce this issue again. The behavior is that during first deployment on JBoss AS 7.1.0.Final this e= xception is thrown, next deployments go fine, it is occurring again when us= ing freshly unzipped AS distribution. = > showcase - a4j:push - error thrown after creating topic for pushCdi > ------------------------------------------------------------------- > > Key: RF-11965 > URL: https://issues.jboss.org/browse/RF-11965 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.2.0.Final > Environment: container: JBoss AS 7.1.0.CR1b > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: waiting_on_user > > When deploying showcase 4.2.0.CR1 then after pushCdi topic created an err= or is thrown: > {code} > 18:13:42,211 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) initializing > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) AS7MessagingProviderManagement initialized > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushJms > 18:13:42,761 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushTopicsContext > 18:13:42,802 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushCdi > 18:13:42,972 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.$ > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.c= reateTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.CR1.ja= r:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(= TopicsContext.java:48) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsCon= text.java:69) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessa= ge(TopicsContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessagePro= ducerRunnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: topic/pushTopicsContext -- service= jboss.naming.context.java.topic.pushTopicsContext > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.CR1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.CR1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= ValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.j= ar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar= :] > at com.google.common.collect.ComputingConcurrentHashMap.getOrComp= ute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.pushTopicsContext > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:92) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:87) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.lookupTopic(JMSTopicsContextImpl.java:94) [richfaces-core-impl-4.2.= 0-20120130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:125) [richfaces-core-impl-4.2.0-201= 20130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0-20120130.140419-2= 6.jar:] > ... 12 more > {code} > The functionality of push demos is fine, just the tests are not passing o= n Hudson, which I have to investigate whether it is caused by this one. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0702182824664820417==-- From jira-events at lists.jboss.org Wed Mar 14 13:38:51 2012 Content-Type: multipart/mixed; boundary="===============8875037341317584559==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11965) showcase - a4j:push - error thrown after creating topic for pushCdi Date: Wed, 14 Mar 2012 13:38:51 -0400 Message-ID: <1329106632.9989.1331746731191.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1869426390.30466.1328703648739.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8875037341317584559== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11965?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11965: ----------------------------- Affects Version/s: 4.2.0.Final (was: 4.2.0.CR1) = > showcase - a4j:push - error thrown after creating topic for pushCdi > ------------------------------------------------------------------- > > Key: RF-11965 > URL: https://issues.jboss.org/browse/RF-11965 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.2.0.Final > Environment: container: JBoss AS 7.1.0.CR1b > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: waiting_on_user > > When deploying showcase 4.2.0.CR1 then after pushCdi topic created an err= or is thrown: > {code} > 18:13:42,211 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) initializing > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) AS7MessagingProviderManagement initialized > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushJms > 18:13:42,761 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushTopicsContext > 18:13:42,802 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushCdi > 18:13:42,972 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.$ > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.c= reateTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.CR1.ja= r:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(= TopicsContext.java:48) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsCon= text.java:69) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessa= ge(TopicsContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessagePro= ducerRunnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: topic/pushTopicsContext -- service= jboss.naming.context.java.topic.pushTopicsContext > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.CR1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.CR1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= ValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.j= ar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar= :] > at com.google.common.collect.ComputingConcurrentHashMap.getOrComp= ute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.pushTopicsContext > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:92) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:87) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.lookupTopic(JMSTopicsContextImpl.java:94) [richfaces-core-impl-4.2.= 0-20120130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:125) [richfaces-core-impl-4.2.0-201= 20130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0-20120130.140419-2= 6.jar:] > ... 12 more > {code} > The functionality of push demos is fine, just the tests are not passing o= n Hudson, which I have to investigate whether it is caused by this one. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8875037341317584559==-- From jira-events at lists.jboss.org Wed Mar 14 13:40:48 2012 Content-Type: multipart/mixed; boundary="===============4581761566944344668==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11965) showcase - a4j:push - error thrown after creating topic for pushCdi Date: Wed, 14 Mar 2012 13:40:47 -0400 Message-ID: <1498065529.9995.1331746848001.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1869426390.30466.1328703648739.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4581761566944344668== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11965?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676852#com= ment-12676852 ] = Juraj Huska commented on RF-11965: ---------------------------------- It is the same for showcase built from WFK 2.0 sources against enterprise r= epositories and running on EAP6. = > showcase - a4j:push - error thrown after creating topic for pushCdi > ------------------------------------------------------------------- > > Key: RF-11965 > URL: https://issues.jboss.org/browse/RF-11965 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.2.0.Final > Environment: container: JBoss AS 7.1.0.CR1b > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: waiting_on_user > > When deploying showcase 4.2.0.CR1 then after pushCdi topic created an err= or is thrown: > {code} > 18:13:42,211 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) initializing > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) AS7MessagingProviderManagement initialized > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushJms > 18:13:42,761 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushTopicsContext > 18:13:42,802 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushCdi > 18:13:42,972 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.$ > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.c= reateTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.CR1.ja= r:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(= TopicsContext.java:48) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsCon= text.java:69) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessa= ge(TopicsContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessagePro= ducerRunnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: topic/pushTopicsContext -- service= jboss.naming.context.java.topic.pushTopicsContext > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.CR1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.CR1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= ValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.j= ar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar= :] > at com.google.common.collect.ComputingConcurrentHashMap.getOrComp= ute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.pushTopicsContext > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:92) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:87) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.lookupTopic(JMSTopicsContextImpl.java:94) [richfaces-core-impl-4.2.= 0-20120130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:125) [richfaces-core-impl-4.2.0-201= 20130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0-20120130.140419-2= 6.jar:] > ... 12 more > {code} > The functionality of push demos is fine, just the tests are not passing o= n Hudson, which I have to investigate whether it is caused by this one. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4581761566944344668==-- From jira-events at lists.jboss.org Wed Mar 14 14:25:47 2012 Content-Type: multipart/mixed; boundary="===============5611138272193572751==" MIME-Version: 1.0 From: user user (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11842) Support for macrosubstitutions in the contextMenu Date: Wed, 14 Mar 2012 14:25:47 -0400 Message-ID: <730848724.10070.1331749547772.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 846735312.26265.1324444329320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5611138272193572751== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11842?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676865#com= ment-12676865 ] = user user commented on RF-11842: -------------------------------- This is very important feature, e.g. to have dynamic contextMenu for a tabl= e, and it is critical for RF 3-4 migration. Is is possible to make this fix available in sandbox component and/or next = RF version? = > Support for macrosubstitutions in the contextMenu > ------------------------------------------------- > > Key: RF-11842 > URL: https://issues.jboss.org/browse/RF-11842 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.CR1 > Reporter: Brian Leathem > Fix For: 4.3-Tracking > > > The RichFaces 3 contextMenu supported _macrosubstitutions_, whereby a sin= gle instance of the contextMenu will be created and among multiple componen= ts. This RichFaces 4 contextMenu should support this feature. > See the [RichFaces 3 showcase|http://livedemo.exadel.com/richfaces-demo/r= ichfaces/contextMenu.jsf] for an example of this behaviour. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5611138272193572751==-- From jira-events at lists.jboss.org Wed Mar 14 15:10:47 2012 Content-Type: multipart/mixed; boundary="===============6270072152654505298==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12029) AbstractTogglePanel should extend UIRepeat, instead of UIOutput Date: Wed, 14 Mar 2012 15:10:47 -0400 Message-ID: <47637563.10164.1331752247407.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1430073926.75557.1331161056577.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6270072152654505298== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12676875#com= ment-12676875 ] = Brian Leathem commented on RF-12029: ------------------------------------ Consider the dynamicly rendered tabs in the facelet: {code} Validation failed:#{facesContext.validationFailed}

Dynamic tab panel

#{person.name}
{code} Switching tabs in ajax modes takes two clicks - the tab does not change unt= il the 2nd click. The response on the first click: {code:title=3D"Response after the first click on tab 1 (formatted for clari= ty)} Validation faile= d:false
]]> {code} the response on the second click: {code:title=3D"Response after the second click on tab 1 (formatted for clar= ity)} Validation faile= d:false
]]>
Ayn Rand
User Name:
Entered name:
{code} Notice the pair of nested forms. If I remove the first nested form (the em= pty one) the problem goes away. Similarly if I switch the order of the nes= ted components. = > Mobile Showcase and a4j:region demo: submit button doesn't respond on the= first click > -------------------------------------------------------------------------= ------------ > > Key: RF-11872 > URL: https://issues.jboss.org/browse/RF-11872 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.2.0.CR1 > Environment: richfaces-showcase-4.1.1-20120106.230242-18 / richfa= ces-showcase-4.2.0-20120123.231757-13 > JBoss AS 7.0.2.Final / 7.1.0.Beta1 > Firefox 8.0 / Google Chrome 16.0.912.63 / Android 2.2 / iPhone 4.2.1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: richfaces-showcase-4.2.0-20120123.231757-13-jbas7.war > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4496300166153852961==-- From jira-events at lists.jboss.org Tue Mar 20 18:40:48 2012 Content-Type: multipart/mixed; boundary="===============6986252930262317380==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11872) Mobile Showcase and a4j:region demo: submit button doesn't respond on the first click Date: Tue, 20 Mar 2012 18:40:48 -0400 Message-ID: <963441850.21729.1332283248095.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6986252930262317380== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11872?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11872. -------------------------------- Resolution: Done Collapsed the pair fo forms in the included a4j:region sample = > Mobile Showcase and a4j:region demo: submit button doesn't respond on the= first click > -------------------------------------------------------------------------= ------------ > > Key: RF-11872 > URL: https://issues.jboss.org/browse/RF-11872 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.2.0.CR1 > Environment: richfaces-showcase-4.1.1-20120106.230242-18 / richfa= ces-showcase-4.2.0-20120123.231757-13 > JBoss AS 7.0.2.Final / 7.1.0.Beta1 > Firefox 8.0 / Google Chrome 16.0.912.63 / Android 2.2 / iPhone 4.2.1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: richfaces-showcase-4.2.0-20120123.231757-13-jbas7.war > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6986252930262317380==-- From jira-events at lists.jboss.org Wed Mar 21 05:58:48 2012 Content-Type: multipart/mixed; boundary="===============3362916098150507813==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11872) Mobile Showcase and a4j:region demo: submit button doesn't respond on the first click Date: Wed, 21 Mar 2012 05:58:47 -0400 Message-ID: <806792061.22293.1332323927994.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3362916098150507813== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11872?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek closed RF-11872. ----------------------------- Verified on Android 2.2 = > Mobile Showcase and a4j:region demo: submit button doesn't respond on the= first click > -------------------------------------------------------------------------= ------------ > > Key: RF-11872 > URL: https://issues.jboss.org/browse/RF-11872 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.2.0.CR1 > Environment: richfaces-showcase-4.1.1-20120106.230242-18 / richfa= ces-showcase-4.2.0-20120123.231757-13 > JBoss AS 7.0.2.Final / 7.1.0.Beta1 > Firefox 8.0 / Google Chrome 16.0.912.63 / Android 2.2 / iPhone 4.2.1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: richfaces-showcase-4.2.0-20120123.231757-13-jbas7.war > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3362916098150507813==-- From jira-events at lists.jboss.org Wed Mar 21 07:59:47 2012 Content-Type: multipart/mixed; boundary="===============3993176004426631204==" MIME-Version: 1.0 From: =?utf-8?q?Abdullah_=C4=B0lhanl=C4=B1_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12071) a4j:outputPanel h:inputText render problem Date: Wed, 21 Mar 2012 07:59:47 -0400 Message-ID: <1254741604.22548.1332331187494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3993176004426631204== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Abdullah =C4=B0lhanl=C4=B1 created RF-12071: ------------------------------------- Summary: a4j:outputPanel h:inputText render problem Key: RF-12071 URL: https://issues.jboss.org/browse/RF-12071 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Abdullah =C4=B0lhanl=C4=B1 Create dynamic screen with JSF is so hard and painfull. I used a4j:outputPanel so many times. Today i am trying to create dynamic screen based on combo selected value. W= hen value is for example option1 it generate inputText, otherwise comboBox. But i face to rendered problem son many times. Problem is on submited obje= ct value. My problem code like these: Problem detail: Captionvalue is unique in database. When exception is throwed from back end(JPA uniquness error). I pops up err= or to user. Then user edit captionValue and try to resubmit. But captionVal= ue is not change, even user changed it. When i remove rendered=3D"#{condit= ionKeyBean.checkable}" problem is solved. rendered is not working correctly= i think. How can i solve this problem? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3993176004426631204==-- From jira-events at lists.jboss.org Wed Mar 21 09:14:48 2012 Content-Type: multipart/mixed; boundary="===============5659081219983978440==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Wed, 21 Mar 2012 09:14:48 -0400 Message-ID: <1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5659081219983978440== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Stian Thorgersen created RF-12072: ------------------------------------- Summary: Lost event in push Key: RF-12072 URL: https://issues.jboss.org/browse/RF-12072 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Stian Thorgersen Event can be lost if produced while a response is being prepared. I've atta= ched an example where a push event is used to refresh a count whenever an e= vent is fired. It's using Thread.sleep to simulate an event being produced = while the response is being prepared. Note, if the sleep just before return= ing the count is removed it all works fine, and the page is refreshed every= 5 seconds, but without it the event is lost. View: {code} {code} Bean: {code} package com.example; import java.io.Serializable; import java.util.concurrent.atomic.AtomicInteger; import javax.enterprise.context.SessionScoped; import javax.inject.Named; import org.richfaces.application.push.TopicKey; import org.richfaces.application.push.TopicsContext; @Named @SessionScoped public class MyBean implements Serializable { private AtomicInteger count =3D new AtomicInteger(); public int getCount() { int c =3D count.get(); new Thread() { public void run() { try { Thread.sleep(5000); count.incrementAndGet(); TopicKey topicKey =3D new TopicKey("chat"); TopicsContext topicsContext =3D TopicsContext.lookup(); topicsContext.publish(topicKey, ""); } catch (Exception e) { e.printStackTrace(); } }; }.start(); = try { Thread.sleep(10000); } catch (InterruptedException e) { } return c; } } {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5659081219983978440==-- From jira-events at lists.jboss.org Wed Mar 21 09:25:48 2012 Content-Type: multipart/mixed; boundary="===============3815210372175689009==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Wed, 21 Mar 2012 09:25:47 -0400 Message-ID: <1357742114.22725.1332336348015.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3815210372175689009== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678322#com= ment-12678322 ] = Stian Thorgersen commented on RF-12013: --------------------------------------- I'm happy to do that, trying out the instructions on https://community.jbos= s.org/wiki/HowToBuildRichFaces4x at the moment. I'll let you know how I get= on, although the problem only happens infrequently so would be hard to gua= rantee its actually fixed = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3.0.Milestone1 > > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3815210372175689009==-- From jira-events at lists.jboss.org Wed Mar 21 11:50:47 2012 Content-Type: multipart/mixed; boundary="===============1224339619211849041==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12073) Kitchensink archetype - creating enterprise project requires also community richfaces version Date: Wed, 21 Mar 2012 11:50:47 -0400 Message-ID: <2091208867.23183.1332345047625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1224339619211849041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12073: -------------------------------- Summary: Kitchensink archetype - creating enterprise project r= equires also community richfaces version Key: RF-12073 URL: https://issues.jboss.org/browse/RF-12073 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: archetype Affects Versions: 4.2.0.Final Reporter: Juraj Huska Priority: Optional When generating enterprise richfaces maven project from kitchensink archety= pe, it is also prompting for community richfaces version. And then the comm= unity version is not used in the generated pom.xml The log from this: {noformat} [INFO] Using property: groupId =3D bla.bla [INFO] Using property: artifactId =3D foo_bla Define value for property 'version': 1.0-SNAPSHOT: : = [INFO] Using property: package =3D bla.bla [INFO] Using property: enterprise =3D n [INFO] Using property: richfaces-enterprise-version =3D 4.2.0.Final-redhat-1 [INFO] Using property: richfaces-version =3D 4.3.0-SNAPSHOT Confirm properties configuration: groupId: bla.bla artifactId: foo_bla version: 1.0-SNAPSHOT package: bla.bla enterprise: n richfaces-enterprise-version: 4.2.0.Final-redhat-1 richfaces-version: 4.3.0-SNAPSHOT Y: : N [INFO] Using property: groupId =3D bla.bla [INFO] Using property: artifactId =3D foo_bla Define value for property 'version': 1.0-SNAPSHOT: : = Define value for property 'package': bla.bla: : = Define value for property 'enterprise': n: : y Define value for property 'richfaces-enterprise-version': 4.2.0.Final-redh= at-1: : = Define value for property 'richfaces-version': 4.3.0-SNAPSHOT: : = Confirm properties configuration: groupId: bla.bla artifactId: foo_bla version: 1.0-SNAPSHOT package: bla.bla enterprise: y richfaces-enterprise-version: 4.2.0.Final-redhat-1 richfaces-version: 4.3.0-SNAPSHOT Y: : y [INFO] --------------------------------------------------------------------= ---- [INFO] BUILD SUCCESS [INFO] --------------------------------------------------------------------= ---- [INFO] Total time: 54.442s [INFO] Finished at: Wed Mar 21 16:38:02 CET 2012 [INFO] Final Memory: 9M/129M [INFO] --------------------------------------------------------------------= ---- jhuska(a)laptop:~/workspace_jbossTools33M5$ = {noformat} *Steps to reproduce:* 1. _mvn archetype:generate -DarchetypeGroupId=3Dorg.richfaces.archetypes -D= archetypeArtifactId=3Drichfaces-archetype-kitchensink -DarchetypeVersion=3D= 4.3.0-SNAPSHOT -DgroupId=3Dbla.bla -DartifactId=3Dfoo_bla_ 2. When prompting: ?Define value for property 'version': 1.0-SNAPSHOT:_, p= ress just enter. 3. When prompting for confirming predefined values: type N 4. When prompting for _Define value for property 'version': 1.0-SNAPSHOT: = :_ press just enter. 5. _Define value for property 'package': bla.bla: : _ just enter 6. _Define value for property 'enterprise': n: :_ type y 7. _Define value for property 'richfaces-enterprise-version': 4.2.0.Final-= redhat-1: :_ just enter 8. now you should be prompted for _Define value for property 'richfaces-ver= sion': 4.3.0-SNAPSHOT: :_, which you should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1224339619211849041==-- From jira-events at lists.jboss.org Wed Mar 21 11:50:47 2012 Content-Type: multipart/mixed; boundary="===============2868324933602751408==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Wed, 21 Mar 2012 11:50:47 -0400 Message-ID: <1689930872.23181.1332345047447.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2868324933602751408== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12013: ------------------------------- Fix Version/s: 4.2.1.CR1 (was: 4.3.0.Milestone1) Git Pull Request: https://github.com/richfaces/core/pull/8 (was: https= ://github.com/richfaces/core/pull/8) = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2868324933602751408==-- From jira-events at lists.jboss.org Wed Mar 21 11:55:47 2012 Content-Type: multipart/mixed; boundary="===============6001203427760558429==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Wed, 21 Mar 2012 11:55:47 -0400 Message-ID: <885372347.23198.1332345347442.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6001203427760558429== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12026?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678393#com= ment-12678393 ] = Brian Leathem commented on RF-12026: ------------------------------------ Ulf, can you provide some sample code to duplicate this behaviour? = > Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" > ------------------------------------------------------------------------ > > Key: RF-12026 > URL: https://issues.jboss.org/browse/RF-12026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Environment: FireFox 3.6.27 > Reporter: Ulf Almehed > Assignee: Brian Leathem > Priority: Minor > Labels: regression > Fix For: 4.2.1.CR1 > > > Ajax request fails with javascript error "invalid 'in' operand event", ri= chfaces-queue.js line 130. > This was introduced by the fix in RF-11943. Checking for existence of lay= erX fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6001203427760558429==-- From jira-events at lists.jboss.org Wed Mar 21 12:02:51 2012 Content-Type: multipart/mixed; boundary="===============5312545956991832532==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12074) Showcase mediaOutput refers to GAE limitations Date: Wed, 21 Mar 2012 12:02:51 -0400 Message-ID: <852769834.23256.1332345771654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5312545956991832532== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-12074: ---------------------------------- Summary: Showcase mediaOutput refers to GAE limitations Key: RF-12074 URL: https://issues.jboss.org/browse/RF-12074 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Reporter: Brian Leathem Fix For: 4.2.1.CR1 {quote} As the Google Application Engine restricts AWT class usage, this example re= ads the existing image and only performs re-indexing of the palette using c= olors you selected below. = {quote} The example, and the wording should be re-worked to not refer to the GAE li= mitation. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5312545956991832532==-- From jira-events at lists.jboss.org Wed Mar 21 12:02:52 2012 Content-Type: multipart/mixed; boundary="===============8463730821649495221==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Wed, 21 Mar 2012 12:02:51 -0400 Message-ID: <1012475580.23259.1332345771787.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8463730821649495221== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678395#com= ment-12678395 ] = Jean ANDRE commented on RF-12038: --------------------------------- We have found the reason of that. The reason is because the id of the a4j:jsFunction is the same as its name.= We made the change and the call to the javascript function is running well= . = See: http://forum.alsacreations.com/topic-5-862-1-Rsolu-Cet-objet-ne-gre-pa= s-cette-proprit-ou-cette-mthode.html. Then.... or remove the id as it is not mandatory. {code} {code} = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Attachments: index.xhtml, NestedWeb.zip > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8463730821649495221==-- From jira-events at lists.jboss.org Wed Mar 21 12:30:47 2012 Content-Type: multipart/mixed; boundary="===============0561271106858275259==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12075) Kitchensink archetype - link for JBoss AS 7 project site is broken Date: Wed, 21 Mar 2012 12:30:47 -0400 Message-ID: <1802298851.23317.1332347447560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0561271106858275259== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12075: -------------------------------- Summary: Kitchensink archetype - link for JBoss AS 7 project s= ite is broken Key: RF-12075 URL: https://issues.jboss.org/browse/RF-12075 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype Affects Versions: 4.2.0.Final Reporter: Juraj Huska Priority: Trivial The link for JBoss AS 7 project site, which is suited in the find out more = section is broken, and points to the: {noformat}http://localhost:8080/kitchen-sink-community/jboss.org/jbossas{no= format} It should point to _http://www.jboss.org/jbossas_ It is caused by missing http://www prefix. It is in the facelet page (about= .xhtml), particularly line 16: {code:xml}
  • JBoss AS 7 project site
  • {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0561271106858275259==-- From jira-events at lists.jboss.org Wed Mar 21 12:30:48 2012 Content-Type: multipart/mixed; boundary="===============7291634130931761014==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12075) Kitchensink archetype - link for JBoss AS 7 project site is broken Date: Wed, 21 Mar 2012 12:30:48 -0400 Message-ID: <1476909414.23331.1332347448085.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1802298851.23317.1332347447560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7291634130931761014== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12075?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12075: ----------------------------- Description: = The link for JBoss AS 7 project site, which is suited in the find out more = section is broken, and points to the: {noformat}http://localhost:8080/kitchen-sink-community/jboss.org/jbossas{no= format} It should point to http://www.jboss.org/jbossas It is caused by missing http://www prefix. It is in the facelet page (about= .xhtml), particularly line 16: {code:xml}
  • JBoss AS 7 project site
  • {code} was: The link for JBoss AS 7 project site, which is suited in the find out more = section is broken, and points to the: {noformat}http://localhost:8080/kitchen-sink-community/jboss.org/jbossas{no= format} It should point to _http://www.jboss.org/jbossas_ It is caused by missing http://www prefix. It is in the facelet page (about= .xhtml), particularly line 16: {code:xml}
  • JBoss AS 7 project site
  • {code} = > Kitchensink archetype - link for JBoss AS 7 project site is broken > ------------------------------------------------------------------ > > Key: RF-12075 > URL: https://issues.jboss.org/browse/RF-12075 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Priority: Trivial > > The link for JBoss AS 7 project site, which is suited in the find out mor= e section is broken, and points to the: > {noformat}http://localhost:8080/kitchen-sink-community/jboss.org/jbossas{= noformat} > It should point to http://www.jboss.org/jbossas > It is caused by missing http://www prefix. It is in the facelet page (abo= ut.xhtml), particularly line 16: > {code:xml} >
  • JBoss AS 7 project site
  • > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7291634130931761014==-- From jira-events at lists.jboss.org Wed Mar 21 12:40:47 2012 Content-Type: multipart/mixed; boundary="===============4793625307828441461==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Wed, 21 Mar 2012 12:40:47 -0400 Message-ID: <1543417886.23357.1332348047294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4793625307828441461== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12038: ------------------------------- Fix Version/s: 4.2.1.CR1 Component/s: component-a4j-core Thank you for the time you put into identifying the cause, and finding a so= lution. We'll be sure to include this in the 4.2.1 release. = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4793625307828441461==-- From jira-events at lists.jboss.org Wed Mar 21 12:42:47 2012 Content-Type: multipart/mixed; boundary="===============0716950867440789461==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Wed, 21 Mar 2012 12:42:47 -0400 Message-ID: <655212672.23360.1332348167346.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0716950867440789461== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678406#com= ment-12678406 ] = Stian Thorgersen commented on RF-12013: --------------------------------------- Tried to get the problem to happen, but no luck. So can't actually test the= fix properly. = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0716950867440789461==-- From jira-events at lists.jboss.org Wed Mar 21 12:45:47 2012 Content-Type: multipart/mixed; boundary="===============6854024441207083142==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12076) Kitchensink archetype - back button does not back to the correct page state Date: Wed, 21 Mar 2012 12:45:47 -0400 Message-ID: <364076515.23363.1332348347607.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6854024441207083142== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12076: -------------------------------- Summary: Kitchensink archetype - back button does not back to = the correct page state Key: RF-12076 URL: https://issues.jboss.org/browse/RF-12076 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype Affects Versions: 4.2.0.Final Reporter: Juraj Huska Priority: Minor When clicking on the url of the freshly created new member (like /rest/memb= ers/0) and backing back from the xml viewing, results in removed freshly ad= ded member. After refresh, or AJAX update (clicking on accordion panel), the table is w= ith all members again. This happens only for freshly added members. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6854024441207083142==-- From jira-events at lists.jboss.org Wed Mar 21 12:47:47 2012 Content-Type: multipart/mixed; boundary="===============2413816104861678458==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12076) Kitchensink archetype - back button does not back to the correct page state Date: Wed, 21 Mar 2012 12:47:47 -0400 Message-ID: <1709651090.23370.1332348467419.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 364076515.23363.1332348347607.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2413816104861678458== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12076?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12076: ----------------------------- Description: = When clicking on the url of the freshly created new member (like /rest/memb= ers/0) and backing back from the xml viewing, results in removed freshly ad= ded member. After refresh, or AJAX update (clicking on collapsiblePanel), the table is = with all members again. This happens only for freshly added members. was: When clicking on the url of the freshly created new member (like /rest/memb= ers/0) and backing back from the xml viewing, results in removed freshly ad= ded member. After refresh, or AJAX update (clicking on accordion panel), the table is w= ith all members again. This happens only for freshly added members. = > Kitchensink archetype - back button does not back to the correct page sta= te > -------------------------------------------------------------------------= -- > > Key: RF-12076 > URL: https://issues.jboss.org/browse/RF-12076 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Priority: Minor > > When clicking on the url of the freshly created new member (like /rest/me= mbers/0) and backing back from the xml viewing, results in removed freshly = added member. > After refresh, or AJAX update (clicking on collapsiblePanel), the table i= s with all members again. > This happens only for freshly added members. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2413816104861678458==-- From jira-events at lists.jboss.org Wed Mar 21 12:53:47 2012 Content-Type: multipart/mixed; boundary="===============3084337260476051622==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12076) Kitchensink archetype - back button does not back to the correct page state Date: Wed, 21 Mar 2012 12:53:47 -0400 Message-ID: <1802460574.23399.1332348827799.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 364076515.23363.1332348347607.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3084337260476051622== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12076?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12076: ----------------------------- Environment: AS: JBoss AS 7.1.1.Final, EAP 6.0.0.ER3 = > Kitchensink archetype - back button does not back to the correct page sta= te > -------------------------------------------------------------------------= -- > > Key: RF-12076 > URL: https://issues.jboss.org/browse/RF-12076 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: AS: JBoss AS 7.1.1.Final, EAP 6.0.0.ER3 > Reporter: Juraj Huska > Priority: Minor > > When clicking on the url of the freshly created new member (like /rest/me= mbers/0) and backing back from the xml viewing, results in removed freshly = added member. > After refresh, or AJAX update (clicking on collapsiblePanel), the table i= s with all members again. > This happens only for freshly added members. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3084337260476051622==-- From jira-events at lists.jboss.org Wed Mar 21 13:39:47 2012 Content-Type: multipart/mixed; boundary="===============0870408179476682187==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Wed, 21 Mar 2012 13:39:47 -0400 Message-ID: <1124831044.23450.1332351587338.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0870408179476682187== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678413#com= ment-12678413 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12013: --------------------------------- Thanks for trying, Stian, I'm pretty sure it's hard to reproduce it. Otherwise Push works as expected? = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0870408179476682187==-- From jira-events at lists.jboss.org Wed Mar 21 13:50:47 2012 Content-Type: multipart/mixed; boundary="===============4442872968857471916==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Wed, 21 Mar 2012 13:50:47 -0400 Message-ID: <882946208.23466.1332352247382.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4442872968857471916== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Stian Thorgersen updated RF-12072: ---------------------------------- Description: = Event can be lost if produced while a response is being prepared. I've atta= ched an example where a push event is used to refresh a count whenever an e= vent is fired. It's using Thread.sleep to simulate an event being produced = while the response is being prepared. Note, if the sleep just before return= ing the count is removed it all works fine, and the page is refreshed every= 5 seconds, but with the sleep in place it the event is lost. View: {code} {code} Bean: {code} package com.example; import java.io.Serializable; import java.util.concurrent.atomic.AtomicInteger; import javax.enterprise.context.SessionScoped; import javax.inject.Named; import org.richfaces.application.push.TopicKey; import org.richfaces.application.push.TopicsContext; @Named @SessionScoped public class MyBean implements Serializable { private AtomicInteger count =3D new AtomicInteger(); public int getCount() { int c =3D count.get(); new Thread() { public void run() { try { Thread.sleep(5000); count.incrementAndGet(); TopicKey topicKey =3D new TopicKey("chat"); TopicsContext topicsContext =3D TopicsContext.lookup(); topicsContext.publish(topicKey, ""); } catch (Exception e) { e.printStackTrace(); } }; }.start(); = try { Thread.sleep(10000); } catch (InterruptedException e) { } return c; } } {code} was: Event can be lost if produced while a response is being prepared. I've atta= ched an example where a push event is used to refresh a count whenever an e= vent is fired. It's using Thread.sleep to simulate an event being produced = while the response is being prepared. Note, if the sleep just before return= ing the count is removed it all works fine, and the page is refreshed every= 5 seconds, but without it the event is lost. View: {code} {code} Bean: {code} package com.example; import java.io.Serializable; import java.util.concurrent.atomic.AtomicInteger; import javax.enterprise.context.SessionScoped; import javax.inject.Named; import org.richfaces.application.push.TopicKey; import org.richfaces.application.push.TopicsContext; @Named @SessionScoped public class MyBean implements Serializable { private AtomicInteger count =3D new AtomicInteger(); public int getCount() { int c =3D count.get(); new Thread() { public void run() { try { Thread.sleep(5000); count.incrementAndGet(); TopicKey topicKey =3D new TopicKey("chat"); TopicsContext topicsContext =3D TopicsContext.lookup(); topicsContext.publish(topicKey, ""); } catch (Exception e) { e.printStackTrace(); } }; }.start(); = try { Thread.sleep(10000); } catch (InterruptedException e) { } return c; } } {code} = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Stian Thorgersen > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place it the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4442872968857471916==-- From jira-events at lists.jboss.org Wed Mar 21 13:50:47 2012 Content-Type: multipart/mixed; boundary="===============4180684613385797161==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Wed, 21 Mar 2012 13:50:47 -0400 Message-ID: <1532234996.23469.1332352247479.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4180684613385797161== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Stian Thorgersen updated RF-12072: ---------------------------------- Description: = Event can be lost if produced while a response is being prepared. I've atta= ched an example where a push event is used to refresh a count whenever an e= vent is fired. It's using Thread.sleep to simulate an event being produced = while the response is being prepared. Note, if the sleep just before return= ing the count is removed it all works fine, and the page is refreshed every= 5 seconds, but with the sleep in place the event is lost. View: {code} {code} Bean: {code} package com.example; import java.io.Serializable; import java.util.concurrent.atomic.AtomicInteger; import javax.enterprise.context.SessionScoped; import javax.inject.Named; import org.richfaces.application.push.TopicKey; import org.richfaces.application.push.TopicsContext; @Named @SessionScoped public class MyBean implements Serializable { private AtomicInteger count =3D new AtomicInteger(); public int getCount() { int c =3D count.get(); new Thread() { public void run() { try { Thread.sleep(5000); count.incrementAndGet(); TopicKey topicKey =3D new TopicKey("chat"); TopicsContext topicsContext =3D TopicsContext.lookup(); topicsContext.publish(topicKey, ""); } catch (Exception e) { e.printStackTrace(); } }; }.start(); = try { Thread.sleep(10000); } catch (InterruptedException e) { } return c; } } {code} was: Event can be lost if produced while a response is being prepared. I've atta= ched an example where a push event is used to refresh a count whenever an e= vent is fired. It's using Thread.sleep to simulate an event being produced = while the response is being prepared. Note, if the sleep just before return= ing the count is removed it all works fine, and the page is refreshed every= 5 seconds, but with the sleep in place it the event is lost. View: {code} {code} Bean: {code} package com.example; import java.io.Serializable; import java.util.concurrent.atomic.AtomicInteger; import javax.enterprise.context.SessionScoped; import javax.inject.Named; import org.richfaces.application.push.TopicKey; import org.richfaces.application.push.TopicsContext; @Named @SessionScoped public class MyBean implements Serializable { private AtomicInteger count =3D new AtomicInteger(); public int getCount() { int c =3D count.get(); new Thread() { public void run() { try { Thread.sleep(5000); count.incrementAndGet(); TopicKey topicKey =3D new TopicKey("chat"); TopicsContext topicsContext =3D TopicsContext.lookup(); topicsContext.publish(topicKey, ""); } catch (Exception e) { e.printStackTrace(); } }; }.start(); = try { Thread.sleep(10000); } catch (InterruptedException e) { } return c; } } {code} = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Stian Thorgersen > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4180684613385797161==-- From jira-events at lists.jboss.org Wed Mar 21 13:56:47 2012 Content-Type: multipart/mixed; boundary="===============4921453681323419302==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Wed, 21 Mar 2012 13:56:47 -0400 Message-ID: <1917591157.23485.1332352607479.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4921453681323419302== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678418#com= ment-12678418 ] = Jean ANDRE commented on RF-12038: --------------------------------- The case is also here with tab. IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4921453681323419302==-- From jira-events at lists.jboss.org Wed Mar 21 13:58:48 2012 Content-Type: multipart/mixed; boundary="===============6130762364303917202==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Wed, 21 Mar 2012 13:58:47 -0400 Message-ID: <378410548.23489.1332352727984.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6130762364303917202== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678418#com= ment-12678418 ] = Jean ANDRE edited comment on RF-12038 at 3/21/12 1:57 PM: ---------------------------------------------------------- The case is also here with tab. From our side we must have an id as the id is used by our automated testin= g tool. = was (Author: jorelia64): The case is also here with tab. IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6130762364303917202==-- From jira-events at lists.jboss.org Wed Mar 21 14:02:48 2012 Content-Type: multipart/mixed; boundary="===============6053656760755081382==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Wed, 21 Mar 2012 14:02:48 -0400 Message-ID: <472582444.23503.1332352968045.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6053656760755081382== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678421#com= ment-12678421 ] = Stian Thorgersen commented on RF-12013: --------------------------------------- Thanks for the fix, I've built it from GIT and will use that on my dev box. Other than this issue, the push component is mostly working, except for ano= ther issue I've recently discovered. I'm loosing events if they are fired b= etween the model is updated and the page is viewed. See https://issues.jbos= s.org/browse/RF-12072. I'm currently using TopicsContext to publish message= s, I tried to use CDI events to see if that made any difference but got an = exception with "Service Tracker has not been initialized". = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6053656760755081382==-- From jira-events at lists.jboss.org Wed Mar 21 14:40:47 2012 Content-Type: multipart/mixed; boundary="===============9166648787648879004==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12041) BeanValidator: no way to use BeanValidation with a custom config Date: Wed, 21 Mar 2012 14:40:47 -0400 Message-ID: <891914795.23571.1332355247854.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1809953065.8110.1331715108624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9166648787648879004== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12041?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12041: ------------------------------- Fix Version/s: 3.Future = > BeanValidator: no way to use BeanValidation with a custom config > ---------------------------------------------------------------- > > Key: RF-12041 > URL: https://issues.jboss.org/browse/RF-12041 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2 > Reporter: Markus Staab > Fix For: 3.Future > > > The BeanValidator class bootstraps a whole new BeanValidation context in = its constructor: > {code} = > BeanValidator() { > // Enforce class to load > ValidatorFactory.class.getName(); > // Check Factory, to avoid instantiation errors > // https://jira.jboss.org/jira/browse/RF-7226 > validatorFactory =3D Validation > .buildDefaultValidatorFactory(); > validatorContext =3D validatorFactory.usingContext(); > MessageInterpolator jsfMessageInterpolator =3D new JsfMessageInterpolat= or( > validatorFactory.getMessageInterpolator()); > validatorContext.messageInterpolator(jsfMessageInterpolator); > } > {code} = > because of this, there is no way to use the programmatic configuration fe= ature of BeanValidation. > I tried to pre-configure a custom MessageInterpolator with > {code} = > Configuration config =3D Validation.byDefaultProvider().configur= e(); > config.messageInterpolator( new MyInterpolator() ); > {code} = > but this configuration change is not taken into account by the BeanValida= tor of Richfaces. > ATM the only way to achive this sort of customization is to use a META-IN= F/validation.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9166648787648879004==-- From jira-events at lists.jboss.org Wed Mar 21 14:40:48 2012 Content-Type: multipart/mixed; boundary="===============1280589329369836499==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12065) Continuous event polling in available.js Date: Wed, 21 Mar 2012 14:40:47 -0400 Message-ID: <184415013.23573.1332355247985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 289191080.19891.1332243107446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1280589329369836499== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12065?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12065: ------------------------------- Fix Version/s: 3.Future = > Continuous event polling in available.js > ---------------------------------------- > > Key: RF-12065 > URL: https://issues.jboss.org/browse/RF-12065 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Reporter: Nicholas Oxh=C3=B8j > Priority: Minor > Fix For: 3.Future > > > In available.js there are two functions activatePolling() and stopPolling= (), used to wait for a specific DOM element becoming available. > But while activatePolling() starts observing the events "*mousemove*", "f= ocus", and "focusin", stopPolling() stops observing the events "*mouseover*= ", "focus", and "focusin" - which means that it will _keep_ calling onEvent= () on every "mousemove", even when the relevant element has already been fo= und... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1280589329369836499==-- From jira-events at lists.jboss.org Wed Mar 21 14:40:48 2012 Content-Type: multipart/mixed; boundary="===============4546404843463821438==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12067) Load order of external JavaScript files referenced in AJAX responses Date: Wed, 21 Mar 2012 14:40:48 -0400 Message-ID: <2004224583.23575.1332355248044.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1604731307.20138.1332248510243.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4546404843463821438== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12067?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12067: ------------------------------- Fix Version/s: 3.Future = > Load order of external JavaScript files referenced in AJAX responses > -------------------------------------------------------------------- > > Key: RF-12067 > URL: https://issues.jboss.org/browse/RF-12067 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Reporter: Nicholas Oxh=C3=B8j > Fix For: 3.Future > > > Hi, > I think there is a problem with the way that RichFaces loads external Jav= aScript files, referenced in AJAX responses. The way it is done at the mome= nt, the files are loaded *and parsed* asynchronously. This is a problem if = the files depend on being loaded in the correct order. > As an example, I have a page with an OpenFaces DataTable which is not ini= tially rendered, but can be later rendered using the "reRender" attribute o= f an AJAX action. The Openfaces DataTable requires two OpenFaces JavaScript= files, util.js & ajaxUtil.js, where the second depends on the first being = loaded first. These files are included in the section of the AJAX re= sponse, in the correct order. But since they are then loaded asynchronously= , things will break if ajaxUtil.js finishes loading first. > I think you need to ensure, that the files are parsed in the same order a= s they appear in the response. > The problem is mainly in the function _appendNewElements() in AJAX.js. > For HTML5 capable browsers, you should just be able to add set the "async= " property to "false" on the script element, before appending it to head as= described here: [HTML5 Async Scripts|http://ie.microsoft.com/testdrive/Per= formance/AsyncScripts/Default.html] > For non-HTML5 browsers, the only solution would probably be to modify the= functionality a bit, such that you would only generate and insert a new sc= ript tag, when the previous script finished loading. Since appendNewHeadEle= ments() already uses the scripts "onload" and "onreadystatechange" to find = out when _all_ scripts have loaded, I suspect that it should be a relativel= y minor change to initially just insert the _first_ script tag and then use= these functions to insert the _next_ script tag when the first has finishe= d loading. > For an in-depth discussion of the problems and different solution strateg= ies, see WHATWGs [Dynamic Script Execution Order|http://wiki.whatwg.org/wik= i/Dynamic_Script_Execution_Order] > Regards, > Nicholas Oxh=C3=B8j -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4546404843463821438==-- From jira-events at lists.jboss.org Wed Mar 21 14:40:48 2012 Content-Type: multipart/mixed; boundary="===============2386959016695744178==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12062) a4j:outputMedia does not reRender in Firefox 11 Date: Wed, 21 Mar 2012 14:40:48 -0400 Message-ID: <1104249216.23580.1332355248243.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1235192300.18015.1332176867445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2386959016695744178== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12062?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12062: ------------------------------- Fix Version/s: 3.Future = > a4j:outputMedia does not reRender in Firefox 11 = > ------------------------------------------------ > > Key: RF-12062 > URL: https://issues.jboss.org/browse/RF-12062 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 3.3.3.Final > Environment: JBoss AS 6 > Reporter: Toni Neubert > Labels: a4j, outputmedia, richfaces > Fix For: 3.Future > > Attachments: WebXml.patch > > > a4j:outputMedia does not reRender in Firefox 11. The following error appe= ars: > ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/B= PM-Process].[default]] Servlet.service() for servlet default threw exceptio= n: javax.faces.FacesException: Error decode resource data > at org.ajax4jsf.resource.ResourceBuilderImpl.decrypt(ResourceBuilderI= mpl.java:627) [:3.3.3.Final] > at org.ajax4jsf.resource.ResourceBuilderImpl.getResourceDataForKey(Re= sourceBuilderImpl.java:371) [:3.3.3.Final] > at org.ajax4jsf.resource.InternetResourceService.serviceResource(Inte= rnetResourceService.java:156) [:3.3.3.Final] > at org.ajax4jsf.resource.InternetResourceService.serviceResource(Inte= rnetResourceService.java:141) [:3.3.3.Final] > at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:508) [:3.3= .3.Final] > at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:56)= [:2.2.2.Final] > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFil= ter.java:69) [:2.2.2.Final] > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) [= :2.2.2.Final] > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFil= ter.java:69) [:2.2.2.Final] > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFil= ter.java:73) [:2.2.2.Final] > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) [:= 2.2.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(A= pplicationFilterChain.java:274) [:6.1.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Applicati= onFilterChain.java:242) [:6.1.0.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapp= erValve.java:275) [:6.1.0.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardConte= xtValve.java:161) [:6.1.0.Final] > at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Secu= rityAssociationValve.java:181) [:6.1.0.Final] > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authent= icatorBase.java:501) [:6.1.0.Final] > at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve= .event(CatalinaContext.java:285) [:1.1.0.Final] > at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve= .invoke(CatalinaContext.java:261) [:1.1.0.Final] > at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextV= alve.java:88) [:6.1.0.Final] > at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.in= voke(SecurityContextEstablishmentValve.java:100) [:6.1.0.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValv= e.java:159) [:6.1.0.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValv= e.java:102) [:6.1.0.Final] > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(Cach= edConnectionValve.java:158) [:6.1.0.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngine= Valve.java:109) [:6.1.0.Final] > at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheVal= ve.invoke(ActiveRequestResponseCacheValve.java:53) [:6.1.0.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.= java:362) [:6.1.0.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.j= ava:877) [:6.1.0.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.pr= ocess(Http11Protocol.java:654) [:6.1.0.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java= :951) [:6.1.0.Final] > at java.lang.Thread.run(Unknown Source) [:1.6.0_31] > Caused by: java.util.zip.DataFormatException: invalid bit length repeat > at java.util.zip.Inflater.inflateBytes(Native Method) [:1.6.0_31] > at java.util.zip.Inflater.inflate(Unknown Source) [:1.6.0_31] > at java.util.zip.Inflater.inflate(Unknown Source) [:1.6.0_31] > at org.ajax4jsf.resource.ResourceBuilderImpl.decrypt(ResourceBuilderI= mpl.java:621) [:3.3.3.Final] > ... 30 more > The picture is not visible. But if you refresh the site with f5, there is= no error and all works great. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2386959016695744178==-- From jira-events at lists.jboss.org Wed Mar 21 14:42:47 2012 Content-Type: multipart/mixed; boundary="===============5724079621848738298==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11801) ClientValidatorImpl ClassCastException in restoreState (StateHolderSaver not an Object[]) Date: Wed, 21 Mar 2012 14:42:47 -0400 Message-ID: <883582230.23585.1332355367832.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1599733089.80179.1323286480699.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5724079621848738298== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11801?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11801. -------------------------------- Labels: (was: waiting_on_user) Resolution: Incomplete Description = > ClientValidatorImpl ClassCastException in restoreState (StateHolderSaver = not an Object[]) > -------------------------------------------------------------------------= ---------------- > > Key: RF-11801 > URL: https://issues.jboss.org/browse/RF-11801 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.CR1 > Reporter: Giovanni Pelosi > Assignee: Jan Papousek > Attachments: abDataTemplate.xhtml, dataform.xhtml, input.xhtml > > > when i do an ajax submit on a form with inputs fields = (h:inputText) = > (defined in a composite component), i got this exception: > ClassCastException > in org.richfaces.component.behavior.ClientValidatorImpl.restoreState at l= ine 357 > {code} > @Override > public void restoreState(FacesContext context, Object state) { > if (context =3D=3D null) { > throw new NullPointerException(); > } > if (state !=3D null) { > =3D=3D> Object[] values =3D (Object[]) state; > super.restoreState(context, values[0]); > if (values.length !=3D 1) { > groups =3D (Class[]) values[1]; > // If we saved state last time, save state again next tim= e. > clearInitialState(); > } > } > } > {code} > because state is an instance of javax.faces.component.StateHolderSaver > RF 4.1CR1 > MOJARRA 2.1.3 > JBoss 7.0.2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5724079621848738298==-- From jira-events at lists.jboss.org Wed Mar 21 14:42:48 2012 Content-Type: multipart/mixed; boundary="===============7325724407750457623==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11991) NPE in ...push.impl.RequestImpl.onBroadcast() Date: Wed, 21 Mar 2012 14:42:48 -0400 Message-ID: <678409467.23599.1332355368510.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 332746981.25417.1329502476234.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7325724407750457623== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11991?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11991. -------------------------------- Resolution: Cannot Reproduce Bug = > NPE in ...push.impl.RequestImpl.onBroadcast() > --------------------------------------------- > > Key: RF-11991 > URL: https://issues.jboss.org/browse/RF-11991 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.CR1 > Environment: JBossAS 7.1.0 Web Profile > Reporter: Juergen Zimmermann > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: waiting_on_user > > I'm using JBossAS 7.1 (Web Profile) via standalone (not domain). When the= re is no push event I'm getting a NPE (see stacktrace below). > These JARs are in WEB-INF/lib: > atmosphere-compat-jbossweb-0.8.4.jar > atmosphere-compat-jetty-0.8.4.jar > atmosphere-compat-tomcat-0.8.4.jar > atmosphere-compat-tomcat7-0.8.4.jar > atmosphere-compat-weblogic-0.8.4.jar > atmosphere-runtime-0.8.4.jar > web.xml is configured as follows: > > org.atmosphere.useBlocking > true > > Stacktrace: > {code} > 18:50:47,754 Schwerwiegend [org.richfaces.log.Application] (http-localhos= t-127.0.0.1-8080-5) null: java.lang.NullPointerException > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:124) [richfaces-core-impl-4.2.0.CR1.jar:4.2.0.CR1] > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) [atmosphere-runtime-0.8.4.jar:0.8.4] > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) [atmosphere-runtime-0.8.4.jar:0.8.4] > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) [atmosphere-runtime-0.8.4.jar:0.8.4] > at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcess= or.java:379) [atmosphere-runtime-0.8.4.jar:0.8.4] > at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOCom= etSupport.java:148) [atmosphere-runtime-0.8.4.jar:0.8.4] > at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOCom= etSupport.java:92) [atmosphere-runtime-0.8.4.jar:0.8.4] > at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet= .java:1217) [atmosphere-runtime-0.8.4.jar:0.8.4] > at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:11= 76) [atmosphere-runtime-0.8.4.jar:0.8.4] > at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:116= 2) [atmosphere-runtime-0.8.4.jar:0.8.4] > at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [jboss-s= ervlet-api_3.0_spec-1.0.0.Final.jar:1.0.0.Final] > at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-s= ervlet-api_3.0_spec-1.0.0.Final.jar:1.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.solder.servlet.exception.CatchExceptionFilter.doFilter(Catc= hExceptionFilter.java:65) [solder-impl-3.1.0.Final.jar:3.1.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.solder.servlet.event.ServletEventBridgeFilter.doFilter(Serv= letEventBridgeFilter.java:74) [solder-impl-3.1.0.Final.jar:3.1.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at com.ocpsoft.pretty.PrettyFilter.doFilter(PrettyFilter.java:126) [pret= tyfaces-jsf2-3.3.2.jar:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authentica= torBase.java:397) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_03] > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7325724407750457623==-- From jira-events at lists.jboss.org Wed Mar 21 14:44:47 2012 Content-Type: multipart/mixed; boundary="===============7137885189469487560==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11995) autocomplete only displaying select popup on minChars + 1 Date: Wed, 21 Mar 2012 14:44:47 -0400 Message-ID: <737860080.23602.1332355487402.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1491446387.30098.1329818436170.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7137885189469487560== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11995?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11995: ------------------------------- Labels: (was: waiting_on_user) Assignee: Pavol Pitonak QE, please confirm = > autocomplete only displaying select popup on minChars + 1 > --------------------------------------------------------- > > Key: RF-11995 > URL: https://issues.jboss.org/browse/RF-11995 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Glassfish 3.1.1 / Mojarra 2.1.7 / Chrome browser > Reporter: Brendan Healey > Assignee: Pavol Pitonak > > I'm running the following test with org.richfaces.resourceOptimization.en= abled > set to true. > After typing the minChars number of characters (2), I see an ajax request= being > sent to the server and a response is successfully returned (observed usin= g chrome > developer tools), but the popup selection list does not appear until minC= hars + 1 > (3) characters are entered. > Typing the third character causes a get request for combo_list_shadow.png= to be > sent. > {code} > mode=3D"cachedAjax" > var=3D"var" > fetchValue=3D"#{var.name}" > minChars=3D"2" > autocompleteMethod=3D"#{bean.doSearch}"> > > > > > {code} > w > I've only just migrated to rich:autocomplete from a self-developed custom= component > so I don't know if this behavior existed in any richfaces version prior t= o 4.2.0.CR1. > I tried this on the showcase example here: > http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dautoc= omplete&skin=3DblueSky > (in the first autocomplete on the page) and could not reproduce the behav= ior. > I tried using mode=3D"ajax" and mode=3D"client" and could not get the pop= up to show in > either case, although I'd only ever want to use cachedAjax mode normally. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7137885189469487560==-- From jira-events at lists.jboss.org Wed Mar 21 14:46:47 2012 Content-Type: multipart/mixed; boundary="===============6712894560024416582==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12012) rich:contextMenu re-render problem Date: Wed, 21 Mar 2012 14:46:47 -0400 Message-ID: <1734009017.23605.1332355607327.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 739413833.48708.1330440217630.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6712894560024416582== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12012?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12012. -------------------------------- Assignee: Brian Leathem Resolution: Duplicate Issue = > rich:contextMenu re-render problem > ---------------------------------- > > Key: RF-12012 > URL: https://issues.jboss.org/browse/RF-12012 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: Apache Tomcat/7.0.23 , Mojarra 2.1.5, RichFaces 4.2.= 0.Final > Reporter: Philip Maes > Assignee: Brian Leathem > Priority: Critical > Labels: waiting_on_user > > I have a extendedDataTable with a contextMenu attached to it. > When the selection changes on the extendedDataTable, a a4j:jsFunction is = called. This jsFunction renders the contextMenu. > {quote} > onselectionchange=3D"selChange('dtLivingCosts')" = > ... > > ... > action=3D"#{fhIndBean.selectionListener()}" > status=3D"none" render=3D"dtLivingCosts, contextMenu_dtLivingCosts"> > > > ... > attached=3D"true" mode=3D"ajax" > > ... > > {quote} > The problem is that as soon as I right-click, the contextMenu appears, th= e ajax request is sent and received, the view is partially updated (dtLivin= gCosts, contextMenu_dtLivingCosts) and then the contextMenu disappears and = won't appear anymore. > I noticed that the javascript code generated by RichFaces for the context= Menu is not rerendered as you can see on these two screenshots. The first o= ne shows the code when the page is generated for the first time. The second= one, when a right-click has been done on a row in the extendedDataTable: > http://img848.imageshack.us/img848/8876/cm1j.png > http://img19.imageshack.us/img19/5170/cm2c.png > A possible workaround is to refresh only menuItems of the contextMenu (ht= tps://issues.jboss.org/browse/RF-11973). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6712894560024416582==-- From jira-events at lists.jboss.org Wed Mar 21 14:50:48 2012 Content-Type: multipart/mixed; boundary="===============0835147012405478391==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11902) [rich:autocomplete] add attribute queueId Date: Wed, 21 Mar 2012 14:50:47 -0400 Message-ID: <278532798.23630.1332355847878.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1022848615.10266.1326969138391.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0835147012405478391== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11902?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11902: ------------------------------- Fix Version/s: 4.3-Tracking = > [rich:autocomplete] add attribute queueId > ----------------------------------------- > > Key: RF-11902 > URL: https://issues.jboss.org/browse/RF-11902 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Reporter: Rene O > Fix For: 4.3-Tracking > > > It would be nice if rich:autocomplete has an attribute queueId like a4j:a= jax component. With this you will have more control over the ajax requests = if ajax mode is enabled within autocomplete component. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0835147012405478391==-- From jira-events at lists.jboss.org Wed Mar 21 14:54:56 2012 Content-Type: multipart/mixed; boundary="===============9211001405518401435==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12016) Support for mechanism dynamically choosing skin from inside theme-template.xhtml Date: Wed, 21 Mar 2012 14:54:56 -0400 Message-ID: <270531002.23635.1332356096607.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 766495427.49785.1330451796452.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9211001405518401435== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12016?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12016: ------------------------------- Fix Version/s: 4-Tracking = > Support for mechanism dynamically choosing skin from inside theme-templat= e.xhtml > -------------------------------------------------------------------------= ------- > > Key: RF-12016 > URL: https://issues.jboss.org/browse/RF-12016 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-misc > Reporter: Dupont Dupont > Fix For: 4-Tracking > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9211001405518401435==-- From jira-events at lists.jboss.org Wed Mar 21 14:54:56 2012 Content-Type: multipart/mixed; boundary="===============5255238224930362987==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12011) Gradient configuration in ecss Date: Wed, 21 Mar 2012 14:54:56 -0400 Message-ID: <801126500.23633.1332356096329.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1705971640.48518.1330438838009.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5255238224930362987== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12011?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12011: ------------------------------- Fix Version/s: 4-Tracking = > Gradient configuration in ecss > ------------------------------ > > Key: RF-12011 > URL: https://issues.jboss.org/browse/RF-12011 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Dupont Dupont > Fix For: 4-Tracking > > > For the moment, gradients are : > # configured in resource-mappings.properties (i.e. https://github.com/ric= hfaces/components/blob/develop/input/ui/src/main/resources/META-INF/richfac= es/resource-mappings.properties) > {noformat} = > org.richfaces.images\:autocompleteButtonGradient.png=3Dorg.richfaces.rend= erkit.html.images.AutocompleteGradient\ > {topColorParam=3DheaderGradientColor ,bottomColorParam=3DheaderBackgr= oundColor} > {noformat} = > # and then used in ecss files (i.e. https://github.com/richfaces/componen= ts/blob/develop/input/ui/src/main/resources/META-INF/resources/org.richface= s/Autocomplete.ecss). > {noformat} = > background-image: "url(#{resource['org.richfaces.images:autocompleteButto= nGradient.png']})"; > {noformat} = > A simpler solution could be allowing gradient configuration directly in t= he ecss file, e.g. = > {noformat} = > background-image:"url(#{resource['org.richfaces.dynamic:org.richfaces.ren= derkit.html.images.AutocompleteGradient?topColorParam=3DheaderGradientColor= &bottomColorParam=3DheaderBackgroundColor']})"; > {noformat} = > org.richfaces.dynamic being a special library name telling Richfaces to i= nstantiate AutocompleteGradient and configure it on the fly. > This would enable to get rid of resource-mappings.properties for simple u= se cases. > N.B. : = > * a control must be implemented to control which classes can be dynamica= lly instantiated (i.e. only allow classes implementing Java2DUserResource). > * ecss configuration must allow us to configure the gradient (c.f. topCo= lorParam and bottomColorParam variables in our sample). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5255238224930362987==-- From jira-events at lists.jboss.org Wed Mar 21 14:54:56 2012 Content-Type: multipart/mixed; boundary="===============2788769779078917218==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12015) Support for EL-evaluated Less-to-CSS compiler Date: Wed, 21 Mar 2012 14:54:56 -0400 Message-ID: <1648817491.23641.1332356096861.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 741300267.49776.1330451616677.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2788769779078917218== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12015?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12015: ------------------------------- Fix Version/s: 4-Tracking = > Support for EL-evaluated Less-to-CSS compiler > --------------------------------------------- > > Key: RF-12015 > URL: https://issues.jboss.org/browse/RF-12015 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: core > Reporter: Dupont Dupont > Fix For: 4-Tracking > > > Suggested approach would be to parse El expression and afterwards execute= less processor. > Server-side mechanism must be available for executing less. > Approach 1 : end-user chooses less or ecss but cannot mix the 2 syntax in= the same file. > Approach 2 : allow end-user to use less syntax in ecss files > * modify current ecss execution (evaluate EL expression and don't parse = CSS anymore) > * add a less compilator afterwards. > Less compilation at build time or runtime ? > For both of these 2 approaches, less compilation can be done built-time o= r execution time (need to investigate more to choose the right approach). > If build time, richfaces-resources-maven-pluginwould be a candidate to ex= ecute El and less compilation. > Full discussion on this topic here : http://transcripts.jboss.org/channel= /irc.freenode.org/%23richfaces/2012/%23richfaces.2012-02-28.log.html > Some less plugins / engines : > * http://code.google.com/p/maven-less-plugin/ > * http://www.asual.com/lesscss/ > * https://github.com/achingbrain/less-maven-plugin > * http://code.google.com/p/maven-less-plugin/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2788769779078917218==-- From jira-events at lists.jboss.org Wed Mar 21 14:54:56 2012 Content-Type: multipart/mixed; boundary="===============4779632654540109704==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12017) Template handling Date: Wed, 21 Mar 2012 14:54:56 -0400 Message-ID: <265257164.23637.1332356096714.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1706290983.49800.1330451917163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4779632654540109704== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12017?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12017: ------------------------------- Fix Version/s: 4-Tracking = > Template handling > ----------------- > > Key: RF-12017 > URL: https://issues.jboss.org/browse/RF-12017 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Dupont Dupont > Fix For: 4-Tracking > > > This functionnality will enable easily import a theme into it's own appli= cation. > It's quite related to template handling in JSF 2.2 [1]. > A template / theme will consist of : > * 1..n : the necessary xhtml file for the site layout. > * 0..n : images. > * 0..n : css files or ecss files. > * 0..n : js files. > * 0..1 : resource-mapping.property > * 1 : skin.properties > Requirements : > * easy installation > adding a template / theme must be just a matter of drag & drop (so all= the resources must be a stand alone directory). > * easy modification > the developer must be able to customize the template / theme. > Implies : > ** template/theme resources must be expanded (not zipped or jarred) > ** hot reloading all common theme related resource modification must b= e hot reloaded. > Proposed organization : = > * src/main/webapp/resources/templates/theme1/template.xhtml > * src/main/webapp/resources/templates/theme1/img > * src/main/webapp/resources/templates/theme1/css > * src/main/webapp/resources/templates/theme1/js > * src/main/webapp/resources/templates/theme1/theme1.skin.properties > * src/main/webapp/resources/templates/theme1/resource-mapping.properties > TBD : > * this JIRA must define common names for template parts (i.e. menu, titl= e, content) in order to be able > to use different themes with the same jsf files. > Sample usage (jsf file using a template) : > {code:xml} > xmlns:h=3D"http://java.sun.com/jsf/html" = > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:f=3D"http://java.sun.com/jsf/core"> > Gallery > > My custom content > > > {code} > [1] = > http://weblogs.java.net/blog/lamineba/archive/2011/11/12/multi-templating= -system-jsf-22-what-does-it-mean-you > http://weblogs.java.net/blog/lamineba/archive/2011/10/03/conventional-ui-= design-facelets-and-jsf-22 > https://svn.java.net/svn/jsf-extensions~svn/branches/SPEC_532_MODULAR_JSF > [2] Discussion on this topic : http://transcripts.jboss.org/channel/irc.f= reenode.org/%23richfaces/2012/%23richfaces.2012-02-28.log.html -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4779632654540109704==-- From jira-events at lists.jboss.org Wed Mar 21 14:54:56 2012 Content-Type: multipart/mixed; boundary="===============0538316888000012298==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12014) Support for loading skin.properties and resource-mapping.properties from webapp/resources Date: Wed, 21 Mar 2012 14:54:56 -0400 Message-ID: <913146809.23639.1332356096792.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 91341365.49772.1330451616528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0538316888000012298== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12014?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12014: ------------------------------- Fix Version/s: 4-Tracking = > Support for loading skin.properties and resource-mapping.properties from = webapp/resources > -------------------------------------------------------------------------= ---------------- > > Key: RF-12014 > URL: https://issues.jboss.org/browse/RF-12014 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: core > Reporter: Dupont Dupont > Fix For: 4-Tracking > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0538316888000012298==-- From jira-events at lists.jboss.org Wed Mar 21 14:54:57 2012 Content-Type: multipart/mixed; boundary="===============4817344499597313896==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12024) rich:dataGrid component and a4j:status don't cooperate together Date: Wed, 21 Mar 2012 14:54:56 -0400 Message-ID: <1578231264.23643.1332356096933.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 953422806.72367.1331080056746.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4817344499597313896== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12024?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12024: ------------------------------- Fix Version/s: 4.Future Component/s: component-a4j-core = > rich:dataGrid component and a4j:status don't cooperate together > --------------------------------------------------------------- > > Key: RF-12024 > URL: https://issues.jboss.org/browse/RF-12024 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.1.0.Final, 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > IE 9 > Reporter: Artur Mioduszewski > Fix For: 4.Future > > > rich:dataGrid component and a4j:status don't cooperate together. = > 1. PROBLEM: After clicking a4j:commandLink inside rich:dataGrid, rich:dat= aGrid behaves properly, but a4j:status component is not able to hide. > 2. When I remove a4j:status component, everything is OK (but rerendering = rich:dataGrid is taking a while, so I would like to get a4j:status componen= t functionality on page) > 3. a4j:commandButton present at that page (not shown in below code extrac= t) cooperate to a4j:status correctly > ------------- > (I just have noticed: a4j:status component also does not cooperate correc= tly to richfaces tabs: durring first tab switching, a4j:status component is= not able to hide > After refresh: tabs and a4j:status component start to behave correctly ). > {code:title=3D"XHTML FILE CODE EXTRACT"} > > columns=3D"7" elements=3D"168" styleClass=3D"noPaddings"> > > > > > > > > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4817344499597313896==-- From jira-events at lists.jboss.org Wed Mar 21 14:56:47 2012 Content-Type: multipart/mixed; boundary="===============1191137794884570181==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12025) [rich:tabPanel] Switching tabs doesn't work correctly Date: Wed, 21 Mar 2012 14:56:47 -0400 Message-ID: <24609065.23645.1332356207304.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 564356619.72400.1331081680333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1191137794884570181== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12025?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12025: ------------------------------- Fix Version/s: 4.Future = > [rich:tabPanel] Switching tabs doesn't work correctly > ----------------------------------------------------- > > Key: RF-12025 > URL: https://issues.jboss.org/browse/RF-12025 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.1.0.Final, 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final = > IE 9 > Reporter: Artur Mioduszewski > Fix For: 4.Future > > > Every tab switching caused more (perhaps 2 times more) calling of logger.= debug("----preRenderHomeView"); > {code:title=3DXHTML FILE CODE EXTRACT} > > > > > > > > > > > > = > > {code} > {code:title=3D"HomeAction"} > public void preRenderHomeView() { > logger.debug("----preRenderHomeView"); > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1191137794884570181==-- From jira-events at lists.jboss.org Wed Mar 21 14:58:47 2012 Content-Type: multipart/mixed; boundary="===============5266585444956926981==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12028) a4j:outputPanel - Error message enhancement Date: Wed, 21 Mar 2012 14:58:47 -0400 Message-ID: <1240935616.23649.1332356327474.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1368665910.75459.1331155416313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5266585444956926981== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12028?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678437#com= ment-12678437 ] = Brian Leathem commented on RF-12028: ------------------------------------ Can you confirm that you get such a detailed message with a mojarra compone= nt, when you reference an attribute that does not exist? (this information = will tell us if it's an upstream/mojarra bug, or a RichFaces bug) = > a4j:outputPanel - Error message enhancement > ------------------------------------------- > > Key: RF-12028 > URL: https://issues.jboss.org/browse/RF-12028 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: JSF / Mojarra 2.1.6 - cssparser-0.9.6 - guava-11.0.1= - hibernate-validator-4.2.0.Final - springframework 3.0.6.RELEASE - richfa= ces--4.2.0.Final - sac-1.3 - FireFox 10 - WAS 8.0.0.1 / Windows 7 > Reporter: Jean ANDRE > Labels: waiting_on_user > > When we set an non existing attribute on a4j:outputPanel, for eg. "class"= because we have converted a div to a a4j:outputPanel, the error message di= splayed at the user interface does not inform the developer about the fault= y component. The message we got is only : > > Error 500: javax.servlet.ServletException: Setter not found for propert= y class = > This error message is not very helpful to debug.... ;) > {code} > layout=3D"block" > class=3D"dark-box" > rendered=3D"#{productBean.expanded eq true}"> > {code} > We should have, as usual, the line of the XHTML file or the component nam= e, the line number, well something more accurate that really help to go fas= ter. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5266585444956926981==-- From jira-events at lists.jboss.org Wed Mar 21 15:02:47 2012 Content-Type: multipart/mixed; boundary="===============5106319843388226840==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12030) rich:dataScroller doesn't work if a rich:message exists inside of a collapsed rich:collapsiblePanel with switchType='ajax' Date: Wed, 21 Mar 2012 15:02:47 -0400 Message-ID: <1545931930.23656.1332356567580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 474795285.76394.1331197237559.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5106319843388226840== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12030?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12030: ------------------------------- Fix Version/s: 4.3.0.Milestone1 = > rich:dataScroller doesn't work if a rich:message exists inside of a colla= psed rich:collapsiblePanel with switchType=3D'ajax' > -------------------------------------------------------------------------= ------------------------------------------------- > > Key: RF-12030 > URL: https://issues.jboss.org/browse/RF-12030 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: tomcat 7, richfaces-4.2.0.Final, myfaces-2.1.6 > Reporter: Rene O > Fix For: 4.3.0.Milestone1 > > > rich:dataScroller doesn't work if a rich:message exists inside of a colla= psed rich:collapsiblePanel with switchType=3D'ajax' > Steps to reproduce this issue: > 1. use dataScroller to switch table-pages. you can see, that this works. > 2. collaps collapsiblePanel > 3. if collapsiblePanel is collapsed, the dataScroller doesn't react anymo= re. > 4. if you use switchType=3D'client' everything works correct > {code:title=3Dexamplepage.xhtml} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > = > = > = > = > > > if rich:message doesn't exists, everything works... > > > = > var=3D"item" value=3D"#{model.tableList}" = > rows=3D"5" style=3D"width:350px;"> > > = > > > > ColA > > #{item.itemA} > > > = > > > = > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5106319843388226840==-- From jira-events at lists.jboss.org Wed Mar 21 15:04:47 2012 Content-Type: multipart/mixed; boundary="===============2288158770702867481==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12031) rich:validator does not work after re render (ajax) Date: Wed, 21 Mar 2012 15:04:47 -0400 Message-ID: <468260014.23659.1332356687429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 245851677.76479.1331198676205.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2288158770702867481== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12031?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12031: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > rich:validator does not work after re render (ajax) > --------------------------------------------------- > > Key: RF-12031 > URL: https://issues.jboss.org/browse/RF-12031 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Reporter: Andries Ehlers > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > When you have a simple inputText component with rich:validator inside, va= lidation works perfectly when you move focus away from the component - vali= dation messages display, e.g: > {code:xml|borderStyle=3Dsolid} > > > > > {code} > If the above code resides in a panel, which is conditionally rendered, th= en ceases to function when you re-render the panel with aj= ax, eg: > {code:xml|borderStyle=3Dsolid} > > > > > = > >
    > > > > >
    >
    > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2288158770702867481==-- From jira-events at lists.jboss.org Wed Mar 21 15:06:47 2012 Content-Type: multipart/mixed; boundary="===============1635597483240195826==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" Date: Wed, 21 Mar 2012 15:06:47 -0400 Message-ID: <1057884691.23667.1332356807538.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1476360638.82467.1331324676272.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1635597483240195826== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12033?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12033: ------------------------------- Description: ExtendedDataTable doesn't show up in tabpanel w= ith switchType=3D"client" (was: testcase attached 1. Open test1.xhtml 2. Switch to Tab Two Expected Result: ExtendedDataTable shows up Actual Result: Grey bar shows up Workaround is to set switchType to "ajax" instead of "client" ) Steps to Reproduce: = Using the attached testcase 1. Open test1.xhtml 2. Switch to Tab Two Expected Result: ExtendedDataTable shows up Actual Result: Grey bar shows up Workaround Description: Workaround is to set switchType to "ajax" inste= ad of "client" = > ExtendedDataTable doesn't show up in tabpanel with switchType=3D"client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType=3D"client" -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1635597483240195826==-- From jira-events at lists.jboss.org Wed Mar 21 15:06:47 2012 Content-Type: multipart/mixed; boundary="===============4013492692095597627==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Wed, 21 Mar 2012 15:06:47 -0400 Message-ID: <1567301378.23661.1332356807354.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4013492692095597627== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12032?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678439#com= ment-12678439 ] = Brian Leathem commented on RF-12032: ------------------------------------ Was there no message logged in your server log? = > rich:calendar : Ajax request - Error message enhancement - sql.Date > ------------------------------------------------------------------- > > Key: RF-12032 > URL: https://issues.jboss.org/browse/RF-12032 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richface= s-4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. > Reporter: Jean ANDRE > Labels: waiting_on_user > Attachments: rich_calendar_errorMsg_Enhancement.png > > > When a backing-bean have a type of sql.Date which is mapped to a rich:cal= endar, there is an conversion error due to the rich:calendar component uses= util.Date by default. Unfortunately, we do not see any error message at th= e screen when an ajax request is sent and returned back to us. > What we got, and thanks to Firebug, is the text below as an answer from o= ur Ajax request POST. Nothing is rendered at the screen and the method of t= he backing bean is not called. > {code} > > class javax.faces.component.UpdateMo= delException > {code} > Our code looks like this (we remove unecessary field and decoration): > {code} > > > > > value=3D"#{msg['common.command.add.phone']}" > action=3D"#{createClientController.doAddPhone}"> > > > > > > > value=3D"#{phoneBean.effectiveDate}" > popup=3D"true" > showApplyButton=3D"false" > enableManualInput=3D"true" > datePattern=3D"#{msg['client.date.format']}" > inputSize=3D"12" > styleClass=3D"calendar"> > > > > > > > = > {code} > Is is possible to have a message returned back to the UI??? or is there a= way to handle this error properly? > Other information > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The form is inside a dynamic tab - Fragment are also include dynamically = - we use c:if et subView as shown below: > {code} > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4013492692095597627==-- From jira-events at lists.jboss.org Wed Mar 21 15:12:47 2012 Content-Type: multipart/mixed; boundary="===============5048713518638904839==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" Date: Wed, 21 Mar 2012 15:12:47 -0400 Message-ID: <1986324783.23669.1332357167349.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1476360638.82467.1331324676272.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5048713518638904839== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12033?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12033: ------------------------------- Fix Version/s: 4.3-Tracking Description: = ExtendedDataTable doesn't show up in tabpanel with switchType=3D"client" Facelet file from the attached testcase: {code} Test One

    Extended datatable inside tabpanel with switchType "client"

    Tab One Tab One Tab Two Column 1 #{color} = =
    {code} was:ExtendedDataTable doesn't show up in tabpanel with switchType=3D"clie= nt" Labels: lazy-loaded (was: ) = > ExtendedDataTable doesn't show up in tabpanel with switchType=3D"client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 4.3-Tracking > > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType=3D"client" > Facelet file from the attached testcase: > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:f=3D"http://java.sun.com/jsf/core"> > > Test One > > >

    Extended datatable inside tabpanel with switchType "client"

    > > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > = > = > >
    > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5048713518638904839==-- From jira-events at lists.jboss.org Wed Mar 21 15:12:47 2012 Content-Type: multipart/mixed; boundary="===============4922034375549782254==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" Date: Wed, 21 Mar 2012 15:12:47 -0400 Message-ID: <1906659994.23671.1332357167452.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1476360638.82467.1331324676272.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4922034375549782254== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12033?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12033: ------------------------------- Steps to Reproduce: = Using the attached testcase # Open test1.xhtml # Switch to Tab Two Expected Result: ExtendedDataTable shows up Actual Result: Grey bar shows up was: Using the attached testcase 1. Open test1.xhtml 2. Switch to Tab Two Expected Result: ExtendedDataTable shows up Actual Result: Grey bar shows up = > ExtendedDataTable doesn't show up in tabpanel with switchType=3D"client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 4.3-Tracking > > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType=3D"client" > Facelet file from the attached testcase: > {code} > > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:f=3D"http://java.sun.com/jsf/core"> > > Test One > > >

    Extended datatable inside tabpanel with switchType "client"

    > > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > = > = > >
    > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4922034375549782254==-- From jira-events at lists.jboss.org Wed Mar 21 15:14:48 2012 Content-Type: multipart/mixed; boundary="===============7096722086720756595==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Wed, 21 Mar 2012 15:14:48 -0400 Message-ID: <738596240.23674.1332357288311.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7096722086720756595== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678440#com= ment-12678440 ] = Jean ANDRE commented on RF-12038: --------------------------------- There is another issue with with a same message but we cannot pinpoint the = exact reason of that. Here is the workbench (setuped) and the steps to reproduce the bug. 1) Install the workbench and read the readme.txt file for additional inform= ation 2) Do not hesitate to request any information about it 3) Once the page appears (http://localhost:9080/NestedWeb/pages/index.jsf) or (http://localhost:9080/NestedWeb/index.html 4) Select the tab "Items management" 5) Enter a number and press "New List" button 6) Once a new dynamic tab is created with a list, close the tab by clicking= on X image IE reports the following error: Line: 5 Erreur : Cet objet ne g=C3=A8re pas cette propri=C3=A9t=C3=A9 ou cette= m=C3=A9thode >Object does not support this property or method Another way to reproduce the case is: 7) From the step 6, click on any item from the list - Open link 8) From the available tasks link, click on task, a new task tab appears 9) Close the tab by clicking on X image IE reports the following error: Line: 8 Erreur : Cet objet ne g=C3=A8re pas cette propri=C3=A9t=C3=A9 ou cett= e m=C3=A9thode >From the workbench, we removed any id=3D"xzy" name=3D"xyz", then the bug s= hould not come from this case but from another reason. Under FireFox, every= thing works perfectly. Similar error on the Web of the past... - http://forum.jquery.com/topic/object-doesn-t-support-this-property-or-me= thod-from-jquery-1-4-1-in-ie7-only - = = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7096722086720756595==-- From jira-events at lists.jboss.org Wed Mar 21 15:14:48 2012 Content-Type: multipart/mixed; boundary="===============7535962127152110346==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12034) Accepting multiple date format in rich calendar Date: Wed, 21 Mar 2012 15:14:48 -0400 Message-ID: <1758007078.23676.1332357288382.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2086963364.234.1331444747307.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7535962127152110346== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12034?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12034: ------------------------------- Fix Version/s: 4-Tracking = > Accepting multiple date format in rich calendar > ----------------------------------------------- > > Key: RF-12034 > URL: https://issues.jboss.org/browse/RF-12034 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Sunil Chauraha > Labels: richfaces > Fix For: 4-Tracking > > > Sometimes it is required to deal with multiple date formats in rich:calen= dar in both calendar selection and manual input. > But here we can define only one date pattern. = > Could it be possible to accept for this component to accept multiple date= formats, based on locale or other requirement. > I could write a workaround using javascript but this would be great if we= can do it by defining just the date patterns inside the component. > My javascript solution is here : https://community.jboss.org/wiki/Accepti= ngMultipleDateFormatsInRichcalendar -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7535962127152110346==-- From jira-events at lists.jboss.org Wed Mar 21 15:14:48 2012 Content-Type: multipart/mixed; boundary="===============4240226630105479387==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12035) Switchable panels do not work after rerendering whole page Date: Wed, 21 Mar 2012 15:14:48 -0400 Message-ID: <343171576.23678.1332357288495.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1502418805.1981.1331557787347.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4240226630105479387== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12035?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12035: ------------------------------- Fix Version/s: 4.3-Tracking = > Switchable panels do not work after rerendering whole page > ---------------------------------------------------------- > > Key: RF-12035 > URL: https://issues.jboss.org/browse/RF-12035 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.7-jbossorg-1 > JBoss AS 7.1.1.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Chrome 17.0.963.79 @ Linux i686 > Reporter: Pavol Pitonak > Fix For: 4.3-Tracking > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAccordion/simple.xhtml > # click on panel 3 > # verify that panel 3 is displayed > # click rerender all button (4th button in page header) > # verify that panel 3 is displayed > # click on panel 2 > # click on panel 2 > result: > * accordion is not switched to panel 2 on first click, second click is ne= cessary > * there is the same problem with rich:collapsiblePanel -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4240226630105479387==-- From jira-events at lists.jboss.org Wed Mar 21 15:16:47 2012 Content-Type: multipart/mixed; boundary="===============5168606534750607093==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12036) showcase - rich:progressBar - client side mode of progressBar halts another progress bar in AJAX mode Date: Wed, 21 Mar 2012 15:16:47 -0400 Message-ID: <130304641.23680.1332357407747.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 653082305.2290.1331562647939.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5168606534750607093== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12036?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12036: ------------------------------- Fix Version/s: 4-Tracking = > showcase - rich:progressBar - client side mode of progressBar halts anoth= er progress bar in AJAX mode > -------------------------------------------------------------------------= ---------------------------- > > Key: RF-12036 > URL: https://issues.jboss.org/browse/RF-12036 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output, showcase > Affects Versions: 4.2.0.Final > Environment: browsers: Firefox 10, Chrome 17 > Reporter: Juraj Huska > Fix For: 4-Tracking > > > When you have open both samples for the rich:progressBar at the same brow= ser(in separated cards), and run Ajax mode one and during of execution of t= his one also the client mode one, then the Ajax one is halted. > The server updates are still coming for that Ajax one, however the visual= state is not updated. It is not restored even when the second one is compl= eted. > This is noticeable on showcase since RF 4.0.0.Final, and reproducible on = GAE or OpenShift accounts. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5168606534750607093==-- From jira-events at lists.jboss.org Wed Mar 21 15:18:47 2012 Content-Type: multipart/mixed; boundary="===============1329483235103972790==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12037) Fileupload:onbegin, oncomplete and onbeforedomupdate does not work Date: Wed, 21 Mar 2012 15:18:47 -0400 Message-ID: <196105898.23683.1332357527816.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 59538813.2564.1331564567977.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1329483235103972790== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12037?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12037: ------------------------------- Description: Fileupload:onbegin, oncomplete and onbeforedomupdat= e does not display the alerts specified via the metamer testing application= . (was: # Deploy metamer # open http://localhost:8080/metamer/faces/components/richFileUpload/simple= .xhtml # Attribute onbegin=3Dalert('1') = # Attribute onbeforedomupdate=3Dalert('2') # Attribute oncomplete=3Dalert('3') # Upload file # 3 alerts should show ) Steps to Reproduce: = # Deploy metamer # open http://localhost:8080/metamer/faces/components/richFileUpload/simple= .xhtml # Attribute onbegin=3Dalert('1') = # Attribute onbeforedomupdate=3Dalert('2') # Attribute oncomplete=3Dalert('3') # Upload file # 3 alerts should show = > Fileupload:onbegin, oncomplete and onbeforedomupdate does not work > ------------------------------------------------------------------ > > Key: RF-12037 > URL: https://issues.jboss.org/browse/RF-12037 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 10.0.1 @ Linux x86_64 > Chrome 17.0.963.56 @ Linux i686 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 4.3-Tracking > > > Fileupload:onbegin, oncomplete and onbeforedomupdate does not display the= alerts specified via the metamer testing application. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1329483235103972790==-- From jira-events at lists.jboss.org Wed Mar 21 15:18:48 2012 Content-Type: multipart/mixed; boundary="===============6500652235235735836==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12037) Fileupload:onbegin, oncomplete and onbeforedomupdate does not work Date: Wed, 21 Mar 2012 15:18:48 -0400 Message-ID: <2059092147.23686.1332357528319.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 59538813.2564.1331564567977.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6500652235235735836== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12037?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12037: ------------------------------- Fix Version/s: 4.3-Tracking = > Fileupload:onbegin, oncomplete and onbeforedomupdate does not work > ------------------------------------------------------------------ > > Key: RF-12037 > URL: https://issues.jboss.org/browse/RF-12037 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 10.0.1 @ Linux x86_64 > Chrome 17.0.963.56 @ Linux i686 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 4.3-Tracking > > > Fileupload:onbegin, oncomplete and onbeforedomupdate does not display the= alerts specified via the metamer testing application. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6500652235235735836==-- From jira-events at lists.jboss.org Wed Mar 21 15:20:47 2012 Content-Type: multipart/mixed; boundary="===============2630177347093354443==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12039) fileupload: attribute data does not work Date: Wed, 21 Mar 2012 15:20:47 -0400 Message-ID: <1889836991.23688.1332357647303.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1594423263.5104.1331625708133.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2630177347093354443== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12039?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12039: ------------------------------- Description: The value assigned to the data attribute of the fil= eupload comopnent is not available via the event object in the oncomplete l= istener (was: # Deploy metamer # open http://localhost:8080/metamer/faces/components/richFileUpload/simple= .xhtml # Set attribute data =3D 'RichFaces 4' # Set attribute onuploadcomplete =3D alert(event.data) = # Upload file # Alert with "RichFaces 4" should show) Steps to Reproduce: = # Deploy metamer # open http://localhost:8080/metamer/faces/components/richFileUpload/simple= .xhtml # Set attribute data =3D 'RichFaces 4' # Set attribute onuploadcomplete =3D alert(event.data) = # Upload file # Alert with "RichFaces 4" should show = > fileupload: attribute data does not work > ---------------------------------------- > > Key: RF-12039 > URL: https://issues.jboss.org/browse/RF-12039 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss Web 7.0.10.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 10.0.1 @ Linux x86_64 > Chrome 17.0.963.56 @ Linux i686 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > > The value assigned to the data attribute of the fileupload comopnent is n= ot available via the event object in the oncomplete listener -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2630177347093354443==-- From jira-events at lists.jboss.org Wed Mar 21 15:22:49 2012 Content-Type: multipart/mixed; boundary="===============8434919622510877541==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12039) fileupload: attribute data does not work Date: Wed, 21 Mar 2012 15:22:48 -0400 Message-ID: <1715661211.23690.1332357768224.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1594423263.5104.1331625708133.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8434919622510877541== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12039?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12039: ------------------------------- Fix Version/s: 4.3-Tracking = > fileupload: attribute data does not work > ---------------------------------------- > > Key: RF-12039 > URL: https://issues.jboss.org/browse/RF-12039 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss Web 7.0.10.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 10.0.1 @ Linux x86_64 > Chrome 17.0.963.56 @ Linux i686 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 4.3-Tracking > > > The value assigned to the data attribute of the fileupload comopnent is n= ot available via the event object in the oncomplete listener -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8434919622510877541==-- From jira-events at lists.jboss.org Wed Mar 21 15:54:49 2012 Content-Type: multipart/mixed; boundary="===============5484499788448572161==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Wed, 21 Mar 2012 15:54:48 -0400 Message-ID: <453934832.23720.1332359688843.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5484499788448572161== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678446#com= ment-12678446 ] = Jean ANDRE commented on RF-12038: --------------------------------- >From the workbench, page index.xhtml, you can remove the form related to t= he menu and also the form related to the quick search. it does not impact t= he issue. From the template page, basePage.xhtml, you can also remove the t= ag related to the bug JAVASERVERFACES-2016/RF-11694, it does not impact the= issue. All of that, in order to reduce the scope. After removing this code, it seems that the javacript function to close the= tab is involved. See index.xhtml page. IE reports something wrong with event. By removing th= is piece of code you get something similar to RF-12060 {code}     {code} If you leave the code of the workbench as is, removing only the event.stopP= ropagation(), you get the following error message. Message=C2=A0: Objet requis Ligne=C2=A0: 1 Caract=C3=A8re=C2=A0: 22732 Code=C2=A0: 0 URI=C2=A0: http://localhost:9080/NestedWeb/javax.faces.resource/jsf.js.jsf?= ln=3Djavax.faces = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5484499788448572161==-- From jira-events at lists.jboss.org Wed Mar 21 16:02:50 2012 Content-Type: multipart/mixed; boundary="===============1615459040051615154==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12042) Metamer: rich:contextMenu doesn't disappear after clicking out of the menu in IE9 and Google Chrome Date: Wed, 21 Mar 2012 16:02:50 -0400 Message-ID: <1449217431.23737.1332360170147.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1422678186.9420.1331737667612.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1615459040051615154== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12042?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12042: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Brian Leathem = > Metamer: rich:contextMenu doesn't disappear after clicking out of the men= u in IE9 and Google Chrome > -------------------------------------------------------------------------= -------------------------- > > Key: RF-12042 > URL: https://issues.jboss.org/browse/RF-12042 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 = > Reporter: Jan Papousek > Assignee: Brian Leathem > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1615459040051615154==-- From jira-events at lists.jboss.org Wed Mar 21 16:02:50 2012 Content-Type: multipart/mixed; boundary="===============4814092613051782965==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12040) Multi-form document - command button (submit) does not work after rendering Date: Wed, 21 Mar 2012 16:02:48 -0400 Message-ID: <1260736197.23735.1332360168915.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 375257168.7025.1331658768095.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4814092613051782965== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12040?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12040: ------------------------------- Description: = We have one page that contains two forms. The first form contain a menus ba= r (ajax switchType) while the second contains a tabPanel (also in ajax swit= chType). When a user select a menu, we select the corresponding tab that co= ntains a submit button. Once the tab is selected, the submit button does no= t work. We have to click twice for submitting. # If we move the menu bar inside the second forms, it is working. = # If we set the menu bar in client switchType, selecting the menu doesn't d= o anything. # If we set the menu bar in server switchType it's working. As the rendering is well executed, the submit button should works but is no= t whatever we set as render=3D"@all, or any valid id". We have prepared a small application that demonstrates the case. This is a = simple but realistic application. Edit the index.xhtml to play with the men= u. Let us know if we doing something wrong. Note also that the JIRA JAVASERVERFACES-2016 was reopened :[JIRA] Reopened:= (JAVASERVERFACES-2016) Resources not loaded when using a dynamic ui:inlclu= de and rendered via ajax [ http://java.net/jira/browse/JAVASERVERFACES-2016?page=3Dcom.atlassian.jir= a.plugin.system.issuetabpanels:all-tabpanel ] {code:title=3DRelevant Facelet markup}

    #1

    {code} was: We have one page that contains two forms. The first form contain a menus ba= r (ajax switchType) while the second contains a tabPanel (also in ajax swit= chType). When a user select a menu, we select the corresponding tab that co= ntains a submit button. Once the tab is selected, the submit button does no= t work. We have to click twice for submitting. 1) If we move the menu bar inside the second forms, it is working. = 2) If we set the menu bar in client switchType, selecting the menu doesn't = do anything. 3) If we set the menu bar in server switchType it's working. As the rendering is well executed, the submit button should works but is no= t whatever we set as render=3D"@all, or any valid id". We have prepared a small application that demonstrates the case. This is a = simple but realistic application. Edit the index.xhtml to play with the men= u. Let us know if we doing something wrong. Note also that the JIRA JAVASERVERFACES-2016 was reopened :[JIRA] Reopened:= (JAVASERVERFACES-2016) Resources not loaded when using a dynamic ui:inlclu= de and rendered via ajax [ http://java.net/jira/browse/JAVASERVERFACES-2016?page=3Dcom.atlassian.jir= a.plugin.system.issuetabpanels:all-tabpanel ] Steps to Reproduce: = # Setup the application, read the readme.txt file # Once the index page is displayed, the tab "Items Management" is selected = by default # Click one the first static tab "Tab S-#1" # From the menu, select the menu "items management" # Then click on button "New List" 6) A list of item should be displayed But at the step 5, you have to click twice the button or to do F5 that refr= esh the whole page, it is like restarting the appl. from the beginning. was: 1) Setup the application, read the readme.txt file 2) Once the index page is displayed, the tab "Items Management" is selected= by default 3) Click one the first static tab "Tab S-#1" 4) From the menu, select the menu "items management" 5) Then click on button "New List" 6) A list of item should be displayed But at the step 5, you have to click twice the button or to do F5 that refr= esh the whole page, it is like restarting the appl. from the beginning. In the referenced form, I see the rich:menuItem _#item-management_ from h:f= orm _#MenuForm_ has a render target of _desktopTabs_, with is a rich:tabPan= el in the h:form _#desktopForm_. You are attempting to re-render a compone= nt in an adjacent form. I believe you are experiencing the behaviour described in this spec issue: http://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-790 As a workaround, I recommend using a single form, and use a4j:region panels= automatically where you would have used _(a)form_ otherwise. If you agree this is the problem you are experiencing, I will close this is= sue as an upstream problem. = > Multi-form document - command button (submit) does not work after renderi= ng > -------------------------------------------------------------------------= -- > > Key: RF-12040 > URL: https://issues.jboss.org/browse/RF-12040 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 = - Windows 7 - FireFox 10 - RichFaces 4.2 Final > Reporter: Jean ANDRE > Labels: waiting_on_user > Attachments: NestedWebWithMenu.zip > > > We have one page that contains two forms. The first form contain a menus = bar (ajax switchType) while the second contains a tabPanel (also in ajax sw= itchType). When a user select a menu, we select the corresponding tab that = contains a submit button. Once the tab is selected, the submit button does = not work. We have to click twice for submitting. > # If we move the menu bar inside the second forms, it is working. = > # If we set the menu bar in client switchType, selecting the menu doesn't= do anything. > # If we set the menu bar in server switchType it's working. > As the rendering is well executed, the submit button should works but is = not whatever we set as render=3D"@all, or any valid id". > We have prepared a small application that demonstrates the case. This is = a simple but realistic application. Edit the index.xhtml to play with the m= enu. Let us know if we doing something wrong. > Note also that the JIRA JAVASERVERFACES-2016 was reopened :[JIRA] Reopene= d: (JAVASERVERFACES-2016) Resources not loaded when using a dynamic ui:inlc= lude and rendered via ajax > [ http://java.net/jira/browse/JAVASERVERFACES-2016?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:all-tabpanel ] > {code:title=3DRelevant Facelet markup} > > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:c=3D"http://java.sun.com/jsp/jstl/core" > template=3D"/templates/basePage.xhtml"> > > > > > > > > > > > > > > > > > > > > > > > label=3D"#{msg['menu.item.one.items.management']}" > action=3D"#{desktopController.doActivateTabItems}" > render=3D"desktopTabs" /> > > > > >
    >
    > > > > > > > > switchType=3D"ajax" > headerPosition=3D"top" > activeItem=3D"#{desktopController.activeTab}" > itemChangeListener=3D"#{desktopController.doItemChangeListener}" > immediate=3D"true"> > > > > > #1 > > > > > > > > > > value=3D"#{msg[desktopController.togglePanelLabel]}" > actionListener=3D"#{desktopController.doToggleTabContent}" > render=3D"toggleTabContent"> > >
    >
    > > > > > > > > > > > > >
    >
    > > > > > > > > > styleClass=3D"closeButton" > onclick=3D"closeTab('#{tab.id}');event.stopPropagation();" /> > > > > > > > > > >
    >
    > > > > > > > > > > > > >
    > > > >
    > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4814092613051782965==-- From jira-events at lists.jboss.org Wed Mar 21 16:04:47 2012 Content-Type: multipart/mixed; boundary="===============6545620637233376699==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12043) Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility mode Date: Wed, 21 Mar 2012 16:04:47 -0400 Message-ID: <1810685755.23739.1332360287750.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 714594071.9445.1331737907625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6545620637233376699== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12043?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12043: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Brian Leathem = > Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility = mode > -------------------------------------------------------------------------= ---- > > Key: RF-12043 > URL: https://issues.jboss.org/browse/RF-12043 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT = > Metamer 4.2.1-SNAPSHOT = > Mojarra 2.1.5-SNAPSHOT = > JBoss AS 7.1.0.Final = > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux = > Internet Explorer 7.0 @ Win32 (this is IE 9 Compatibility Mode) > Reporter: Jan Papousek > Assignee: Brian Leathem > Labels: IE9 > Fix For: 4.2.1.CR1 > > Attachments: metamer-ie-9-rich_contextMenu.png > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6545620637233376699==-- From jira-events at lists.jboss.org Wed Mar 21 16:04:50 2012 Content-Type: multipart/mixed; boundary="===============0936023896561033533==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 21 Mar 2012 16:04:49 -0400 Message-ID: <389248162.23746.1332360289561.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0936023896561033533== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12044: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0936023896561033533==-- From jira-events at lists.jboss.org Wed Mar 21 16:04:50 2012 Content-Type: multipart/mixed; boundary="===============6957057964402093762==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12045) Metamer: focusing of rich:inplaceInput behaves in Google Chrome differently than in other browsers Date: Wed, 21 Mar 2012 16:04:50 -0400 Message-ID: <2046839613.23752.1332360290780.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 645136326.9592.1331740187653.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6957057964402093762== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12045?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12045: ------------------------------- Fix Version/s: 4.Future = > Metamer: focusing of rich:inplaceInput behaves in Google Chrome different= ly than in other browsers > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12045 > URL: https://issues.jboss.org/browse/RF-12045 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 = > Reporter: Jan Papousek > Priority: Optional > Labels: Chrome > Fix For: 4.Future > > > After clicking on rich:inplaceInput in Firefox, the cursor is placed in t= he beginning of the input and nothing is selected. Doing the same in Google= Chrome - the text in the input is selected. > EDIT: It happens only after the first click on the input. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6957057964402093762==-- From jira-events at lists.jboss.org Wed Mar 21 16:04:53 2012 Content-Type: multipart/mixed; boundary="===============7658774430979698068==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12028) a4j:outputPanel - Error message enhancement Date: Wed, 21 Mar 2012 16:04:50 -0400 Message-ID: <2048202920.23753.1332360290848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1368665910.75459.1331155416313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7658774430979698068== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12028?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678449#com= ment-12678449 ] = Jean ANDRE commented on RF-12028: --------------------------------- The component involved is the because the "class" attribu= te does not exist for this tag. The error appears when you convert a
    = tag to an tag without replacing the "class" attribute by = the "styleClass". = > a4j:outputPanel - Error message enhancement > ------------------------------------------- > > Key: RF-12028 > URL: https://issues.jboss.org/browse/RF-12028 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: JSF / Mojarra 2.1.6 - cssparser-0.9.6 - guava-11.0.1= - hibernate-validator-4.2.0.Final - springframework 3.0.6.RELEASE - richfa= ces--4.2.0.Final - sac-1.3 - FireFox 10 - WAS 8.0.0.1 / Windows 7 > Reporter: Jean ANDRE > Labels: waiting_on_user > > When we set an non existing attribute on a4j:outputPanel, for eg. "class"= because we have converted a div to a a4j:outputPanel, the error message di= splayed at the user interface does not inform the developer about the fault= y component. The message we got is only : > > Error 500: javax.servlet.ServletException: Setter not found for propert= y class = > This error message is not very helpful to debug.... ;) > {code} > layout=3D"block" > class=3D"dark-box" > rendered=3D"#{productBean.expanded eq true}"> > {code} > We should have, as usual, the line of the XHTML file or the component nam= e, the line number, well something more accurate that really help to go fas= ter. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7658774430979698068==-- From jira-events at lists.jboss.org Wed Mar 21 16:06:50 2012 Content-Type: multipart/mixed; boundary="===============2381920835141398456==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12046) JSR303 ConstraintViolation propertyPath support for graphValidator Date: Wed, 21 Mar 2012 16:06:50 -0400 Message-ID: <1867719778.23761.1332360410396.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2053412287.10319.1331756687690.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2381920835141398456== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12046?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12046: ------------------------------- Fix Version/s: 4.Future = > JSR303 ConstraintViolation propertyPath support for graphValidator > ------------------------------------------------------------------ > > Key: RF-12046 > URL: https://issues.jboss.org/browse/RF-12046 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.2.0.Final > Reporter: Gerald Turner > Priority: Optional > Fix For: 4.Future > > > In JSR303 =C2=A7 4.2 ConstraintViolation, there is the following note: > "From rootBean and propertyPath, it is possible to rebuild the context = of the failure" > Perhaps it would be possible for graphValidator to map ConstraintViolatio= n propertyPath to ValueExpressions, then iterate child EditableValueHolder = components and assign FacesMessages to clientIds of these components where = it finds a match, otherwise fallback on the current behavior of using the c= lientId of the graphValidator itself (perhaps even adding an the option to = use a null clientId for global messages instead). > A more thorough example of this use-case is here: http://stackoverflow.co= m/questions/5639088/cross-field-validation-with-inline-messaging-in-jsf-wit= h-jsr-303 > Comments at stackoverflow suggest MyFaces ExtVal Bean Validation can do t= he trick, however I went down that road, their framework ignores Constraint= Violation propertyPath as well (see: http://old.nabble.com/Re%3A-ExtVal-BV-= question-to33455513.html) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2381920835141398456==-- From jira-events at lists.jboss.org Wed Mar 21 16:08:52 2012 Content-Type: multipart/mixed; boundary="===============2267656579183560866==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12047) Add "global" attribute to graphValidator Date: Wed, 21 Mar 2012 16:08:51 -0400 Message-ID: <1699038040.23763.1332360531602.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1530502986.10336.1331757287488.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2267656579183560866== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12047?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12047: ------------------------------- Fix Version/s: 4.Future = > Add "global" attribute to graphValidator > ---------------------------------------- > > Key: RF-12047 > URL: https://issues.jboss.org/browse/RF-12047 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.2.0.Final > Reporter: Gerald Turner > Priority: Trivial > Fix For: 4.Future > > > graphValidator appends FacesMessages to the FacesContext with clientId se= t to the clientId of the graphValidator component, naturally, however I hav= e a use-case for not assigning a clientId to those FacesMessages at all (nu= ll, global messages). > The following example exhibits how graphValidator currently works: > > > What I'm asking for is the following: > > > (Conversely I could wishlist PrimeFaces to add a 'for' attribute to their= 'messages' component, something like 'for=3D"@global gv"', so no harm in c= losing this report ;-) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2267656579183560866==-- From jira-events at lists.jboss.org Wed Mar 21 16:10:48 2012 Content-Type: multipart/mixed; boundary="===============6475683576752496850==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12049) Richfaces Kitchensink Archetype Date: Wed, 21 Mar 2012 16:10:48 -0400 Message-ID: <1794617574.23766.1332360648680.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 298774079.10572.1331775587398.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6475683576752496850== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12049?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-12049: ----------------------------------------- Bugzilla Update: Perform = > Richfaces Kitchensink Archetype > ------------------------------- > > Key: RF-12049 > URL: https://issues.jboss.org/browse/RF-12049 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: JBDS 5 Beta 1 > Reporter: Burr Sutter > Attachments: richfaces_junit_failure.png > > > The currently generated RichFaces-based kitchensink project "richfaces-we= bapp" throws the following exception when Run As JUnit Test is used. > 21:36:27,147 ERROR [org.jboss.ejb3.invocation] (http-localhost-127.0.0.1-= 8080-7) JBAS014134: EJB Invocation failed on component MemberRegistration f= or method public void org.jboss.tools.examples.controller.MemberRegistratio= n.register() throws java.lang.Exception: javax.ejb.EJBException: org.jboss.= weld.exceptions.IllegalProductException: WELD-000052 Cannot return null fro= m a non-dependent producer method: [method] @Produces @RequestScoped publi= c org.jboss.tools.examples.util.Resources.produceFacesContext() > at org.jboss.as.ejb3.tx.CMTTxInterceptor.handleExceptionInOurTx(CMTTxInt= erceptor.java:166) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redh= at-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.= java:230) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:= 304) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxIntercep= tor.java:190) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6475683576752496850==-- From jira-events at lists.jboss.org Wed Mar 21 16:10:49 2012 Content-Type: multipart/mixed; boundary="===============6613093371773766008==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12049) Richfaces Kitchensink Archetype Date: Wed, 21 Mar 2012 16:10:48 -0400 Message-ID: <181902360.23768.1332360648836.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 298774079.10572.1331775587398.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6613093371773766008== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12049?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-12049: ----------------------------------------- Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=3D8028= 02 = > Richfaces Kitchensink Archetype > ------------------------------- > > Key: RF-12049 > URL: https://issues.jboss.org/browse/RF-12049 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: JBDS 5 Beta 1 > Reporter: Burr Sutter > Attachments: richfaces_junit_failure.png > > > The currently generated RichFaces-based kitchensink project "richfaces-we= bapp" throws the following exception when Run As JUnit Test is used. > 21:36:27,147 ERROR [org.jboss.ejb3.invocation] (http-localhost-127.0.0.1-= 8080-7) JBAS014134: EJB Invocation failed on component MemberRegistration f= or method public void org.jboss.tools.examples.controller.MemberRegistratio= n.register() throws java.lang.Exception: javax.ejb.EJBException: org.jboss.= weld.exceptions.IllegalProductException: WELD-000052 Cannot return null fro= m a non-dependent producer method: [method] @Produces @RequestScoped publi= c org.jboss.tools.examples.util.Resources.produceFacesContext() > at org.jboss.as.ejb3.tx.CMTTxInterceptor.handleExceptionInOurTx(CMTTxInt= erceptor.java:166) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redh= at-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.= java:230) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:= 304) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxIntercep= tor.java:190) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6613093371773766008==-- From jira-events at lists.jboss.org Wed Mar 21 16:12:48 2012 Content-Type: multipart/mixed; boundary="===============3323933273733415225==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Wed, 21 Mar 2012 16:12:47 -0400 Message-ID: <1089273508.23771.1332360767927.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3323933273733415225== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12032?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678450#com= ment-12678450 ] = Jean ANDRE commented on RF-12032: --------------------------------- I have not checked the server log, in production we do not have access righ= t away to the log files, it is why, it will be more suitable to have: 1) An standard error of conversion displayed at the user screen - The scree= n shot does not show the problem because in fact, we have no message. More = over, the message does not talk about conversion error but about a mandator= y value from an another validator @NotNull 2) Or to support both date format according to the date format given by the= backing 3) Any message at the user screen instead of having a silent error. = > rich:calendar : Ajax request - Error message enhancement - sql.Date > ------------------------------------------------------------------- > > Key: RF-12032 > URL: https://issues.jboss.org/browse/RF-12032 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richface= s-4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. > Reporter: Jean ANDRE > Labels: waiting_on_user > Attachments: rich_calendar_errorMsg_Enhancement.png > > > When a backing-bean have a type of sql.Date which is mapped to a rich:cal= endar, there is an conversion error due to the rich:calendar component uses= util.Date by default. Unfortunately, we do not see any error message at th= e screen when an ajax request is sent and returned back to us. > What we got, and thanks to Firebug, is the text below as an answer from o= ur Ajax request POST. Nothing is rendered at the screen and the method of t= he backing bean is not called. > {code} > > class javax.faces.component.UpdateMo= delException > {code} > Our code looks like this (we remove unecessary field and decoration): > {code} > > > > > value=3D"#{msg['common.command.add.phone']}" > action=3D"#{createClientController.doAddPhone}"> > > > > > > > value=3D"#{phoneBean.effectiveDate}" > popup=3D"true" > showApplyButton=3D"false" > enableManualInput=3D"true" > datePattern=3D"#{msg['client.date.format']}" > inputSize=3D"12" > styleClass=3D"calendar"> > > > > > > > = > {code} > Is is possible to have a message returned back to the UI??? or is there a= way to handle this error properly? > Other information > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The form is inside a dynamic tab - Fragment are also include dynamically = - we use c:if et subView as shown below: > {code} > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3323933273733415225==-- From jira-events at lists.jboss.org Wed Mar 21 16:14:48 2012 Content-Type: multipart/mixed; boundary="===============2039268672496187116==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12051) Showcase: simplified Push CDI sample which wouldn't use subtopics Date: Wed, 21 Mar 2012 16:14:48 -0400 Message-ID: <225357280.23776.1332360888581.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1777587358.12158.1331830847464.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2039268672496187116== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12051?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12051: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix Version/s: 4.2.1.CR1 Priority: Minor (was: Major) Description: = Push CDI sample in Showcase is currently quite complex and people run into = issues when starting to use it, because there is usage of subtopics. There are two alternative ways how to address it: # simplify current sample # provide new sample as alternative to this one was: Push CDI sample in Showcase is currently quite complex and people run into = issues when starting to use it, because there is usage of subtopics. There are two alternative ways how to address it: 1. simplify current sample 2. provide new sample as alternative to this one Let's go with the simplifying approach. = > Showcase: simplified Push CDI sample which wouldn't use subtopics > ----------------------------------------------------------------- > > Key: RF-12051 > URL: https://issues.jboss.org/browse/RF-12051 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > Push CDI sample in Showcase is currently quite complex and people run int= o issues when starting to use it, > because there is usage of subtopics. > There are two alternative ways how to address it: > # simplify current sample > # provide new sample as alternative to this one -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2039268672496187116==-- From jira-events at lists.jboss.org Wed Mar 21 16:14:48 2012 Content-Type: multipart/mixed; boundary="===============8711004804093561327==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12049) Richfaces Kitchensink Archetype Date: Wed, 21 Mar 2012 16:14:48 -0400 Message-ID: <150585817.23774.1332360888227.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 298774079.10572.1331775587398.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8711004804093561327== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12049?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12049. -------------------------------- Assignee: Brian Leathem Resolution: Out of Date This has already been fixed in the latest SNAPSHOTS, and will be available = with the the 4.2.1.CR1 release of the kitchensink archetype. = > Richfaces Kitchensink Archetype > ------------------------------- > > Key: RF-12049 > URL: https://issues.jboss.org/browse/RF-12049 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: JBDS 5 Beta 1 > Reporter: Burr Sutter > Assignee: Brian Leathem > Attachments: richfaces_junit_failure.png > > > The currently generated RichFaces-based kitchensink project "richfaces-we= bapp" throws the following exception when Run As JUnit Test is used. > 21:36:27,147 ERROR [org.jboss.ejb3.invocation] (http-localhost-127.0.0.1-= 8080-7) JBAS014134: EJB Invocation failed on component MemberRegistration f= or method public void org.jboss.tools.examples.controller.MemberRegistratio= n.register() throws java.lang.Exception: javax.ejb.EJBException: org.jboss.= weld.exceptions.IllegalProductException: WELD-000052 Cannot return null fro= m a non-dependent producer method: [method] @Produces @RequestScoped publi= c org.jboss.tools.examples.util.Resources.produceFacesContext() > at org.jboss.as.ejb3.tx.CMTTxInterceptor.handleExceptionInOurTx(CMTTxInt= erceptor.java:166) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redh= at-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.= java:230) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:= 304) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] > at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxIntercep= tor.java:190) [jboss-as-ejb3-7.1.0.Final-redhat-1.jar:7.1.0.Final-redhat-1] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8711004804093561327==-- From jira-events at lists.jboss.org Wed Mar 21 16:16:48 2012 Content-Type: multipart/mixed; boundary="===============4216135247769823211==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12052) rich:TabPanel - HTML comments should be supported inside the tabPanel Date: Wed, 21 Mar 2012 16:16:48 -0400 Message-ID: <637163760.23778.1332361008470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1018200636.12395.1331837267498.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4216135247769823211== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12052?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12052: ------------------------------- Assignee: Brian Leathem Fix Version/s: 4.2.1.CR1 Priority: Trivial (was: Major) Component/s: component-output = > rich:TabPanel - HTML comments should be supported inside the tabPanel > --------------------------------------------------------------------- > > Key: RF-12052 > URL: https://issues.jboss.org/browse/RF-12052 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Jean ANDRE > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.1.CR1 > > > Is it possible to support HTML comment inside a tabPanel. Because it caus= es this error if we but comments as shown below. The error is: > E org.richfaces.context.ExtendedPartialViewContextImpl processPartialExe= cutePhase > java.lang.IllegalArgumentException > at org.richfaces.component.AbstractTogglePanel.getChildName(AbstractTogg= lePanel.java:490) > {code} > switchType=3D"ajax" > headerPosition=3D"top" > itemChangeListener=3D"#{viewItemController.doItemChangeListener}" > activeItem=3D"#{viewItemController.activeTab}" > immediate=3D"true"> > > > > > > {code} > Or at least, give us a clear error message as we did for tabPanel and the= form tag. > Thank you. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4216135247769823211==-- From jira-events at lists.jboss.org Wed Mar 21 16:16:49 2012 Content-Type: multipart/mixed; boundary="===============5880125399681484913==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12054) TabPanel onitemchange of outer tab fired by inner tab Date: Wed, 21 Mar 2012 16:16:49 -0400 Message-ID: <1897659260.23784.1332361009747.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 662615629.13006.1331883347434.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5880125399681484913== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12054?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12054: ------------------------------- Component/s: component-panels-layout-themes Forum Reference: https://community.jboss.org/thread/196901 (was: https= ://community.jboss.org/thread/196901) = > TabPanel onitemchange of outer tab fired by inner tab > ----------------------------------------------------- > > Key: RF-12054 > URL: https://issues.jboss.org/browse/RF-12054 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.2.0.Final > Reporter: Przemys=C5=82aw D=C4=99bski > Labels: tabpanel > Fix For: 4.Future > > > When changing outer tab, "onitemchange" event of outer tab is fired and a= lert with text 'onitemchange' is shown. > But when changing inner tab both "onitemchange" event of outer tab and in= ner tab are fired and two alerts are show, one with text 'onitemchange' and= second with 'onitemchange inner'. > It's wrong behaviour, because outer tab is not switched and its "onitemch= ange" event shouldn't be fired. Same situation with "onbeforeitemchange". > Page code to reproduce: > {code:xml} = > xmlns:f=3D"http://java.sun.com/jsf/core" xmlns:rich=3D"http://richfac= es.org/rich"> > > > > > tab1 > > > t= ab inner 1 > t= ab inner 2 > > > > > > = > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5880125399681484913==-- From jira-events at lists.jboss.org Wed Mar 21 16:16:49 2012 Content-Type: multipart/mixed; boundary="===============8066566102061881819==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12054) TabPanel onitemchange of outer tab fired by inner tab Date: Wed, 21 Mar 2012 16:16:48 -0400 Message-ID: <1421245831.23781.1332361008888.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 662615629.13006.1331883347434.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8066566102061881819== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12054?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12054: ------------------------------- Fix Version/s: 4.Future Forum Reference: https://community.jboss.org/thread/196901 (was: https= ://community.jboss.org/thread/196901) = > TabPanel onitemchange of outer tab fired by inner tab > ----------------------------------------------------- > > Key: RF-12054 > URL: https://issues.jboss.org/browse/RF-12054 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.2.0.Final > Reporter: Przemys=C5=82aw D=C4=99bski > Labels: tabpanel > Fix For: 4.Future > > > When changing outer tab, "onitemchange" event of outer tab is fired and a= lert with text 'onitemchange' is shown. > But when changing inner tab both "onitemchange" event of outer tab and in= ner tab are fired and two alerts are show, one with text 'onitemchange' and= second with 'onitemchange inner'. > It's wrong behaviour, because outer tab is not switched and its "onitemch= ange" event shouldn't be fired. Same situation with "onbeforeitemchange". > Page code to reproduce: > {code:xml} = > xmlns:f=3D"http://java.sun.com/jsf/core" xmlns:rich=3D"http://richfac= es.org/rich"> > > > > > tab1 > > > t= ab inner 1 > t= ab inner 2 > > > > > > = > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8066566102061881819==-- From jira-events at lists.jboss.org Wed Mar 21 16:18:47 2012 Content-Type: multipart/mixed; boundary="===============4469889978341138542==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12055) horizontal scrollbar is not working properly by using ScrollableDataTable, with one column Date: Wed, 21 Mar 2012 16:18:47 -0400 Message-ID: <1599502328.23786.1332361127589.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1704997765.13478.1331893787300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4469889978341138542== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12055?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12055. -------------------------------- Assignee: Brian Leathem Resolution: Incomplete Description Please re-open this issue with a complete description: https://community.jboss.org/wiki/SubmittingEffectiveIssueReports = > horizontal scrollbar is not working properly by using ScrollableDataTable= , with one column = > -------------------------------------------------------------------------= ------------------ > > Key: RF-12055 > URL: https://issues.jboss.org/browse/RF-12055 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: lakshmee n > Assignee: Brian Leathem > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4469889978341138542==-- From jira-events at lists.jboss.org Wed Mar 21 16:22:49 2012 Content-Type: multipart/mixed; boundary="===============1669889477677761687==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12057) IE 8 rich:toolTip client side toolTip has problems rendering upon ajax request Date: Wed, 21 Mar 2012 16:22:49 -0400 Message-ID: <1070274894.23811.1332361369304.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 470606725.14861.1331928287605.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1669889477677761687== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12057?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12057: ------------------------------- Fix Version/s: 4.3-Tracking = > IE 8 rich:toolTip client side toolTip has problems rendering upon ajax re= quest > -------------------------------------------------------------------------= ----- > > Key: RF-12057 > URL: https://issues.jboss.org/browse/RF-12057 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.1.0.Final > Environment: Windows 7, IE 8 > Reporter: Gurinder Randhawa > Fix For: 4.3-Tracking > > > Rich:Tooltip in client mode does not refresh upon an ajax event specifica= lly in IE 8. A large part of external clients utilize IE 8 unfortunately. T= he tool tip is working correctly in IE 9, chrome and FF 7+. > The tool tip is refreshed on next ajax request with "previous" ajax respo= nse. = > {code:title=3DTOOL TIP CODE:} > > = > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >
    > >
    rendered=3D"#{modifier.calculated}, #{modifier.applie= d.maximum}" /> > >
    > >
    > >
    > >
    >
    > {code} > {code:title=3DAJAX REQUEST CODE, SELECTABLE CHECKBOX WHICH RE-RENDERS TOO= LTIP} > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1669889477677761687==-- From jira-events at lists.jboss.org Wed Mar 21 16:22:49 2012 Content-Type: multipart/mixed; boundary="===============6356837157556708232==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12057) IE 8 rich:toolTip client side toolTip has problems rendering upon ajax request Date: Wed, 21 Mar 2012 16:22:49 -0400 Message-ID: <1935554791.23809.1332361369016.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 470606725.14861.1331928287605.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6356837157556708232== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12057?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12057: ------------------------------- Description: = Rich:Tooltip in client mode does not refresh upon an ajax event specificall= y in IE 8. A large part of external clients utilize IE 8 unfortunately. The= tool tip is working correctly in IE 9, chrome and FF 7+. The tool tip is refreshed on next ajax request with "previous" ajax respons= e. = {code:title=3DTOOL TIP CODE:} =
    {code} {code:title=3DAJAX REQUEST CODE, SELECTABLE CHECKBOX WHICH RE-RENDERS TOOLT= IP} {code} was: Rich:Tooltip in client mode does not refresh upon an ajax event specificall= y in IE 8. A large part of external clients utilize IE 8 unfortunately. The= tool tip is working correctly in IE 9, chrome and FF 7+. The tool tip is refreshed on next ajax request with "previous" ajax respons= e. = TOOL TIP CODE: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =
    =
    =
    AJAX REQUEST CODE, SELECTABLE CHECKBOX WHICH RE-RENDERS TOOLTIP =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D = > IE 8 rich:toolTip client side toolTip has problems rendering upon ajax re= quest > -------------------------------------------------------------------------= ----- > > Key: RF-12057 > URL: https://issues.jboss.org/browse/RF-12057 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.1.0.Final > Environment: Windows 7, IE 8 > Reporter: Gurinder Randhawa > Fix For: 4.3-Tracking > > > Rich:Tooltip in client mode does not refresh upon an ajax event specifica= lly in IE 8. A large part of external clients utilize IE 8 unfortunately. T= he tool tip is working correctly in IE 9, chrome and FF 7+. > The tool tip is refreshed on next ajax request with "previous" ajax respo= nse. = > {code:title=3DTOOL TIP CODE:} > > = > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >
    > >
    rendered=3D"#{modifier.calculated}, #{modifier.applie= d.maximum}" /> > >
    > >
    > >
    > >
    >
    > {code} > {code:title=3DAJAX REQUEST CODE, SELECTABLE CHECKBOX WHICH RE-RENDERS TOO= LTIP} > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6356837157556708232==-- From jira-events at lists.jboss.org Wed Mar 21 16:24:49 2012 Content-Type: multipart/mixed; boundary="===============8312100049792935020==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12058) rich:fileUpload - wrong upload icon if resourceOptimization param is set to true Date: Wed, 21 Mar 2012 16:24:49 -0400 Message-ID: <302747040.23823.1332361489761.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1723961468.15563.1332085067290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8312100049792935020== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12058?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12058: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Component/s: resource handling = > rich:fileUpload - wrong upload icon if resourceOptimization param is set = to true = > -------------------------------------------------------------------------= -------- > > Key: RF-12058 > URL: https://issues.jboss.org/browse/RF-12058 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, resource handling > Affects Versions: 4.2.0.Final > Environment: Tomcat6.33, Richfaces 4.2.0 FINAL, JDK1.6 > Reporter: Thorsten Nieser > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > Attachments: css-snippet.jpg, nok.jpg, ok.jpg > > > If the new resource optimization is disabled all icons of the fileUpload = element are fine. > (http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dfile= Upload&skin=3DblueSky) > But if I enabled the optimization by setting the context param to true, t= he upload button shows the red cross instead of the green check mark. > > org.richfaces.resourceOptimization.enabled > true > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8312100049792935020==-- From jira-events at lists.jboss.org Wed Mar 21 16:26:48 2012 Content-Type: multipart/mixed; boundary="===============5849481106881670299==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12059) RichFaces.ui.Message is not a constructor - Nested Tab Panel - Tab Creation Date: Wed, 21 Mar 2012 16:26:48 -0400 Message-ID: <127353800.23828.1332361608495.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1031888240.16896.1332159287591.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5849481106881670299== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12059?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12059: ------------------------------- Fix Version/s: 4.3-Tracking = > RichFaces.ui.Message is not a constructor - Nested Tab Panel - Tab Creati= on > -------------------------------------------------------------------------= -- > > Key: RF-12059 > URL: https://issues.jboss.org/browse/RF-12059 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: Websphere 8.0.0.2 - RAD 8 - JSF Mojorra 2.1.6 - Spri= ng 3.0.6 Final - Firefox 10.0.2 - Windows 7 (6.1 sp1) - AspectJ 1.6.12 / AJ= DT - RichFaces 4.2.0 Final - Hibernate Validator 4.2.0 Final = > Reporter: Jean ANDRE > Priority: Blocker > Fix For: 4.3-Tracking > > Attachments: NestedWeb_RF-12059.zip > > > We got the following error message, just after a tab has been created or = during its creation. After the error, we are not able to use the applicatio= n. Everything looks like frozen, tabs do not switch anymore. > {code} > RichFaces.ui.Message is not a constructor > > return new Function("event", handlerCode); > richfaces.js.jsf (ligne 481) > {code} > This bug is linked to RF-11763 and RF-12030 but the error message and the= context are not the same. > The rich:messages is also involved in this bug, the rich:message is attac= hed to a rich:calendar. Removing the rich:message removes the error. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5849481106881670299==-- From jira-events at lists.jboss.org Wed Mar 21 16:28:48 2012 Content-Type: multipart/mixed; boundary="===============4005998792607304910==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12060) element is null message when closing tab from an event click Date: Wed, 21 Mar 2012 16:28:47 -0400 Message-ID: <1807552930.23830.1332361727900.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1849991598.17427.1332167088202.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4005998792607304910== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12060?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12060: ------------------------------- Fix Version/s: 4.Future = > element is null message when closing tab from an event click > ------------------------------------------------------------ > > Key: RF-12060 > URL: https://issues.jboss.org/browse/RF-12060 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: Websphere 8.0.0.2 - RAD 8 - JSF Mojorra 2.1.6 - Spri= ng 3.0.6 Final - Firefox 10.0.2 - Windows 7 (6.1 sp1) - AspectJ 1.6.12 / AJ= DT - RichFaces 4.2.0 Final - Hibernate Validator 4.2.0 Final = > Reporter: Jean ANDRE > Fix For: 4.Future > > Attachments: NestedWeb_RF-12060.zip > > > There is a link to RF-11950. > We got the message "element is null" when we send a click event for closi= ng a tab. To retrieve the id of the close button (an image), we use the fun= ction getElementById (because of RF-11950). The click function calls a java= script function declared by a4j:jsFunction (see index.hxtml file - close ta= sk). > This is the only information we have from firebug. When we close the tab = directly by clicking on the close button/image, it works perfectly. > *Note :* Moreover, there is also a strange behavior related to generated = id on close button/image. When we specified a fix id on the h:graphicImage,= the first id is correct but there is no id on other close button/image fro= m other tabs!???. Having a fix id should trigger a duplicate ID but as the = ids are not generated on other tabs, it does not. > {code} > >   title=3D"#{msg[task.uiActivity.headerKey]}" /> >   styleClass=3D"closeButton" > onclick=3D"closeTask('#{task.id}');event.stopPropaga= tion();" /> > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4005998792607304910==-- From jira-events at lists.jboss.org Wed Mar 21 16:28:49 2012 Content-Type: multipart/mixed; boundary="===============0113421262233466876==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12040) Multi-form document - command button (submit) does not work after rendering Date: Wed, 21 Mar 2012 16:28:48 -0400 Message-ID: <1601928741.23831.1332361728445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 375257168.7025.1331658768095.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0113421262233466876== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12040?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678456#com= ment-12678456 ] = Jean ANDRE commented on RF-12040: --------------------------------- That's correct, our problem looks like JAVASERVERFACES_SPEC_PUBLIC-790. You= can close the issue. In our case, I have to try what your are suggesting because we have also th= e quick search form between both. If the quick search is part of a single f= orm, when we click the search button of the quick search and if there is an= y other form with validation inside the desktopTabs form (TabPanel), we tri= gger also the validation of that form. It is why we put the quick search fo= rm outside the other forms. Moreover, put all in one means also more unnece= ssary fields are sent to the server and dependencies issues. = > Multi-form document - command button (submit) does not work after renderi= ng > -------------------------------------------------------------------------= -- > > Key: RF-12040 > URL: https://issues.jboss.org/browse/RF-12040 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 = - Windows 7 - FireFox 10 - RichFaces 4.2 Final > Reporter: Jean ANDRE > Labels: waiting_on_user > Attachments: NestedWebWithMenu.zip > > > We have one page that contains two forms. The first form contain a menus = bar (ajax switchType) while the second contains a tabPanel (also in ajax sw= itchType). When a user select a menu, we select the corresponding tab that = contains a submit button. Once the tab is selected, the submit button does = not work. We have to click twice for submitting. > # If we move the menu bar inside the second forms, it is working. = > # If we set the menu bar in client switchType, selecting the menu doesn't= do anything. > # If we set the menu bar in server switchType it's working. > As the rendering is well executed, the submit button should works but is = not whatever we set as render=3D"@all, or any valid id". > We have prepared a small application that demonstrates the case. This is = a simple but realistic application. Edit the index.xhtml to play with the m= enu. Let us know if we doing something wrong. > Note also that the JIRA JAVASERVERFACES-2016 was reopened :[JIRA] Reopene= d: (JAVASERVERFACES-2016) Resources not loaded when using a dynamic ui:inlc= lude and rendered via ajax > [ http://java.net/jira/browse/JAVASERVERFACES-2016?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:all-tabpanel ] > {code:title=3DRelevant Facelet markup} > > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:c=3D"http://java.sun.com/jsp/jstl/core" > template=3D"/templates/basePage.xhtml"> > > > > > > > > > > > > > > > > > > > > > > > label=3D"#{msg['menu.item.one.items.management']}" > action=3D"#{desktopController.doActivateTabItems}" > render=3D"desktopTabs" /> > > > > >
    >
    > > > > > > > > switchType=3D"ajax" > headerPosition=3D"top" > activeItem=3D"#{desktopController.activeTab}" > itemChangeListener=3D"#{desktopController.doItemChangeListener}" > immediate=3D"true"> > > > > > #1 > > > > > > > > > > value=3D"#{msg[desktopController.togglePanelLabel]}" > actionListener=3D"#{desktopController.doToggleTabContent}" > render=3D"toggleTabContent"> > >
    >
    > > > > > > > > > > > > >
    >
    > > > > > > > > > styleClass=3D"closeButton" > onclick=3D"closeTab('#{tab.id}');event.stopPropagation();" /> > > > > > > > > > >
    >
    > > > > > > > > > > > > >
    > > > >
    > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0113421262233466876==-- From jira-events at lists.jboss.org Wed Mar 21 16:34:49 2012 Content-Type: multipart/mixed; boundary="===============2967609912706725842==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12061) pickList direction Date: Wed, 21 Mar 2012 16:34:48 -0400 Message-ID: <2134692529.23836.1332362088854.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 138392524.17532.1332168288239.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2967609912706725842== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12061?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12061: ------------------------------- Fix Version/s: 4.Future Forum Reference: https://community.jboss.org/message/724610#724610 (wa= s: https://community.jboss.org/message/724610#724610) As a workaround, you can override the CSS style for the pickList component. = > pickList direction > ------------------ > > Key: RF-12061 > URL: https://issues.jboss.org/browse/RF-12061 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.1.0.Final > Environment: RF 4.1, JSF 2 Mojarra 2.0.8 > Reporter: Ibrahim Abu Ghosh > Labels: pickList > Fix For: 4.Future > > > when i set the body direction to "rtl" and click or do any action on pick= List the whole page shift to left. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2967609912706725842==-- From jira-events at lists.jboss.org Wed Mar 21 16:36:48 2012 Content-Type: multipart/mixed; boundary="===============3150631380005547615==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12063) rich:notifyMessages not displaying error from valueChangeListener Date: Wed, 21 Mar 2012 16:36:48 -0400 Message-ID: <725312541.23838.1332362208102.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 71281469.18246.1332180647276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3150631380005547615== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12063?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12063: ------------------------------- Labels: waiting_on_user (was: ) Would you please provide some sample code to reproduce this problem? https://community.jboss.org/wiki/SubmittingEffectiveIssueReports = > rich:notifyMessages not displaying error from valueChangeListener > ----------------------------------------------------------------- > > Key: RF-12063 > URL: https://issues.jboss.org/browse/RF-12063 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.2.0.Final > Environment: Mojarra 2.1.7, RF 4.2.0.Final, Windows 7, Glassfish = 3.1.2, Chrome browser. > Reporter: Brendan Healey > Labels: waiting_on_user > > I have a global notifyMessages in a template . > I log a global error in the usual way from a value change listener (proce= ss validations > phase): > FacesMessage message =3D getFacesMessage(errKey); > message.setSeverity(FacesMessage.SEVERITY_ERROR); > FacesContext.getCurrentInstance().addMessage(null, message); > but the error never appears. If I have an h:messages on the page which is= ajax > rendered the message appears ok. > Regards, > Brendan. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3150631380005547615==-- From jira-events at lists.jboss.org Wed Mar 21 16:36:51 2012 Content-Type: multipart/mixed; boundary="===============1577358871153685068==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12066) Kitchensink archetype is not listed in the modules of the parent pom Date: Wed, 21 Mar 2012 16:36:50 -0400 Message-ID: <1096579975.23852.1332362210811.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1702434883.20113.1332246707300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1577358871153685068== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12066?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12066: ------------------------------- Assignee: Brian Leathem Fix Version/s: 4.2.1.CR1 = > Kitchensink archetype is not listed in the modules of the parent pom > -------------------------------------------------------------------- > > Key: RF-12066 > URL: https://issues.jboss.org/browse/RF-12066 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.1.CR1 > > > The maven module _richfaces-archetype-kitchensink_ is not listed in the p= arent pom.xml in the modules section. > Therefore, can not be installed from the parent pom. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1577358871153685068==-- From jira-events at lists.jboss.org Wed Mar 21 16:38:47 2012 Content-Type: multipart/mixed; boundary="===============3167256153592803931==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12068) rich:toggleControl: can't use immediate=true Date: Wed, 21 Mar 2012 16:38:47 -0400 Message-ID: <1842060028.23854.1332362327858.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1358714521.20262.1332253007498.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3167256153592803931== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12068?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12068: ------------------------------- Fix Version/s: 4.3-Tracking = > rich:toggleControl: can't use immediate=3Dtrue > -------------------------------------------- > > Key: RF-12068 > URL: https://issues.jboss.org/browse/RF-12068 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > The wizard can be created with {{togglePanel}} and {{toggleControl}}. > It can use validation mechanism and Ajax to switch between wizard windows. > ---- > But when validation fails, you can't use {{toggleControl}} to switch to a= nother panel > like in the sample of Back button - there is no possibility to request {{= immediate}} response (shortened lifecycle skipping validation phase). > ---- > The scenario can be seen in the sample of Showcase - togglePanel - Wizard= [1], > and in the QuickStart {{richfaces-validation}} [2]. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&sample=3Dwizard&skin=3DblueSky > [2] https://github.com/lfryc/quickstart/tree/quickstart-28 > ---- > Sample code: > {code} > > > > > > > > > > > > > > > > > > > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3167256153592803931==-- From jira-events at lists.jboss.org Wed Mar 21 16:38:48 2012 Content-Type: multipart/mixed; boundary="===============1151983904556589200==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12069) Use of $(document).ready instead of jQuery(document).ready in org.richfaces.renderkit.html.ScriptsRenderer Date: Wed, 21 Mar 2012 16:38:47 -0400 Message-ID: <4207430.23856.1332362327991.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1707537090.20595.1332256548101.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1151983904556589200== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12069?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12069: ------------------------------- Fix Version/s: 4.3-Tracking = > Use of $(document).ready instead of jQuery(document).ready in org.richfac= es.renderkit.html.ScriptsRenderer > -------------------------------------------------------------------------= --------------------------------- > > Key: RF-12069 > URL: https://issues.jboss.org/browse/RF-12069 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Sandro Br=C3=A4ndli > Fix For: 4.3-Tracking > > > As stated in the summary ScriptsRenderer uses the $-sign instead of jQuer= y. This causes problems when using a JavaScript library that overrides the = $-sign. In my case it breaks DnD when including Prototype. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1151983904556589200==-- From jira-events at lists.jboss.org Wed Mar 21 16:40:50 2012 Content-Type: multipart/mixed; boundary="===============0239037196103853433==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12070) Kitschensink archetype - broken formatting of comments in generated pom.xml Date: Wed, 21 Mar 2012 16:40:49 -0400 Message-ID: <1454653742.23858.1332362449275.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 561043984.20917.1332262367501.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0239037196103853433== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12070?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12070: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Brian Leathem = > Kitschensink archetype - broken formatting of comments in generated pom.x= ml > -------------------------------------------------------------------------= -- > > Key: RF-12070 > URL: https://issues.jboss.org/browse/RF-12070 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.1.CR1 > > Attachments: brokenFormatting.png > > > Comments in generated pom.xml from Kitschensink maven archetype have brok= en formatting. Please see the attachment. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0239037196103853433==-- From jira-events at lists.jboss.org Wed Mar 21 16:42:52 2012 Content-Type: multipart/mixed; boundary="===============1610156234418117297==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12071) a4j:outputPanel h:inputText render problem Date: Wed, 21 Mar 2012 16:42:52 -0400 Message-ID: <549619271.23860.1332362572010.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1254741604.22548.1332331187494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1610156234418117297== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12071?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12071: ------------------------------- Description: = Create dynamic screen with JSF is so hard and painfull. I used a4j:outputPanel so many times. Today i am trying to create dynamic screen based on combo selected value. W= hen value is for example option1 it generate inputText, otherwise comboBox. But i face to rendered problem son many times. Problem is on submited obje= ct value. My problem code like these: {code} {code} Problem detail: Captionvalue is unique in database. When exception is throwed from back end(JPA uniquness error). I pops up err= or to user. Then user edit captionValue and try to resubmit. But captionVal= ue is not change, even user changed it. When i remove rendered=3D"#{condit= ionKeyBean.checkable}" problem is solved. rendered is not working correctly= i think. How can i solve this problem? was: Create dynamic screen with JSF is so hard and painfull. I used a4j:outputPanel so many times. Today i am trying to create dynamic screen based on combo selected value. W= hen value is for example option1 it generate inputText, otherwise comboBox. But i face to rendered problem son many times. Problem is on submited obje= ct value. My problem code like these: Problem detail: Captionvalue is unique in database. When exception is throwed from back end(JPA uniquness error). I pops up err= or to user. Then user edit captionValue and try to resubmit. But captionVal= ue is not change, even user changed it. When i remove rendered=3D"#{condit= ionKeyBean.checkable}" problem is solved. rendered is not working correctly= i think. How can i solve this problem? Component/s: component-panels-layout-themes = > a4j:outputPanel h:inputText render problem > ------------------------------------------ > > Key: RF-12071 > URL: https://issues.jboss.org/browse/RF-12071 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Reporter: Abdullah =C4=B0lhanl=C4=B1 > > Create dynamic screen with JSF is so hard and painfull. > I used a4j:outputPanel so many times. > Today i am trying to create dynamic screen based on combo selected value.= When value is for example option1 it generate inputText, otherwise comboBo= x. > But i face to rendered problem son many times. Problem is on submited ob= ject value. > My problem code like these: > {code} > > > valueChangeListener=3D"#{conditionKeyBean.compType= Changed}"> > > render=3D"checkableLabel,checkableField" /> > > > rendered=3D"#{conditionKeyBean.checkable}" /> > > > > > > > > {code} > Problem detail: > Captionvalue is unique in database. > When exception is throwed from back end(JPA uniquness error). I pops up e= rror to user. Then user edit captionValue and try to resubmit. But captionV= alue is not change, even user changed it. When i remove rendered=3D"#{cond= itionKeyBean.checkable}" problem is solved. rendered is not working correct= ly i think. > How can i solve this problem? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1610156234418117297==-- From jira-events at lists.jboss.org Wed Mar 21 16:46:48 2012 Content-Type: multipart/mixed; boundary="===============6478271238105860186==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12071) a4j:outputPanel h:inputText render problem Date: Wed, 21 Mar 2012 16:46:47 -0400 Message-ID: <194056472.23862.1332362807373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1254741604.22548.1332331187494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6478271238105860186== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12071?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678462#com= ment-12678462 ] = Brian Leathem commented on RF-12071: ------------------------------------ Is _conditionKeyBean.checkable_ constant throughout the request lifecycle? = If so, you may have better success with the c:if tag. = > a4j:outputPanel h:inputText render problem > ------------------------------------------ > > Key: RF-12071 > URL: https://issues.jboss.org/browse/RF-12071 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Reporter: Abdullah =C4=B0lhanl=C4=B1 > Labels: waiting_on_user > > Create dynamic screen with JSF is so hard and painfull. > I used a4j:outputPanel so many times. > Today i am trying to create dynamic screen based on combo selected value.= When value is for example option1 it generate inputText, otherwise comboBo= x. > But i face to rendered problem son many times. Problem is on submited ob= ject value. > My problem code like these: > {code} > > > valueChangeListener=3D"#{conditionKeyBean.compType= Changed}"> > > render=3D"checkableLabel,checkableField" /> > > > rendered=3D"#{conditionKeyBean.checkable}" /> > > > > > > > > {code} > Problem detail: > Captionvalue is unique in database. > When exception is throwed from back end(JPA uniquness error). I pops up e= rror to user. Then user edit captionValue and try to resubmit. But captionV= alue is not change, even user changed it. When i remove rendered=3D"#{cond= itionKeyBean.checkable}" problem is solved. rendered is not working correct= ly i think. > How can i solve this problem? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6478271238105860186==-- From jira-events at lists.jboss.org Wed Mar 21 16:48:49 2012 Content-Type: multipart/mixed; boundary="===============4697328804446264387==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Wed, 21 Mar 2012 16:48:49 -0400 Message-ID: <1550985786.23874.1332362929253.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4697328804446264387== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12072: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Component/s: component-push/poll Lukas, does this problem go away with the recent asynchronous improvements = you committed? = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4697328804446264387==-- From jira-events at lists.jboss.org Wed Mar 21 16:48:50 2012 Content-Type: multipart/mixed; boundary="===============7907540776190257198==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12073) Kitchensink archetype - creating enterprise project requires also community richfaces version Date: Wed, 21 Mar 2012 16:48:49 -0400 Message-ID: <1567388522.23877.1332362930039.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2091208867.23183.1332345047625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7907540776190257198== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12073?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12073: ------------------------------- Assignee: Brian Leathem Fix Version/s: 4.2.1.CR1 = > Kitchensink archetype - creating enterprise project requires also communi= ty richfaces version > -------------------------------------------------------------------------= -------------------- > > Key: RF-12073 > URL: https://issues.jboss.org/browse/RF-12073 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Optional > Fix For: 4.2.1.CR1 > > > When generating enterprise richfaces maven project from kitchensink arche= type, it is also prompting for community richfaces version. And then the co= mmunity version is not used in the generated pom.xml > The log from this: > {noformat} > [INFO] Using property: groupId =3D bla.bla > [INFO] Using property: artifactId =3D foo_bla > Define value for property 'version': 1.0-SNAPSHOT: : = > [INFO] Using property: package =3D bla.bla > [INFO] Using property: enterprise =3D n > [INFO] Using property: richfaces-enterprise-version =3D 4.2.0.Final-redha= t-1 > [INFO] Using property: richfaces-version =3D 4.3.0-SNAPSHOT > Confirm properties configuration: > groupId: bla.bla > artifactId: foo_bla > version: 1.0-SNAPSHOT > package: bla.bla > enterprise: n > richfaces-enterprise-version: 4.2.0.Final-redhat-1 > richfaces-version: 4.3.0-SNAPSHOT > Y: : N > [INFO] Using property: groupId =3D bla.bla > [INFO] Using property: artifactId =3D foo_bla > Define value for property 'version': 1.0-SNAPSHOT: : = > Define value for property 'package': bla.bla: : = > Define value for property 'enterprise': n: : y > Define value for property 'richfaces-enterprise-version': 4.2.0.Final-re= dhat-1: : = > Define value for property 'richfaces-version': 4.3.0-SNAPSHOT: : = > Confirm properties configuration: > groupId: bla.bla > artifactId: foo_bla > version: 1.0-SNAPSHOT > package: bla.bla > enterprise: y > richfaces-enterprise-version: 4.2.0.Final-redhat-1 > richfaces-version: 4.3.0-SNAPSHOT > Y: : y > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 54.442s > [INFO] Finished at: Wed Mar 21 16:38:02 CET 2012 > [INFO] Final Memory: 9M/129M > [INFO] ------------------------------------------------------------------= ------ > jhuska(a)laptop:~/workspace_jbossTools33M5$ = > {noformat} > *Steps to reproduce:* > 1. _mvn archetype:generate -DarchetypeGroupId=3Dorg.richfaces.archetypes = -DarchetypeArtifactId=3Drichfaces-archetype-kitchensink -DarchetypeVersion= =3D4.3.0-SNAPSHOT -DgroupId=3Dbla.bla -DartifactId=3Dfoo_bla_ > 2. When prompting: ?Define value for property 'version': 1.0-SNAPSHOT:_,= press just enter. > 3. When prompting for confirming predefined values: type N > 4. When prompting for _Define value for property 'version': 1.0-SNAPSHOT= : :_ press just enter. > 5. _Define value for property 'package': bla.bla: : _ just enter > 6. _Define value for property 'enterprise': n: :_ type y > 7. _Define value for property 'richfaces-enterprise-version': 4.2.0.Fina= l-redhat-1: :_ just enter > 8. now you should be prompted for _Define value for property 'richfaces-v= ersion': 4.3.0-SNAPSHOT: :_, which you should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7907540776190257198==-- From jira-events at lists.jboss.org Wed Mar 21 16:48:51 2012 Content-Type: multipart/mixed; boundary="===============0782965487671461384==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12075) Kitchensink archetype - link for JBoss AS 7 project site is broken Date: Wed, 21 Mar 2012 16:48:50 -0400 Message-ID: <581895011.23879.1332362930938.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1802298851.23317.1332347447560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0782965487671461384== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12075?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12075: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Brian Leathem = > Kitchensink archetype - link for JBoss AS 7 project site is broken > ------------------------------------------------------------------ > > Key: RF-12075 > URL: https://issues.jboss.org/browse/RF-12075 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.1.CR1 > > > The link for JBoss AS 7 project site, which is suited in the find out mor= e section is broken, and points to the: > {noformat}http://localhost:8080/kitchen-sink-community/jboss.org/jbossas{= noformat} > It should point to http://www.jboss.org/jbossas > It is caused by missing http://www prefix. It is in the facelet page (abo= ut.xhtml), particularly line 16: > {code:xml} >
  • JBoss AS 7 project site
  • > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0782965487671461384==-- From jira-events at lists.jboss.org Wed Mar 21 16:52:49 2012 Content-Type: multipart/mixed; boundary="===============1354921407853992719==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12076) Kitchensink archetype - back button does not back to the correct page state Date: Wed, 21 Mar 2012 16:52:48 -0400 Message-ID: <804820981.23885.1332363168748.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 364076515.23363.1332348347607.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1354921407853992719== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12076?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12076: ------------------------------- Fix Version/s: 4.3-Tracking = > Kitchensink archetype - back button does not back to the correct page sta= te > -------------------------------------------------------------------------= -- > > Key: RF-12076 > URL: https://issues.jboss.org/browse/RF-12076 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: AS: JBoss AS 7.1.1.Final, EAP 6.0.0.ER3 > Reporter: Juraj Huska > Priority: Minor > Fix For: 4.3-Tracking > > > When clicking on the url of the freshly created new member (like /rest/me= mbers/0) and backing back from the xml viewing, results in removed freshly = added member. > After refresh, or AJAX update (clicking on collapsiblePanel), the table i= s with all members again. > This happens only for freshly added members. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1354921407853992719==-- From jira-events at lists.jboss.org Wed Mar 21 16:52:51 2012 Content-Type: multipart/mixed; boundary="===============6204976510710062726==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Wed, 21 Mar 2012 16:52:50 -0400 Message-ID: <2120504464.23896.1332363170973.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6204976510710062726== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-12038: ---------------------------- Attachment: ScreenShot_RF-12038.png This the piece of code involved in this issue when we remove event.stopProp= agation(). = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6204976510710062726==-- From jira-events at lists.jboss.org Wed Mar 21 17:02:47 2012 Content-Type: multipart/mixed; boundary="===============3408360768693765979==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Wed, 21 Mar 2012 17:02:47 -0400 Message-ID: <445897617.23963.1332363767394.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3408360768693765979== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678476#com= ment-12678476 ] = Jean ANDRE commented on RF-12038: --------------------------------- Question: Is it really legitimate to have this instruction "event.stopPropa= gation();" because we do not know where the event object comes from? Becaus= e the close behavior was taken from this site: http://livedemo.exadel.com/richfaces-demo/richfaces/tabPanel.jsf?tab=3Ddele= te&cid=3D276296 (View source), however, Event.stop() does not work as Event= is not defined. = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3408360768693765979==-- From jira-events at lists.jboss.org Wed Mar 21 17:04:47 2012 Content-Type: multipart/mixed; boundary="===============1692675170690746284==" MIME-Version: 1.0 From: =?utf-8?q?Abdullah_=C4=B0lhanl=C4=B1_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12071) a4j:outputPanel h:inputText render problem Date: Wed, 21 Mar 2012 17:04:47 -0400 Message-ID: <796030819.23974.1332363887418.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1254741604.22548.1332331187494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1692675170690746284== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12071?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678478#com= ment-12678478 ] = Abdullah =C4=B0lhanl=C4=B1 commented on RF-12071: --------------------------------------- Thank you Brian. ConditionKeyBean work on view scope. Checkable is boolean value in bean. Wh= en combo value is changed, in valueChangeListener, i control which option i= s selected then set checkable boolean value. c:if i have never used. It is jsp syntax, isnt it?. It can be success, but = i think c:if is not standart in JSF, isnt it? = > a4j:outputPanel h:inputText render problem > ------------------------------------------ > > Key: RF-12071 > URL: https://issues.jboss.org/browse/RF-12071 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Reporter: Abdullah =C4=B0lhanl=C4=B1 > Labels: waiting_on_user > > Create dynamic screen with JSF is so hard and painfull. > I used a4j:outputPanel so many times. > Today i am trying to create dynamic screen based on combo selected value.= When value is for example option1 it generate inputText, otherwise comboBo= x. > But i face to rendered problem son many times. Problem is on submited ob= ject value. > My problem code like these: > {code} > > > valueChangeListener=3D"#{conditionKeyBean.compType= Changed}"> > > render=3D"checkableLabel,checkableField" /> > > > rendered=3D"#{conditionKeyBean.checkable}" /> > > > > > > > > {code} > Problem detail: > Captionvalue is unique in database. > When exception is throwed from back end(JPA uniquness error). I pops up e= rror to user. Then user edit captionValue and try to resubmit. But captionV= alue is not change, even user changed it. When i remove rendered=3D"#{cond= itionKeyBean.checkable}" problem is solved. rendered is not working correct= ly i think. > How can i solve this problem? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1692675170690746284==-- From jira-events at lists.jboss.org Wed Mar 21 17:47:48 2012 Content-Type: multipart/mixed; boundary="===============0488269573543774039==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12071) a4j:outputPanel h:inputText render problem Date: Wed, 21 Mar 2012 17:47:47 -0400 Message-ID: <924963206.24036.1332366467944.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1254741604.22548.1332331187494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0488269573543774039== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12071?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678489#com= ment-12678489 ] = Brian Leathem commented on RF-12071: ------------------------------------ c:if is perfectly valid JSF, it just executes at a different stage of the l= ifecycle. If a component is excluded with _c:_ tag, it is omitted from the= component tree, as opposed to just not being rendered. This means they sh= ould be avoided in cases where the exclusion logic can change throughout th= e request lifecycle. In fact, appropriate use of _c:_ tags can be a real performance benefit. = > a4j:outputPanel h:inputText render problem > ------------------------------------------ > > Key: RF-12071 > URL: https://issues.jboss.org/browse/RF-12071 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Reporter: Abdullah =C4=B0lhanl=C4=B1 > Labels: waiting_on_user > > Create dynamic screen with JSF is so hard and painfull. > I used a4j:outputPanel so many times. > Today i am trying to create dynamic screen based on combo selected value.= When value is for example option1 it generate inputText, otherwise comboBo= x. > But i face to rendered problem son many times. Problem is on submited ob= ject value. > My problem code like these: > {code} > > > valueChangeListener=3D"#{conditionKeyBean.compType= Changed}"> > > render=3D"checkableLabel,checkableField" /> > > > rendered=3D"#{conditionKeyBean.checkable}" /> > > > > > > > > {code} > Problem detail: > Captionvalue is unique in database. > When exception is throwed from back end(JPA uniquness error). I pops up e= rror to user. Then user edit captionValue and try to resubmit. But captionV= alue is not change, even user changed it. When i remove rendered=3D"#{cond= itionKeyBean.checkable}" problem is solved. rendered is not working correct= ly i think. > How can i solve this problem? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0488269573543774039==-- From jira-events at lists.jboss.org Wed Mar 21 17:51:47 2012 Content-Type: multipart/mixed; boundary="===============4517950252130471891==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12066) Kitchensink archetype is not listed in the modules of the parent pom Date: Wed, 21 Mar 2012 17:51:47 -0400 Message-ID: <469662053.24040.1332366707603.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1702434883.20113.1332246707300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4517950252130471891== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12066?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12066. -------------------------------- Resolution: Done Added the kitchensink archetype to the list of module in the parent pom = > Kitchensink archetype is not listed in the modules of the parent pom > -------------------------------------------------------------------- > > Key: RF-12066 > URL: https://issues.jboss.org/browse/RF-12066 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.1.CR1 > > > The maven module _richfaces-archetype-kitchensink_ is not listed in the p= arent pom.xml in the modules section. > Therefore, can not be installed from the parent pom. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4517950252130471891==-- From jira-events at lists.jboss.org Wed Mar 21 17:59:47 2012 Content-Type: multipart/mixed; boundary="===============7244925374770724144==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12070) Kitschensink archetype - broken formatting of comments in generated pom.xml Date: Wed, 21 Mar 2012 17:59:47 -0400 Message-ID: <1355861412.24042.1332367187345.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 561043984.20917.1332262367501.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7244925374770724144== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12070?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12070. -------------------------------- Resolution: Done Reformatted the comments of the generated pom = > Kitschensink archetype - broken formatting of comments in generated pom.x= ml > -------------------------------------------------------------------------= -- > > Key: RF-12070 > URL: https://issues.jboss.org/browse/RF-12070 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.1.CR1 > > Attachments: brokenFormatting.png > > > Comments in generated pom.xml from Kitschensink maven archetype have brok= en formatting. Please see the attachment. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7244925374770724144==-- From jira-events at lists.jboss.org Wed Mar 21 18:03:47 2012 Content-Type: multipart/mixed; boundary="===============0716769408005472450==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12075) Kitchensink archetype - link for JBoss AS 7 project site is broken Date: Wed, 21 Mar 2012 18:03:47 -0400 Message-ID: <1185296079.24044.1332367427297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1802298851.23317.1332347447560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0716769408005472450== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12075?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12075. -------------------------------- Resolution: Done = > Kitchensink archetype - link for JBoss AS 7 project site is broken > ------------------------------------------------------------------ > > Key: RF-12075 > URL: https://issues.jboss.org/browse/RF-12075 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.1.CR1 > > > The link for JBoss AS 7 project site, which is suited in the find out mor= e section is broken, and points to the: > {noformat}http://localhost:8080/kitchen-sink-community/jboss.org/jbossas{= noformat} > It should point to http://www.jboss.org/jbossas > It is caused by missing http://www prefix. It is in the facelet page (abo= ut.xhtml), particularly line 16: > {code:xml} >
  • JBoss AS 7 project site
  • > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0716769408005472450==-- From jira-events at lists.jboss.org Wed Mar 21 18:08:47 2012 Content-Type: multipart/mixed; boundary="===============1690416693968557788==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Wed, 21 Mar 2012 18:08:47 -0400 Message-ID: <1849235180.24047.1332367727889.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1690416693968557788== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11833: ------------------------------- Priority: Major (was: Trivial) = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1690416693968557788==-- From jira-events at lists.jboss.org Wed Mar 21 18:14:47 2012 Content-Type: multipart/mixed; boundary="===============0338615467761871368==" MIME-Version: 1.0 From: =?utf-8?q?Abdullah_=C4=B0lhanl=C4=B1_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12071) a4j:outputPanel h:inputText render problem Date: Wed, 21 Mar 2012 18:14:47 -0400 Message-ID: <1941425204.24050.1332368087305.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1254741604.22548.1332331187494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0338615467761871368== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12071?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678492#com= ment-12678492 ] = Abdullah =C4=B0lhanl=C4=B1 commented on RF-12071: --------------------------------------- It is ok. I ll try these as soon as posibble. Then I ll post result on thes= e topic. Thank you so much. = > a4j:outputPanel h:inputText render problem > ------------------------------------------ > > Key: RF-12071 > URL: https://issues.jboss.org/browse/RF-12071 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Reporter: Abdullah =C4=B0lhanl=C4=B1 > Labels: waiting_on_user > > Create dynamic screen with JSF is so hard and painfull. > I used a4j:outputPanel so many times. > Today i am trying to create dynamic screen based on combo selected value.= When value is for example option1 it generate inputText, otherwise comboBo= x. > But i face to rendered problem son many times. Problem is on submited ob= ject value. > My problem code like these: > {code} > > > valueChangeListener=3D"#{conditionKeyBean.compType= Changed}"> > > render=3D"checkableLabel,checkableField" /> > > > rendered=3D"#{conditionKeyBean.checkable}" /> > > > > > > > > {code} > Problem detail: > Captionvalue is unique in database. > When exception is throwed from back end(JPA uniquness error). I pops up e= rror to user. Then user edit captionValue and try to resubmit. But captionV= alue is not change, even user changed it. When i remove rendered=3D"#{cond= itionKeyBean.checkable}" problem is solved. rendered is not working correct= ly i think. > How can i solve this problem? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0338615467761871368==-- From jira-events at lists.jboss.org Wed Mar 21 18:14:47 2012 Content-Type: multipart/mixed; boundary="===============0046828631377639098==" MIME-Version: 1.0 From: =?utf-8?q?Abdullah_=C4=B0lhanl=C4=B1_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12071) a4j:outputPanel h:inputText render problem Date: Wed, 21 Mar 2012 18:14:47 -0400 Message-ID: <1676158874.24052.1332368087381.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1254741604.22548.1332331187494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0046828631377639098== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12071?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678492#com= ment-12678492 ] = Abdullah =C4=B0lhanl=C4=B1 edited comment on RF-12071 at 3/21/12 6:14 PM: ---------------------------------------------------------------- It is ok. I ll try these as soon as posibble. Then I ll post result on this= topic. Thank you so much. = was (Author: ailhanli): It is ok. I ll try these as soon as posibble. Then I ll post result on = these topic. Thank you so much. = > a4j:outputPanel h:inputText render problem > ------------------------------------------ > > Key: RF-12071 > URL: https://issues.jboss.org/browse/RF-12071 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Reporter: Abdullah =C4=B0lhanl=C4=B1 > Labels: waiting_on_user > > Create dynamic screen with JSF is so hard and painfull. > I used a4j:outputPanel so many times. > Today i am trying to create dynamic screen based on combo selected value.= When value is for example option1 it generate inputText, otherwise comboBo= x. > But i face to rendered problem son many times. Problem is on submited ob= ject value. > My problem code like these: > {code} > > > valueChangeListener=3D"#{conditionKeyBean.compType= Changed}"> > > render=3D"checkableLabel,checkableField" /> > > > rendered=3D"#{conditionKeyBean.checkable}" /> > > > > > > > > {code} > Problem detail: > Captionvalue is unique in database. > When exception is throwed from back end(JPA uniquness error). I pops up e= rror to user. Then user edit captionValue and try to resubmit. But captionV= alue is not change, even user changed it. When i remove rendered=3D"#{cond= itionKeyBean.checkable}" problem is solved. rendered is not working correct= ly i think. > How can i solve this problem? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0046828631377639098==-- From jira-events at lists.jboss.org Wed Mar 21 18:23:47 2012 Content-Type: multipart/mixed; boundary="===============9103386552706704395==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12052) rich:TabPanel - HTML comments should be supported inside the tabPanel Date: Wed, 21 Mar 2012 18:23:47 -0400 Message-ID: <857285707.24055.1332368627266.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1018200636.12395.1331837267498.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9103386552706704395== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12052?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12052. -------------------------------- Resolution: Done Added in instance check to the AbstractTogglePanel#isActiveItem method = > rich:TabPanel - HTML comments should be supported inside the tabPanel > --------------------------------------------------------------------- > > Key: RF-12052 > URL: https://issues.jboss.org/browse/RF-12052 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Jean ANDRE > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.1.CR1 > > > Is it possible to support HTML comment inside a tabPanel. Because it caus= es this error if we but comments as shown below. The error is: > E org.richfaces.context.ExtendedPartialViewContextImpl processPartialExe= cutePhase > java.lang.IllegalArgumentException > at org.richfaces.component.AbstractTogglePanel.getChildName(AbstractTogg= lePanel.java:490) > {code} > switchType=3D"ajax" > headerPosition=3D"top" > itemChangeListener=3D"#{viewItemController.doItemChangeListener}" > activeItem=3D"#{viewItemController.activeTab}" > immediate=3D"true"> > > > > > > {code} > Or at least, give us a clear error message as we did for tabPanel and the= form tag. > Thank you. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9103386552706704395==-- From jira-events at lists.jboss.org Thu Mar 22 03:56:47 2012 Content-Type: multipart/mixed; boundary="===============3481191839079742252==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11469) autocomplete method does not resolve bean if ui:included Date: Thu, 22 Mar 2012 03:56:47 -0400 Message-ID: <2062245278.24381.1332403007810.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1637048952.14156.1318020615972.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3481191839079742252== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11469?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-11469: -------------------------------------- Forum Reference: https://community.jboss.org/message/593359#593359, htt= p://community.jboss.org/thread/169729?tstart=3D0 (was: http://community.jb= oss.org/thread/169729?tstart=3D0) = > autocomplete method does not resolve bean if ui:included > -------------------------------------------------------- > > Key: RF-11469 > URL: https://issues.jboss.org/browse/RF-11469 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: u j > Fix For: 4.3-Tracking > > > A bean parameter in the autocomplete method is not resolved if the rich:a= utocomplete is part of a ui:include. > {code} > > > > {code} > searchlocation.xhtml contains: > {code} > > {code} > The value binding works, but the binding in the autocompleteMethod gives: > {code} > 15:26:15,809 SEVERE [org.richfaces.log.Renderkit] (ajp-127.0.0.1-127.0.0.= 1-8009-1) Target Unreachable, identifier 'bean' resolved to null: javax.el.= PropertyNotFoundException: Target Unreachable, identifier 'bean' resolved t= o null > at org.apache.el.parser.AstValue.getTarget(AstValue.java:75) [jbosswe= b-7.0.1.Final.jar:7.0.1.Final] > at org.apache.el.parser.AstValue.invoke(AstValue.java:183) [jbossweb-= 7.0.1.Final.jar:7.0.1.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.jav= a:276) [jbossweb-7.0.1.Final.jar:7.0.1.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(Forwardin= gMethodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression= .java:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.richfaces.renderkit.AutocompleteRendererBase.getItems(Autocomp= leteRendererBase.java:105) [richfaces-components-ui-4.0.0-20110322.220419-2= 43.jar:] > at org.richfaces.renderkit.AutocompleteRendererBase.encodeItems(Autoc= ompleteRendererBase.java:160) [richfaces-components-ui-4.0.0-20110322.22041= 9-243.jar:] > at org.richfaces.renderkit.AutocompleteRendererBase.encodeMetaCompone= nt(AutocompleteRendererBase.java:271) [richfaces-components-ui-4.0.0-201103= 22.220419-243.jar:] > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3481191839079742252==-- From jira-events at lists.jboss.org Thu Mar 22 04:12:49 2012 Content-Type: multipart/mixed; boundary="===============8400781339237324745==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11995) autocomplete only displaying select popup on minChars + 1 Date: Thu, 22 Mar 2012 04:12:49 -0400 Message-ID: <2065727938.24415.1332403969075.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1491446387.30098.1329818436170.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8400781339237324745== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11995?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11995: ---------------------------------- Assignee: Juraj Huska (was: Pavol Pitonak) = > autocomplete only displaying select popup on minChars + 1 > --------------------------------------------------------- > > Key: RF-11995 > URL: https://issues.jboss.org/browse/RF-11995 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Glassfish 3.1.1 / Mojarra 2.1.7 / Chrome browser > Reporter: Brendan Healey > Assignee: Juraj Huska > > I'm running the following test with org.richfaces.resourceOptimization.en= abled > set to true. > After typing the minChars number of characters (2), I see an ajax request= being > sent to the server and a response is successfully returned (observed usin= g chrome > developer tools), but the popup selection list does not appear until minC= hars + 1 > (3) characters are entered. > Typing the third character causes a get request for combo_list_shadow.png= to be > sent. > {code} > mode=3D"cachedAjax" > var=3D"var" > fetchValue=3D"#{var.name}" > minChars=3D"2" > autocompleteMethod=3D"#{bean.doSearch}"> > > > > > {code} > w > I've only just migrated to rich:autocomplete from a self-developed custom= component > so I don't know if this behavior existed in any richfaces version prior t= o 4.2.0.CR1. > I tried this on the showcase example here: > http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dautoc= omplete&skin=3DblueSky > (in the first autocomplete on the page) and could not reproduce the behav= ior. > I tried using mode=3D"ajax" and mode=3D"client" and could not get the pop= up to show in > either case, although I'd only ever want to use cachedAjax mode normally. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8400781339237324745==-- From jira-events at lists.jboss.org Thu Mar 22 04:55:47 2012 Content-Type: multipart/mixed; boundary="===============0849851125211896569==" MIME-Version: 1.0 From: Vladimir Rom (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12077) Selection in extendedDataTable doesn't work in Chrome Date: Thu, 22 Mar 2012 04:55:47 -0400 Message-ID: <2021407965.24539.1332406547698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0849851125211896569== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Vladimir Rom created RF-12077: --------------------------------- Summary: Selection in extendedDataTable doesn't work in Chrome Key: RF-12077 URL: https://issues.jboss.org/browse/RF-12077 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.2.0.Final Environment: Windows XP. JBoss AS 7 Chrome 17.0.963.83 Reporter: Vladimir Rom Priority: Blocker JavaScript error in console on rendered page with = Uncaught TypeError: Cannot read property 'length' of null richfaces.utils.getCSSRule extendedDataTable.js.jsf:40 richfaces.ui.ExtendedDataTable.richfaces.BaseComponent.extendClass.initiali= ze extendedDataTable.js.jsf:362 jQuery.extend.proxy.proxyjquery.js.jsf:814 jQuery.Callbacks.firejquery.js.jsf:1046 jQuery.Callbacks.self.fireWithjquery.js.jsf:1164 jQuery.extend.readyjquery.js.jsf:435 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0849851125211896569==-- From jira-events at lists.jboss.org Thu Mar 22 05:19:48 2012 Content-Type: multipart/mixed; boundary="===============6510759871091236353==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11645) Mobile Showcase and rich:orderingList - selecting an item doesn't enable the moving buttons Date: Thu, 22 Mar 2012 05:19:48 -0400 Message-ID: <816422779.24698.1332407988194.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1473358329.50052.1320248685965.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6510759871091236353== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11645?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek resolved RF-11645. ------------------------------- Resolution: Cannot Reproduce Bug = > Mobile Showcase and rich:orderingList - selecting an item doesn't enable = the moving buttons > -------------------------------------------------------------------------= ------------------ > > Key: RF-11645 > URL: https://issues.jboss.org/browse/RF-11645 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects, mobile, showcase > Affects Versions: 4.1.0.Milestone4, 4.2.0.CR1 > Environment: iPad 4.3.3 (8J3) > iPhone 4.2.1 (8C148) = > JBoss AS 7.1.0.CR1b > Reporter: Jan Papousek > Assignee: Jan Papousek > Attachments: ipad-orderingList.png, iPhone-orderingList.png, ipho= ne-orderingList.png, Screen Shot 2011-11-21 at 10.27.21 PM.PNG, Screen Shot= 2011-11-21 at 10.27.35 PM.PNG > > > After selecting an item from ordering list, the moving buttons next to th= e list should be enabled. This doesn't work on iPhone and iPad. > It works on Android. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6510759871091236353==-- From jira-events at lists.jboss.org Thu Mar 22 05:37:48 2012 Content-Type: multipart/mixed; boundary="===============3998909805379404452==" MIME-Version: 1.0 From: Peter Chuang (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-7955) ExtendedDataTable : Only first column correctly resize Date: Thu, 22 Mar 2012 05:37:48 -0400 Message-ID: <700535752.24777.1332409068153.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 482767548.1254848329252.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============3998909805379404452== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7955?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678566#comm= ent-12678566 ] = Peter Chuang commented on RF-7955: ---------------------------------- Hi Ilya, Looks like this is still a problem with FF 11 and 12 even with the recommen= ded DocType declaration. In fact, Exadel's LiveDemo site shows the problem= . = Much appreciated! = > ExtendedDataTable : Only first column correctly resize > ------------------------------------------------------ > > Key: RF-7955 > URL: https://issues.jboss.org/browse/RF-7955 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.2.CR1, 3.3.2.GA > Environment: JSF RI 1.2_13 > Facelets 1.1.14 (with .jspx files) > Glassfish > Jdk 1.6 > Reporter: Nicolas Gaudin > Assignee: Pavel Yaschenko > Labels: EDT, columns, extendedDataTable > Fix For: 3.3.2.GA > > Attachments: EDT columns resizing issue.jpg > > > Hi, > During my test to deliver, I discovered that the columns of all my EDTs w= ould not resize correctly. > More precisely, the first column resizes without any problem but the othe= rs resize WITHOUT resizing the header. > I must mention that my EDT use value binding for dynamic column creation. > My actions that generated this issue: > - moved from jsp to facelets (with jspx extension) > - upgraded to JSF 1.2_13 > This affected 3.3.2.CR1, the version I was using. > I then upgraded to 3.3.2.GA to check if this would fix but no luck > Also, I thought that 3.3.2.GA would full scrolling support for EDT (hori= zontal mainly) > Is that the case? = > Could you please confirm? > May thanks in advance -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3998909805379404452==-- From jira-events at lists.jboss.org Thu Mar 22 06:05:47 2012 Content-Type: multipart/mixed; boundary="===============3982664419287768842==" MIME-Version: 1.0 From: Brendan Healey (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12063) rich:notifyMessages not displaying error from valueChangeListener Date: Thu, 22 Mar 2012 06:05:47 -0400 Message-ID: <477883507.24801.1332410747476.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 71281469.18246.1332180647276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3982664419287768842== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12063?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678570#com= ment-12678570 ] = Brendan Healey commented on RF-12063: ------------------------------------- Clicking into and out of the input should cause the value change listener t= o fire, however no message appears on the screen. Simply adding a commandButton, an= d copying the message generation code from the value change listener into an action= =3D method and clicking the button will cause a notifyMessage to appear on screen. Bean.java --------- @Named @ViewScoped public class Bean implements Serializable { public void testVcl(ValueChangeEvent event) { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); } public String testAction() { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); } public static FacesMessage getFacesMessage(String msgKey) { FacesMessage message =3D Messages.getMessage("messages", msgKey, null); return message; } Messages.java ------------- package uk.co.myproj.test; /** * * @author Brendan Healey * copied from Core JSF Geary/Horstmann p249 */ import java.text.MessageFormat; import java.util.Locale; import java.util.MissingResourceException; import java.util.ResourceBundle; import javax.faces.application.Application; import javax.faces.application.FacesMessage; import javax.faces.component.UIViewRoot; import javax.faces.context.FacesContext; public class Messages { public static FacesMessage getMessage(String bundleName, String resourc= eId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); String summary =3D getString(appBundle, bundleName, resourceId, locale, loader, params); if (summary =3D=3D null) { summary =3D "???" + resourceId + "???"; } String detail =3D getString(appBundle, bundleName, resourceId + "_d= etail", locale, loader, params); return new FacesMessage(summary, detail); } public static String getString(String bundle, String resourceId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); return getString(appBundle, bundle, resourceId, locale, loader, par= ams); } public static String getString(String bundle1, String bundle2, String resourceId, Locale locale, ClassLoader loader, Object[] params) { String resource =3D null; ResourceBundle bundle; if (bundle1 !=3D null) { bundle =3D ResourceBundle.getBundle(bundle1, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { bundle =3D ResourceBundle.getBundle(bundle2, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { return null; // no match } if (params =3D=3D null) { return resource; } MessageFormat formatter =3D new MessageFormat(resource, locale); return formatter.format(params); } public static Locale getLocale(FacesContext context) { Locale locale =3D null; UIViewRoot viewRoot =3D context.getViewRoot(); if (viewRoot !=3D null) { locale =3D viewRoot.getLocale(); } if (locale =3D=3D null) { locale =3D Locale.getDefault(); } return locale; } public static ClassLoader getClassLoader() { ClassLoader loader =3D Thread.currentThread().getContextClassLoader= (); if (loader =3D=3D null) { loader =3D ClassLoader.getSystemClassLoader(); } return loader; } } = > rich:notifyMessages not displaying error from valueChangeListener > ----------------------------------------------------------------- > > Key: RF-12063 > URL: https://issues.jboss.org/browse/RF-12063 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.2.0.Final > Environment: Mojarra 2.1.7, RF 4.2.0.Final, Windows 7, Glassfish = 3.1.2, Chrome browser. > Reporter: Brendan Healey > Labels: waiting_on_user > > I have a global notifyMessages in a template . > I log a global error in the usual way from a value change listener (proce= ss validations > phase): > FacesMessage message =3D getFacesMessage(errKey); > message.setSeverity(FacesMessage.SEVERITY_ERROR); > FacesContext.getCurrentInstance().addMessage(null, message); > but the error never appears. If I have an h:messages on the page which is= ajax > rendered the message appears ok. > Regards, > Brendan. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3982664419287768842==-- From jira-events at lists.jboss.org Thu Mar 22 06:19:48 2012 Content-Type: multipart/mixed; boundary="===============7687829868209965823==" MIME-Version: 1.0 From: roel croonenberghs (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-9345) Richfaces HTTP Header Cache-Control settings, need 'public' Date: Thu, 22 Mar 2012 06:19:48 -0400 Message-ID: <1990204311.24871.1332411588656.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1197045230.163.1284232939713.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7687829868209965823== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9345?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678574#comm= ent-12678574 ] = roel croonenberghs commented on RF-9345: ---------------------------------------- any news on when this will be fixed? = > Richfaces HTTP Header Cache-Control settings, need 'public' > ----------------------------------------------------------- > > Key: RF-9345 > URL: https://issues.jboss.org/browse/RF-9345 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: optimization > Affects Versions: 3.3.1, 3.3.2.CR1, 3.3.2.GA, 3.3.2.SR1, 3.3.3.BETA1, = 3.3.3.CR1, 3.3.3.Final > Environment: This issue affect any web browser according to w3c s= pecification > Reporter: igor regis > Assignee: Nick Belaevski > Fix For: 4.Future > > Attachments: RF-9345.patch > > > If an application is running over https the web browser will only cache o= n disk, the Richfaces resources, if and only if, the Cache-control header (= present on http header) has the value "public" on it. Otherwise the web bro= wser will perform in memory cache, so when user restarts the browser the ap= plication will need to request all the resources again. > For applications running on corporative network, manipulating sensitive i= nformation, it's mandatory the use of a secure connection through https pro= tocol, and form better performance is necessary for Richfaces to provide it= 's resources with this "public" mark on cache-control tag. > According the w3c specs (http://www.w3.org/Protocols/rfc2616/rfc2616-sec1= 4.html#sec14.9.1) Richfaces resources may be classified as public content w= ith non individual information. > Here (https://community.jboss.org/thread/150732?tstart=3D0) there is a di= scussion about this issue, as well as the point on Richfaces source code th= at need to be changed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7687829868209965823==-- From jira-events at lists.jboss.org Thu Mar 22 06:23:48 2012 Content-Type: multipart/mixed; boundary="===============8373960378564854831==" MIME-Version: 1.0 From: emmanuel dufour (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Thu, 22 Mar 2012 06:23:48 -0400 Message-ID: <908561709.24903.1332411828106.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8373960378564854831== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678577#com= ment-12678577 ] = emmanuel dufour commented on RF-11592: -------------------------------------- This issue is not strictly related to myfaces, I have the same problem usin= g mojarra 2.1.1 on glassfish 3.x and richfaces 4.1 and 4.2 (4.0 is fine but= doesnt have rich:picklist so I cant go back !) {noformat} = SEVERE: Exception parsing multipart request: Request prolog cannot be read org.richfaces.exception.FileUploadException: Exception parsing multipart re= quest: Request prolog cannot be read at org.richfaces.request.MultipartRequestParser.parse(MultipartRequestPars= er.java:156) at org.richfaces.request.MultipartRequest25.parseIfNecessary(MultipartRequ= est25.java:77) at org.richfaces.request.MultipartRequest25.getParameter(MultipartRequest2= 5.java:114) at com.sun.faces.context.RequestParameterMap.get(RequestParameterMap.java:= 75) at com.sun.faces.context.RequestParameterMap.get(RequestParameterMap.java:= 56) at java.util.Collections$UnmodifiableMap.get(Collections.java:1282) at com.sun.faces.application.view.MultiViewHandler.calculateRenderKitId(Mu= ltiViewHandler.java:220) at javax.faces.application.ViewHandlerWrapper.calculateRenderKitId(ViewHan= dlerWrapper.java:155) at com.sun.faces.context.FacesContextImpl.isPostback(FacesContextImpl.java= :211) at javax.faces.context.FacesContextWrapper.isPostback(FacesContextWrapper.= java:402) at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:= 188) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:= 116) at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1= 542) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:343) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:217) at entities.util.SecurityFilter.doFilter(SecurityFilter.java:47) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:256) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:217) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:279) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:175) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.jav= a:655) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:= 595) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:161) at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.jav= a:331) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 231) at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.cal= l(ContainerMapper.java:317) at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMa= pper.java:195) at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849) at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746) at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045) at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilte= r.java:228) at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProto= colChain.java:137) at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:= 104) at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:= 90) at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:7= 9) at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTas= k.java:54) at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.ja= va:59) at com.sun.grizzly.ContextTask.run(ContextTask.java:71) at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPoo= l.java:532) at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.j= ava:513) at java.lang.Thread.run(Thread.java:662) Caused by: java.io.IOException: Request prolog cannot be read at org.richfaces.request.MultipartRequestParser.readProlog(MultipartReques= tParser.java:270) at org.richfaces.request.MultipartRequestParser.initialize(MultipartReques= tParser.java:172) at org.richfaces.request.MultipartRequestParser.parse(MultipartRequestPars= er.java:148) ... 43 more {noformat} = = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip, server.log > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8373960378564854831==-- From jira-events at lists.jboss.org Thu Mar 22 06:27:47 2012 Content-Type: multipart/mixed; boundary="===============5407877547853612263==" MIME-Version: 1.0 From: emmanuel dufour (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Thu, 22 Mar 2012 06:27:47 -0400 Message-ID: <176646360.24930.1332412067570.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5407877547853612263== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678579#com= ment-12678579 ] = emmanuel dufour commented on RF-11592: -------------------------------------- test = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip, server.log > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5407877547853612263==-- From jira-events at lists.jboss.org Thu Mar 22 06:52:47 2012 Content-Type: multipart/mixed; boundary="===============2005945096391859237==" MIME-Version: 1.0 From: emmanuel dufour (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11592) RichFaces 4.1 Milestone changes for fileUpload component incompatible with Apache MyFaces Orchestra conversation scope Date: Thu, 22 Mar 2012 06:52:47 -0400 Message-ID: <1362394958.25022.1332413567696.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1839758620.29810.1319638185453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2005945096391859237== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11592?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678579#com= ment-12678579 ] = emmanuel dufour edited comment on RF-11592 at 3/22/12 6:52 AM: --------------------------------------------------------------- as pointed above, this is a glassfish problem, patch (webcore.jar) and inst= all instruction there : http://java.net/jira/browse/GLASSFISH-18444 = was (Author: emmanueldufour): test = > RichFaces 4.1 Milestone changes for fileUpload component incompatible wit= h Apache MyFaces Orchestra conversation scope > -------------------------------------------------------------------------= --------------------------------------------- > > Key: RF-11592 > URL: https://issues.jboss.org/browse/RF-11592 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1, 4.1.0.Milestone2, 4.1.0.Milestone3 > Environment: Mojarra 2.1.3, JBoss AS 5.0.1, Apache MyFaces Orches= tra 1.4, Spring 3.0.4 > Reporter: Joshua Brookes > Labels: fileUpload, multipart/form-data, orchestra, regressi= on, richfaces, richfaces4 > Fix For: 4.3-Tracking > > Attachments: fileUploadWeb.zip, server.log > > > There is a compatibility issue with recent changes in RichFaces 4.1 Miles= tone 1 and Apache MyFaces Orchestra conversation scope feature. When includ= ing the Orchestra jar in the application the fileUpload component stops wor= king. Orchestra bundles a faces-config.xml that enables 2 FacesContext Fact= ories and multiple PhaseListeners. This did not pose a problem with RichFac= es 4.0.0.Final. > Here is a stacktrace that shows the error: > {code} > Oct 25, 2011 11:45:01 AM org.richfaces.request.MultipartRequest25 parseIf= Necessary > SEVERE: Exception parsing multipart request: Request prolog cannot be read > org.richfaces.exception.FileUploadException: Exception parsing multipart = request: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:156) > at org.richfaces.request.MultipartRequest25.parseIfNecessary(Mu= ltipartRequest25.java:77) > at org.richfaces.request.MultipartRequest25.getParameter(Multip= artRequest25.java:114) > at com.sun.faces.context.RequestParameterMap.containsKey(Reques= tParameterMap.java:99) > at java.util.Collections$UnmodifiableMap.containsKey(Collection= s.java:1280) > at org.apache.myfaces.orchestra.frameworkAdapter.jsf.JsfFramewo= rkAdapter.containsRequestParameterAttribute(JsfFrameworkAdapter.java:105) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.findConversationContextId(ConversationManager.java:169) > at org.apache.myfaces.orchestra.conversation.ConversationManage= r.getCurrentRootConversationContext(ConversationManager.java:580) > at org.apache.myfaces.orchestra.lib.jsf.ContextLockRequestHandl= er.init(ContextLockRequestHandler.java:87) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory$1.(OrchestraFacesContextFactory.java:122) > at org.apache.myfaces.orchestra.lib.jsf.OrchestraFacesContextFa= ctory.getFacesContext(OrchestraFacesContextFactory.java:103) > at org.apache.myfaces.orchestra.requestParameterProvider.jsf.Re= questParameterFacesContextFactory.getFacesContext(RequestParameterFacesCont= extFactory.java:93) > at org.richfaces.context.FileUploadFacesContextFactory.getFaces= Context(FileUploadFacesContextFactory.java:136) > at com.sun.faces.context.InjectionFacesContextFactory.getFacesC= ontext(InjectionFacesContextFactory.java:121) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:58= 3) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFi= lter(ApplicationFilterChain.java:290) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(App= licationFilterChain.java:206) > at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic= ationDispatcher.java:638) > at org.apache.catalina.core.ApplicationDispatcher.processReques= t(ApplicationDispatcher.java:446) > at org.apache.catalina.core.ApplicationDispatcher.doForward(App= licationDispatcher.java:382) > at org.apache.catalina.core.ApplicationDispatcher.forward(Appli= cationDispatcher.java:310) > at org.apache.catalina.core.StandardHostValve.custom(StandardHo= stValve.java:416) > at org.apache.catalina.core.StandardHostValve.status(StandardHo= stValve.java:342) > at org.apache.catalina.core.StandardHostValve.throwable(Standar= dHostValve.java:286) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHo= stValve.java:141) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo= rtValve.java:102) > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invok= e(CachedConnectionValve.java:158) > at org.apache.catalina.core.StandardEngineValve.invoke(Standard= EngineValve.java:109) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAd= apter.java:330) > at org.apache.coyote.http11.Http11Processor.process(Http11Proce= ssor.java:829) > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHand= ler.process(Http11Protocol.java:598) > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoin= t.java:447) > at java.lang.Thread.run(Thread.java:619) > Caused by: java.io.IOException: Request prolog cannot be read > at org.richfaces.request.MultipartRequestParser.readProlog(Mult= ipartRequestParser.java:270) > at org.richfaces.request.MultipartRequestParser.initialize(Mult= ipartRequestParser.java:172) > at org.richfaces.request.MultipartRequestParser.parse(Multipart= RequestParser.java:148) > ... 32 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2005945096391859237==-- From jira-events at lists.jboss.org Thu Mar 22 07:25:47 2012 Content-Type: multipart/mixed; boundary="===============5383700609294585711==" MIME-Version: 1.0 From: Brendan Healey (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12063) rich:notifyMessages not displaying error from valueChangeListener Date: Thu, 22 Mar 2012 07:25:47 -0400 Message-ID: <695269179.25122.1332415547433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 71281469.18246.1332180647276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5383700609294585711== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12063?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678570#com= ment-12678570 ] = Brendan Healey edited comment on RF-12063 at 3/22/12 7:24 AM: -------------------------------------------------------------- Clicking into and out of the input should cause the value change listener t= o fire, however no message appears on the screen. Simply adding a commandButton, an= d copying the message generation code from the value change listener into an action= =3D method and clicking the button will cause a notifyMessage to appear on screen. Bean.java --------- @Named @ViewScoped public class Bean implements Serializable { public void testVcl(ValueChangeEvent event) { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); } public String testAction() { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); return null; } public static FacesMessage getFacesMessage(String msgKey) { FacesMessage message =3D Messages.getMessage("messages", msgKey, null); return message; } Messages.java ------------- package uk.co.myproj.test; /** * * @author Brendan Healey * copied from Core JSF Geary/Horstmann p249 */ import java.text.MessageFormat; import java.util.Locale; import java.util.MissingResourceException; import java.util.ResourceBundle; import javax.faces.application.Application; import javax.faces.application.FacesMessage; import javax.faces.component.UIViewRoot; import javax.faces.context.FacesContext; public class Messages { public static FacesMessage getMessage(String bundleName, String resourc= eId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); String summary =3D getString(appBundle, bundleName, resourceId, locale, loader, params); if (summary =3D=3D null) { summary =3D "???" + resourceId + "???"; } String detail =3D getString(appBundle, bundleName, resourceId + "_d= etail", locale, loader, params); return new FacesMessage(summary, detail); } public static String getString(String bundle, String resourceId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); return getString(appBundle, bundle, resourceId, locale, loader, par= ams); } public static String getString(String bundle1, String bundle2, String resourceId, Locale locale, ClassLoader loader, Object[] params) { String resource =3D null; ResourceBundle bundle; if (bundle1 !=3D null) { bundle =3D ResourceBundle.getBundle(bundle1, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { bundle =3D ResourceBundle.getBundle(bundle2, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { return null; // no match } if (params =3D=3D null) { return resource; } MessageFormat formatter =3D new MessageFormat(resource, locale); return formatter.format(params); } public static Locale getLocale(FacesContext context) { Locale locale =3D null; UIViewRoot viewRoot =3D context.getViewRoot(); if (viewRoot !=3D null) { locale =3D viewRoot.getLocale(); } if (locale =3D=3D null) { locale =3D Locale.getDefault(); } return locale; } public static ClassLoader getClassLoader() { ClassLoader loader =3D Thread.currentThread().getContextClassLoader= (); if (loader =3D=3D null) { loader =3D ClassLoader.getSystemClassLoader(); } return loader; } } = was (Author: healeyb): Clicking into and out of the input should cause the value change listen= er to fire, however no message appears on the screen. Simply adding a commandButton, an= d copying the message generation code from the value change listener into an action= =3D method and clicking the button will cause a notifyMessage to appear on screen. Bean.java --------- @Named @ViewScoped public class Bean implements Serializable { public void testVcl(ValueChangeEvent event) { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); } public String testAction() { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); } public static FacesMessage getFacesMessage(String msgKey) { FacesMessage message =3D Messages.getMessage("messages", msgKey, null); return message; } Messages.java ------------- package uk.co.myproj.test; /** * * @author Brendan Healey * copied from Core JSF Geary/Horstmann p249 */ import java.text.MessageFormat; import java.util.Locale; import java.util.MissingResourceException; import java.util.ResourceBundle; import javax.faces.application.Application; import javax.faces.application.FacesMessage; import javax.faces.component.UIViewRoot; import javax.faces.context.FacesContext; public class Messages { public static FacesMessage getMessage(String bundleName, String resourc= eId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); String summary =3D getString(appBundle, bundleName, resourceId, locale, loader, params); if (summary =3D=3D null) { summary =3D "???" + resourceId + "???"; } String detail =3D getString(appBundle, bundleName, resourceId + "_d= etail", locale, loader, params); return new FacesMessage(summary, detail); } public static String getString(String bundle, String resourceId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); return getString(appBundle, bundle, resourceId, locale, loader, par= ams); } public static String getString(String bundle1, String bundle2, String resourceId, Locale locale, ClassLoader loader, Object[] params) { String resource =3D null; ResourceBundle bundle; if (bundle1 !=3D null) { bundle =3D ResourceBundle.getBundle(bundle1, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { bundle =3D ResourceBundle.getBundle(bundle2, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { return null; // no match } if (params =3D=3D null) { return resource; } MessageFormat formatter =3D new MessageFormat(resource, locale); return formatter.format(params); } public static Locale getLocale(FacesContext context) { Locale locale =3D null; UIViewRoot viewRoot =3D context.getViewRoot(); if (viewRoot !=3D null) { locale =3D viewRoot.getLocale(); } if (locale =3D=3D null) { locale =3D Locale.getDefault(); } return locale; } public static ClassLoader getClassLoader() { ClassLoader loader =3D Thread.currentThread().getContextClassLoader= (); if (loader =3D=3D null) { loader =3D ClassLoader.getSystemClassLoader(); } return loader; } } = > rich:notifyMessages not displaying error from valueChangeListener > ----------------------------------------------------------------- > > Key: RF-12063 > URL: https://issues.jboss.org/browse/RF-12063 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.2.0.Final > Environment: Mojarra 2.1.7, RF 4.2.0.Final, Windows 7, Glassfish = 3.1.2, Chrome browser. > Reporter: Brendan Healey > Labels: waiting_on_user > > I have a global notifyMessages in a template . > I log a global error in the usual way from a value change listener (proce= ss validations > phase): > FacesMessage message =3D getFacesMessage(errKey); > message.setSeverity(FacesMessage.SEVERITY_ERROR); > FacesContext.getCurrentInstance().addMessage(null, message); > but the error never appears. If I have an h:messages on the page which is= ajax > rendered the message appears ok. > Regards, > Brendan. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5383700609294585711==-- From jira-events at lists.jboss.org Thu Mar 22 08:10:47 2012 Content-Type: multipart/mixed; boundary="===============2655069115573262663==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Thu, 22 Mar 2012 08:10:47 -0400 Message-ID: <975804099.25246.1332418247825.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2655069115573262663== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678625#com= ment-12678625 ] = Jean ANDRE commented on RF-12038: --------------------------------- Is it possible to add a check for null (NPE) before calling if(!element.nam= e) to see if the case can be resolved like this? - Could you please try it?= . See the screen shot above this comment:(ScreenShot_RF-12038.png) - Thank = you very much. = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2655069115573262663==-- From jira-events at lists.jboss.org Thu Mar 22 08:12:48 2012 Content-Type: multipart/mixed; boundary="===============1990591015052162660==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12060) element is null message when closing tab from an event click Date: Thu, 22 Mar 2012 08:12:48 -0400 Message-ID: <877413323.25249.1332418368117.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1849991598.17427.1332167088202.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1990591015052162660== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12060?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678626#com= ment-12678626 ] = Jean ANDRE commented on RF-12060: --------------------------------- Hello Brian, Based on RF-12038, is it possible to add a check for null (NPE) before call= ing if(!element.name) to see if the case can be resolved like this? - Could= you please try it?. Thank you very much and let me know your decision. = > element is null message when closing tab from an event click > ------------------------------------------------------------ > > Key: RF-12060 > URL: https://issues.jboss.org/browse/RF-12060 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: Websphere 8.0.0.2 - RAD 8 - JSF Mojorra 2.1.6 - Spri= ng 3.0.6 Final - Firefox 10.0.2 - Windows 7 (6.1 sp1) - AspectJ 1.6.12 / AJ= DT - RichFaces 4.2.0 Final - Hibernate Validator 4.2.0 Final = > Reporter: Jean ANDRE > Fix For: 4.Future > > Attachments: NestedWeb_RF-12060.zip > > > There is a link to RF-11950. > We got the message "element is null" when we send a click event for closi= ng a tab. To retrieve the id of the close button (an image), we use the fun= ction getElementById (because of RF-11950). The click function calls a java= script function declared by a4j:jsFunction (see index.hxtml file - close ta= sk). > This is the only information we have from firebug. When we close the tab = directly by clicking on the close button/image, it works perfectly. > *Note :* Moreover, there is also a strange behavior related to generated = id on close button/image. When we specified a fix id on the h:graphicImage,= the first id is correct but there is no id on other close button/image fro= m other tabs!???. Having a fix id should trigger a duplicate ID but as the = ids are not generated on other tabs, it does not. > {code} > >   title=3D"#{msg[task.uiActivity.headerKey]}" /> >   styleClass=3D"closeButton" > onclick=3D"closeTask('#{task.id}');event.stopPropaga= tion();" /> > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1990591015052162660==-- From jira-events at lists.jboss.org Thu Mar 22 08:55:47 2012 Content-Type: multipart/mixed; boundary="===============1733920802821565350==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12078) action fired twice, when invoked by a a4j:commandButton residing in a tables' footer facet Date: Thu, 22 Mar 2012 08:55:47 -0400 Message-ID: <729908046.25329.1332420947280.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1733920802821565350== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Markus Staab created RF-12078: --------------------------------- Summary: action fired twice, when invoked by a a4j:commandButt= on residing in a tables' footer facet Key: RF-12078 URL: https://issues.jboss.org/browse/RF-12078 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 3.3.3.Final Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2, Richfaces 3.3.3 Reporter: Markus Staab when adding a a4j:commandButton inside a rich:databables footer-facet, the = corresponding action will be invoked twice while the process action phase. The problem only occurs, when the commandButton 'process'es the datatable i= tself. {code} A HEADER SOME CONTENT IN THE ROW {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1733920802821565350==-- From jira-events at lists.jboss.org Thu Mar 22 09:25:48 2012 Content-Type: multipart/mixed; boundary="===============0093153617208644144==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12078) action fired twice, when invoked by a a4j:commandButton residing in a tables' footer facet Date: Thu, 22 Mar 2012 09:25:47 -0400 Message-ID: <2002649167.25463.1332422747978.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 729908046.25329.1332420947280.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0093153617208644144== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12078?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678644#com= ment-12678644 ] = Markus Staab commented on RF-12078: ----------------------------------- the problem does not exist when the button resides in columns outside of th= e footer-facet. = > action fired twice, when invoked by a a4j:commandButton residing in a tab= les' footer facet > -------------------------------------------------------------------------= ----------------- > > Key: RF-12078 > URL: https://issues.jboss.org/browse/RF-12078 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2, Richfaces 3.3.3 > Reporter: Markus Staab > > when adding a a4j:commandButton inside a rich:databables footer-facet, th= e corresponding action will be invoked twice while the process action phase. > The problem only occurs, when the commandButton 'process'es the datatable= itself. > {code} > > > A HEADER > SOME CONTENT IN THE ROW > > > > > value=3D"ADD ANOTHER ROW" > reRender=3D"myTable" > action=3D"#{form.addNewRow}" ajaxSingle=3D"true" > process=3D"myTable" > /> > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0093153617208644144==-- From jira-events at lists.jboss.org Thu Mar 22 10:07:49 2012 Content-Type: multipart/mixed; boundary="===============3271191871162379227==" MIME-Version: 1.0 From: Wesley Menezes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12079) ignores Date: Thu, 22 Mar 2012 10:07:47 -0400 Message-ID: <2129957963.25561.1332425267314.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3271191871162379227== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Wesley Menezes created RF-12079: ----------------------------------- Summary: ignores Key: RF-12079 URL: https://issues.jboss.org/browse/RF-12079 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tree Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.0 and JSF 2.2 with CDI (Bean type "java= x.inject.Named") Application Server GlassFish Server Open Source Edition 3.1.2 (build 23) Reporter: Wesley Menezes In JSF with a and this have nested, if is applied in , the ajax listener isn't called. Obs. In RichFaces 4.2.0 Final showcase, the has the attribute "= selectionChangeListener", but I found only "treeSelectionChangeListener" in= jars of RichFaces (like attribute of the tag, or like a tag <= rich:treeSelectionChangeListener>) - "Component_Reference.pdf" is ok. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3271191871162379227==-- From jira-events at lists.jboss.org Thu Mar 22 13:11:54 2012 Content-Type: multipart/mixed; boundary="===============5294703777931085375==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11995) autocomplete only displaying select popup on minChars + 1 Date: Thu, 22 Mar 2012 13:11:54 -0400 Message-ID: <1496597023.26561.1332436314161.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1491446387.30098.1329818436170.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5294703777931085375== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11995?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678740#com= ment-12678740 ] = Juraj Huska commented on RF-11995: ---------------------------------- I was not able to reproduce the error, I tried all the mentioned settings a= nd it is behaving fine. = So the settings I tried it on: - Chrome 17 - Glassfish 3.1.1 with Mojarra 2.1.7 - also on JBoss AS 7.1.1.Final and Firefox - both with resource optimization and without I tried it on [this|https://github.com/jhuska/richfaces-sanbox/tree/RF-1199= 5] example. = > autocomplete only displaying select popup on minChars + 1 > --------------------------------------------------------- > > Key: RF-11995 > URL: https://issues.jboss.org/browse/RF-11995 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Glassfish 3.1.1 / Mojarra 2.1.7 / Chrome browser > Reporter: Brendan Healey > Assignee: Juraj Huska > > I'm running the following test with org.richfaces.resourceOptimization.en= abled > set to true. > After typing the minChars number of characters (2), I see an ajax request= being > sent to the server and a response is successfully returned (observed usin= g chrome > developer tools), but the popup selection list does not appear until minC= hars + 1 > (3) characters are entered. > Typing the third character causes a get request for combo_list_shadow.png= to be > sent. > {code} > mode=3D"cachedAjax" > var=3D"var" > fetchValue=3D"#{var.name}" > minChars=3D"2" > autocompleteMethod=3D"#{bean.doSearch}"> > > > > > {code} > w > I've only just migrated to rich:autocomplete from a self-developed custom= component > so I don't know if this behavior existed in any richfaces version prior t= o 4.2.0.CR1. > I tried this on the showcase example here: > http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dautoc= omplete&skin=3DblueSky > (in the first autocomplete on the page) and could not reproduce the behav= ior. > I tried using mode=3D"ajax" and mode=3D"client" and could not get the pop= up to show in > either case, although I'd only ever want to use cachedAjax mode normally. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5294703777931085375==-- From jira-events at lists.jboss.org Thu Mar 22 13:14:04 2012 Content-Type: multipart/mixed; boundary="===============3529064562135462335==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11995) autocomplete only displaying select popup on minChars + 1 Date: Thu, 22 Mar 2012 13:13:48 -0400 Message-ID: <442739532.26583.1332436428407.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1491446387.30098.1329818436170.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3529064562135462335== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11995?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska reassigned RF-11995: -------------------------------- Assignee: (was: Juraj Huska) = > autocomplete only displaying select popup on minChars + 1 > --------------------------------------------------------- > > Key: RF-11995 > URL: https://issues.jboss.org/browse/RF-11995 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Glassfish 3.1.1 / Mojarra 2.1.7 / Chrome browser > Reporter: Brendan Healey > > I'm running the following test with org.richfaces.resourceOptimization.en= abled > set to true. > After typing the minChars number of characters (2), I see an ajax request= being > sent to the server and a response is successfully returned (observed usin= g chrome > developer tools), but the popup selection list does not appear until minC= hars + 1 > (3) characters are entered. > Typing the third character causes a get request for combo_list_shadow.png= to be > sent. > {code} > mode=3D"cachedAjax" > var=3D"var" > fetchValue=3D"#{var.name}" > minChars=3D"2" > autocompleteMethod=3D"#{bean.doSearch}"> > > > > > {code} > w > I've only just migrated to rich:autocomplete from a self-developed custom= component > so I don't know if this behavior existed in any richfaces version prior t= o 4.2.0.CR1. > I tried this on the showcase example here: > http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dautoc= omplete&skin=3DblueSky > (in the first autocomplete on the page) and could not reproduce the behav= ior. > I tried using mode=3D"ajax" and mode=3D"client" and could not get the pop= up to show in > either case, although I'd only ever want to use cachedAjax mode normally. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3529064562135462335==-- From jira-events at lists.jboss.org Thu Mar 22 13:54:49 2012 Content-Type: multipart/mixed; boundary="===============5843847102025243091==" MIME-Version: 1.0 From: Wesley Menezes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12079) ignores Date: Thu, 22 Mar 2012 13:54:47 -0400 Message-ID: <2124930821.26684.1332438887423.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2129957963.25561.1332425267314.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5843847102025243091== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12079?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Wesley Menezes updated RF-12079: -------------------------------- Description: = In JSF with a and this have nested, if is applied in , the ajax listener isn't called. But, if applied to (under) , the ajax event fires met= hod listener call. XHTML (snippet) = = = = BEAN (snippet) /*imports...*/ @Named @SessionScoped public class CadCustomerBean implements Serializable { public void processTreeSelectionChange (MyClass myObject) { = System.out.println(myObject); } } Obs. In RichFaces 4.2.0 Final showcase, the has the attribute "= selectionChangeListener", but I found only "treeSelectionChangeListener" in= jars of RichFaces (like attribute of the tag, or like a tag <= rich:treeSelectionChangeListener>). The "Component_Reference.pdf" is ok. was: In JSF with a and this have nested, if is applied in , the ajax listener isn't called. Obs. In RichFaces 4.2.0 Final showcase, the has the attribute "= selectionChangeListener", but I found only "treeSelectionChangeListener" in= jars of RichFaces (like attribute of the tag, or like a tag <= rich:treeSelectionChangeListener>) - "Component_Reference.pdf" is ok. Forum Reference: https://community.jboss.org/message/725244?tstart=3D0 = (was: https://community.jboss.org/message/725244?tstart=3D0) = > ignores > ---------------------------------- > > Key: RF-12079 > URL: https://issues.jboss.org/browse/RF-12079 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.0 and JSF 2.2 with CDI (Bean type "jav= ax.inject.Named") > Application Server GlassFish Server Open Source Edition 3.1.2 (build 23) > Reporter: Wesley Menezes > > In JSF with a and this have nested, if is applied in , the ajax listener isn't called. > But, if applied to (under) , the ajax event fires m= ethod listener call. > XHTML (snippet) > id=3D"memoriaTree" = > value=3D"#{cadCustomerBean.rootNodes}" > toggleType=3D"client" > var=3D"node" > nodeType=3D"#{node.data.type}" > > > = > id=3D"memoriaRoot" > type=3D"customer" > iconLeaf=3D"../images/fichario.gi= f" > data=3D"#{node.data.id}"> > = > > = > immediate=3D"true" > execute=3D"@this" = > event=3D"mousedown" > listener=3D"#{cadCustomerBean.pr= ocessTreeSelectionChange(node.data)}"/> > > = > > BEAN (snippet) > /*imports...*/ > @Named > @SessionScoped > public class CadCustomerBean implements Serializable { > public void processTreeSelectionChange (MyClass myObject) { > = > System.out.println(myObject); > } > } > Obs. In RichFaces 4.2.0 Final showcase, the has the attribute= "selectionChangeListener", but I found only "treeSelectionChangeListener" = in jars of RichFaces (like attribute of the tag, or like a tag = ). The "Component_Reference.pdf" is ok. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5843847102025243091==-- From jira-events at lists.jboss.org Thu Mar 22 14:07:47 2012 Content-Type: multipart/mixed; boundary="===============1121399648145611271==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Thu, 22 Mar 2012 14:07:47 -0400 Message-ID: <1979042059.26719.1332439667453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1121399648145611271== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678761#com= ment-12678761 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11833: --------------------------------- We have discussed this issue on the team meeting [1] and decided to file sp= ec issue. [1] https://community.jboss.org/wiki/RichFacesTeamMeetingAgenda2012-03-20 = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1121399648145611271==-- From jira-events at lists.jboss.org Thu Mar 22 15:14:47 2012 Content-Type: multipart/mixed; boundary="===============8353941675223765804==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12078) action fired twice, when invoked by a a4j:commandButton residing in a tables' footer facet Date: Thu, 22 Mar 2012 15:14:47 -0400 Message-ID: <555701402.26824.1332443687632.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 729908046.25329.1332420947280.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8353941675223765804== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12078?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12078: ------------------------------- Fix Version/s: 4.Future = > action fired twice, when invoked by a a4j:commandButton residing in a tab= les' footer facet > -------------------------------------------------------------------------= ----------------- > > Key: RF-12078 > URL: https://issues.jboss.org/browse/RF-12078 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2, Richfaces 3.3.3 > Reporter: Markus Staab > Fix For: 4.Future > > > when adding a a4j:commandButton inside a rich:databables footer-facet, th= e corresponding action will be invoked twice while the process action phase. > The problem only occurs, when the commandButton 'process'es the datatable= itself. > {code} > > > A HEADER > SOME CONTENT IN THE ROW > > > > > value=3D"ADD ANOTHER ROW" > reRender=3D"myTable" > action=3D"#{form.addNewRow}" ajaxSingle=3D"true" > process=3D"myTable" > /> > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8353941675223765804==-- From jira-events at lists.jboss.org Thu Mar 22 15:16:48 2012 Content-Type: multipart/mixed; boundary="===============7295551819487041393==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11995) autocomplete only displaying select popup on minChars + 1 Date: Thu, 22 Mar 2012 15:16:47 -0400 Message-ID: <324215520.26838.1332443807914.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1491446387.30098.1329818436170.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7295551819487041393== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11995?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11995. -------------------------------- Resolution: Cannot Reproduce Bug Feel free to re-open this issue with an example demonstrating the behavior.= = For tips on writing an effective sample, see: https://community.jboss.org/w= iki/SubmittingEffectiveIssueReports = > autocomplete only displaying select popup on minChars + 1 > --------------------------------------------------------- > > Key: RF-11995 > URL: https://issues.jboss.org/browse/RF-11995 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Glassfish 3.1.1 / Mojarra 2.1.7 / Chrome browser > Reporter: Brendan Healey > > I'm running the following test with org.richfaces.resourceOptimization.en= abled > set to true. > After typing the minChars number of characters (2), I see an ajax request= being > sent to the server and a response is successfully returned (observed usin= g chrome > developer tools), but the popup selection list does not appear until minC= hars + 1 > (3) characters are entered. > Typing the third character causes a get request for combo_list_shadow.png= to be > sent. > {code} > mode=3D"cachedAjax" > var=3D"var" > fetchValue=3D"#{var.name}" > minChars=3D"2" > autocompleteMethod=3D"#{bean.doSearch}"> > > > > > {code} > w > I've only just migrated to rich:autocomplete from a self-developed custom= component > so I don't know if this behavior existed in any richfaces version prior t= o 4.2.0.CR1. > I tried this on the showcase example here: > http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dautoc= omplete&skin=3DblueSky > (in the first autocomplete on the page) and could not reproduce the behav= ior. > I tried using mode=3D"ajax" and mode=3D"client" and could not get the pop= up to show in > either case, although I'd only ever want to use cachedAjax mode normally. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7295551819487041393==-- From jira-events at lists.jboss.org Thu Mar 22 15:20:47 2012 Content-Type: multipart/mixed; boundary="===============7632485827860114680==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12077) Selection in extendedDataTable doesn't work in Chrome Date: Thu, 22 Mar 2012 15:20:47 -0400 Message-ID: <979919896.26852.1332444047579.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2021407965.24539.1332406547698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7632485827860114680== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12077?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678776#com= ment-12678776 ] = Brian Leathem commented on RF-12077: ------------------------------------ This works fine for me with the extendeddatatable selection sample in the s= howcase: http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dextende= dDataTable&sample=3DexTableSelection&skin=3DblueSky Please include a example demonstrating this problem. See: https://community.jboss.org/wiki/SubmittingEffectiveIssueReports = > Selection in extendedDataTable doesn't work in Chrome > ----------------------------------------------------- > > Key: RF-12077 > URL: https://issues.jboss.org/browse/RF-12077 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: Windows XP. JBoss AS 7 Chrome 17.0.963.83 > Reporter: Vladimir Romashov > Priority: Blocker > Labels: waiting_on_user > > JavaScript error in console on rendered page with = > Uncaught TypeError: Cannot read property 'length' of null > richfaces.utils.getCSSRule extendedDataTable.js.jsf:40 > richfaces.ui.ExtendedDataTable.richfaces.BaseComponent.extendClass.initia= lize extendedDataTable.js.jsf:362 > jQuery.extend.proxy.proxyjquery.js.jsf:814 > jQuery.Callbacks.firejquery.js.jsf:1046 > jQuery.Callbacks.self.fireWithjquery.js.jsf:1164 > jQuery.extend.readyjquery.js.jsf:435 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7632485827860114680==-- From jira-events at lists.jboss.org Thu Mar 22 15:22:47 2012 Content-Type: multipart/mixed; boundary="===============2512491522294346780==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12079) ignores Date: Thu, 22 Mar 2012 15:22:47 -0400 Message-ID: <950448524.26855.1332444167460.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2129957963.25561.1332425267314.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2512491522294346780== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12079?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12079: ------------------------------- Description: = In JSF with a and this have nested, if is applied in , the ajax listener isn't called. But, if applied to (under) , the ajax event fires met= hod listener call. {code:title=3DXHTML (snippet)} {code} {code:title=3DBEAN (snippet)} /*imports...*/ @Named @SessionScoped public class CadCustomerBean implements Serializable { public void processTreeSelectionChange (MyClass myObject) { = System.out.println(myObject); } } {code} Obs. In RichFaces 4.2.0 Final showcase, the has the attribute "= selectionChangeListener", but I found only "treeSelectionChangeListener" in= jars of RichFaces (like attribute of the tag, or like a tag <= rich:treeSelectionChangeListener>). The "Component_Reference.pdf" is ok. was: In JSF with a and this have nested, if is applied in , the ajax listener isn't called. But, if applied to (under) , the ajax event fires met= hod listener call. XHTML (snippet) = = = = BEAN (snippet) /*imports...*/ @Named @SessionScoped public class CadCustomerBean implements Serializable { public void processTreeSelectionChange (MyClass myObject) { = System.out.println(myObject); } } Obs. In RichFaces 4.2.0 Final showcase, the has the attribute "= selectionChangeListener", but I found only "treeSelectionChangeListener" in= jars of RichFaces (like attribute of the tag, or like a tag <= rich:treeSelectionChangeListener>). The "Component_Reference.pdf" is ok. Forum Reference: https://community.jboss.org/message/725244?tstart=3D0 = (was: https://community.jboss.org/message/725244?tstart=3D0) = > ignores > ---------------------------------- > > Key: RF-12079 > URL: https://issues.jboss.org/browse/RF-12079 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.0 and JSF 2.2 with CDI (Bean type "jav= ax.inject.Named") > Application Server GlassFish Server Open Source Edition 3.1.2 (build 23) > Reporter: Wesley Menezes > > In JSF with a and this have nested, if is applied in , the ajax listener isn't called. > But, if applied to (under) , the ajax event fires m= ethod listener call. > {code:title=3DXHTML (snippet)} > id=3D"memoriaTree" > value=3D"#{cadCustomerBean.rootNodes}" > toggleType=3D"client" > var=3D"node" > nodeType=3D"#{node.data.type}" > > > id=3D"memoriaRoot" > type=3D"customer" > iconLeaf=3D"../images/fichario.gif" > data=3D"#{node.data.id}"> > > immediate=3D"true" > execute=3D"@this" > event=3D"mousedown" > listener=3D"#{cadCustomerBean.processTreeSelectionChange(= node.data)}"/> > > > {code} > {code:title=3DBEAN (snippet)} > /*imports...*/ > @Named > @SessionScoped > public class CadCustomerBean implements Serializable { > public void processTreeSelectionChange (MyClass myObject) { > = > System.out.println(myObject); > } > } > {code} > Obs. In RichFaces 4.2.0 Final showcase, the has the attribute= "selectionChangeListener", but I found only "treeSelectionChangeListener" = in jars of RichFaces (like attribute of the tag, or like a tag = ). The "Component_Reference.pdf" is ok. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2512491522294346780==-- From jira-events at lists.jboss.org Thu Mar 22 15:31:47 2012 Content-Type: multipart/mixed; boundary="===============0853437619757482796==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12079) ignores Date: Thu, 22 Mar 2012 15:31:47 -0400 Message-ID: <647508853.26863.1332444707918.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2129957963.25561.1332425267314.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0853437619757482796== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12079?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12079: ---------------------------------- Assignee: Pavol Pitonak QE, please confirm = > ignores > ---------------------------------- > > Key: RF-12079 > URL: https://issues.jboss.org/browse/RF-12079 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.0 and JSF 2.2 with CDI (Bean type "jav= ax.inject.Named") > Application Server GlassFish Server Open Source Edition 3.1.2 (build 23) > Reporter: Wesley Menezes > Assignee: Pavol Pitonak > > In JSF with a and this have nested, if is applied in , the ajax listener isn't called. > But, if applied to (under) , the ajax event fires m= ethod listener call. > {code:title=3DXHTML (snippet)} > id=3D"memoriaTree" > value=3D"#{cadCustomerBean.rootNodes}" > toggleType=3D"client" > var=3D"node" > nodeType=3D"#{node.data.type}" > > > id=3D"memoriaRoot" > type=3D"customer" > iconLeaf=3D"../images/fichario.gif" > data=3D"#{node.data.id}"> > > immediate=3D"true" > execute=3D"@this" > event=3D"mousedown" > listener=3D"#{cadCustomerBean.processTreeSelectionChange(= node.data)}"/> > > > {code} > {code:title=3DBEAN (snippet)} > /*imports...*/ > @Named > @SessionScoped > public class CadCustomerBean implements Serializable { > public void processTreeSelectionChange (MyClass myObject) { > = > System.out.println(myObject); > } > } > {code} > Obs. In RichFaces 4.2.0 Final showcase, the has the attribute= "selectionChangeListener", but I found only "treeSelectionChangeListener" = in jars of RichFaces (like attribute of the tag, or like a tag = ). The "Component_Reference.pdf" is ok. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0853437619757482796==-- From jira-events at lists.jboss.org Thu Mar 22 16:39:48 2012 Content-Type: multipart/mixed; boundary="===============3986561430226970084==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11968) 4.2.0.CR1 contextMenu positioning incorrect when dynamically rendering on row select Date: Thu, 22 Mar 2012 16:39:47 -0400 Message-ID: <1790754653.26979.1332448787963.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 784637995.32591.1328750928377.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3986561430226970084== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11968?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11968: ---------------------------------- Assignee: Brian Leathem = > 4.2.0.CR1 contextMenu positioning incorrect when dynamically rendering on= row select > -------------------------------------------------------------------------= ----------- > > Key: RF-11968 > URL: https://issues.jboss.org/browse/RF-11968 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.CR1 > Environment: Chrome browser Glassfish 3.1.1 Mojarra 2.1.6 > Reporter: Brendan Healey > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: contextMenuWrongPositioning.png > > > There's a positioning error with contextMenu in the following scenario. > I have an extendedDataTable which renders a rich:panel when a row in the > table is selected. Initially no row is selected and the rich:panel is not > rendered. I right click in the table and the menuItem appears way below > the row I right clicked. > {code} > id=3D"mytable" value=3D"#{bean.someList}" var=3D"var" > selection=3D"#{bean.selectedRow}" > selectionMode=3D"single"> > event=3D"selectionchange" > listener=3D"#{bean.doRowSelect}"/> > ... > > > > ... > > > > > > {code} > {code} > public void doRowSelect(...) { > selectedDepartment =3D ... (usual stuff); > } > {code} > Also tried with contextMenu mode=3D"client" with the same result. > Regards, > Brendan. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3986561430226970084==-- From jira-events at lists.jboss.org Thu Mar 22 16:39:48 2012 Content-Type: multipart/mixed; boundary="===============1735115994685376333==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11936) rich:contextMenu activation is possible outside of tree nodes Date: Thu, 22 Mar 2012 16:39:48 -0400 Message-ID: <1225670342.26982.1332448788391.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 643933580.14431.1328103828616.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1735115994685376333== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11936?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11936: ---------------------------------- Assignee: Brian Leathem = > rich:contextMenu activation is possible outside of tree nodes > ------------------------------------------------------------- > > Key: RF-11936 > URL: https://issues.jboss.org/browse/RF-11936 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-tree > Affects Versions: 4.2.0.CR1 > Environment: browsers: all browsers > Reporter: Juraj Huska > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: contextMenu.png, exdt_cm1.png, exdt_cm2.png > > > In the showcase demo for rich:contextMenu, the sample Tree ContextMenu, i= t is possible to activate the context menu not only from the nodes, but als= o outside of thenodes. > It is *rather a problem of the rich:tree*, since its rows contains nodes,= which are rendered with 100% width. > When it is then selected with the contextMenu item, a popup with empty co= ntent is displayed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1735115994685376333==-- From jira-events at lists.jboss.org Thu Mar 22 16:42:48 2012 Content-Type: multipart/mixed; boundary="===============8316768531939036331==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12073) Kitchensink archetype - creating enterprise project requires also community richfaces version Date: Thu, 22 Mar 2012 16:42:47 -0400 Message-ID: <1532426554.26987.1332448967928.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2091208867.23183.1332345047625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8316768531939036331== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12073?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12073. -------------------------------- Fix Version/s: (was: 4.2.1.CR1) Resolution: Won't Fix Behaviour is the same as for simpleapp. It's not possible to create an arc= hetype with a conditional question flow. This could be better handled as a forge plugin, or with separate community/= enterprise archetypes. = > Kitchensink archetype - creating enterprise project requires also communi= ty richfaces version > -------------------------------------------------------------------------= -------------------- > > Key: RF-12073 > URL: https://issues.jboss.org/browse/RF-12073 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Optional > > When generating enterprise richfaces maven project from kitchensink arche= type, it is also prompting for community richfaces version. And then the co= mmunity version is not used in the generated pom.xml > The log from this: > {noformat} > [INFO] Using property: groupId =3D bla.bla > [INFO] Using property: artifactId =3D foo_bla > Define value for property 'version': 1.0-SNAPSHOT: : = > [INFO] Using property: package =3D bla.bla > [INFO] Using property: enterprise =3D n > [INFO] Using property: richfaces-enterprise-version =3D 4.2.0.Final-redha= t-1 > [INFO] Using property: richfaces-version =3D 4.3.0-SNAPSHOT > Confirm properties configuration: > groupId: bla.bla > artifactId: foo_bla > version: 1.0-SNAPSHOT > package: bla.bla > enterprise: n > richfaces-enterprise-version: 4.2.0.Final-redhat-1 > richfaces-version: 4.3.0-SNAPSHOT > Y: : N > [INFO] Using property: groupId =3D bla.bla > [INFO] Using property: artifactId =3D foo_bla > Define value for property 'version': 1.0-SNAPSHOT: : = > Define value for property 'package': bla.bla: : = > Define value for property 'enterprise': n: : y > Define value for property 'richfaces-enterprise-version': 4.2.0.Final-re= dhat-1: : = > Define value for property 'richfaces-version': 4.3.0-SNAPSHOT: : = > Confirm properties configuration: > groupId: bla.bla > artifactId: foo_bla > version: 1.0-SNAPSHOT > package: bla.bla > enterprise: y > richfaces-enterprise-version: 4.2.0.Final-redhat-1 > richfaces-version: 4.3.0-SNAPSHOT > Y: : y > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 54.442s > [INFO] Finished at: Wed Mar 21 16:38:02 CET 2012 > [INFO] Final Memory: 9M/129M > [INFO] ------------------------------------------------------------------= ------ > jhuska(a)laptop:~/workspace_jbossTools33M5$ = > {noformat} > *Steps to reproduce:* > 1. _mvn archetype:generate -DarchetypeGroupId=3Dorg.richfaces.archetypes = -DarchetypeArtifactId=3Drichfaces-archetype-kitchensink -DarchetypeVersion= =3D4.3.0-SNAPSHOT -DgroupId=3Dbla.bla -DartifactId=3Dfoo_bla_ > 2. When prompting: ?Define value for property 'version': 1.0-SNAPSHOT:_,= press just enter. > 3. When prompting for confirming predefined values: type N > 4. When prompting for _Define value for property 'version': 1.0-SNAPSHOT= : :_ press just enter. > 5. _Define value for property 'package': bla.bla: : _ just enter > 6. _Define value for property 'enterprise': n: :_ type y > 7. _Define value for property 'richfaces-enterprise-version': 4.2.0.Fina= l-redhat-1: :_ just enter > 8. now you should be prompted for _Define value for property 'richfaces-v= ersion': 4.3.0-SNAPSHOT: :_, which you should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8316768531939036331==-- From jira-events at lists.jboss.org Thu Mar 22 16:44:49 2012 Content-Type: multipart/mixed; boundary="===============9170562923703643031==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Thu, 22 Mar 2012 16:44:49 -0400 Message-ID: <248978526.26996.1332449089911.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9170562923703643031== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11833: ------------------------------- Comment: was deleted (was: Upstream issue reported.) = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9170562923703643031==-- From jira-events at lists.jboss.org Thu Mar 22 16:44:49 2012 Content-Type: multipart/mixed; boundary="===============1811516509065851090==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Thu, 22 Mar 2012 16:44:49 -0400 Message-ID: <338833292.26993.1332449089610.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1811516509065851090== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11833. -------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Brian Leathem) Resolution: Won't Fix Upstream issue reported. = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1811516509065851090==-- From jira-events at lists.jboss.org Thu Mar 22 16:44:50 2012 Content-Type: multipart/mixed; boundary="===============5642341000418052193==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Thu, 22 Mar 2012 16:44:50 -0400 Message-ID: <1143799871.26999.1332449090022.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5642341000418052193== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11833: ------------------------------- Fix Version/s: (was: 4.2.1.CR1) = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5642341000418052193==-- From jira-events at lists.jboss.org Thu Mar 22 16:46:48 2012 Content-Type: multipart/mixed; boundary="===============7654187326193342299==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Thu, 22 Mar 2012 16:46:48 -0400 Message-ID: <1507298744.27003.1332449208123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7654187326193342299== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12026?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12026: ---------------------------------- Assignee: Pavol Pitonak (was: Brian Leathem) Pavol, I'd scheduled this issue for 4.2.1.CR1, as it sounded like a regress= ion, but I am not able to reproduce the issue. Would you please work some QE magic on this issue, and see if you can repro= duce the behaviour? = > Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" > ------------------------------------------------------------------------ > > Key: RF-12026 > URL: https://issues.jboss.org/browse/RF-12026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Environment: FireFox 3.6.27 > Reporter: Ulf Almehed > Assignee: Pavol Pitonak > Priority: Minor > Labels: regression > Fix For: 4.2.1.CR1 > > > Ajax request fails with javascript error "invalid 'in' operand event", ri= chfaces-queue.js line 130. > This was introduced by the fix in RF-11943. Checking for existence of lay= erX fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7654187326193342299==-- From jira-events at lists.jboss.org Thu Mar 22 23:43:47 2012 Content-Type: multipart/mixed; boundary="===============6284939372049020638==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Thu, 22 Mar 2012 23:43:47 -0400 Message-ID: <467107210.27301.1332474227476.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6284939372049020638== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678840#com= ment-12678840 ] = Brian Leathem commented on RF-11948: ------------------------------------ Thanks for the detailed analysis Jan, that helped a lot. The fundamental problem here is that the _initialize_ method is not called = until the page has loaded. See: {code:title=3DextendedDataTable.js, L#362} jQuery(document).ready(jQuery.proxy(this.initialize, this)); {code} Calling this initialize method before all the DOM objects have loaded would= have negative side effects. Similarly, advancing this one initialisation = piece (the normalPartStyle) to an earlier stage would treat the symptom but= not cure the problem - meaning this would come up again for some other val= ue that was not initialzed in time. The solution I'm proposing is to fire a "rich:ready" event when the initial= isation is complete. With this in place, the above code sample would look = like: {code} JSF Test = = ColA #{item.itemA} {code} Where we register a jQuery event handler for the rich:ready event fired by = the extendedDataTable. = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6284939372049020638==-- From jira-events at lists.jboss.org Thu Mar 22 23:47:47 2012 Content-Type: multipart/mixed; boundary="===============3921967279043750201==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Thu, 22 Mar 2012 23:47:47 -0400 Message-ID: <710858119.27304.1332474467353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3921967279043750201== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11948. -------------------------------- Resolution: Done Fired a rich:ready event when the extendedDataTable has finished initializi= ng = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3921967279043750201==-- From jira-events at lists.jboss.org Fri Mar 23 00:08:47 2012 Content-Type: multipart/mixed; boundary="===============3081386062608776415==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11989) The jointpoint attribute of the contextMenu should be removed Date: Fri, 23 Mar 2012 00:08:47 -0400 Message-ID: <2125836865.27311.1332475727333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1380056299.13648.1329430792396.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3081386062608776415== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11989?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11989. -------------------------------- Resolution: Done Hid the jointPoint attribute for the contextMenu = > The jointpoint attribute of the contextMenu should be removed > ------------------------------------------------------------- > > Key: RF-11989 > URL: https://issues.jboss.org/browse/RF-11989 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.CR1 > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.1.CR1 > > > This was erroneously left in place, when the contextMenu was forked from = the dropDownMenu. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3081386062608776415==-- From jira-events at lists.jboss.org Fri Mar 23 00:41:47 2012 Content-Type: multipart/mixed; boundary="===============3158935382180021578==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12042) Metamer: rich:contextMenu doesn't disappear after clicking out of the menu in IE9 and Google Chrome Date: Fri, 23 Mar 2012 00:41:47 -0400 Message-ID: <1331666389.27330.1332477707454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1422678186.9420.1331737667612.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3158935382180021578== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12042?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678846#com= ment-12678846 ] = Brian Leathem commented on RF-12042: ------------------------------------ This is the same behaviour as in RichFaces 3. See: http://livedemo.exadel.com/richfaces-demo/richfaces/contextMenu.jsf = > Metamer: rich:contextMenu doesn't disappear after clicking out of the men= u in IE9 and Google Chrome > -------------------------------------------------------------------------= -------------------------- > > Key: RF-12042 > URL: https://issues.jboss.org/browse/RF-12042 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 = > Reporter: Jan Papousek > Assignee: Brian Leathem > Labels: Chrome, IE9, needs-qe > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3158935382180021578==-- From jira-events at lists.jboss.org Fri Mar 23 00:41:47 2012 Content-Type: multipart/mixed; boundary="===============2022863596308020387==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12042) Metamer: rich:contextMenu doesn't disappear after clicking out of the menu in IE9 and Google Chrome Date: Fri, 23 Mar 2012 00:41:47 -0400 Message-ID: <479195901.27332.1332477707572.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1422678186.9420.1331737667612.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2022863596308020387== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12042?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12042. -------------------------------- Resolution: Done Registered a body click listener to trigger the menuLeaveHandler. Note, I change the menu base component, so QE should check the other menu c= omponents to guard against any regressions. = > Metamer: rich:contextMenu doesn't disappear after clicking out of the men= u in IE9 and Google Chrome > -------------------------------------------------------------------------= -------------------------- > > Key: RF-12042 > URL: https://issues.jboss.org/browse/RF-12042 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 = > Reporter: Jan Papousek > Assignee: Brian Leathem > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2022863596308020387==-- From jira-events at lists.jboss.org Fri Mar 23 01:21:48 2012 Content-Type: multipart/mixed; boundary="===============4964524744160509642==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11967) rich:contextMenu can't be attached to body Date: Fri, 23 Mar 2012 01:21:48 -0400 Message-ID: <2146348531.27362.1332480108876.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 597989296.31587.1328723868544.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4964524744160509642== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11967?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11967: ------------------------------- Fix Version/s: 4.Future (was: 4.2.1.CR1) Workaround Description: = Wrap your content in a top level div, as in: {code} .... {code} This is currently not possible, as the parent is looked up by id. The id i= s then fed into document.getElementById before being fed to jQuery as a sel= ector, to overcome the JSF id separator problem with jQuery. However, docu= ment.getElementById returns null when you try to look up the body by id. To overcome this, we will have to come up with a better means of looking up= and attaching to the parent. See the workaround of introducing an extra div in your html to hold the con= textMenu. = > rich:contextMenu can't be attached to body > ------------------------------------------ > > Key: RF-11967 > URL: https://issues.jboss.org/browse/RF-11967 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.CR1 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.Future > > > I haved tried to attach the contextMenu to the body element > {code:title=3Dexample.xhtml} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > = > = > example = > > = > = > > = > > > contextMenuItem > = > > > > {code} > The contextMenu only appears if i right-click the outputText. If i right-= click somewhere else inside the page the contextMenu doesn't appear. I thin= k, that this is a bug. I want the contextMenu all over the site. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4964524744160509642==-- From jira-events at lists.jboss.org Fri Mar 23 01:50:48 2012 Content-Type: multipart/mixed; boundary="===============2317384850943225175==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12043) Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility mode Date: Fri, 23 Mar 2012 01:50:47 -0400 Message-ID: <371904395.27364.1332481847937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 714594071.9445.1331737907625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2317384850943225175== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12043?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678849#com= ment-12678849 ] = Brian Leathem commented on RF-12043: ------------------------------------ This is also broken for rich:dropDownMenu in compatibility mode. = > Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility = mode > -------------------------------------------------------------------------= ---- > > Key: RF-12043 > URL: https://issues.jboss.org/browse/RF-12043 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT = > Metamer 4.2.1-SNAPSHOT = > Mojarra 2.1.5-SNAPSHOT = > JBoss AS 7.1.0.Final = > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux = > Internet Explorer 7.0 @ Win32 (this is IE 9 Compatibility Mode) > Reporter: Jan Papousek > Assignee: Brian Leathem > Labels: IE9 > Fix For: 4.2.1.CR1 > > Attachments: metamer-ie-9-rich_contextMenu.png > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2317384850943225175==-- From jira-events at lists.jboss.org Fri Mar 23 02:22:47 2012 Content-Type: multipart/mixed; boundary="===============1011375386434390593==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12043) Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility mode Date: Fri, 23 Mar 2012 02:22:47 -0400 Message-ID: <1695210083.27381.1332483767327.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 714594071.9445.1331737907625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1011375386434390593== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12043?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12043. -------------------------------- Resolution: Done Changed the empty icon containers to span elements = > Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility = mode > -------------------------------------------------------------------------= ---- > > Key: RF-12043 > URL: https://issues.jboss.org/browse/RF-12043 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT = > Metamer 4.2.1-SNAPSHOT = > Mojarra 2.1.5-SNAPSHOT = > JBoss AS 7.1.0.Final = > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux = > Internet Explorer 7.0 @ Win32 (this is IE 9 Compatibility Mode) > Reporter: Jan Papousek > Assignee: Brian Leathem > Labels: IE9, regression > Fix For: 4.2.1.CR1 > > Attachments: metamer-ie-9-rich_contextMenu.png > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1011375386434390593==-- From jira-events at lists.jboss.org Fri Mar 23 02:22:48 2012 Content-Type: multipart/mixed; boundary="===============8385910349644626374==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 02:22:47 -0400 Message-ID: <1823508067.27383.1332483768006.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8385910349644626374== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12038: ---------------------------------- Assignee: Brian Leathem = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8385910349644626374==-- From jira-events at lists.jboss.org Fri Mar 23 02:28:47 2012 Content-Type: multipart/mixed; boundary="===============8231455083383728854==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 02:28:47 -0400 Message-ID: <997760427.27385.1332484127690.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8231455083383728854== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678854#com= ment-12678854 ] = Brian Leathem commented on RF-12038: ------------------------------------ The link you provided is for RichFaces 3, the code samples there will not n= ecessarily apply to RichFaces 4. = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8231455083383728854==-- From jira-events at lists.jboss.org Fri Mar 23 02:34:48 2012 Content-Type: multipart/mixed; boundary="===============2315945354211247164==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 02:34:48 -0400 Message-ID: <796351162.27393.1332484488751.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2315945354211247164== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12038: ------------------------------- Fix Version/s: (was: 4.2.1.CR1) Labels: waiting_on_user (was: ) = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: waiting_on_user > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2315945354211247164==-- From jira-events at lists.jboss.org Fri Mar 23 02:34:48 2012 Content-Type: multipart/mixed; boundary="===============5503474787825910644==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 02:34:48 -0400 Message-ID: <1901373593.27391.1332484488694.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5503474787825910644== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678855#com= ment-12678855 ] = Brian Leathem commented on RF-12038: ------------------------------------ I'm curious why does your generated id match the id you assigned in the fac= elet file? The generated id should have the form id prepended to it (and s= eparated by a ":"). If that were happening (as it should be), then the gen= erated id would always be different from the name. = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: waiting_on_user > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5503474787825910644==-- From jira-events at lists.jboss.org Fri Mar 23 02:36:47 2012 Content-Type: multipart/mixed; boundary="===============6446763385536534972==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12064) Remove the superfluous versions from the generated pom in the kitchensink archetype Date: Fri, 23 Mar 2012 02:36:47 -0400 Message-ID: <1224139953.27398.1332484607701.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1846737024.18946.1332201047228.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6446763385536534972== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12064?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12064: ---------------------------------- Assignee: Brian Leathem = > Remove the superfluous versions from the generated pom in the kitchensink= archetype > -------------------------------------------------------------------------= ---------- > > Key: RF-12064 > URL: https://issues.jboss.org/browse/RF-12064 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: archetype, build/distribution > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.1.CR1 > > > The kitchensink archetype unnecessarily specifies version for it's depend= encies. The dependency version that are already specified in the BOM shoul= d be removed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6446763385536534972==-- From jira-events at lists.jboss.org Fri Mar 23 03:39:47 2012 Content-Type: multipart/mixed; boundary="===============6072014100181453588==" MIME-Version: 1.0 From: Michael Heinen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12080) rich:hotKey usage clears body onload attribute Date: Fri, 23 Mar 2012 03:39:47 -0400 Message-ID: <1411413331.27453.1332488387294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6072014100181453588== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Michael Heinen created RF-12080: ----------------------------------- Summary: rich:hotKey usage clears body onload attribute Key: RF-12080 URL: https://issues.jboss.org/browse/RF-12080 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component Affects Versions: 4.2.0.Final Environment: myfaces 2.1.6, tomahawk 1.1.11 Reporter: Michael Heinen Priority: Minor I'm happy to see rich:hotKey in richfaces 4.2, I used it already with richf= aces 3.3.3. One thing I noticed now is that the onload attribute of t:documentboy is cl= eared on clientside as soon as rich:hotKey is used on a page. Maybe caused = by jquery usage? >From my pov this should be either fixed or documented in the component gui= de as well as in the showcase sample. Workaround is obvious: Instead of onload use document.ready -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6072014100181453588==-- From jira-events at lists.jboss.org Fri Mar 23 04:02:57 2012 Content-Type: multipart/mixed; boundary="===============6188795308888316395==" MIME-Version: 1.0 From: Ulf Almehed (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Fri, 23 Mar 2012 04:02:54 -0400 Message-ID: <1731604149.27508.1332489774244.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6188795308888316395== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12026?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678870#com= ment-12678870 ] = Ulf Almehed commented on RF-12026: ---------------------------------- Brian: Yes, here is a small sample that will reproduce the error: It displays an E= xtendedDataTable with the clientRows property set. If you drag the vertical= scroller to the bottom, the table wount render anything due to the js-erro= r. Browser: FireFox 3.6.28 A fix would be to replace the guard "if (event) {" with "if (event && event= instanceof Object) {" (line 129 in richfaces-queue.js). edt.xhtml: JSF Demo = EdtBean.java: package org.bogus; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import java.util.Locale; import javax.enterprise.context.SessionScoped; import javax.inject.Named; //@RequestScoped @SessionScoped @Named public class EdtBean implements Serializable { private static final long serialVersionUID =3D 1L; private List mEdtData =3D new ArrayList(); public EdtBean() { mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); } public void setEdtData(List mEdtData) { this.mEdtData =3D mEdtData; } public List getEdtData() { return mEdtData; } = } = > Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" > ------------------------------------------------------------------------ > > Key: RF-12026 > URL: https://issues.jboss.org/browse/RF-12026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Environment: FireFox 3.6.27 > Reporter: Ulf Almehed > Assignee: Pavol Pitonak > Priority: Minor > Labels: regression > Fix For: 4.2.1.CR1 > > > Ajax request fails with javascript error "invalid 'in' operand event", ri= chfaces-queue.js line 130. > This was introduced by the fix in RF-11943. Checking for existence of lay= erX fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6188795308888316395==-- From jira-events at lists.jboss.org Fri Mar 23 04:04:47 2012 Content-Type: multipart/mixed; boundary="===============1026240308908633790==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11967) rich:contextMenu can't be attached to body Date: Fri, 23 Mar 2012 04:04:47 -0400 Message-ID: <531684893.27511.1332489887505.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 597989296.31587.1328723868544.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1026240308908633790== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11967?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678871#com= ment-12678871 ] = Rene O commented on RF-11967: ----------------------------- The suggested workaround works. = > rich:contextMenu can't be attached to body > ------------------------------------------ > > Key: RF-11967 > URL: https://issues.jboss.org/browse/RF-11967 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.CR1 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.Future > > > I haved tried to attach the contextMenu to the body element > {code:title=3Dexample.xhtml} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > = > = > example = > > = > = > > = > > > contextMenuItem > = > > > > {code} > The contextMenu only appears if i right-click the outputText. If i right-= click somewhere else inside the page the contextMenu doesn't appear. I thin= k, that this is a bug. I want the contextMenu all over the site. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1026240308908633790==-- From jira-events at lists.jboss.org Fri Mar 23 04:55:47 2012 Content-Type: multipart/mixed; boundary="===============8707525439935628763==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Fri, 23 Mar 2012 04:55:47 -0400 Message-ID: <1314783541.27597.1332492947588.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8707525439935628763== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678881#com= ment-12678881 ] = Pavol Pitonak commented on RF-11833: ------------------------------------ Lukas, please add here spec issue link. = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8707525439935628763==-- From jira-events at lists.jboss.org Fri Mar 23 05:57:47 2012 Content-Type: multipart/mixed; boundary="===============6673747526312245126==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11294) Log: implement console mode Date: Fri, 23 Mar 2012 05:57:47 -0400 Message-ID: <677287999.27682.1332496667824.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1295714463.14772.1313060931665.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6673747526312245126== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11294?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678892#com= ment-12678892 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11294: --------------------------------- Added pull request for implementing console log mode. = > Log: implement console mode > --------------------------- > > Key: RF-11294 > URL: https://issues.jboss.org/browse/RF-11294 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Reporter: Pavol Pitonak > Fix For: 4.3.0.Milestone1 > > > Enum org/richfaces/component/LogMode.java contains mode "console" which i= s not implemented. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6673747526312245126==-- From jira-events at lists.jboss.org Fri Mar 23 05:57:47 2012 Content-Type: multipart/mixed; boundary="===============2253299127295740283==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11294) Log: implement console mode Date: Fri, 23 Mar 2012 05:57:47 -0400 Message-ID: <1024970507.27681.1332496667789.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1295714463.14772.1313060931665.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2253299127295740283== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11294?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11294: ---------------------------- Fix Version/s: 4.3.0.Milestone1 (was: 4.Future) Git Pull Request: https://github.com/richfaces/components/pull/24 (was= : https://github.com/richfaces/components/pull/24) = > Log: implement console mode > --------------------------- > > Key: RF-11294 > URL: https://issues.jboss.org/browse/RF-11294 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Reporter: Pavol Pitonak > Fix For: 4.3.0.Milestone1 > > > Enum org/richfaces/component/LogMode.java contains mode "console" which i= s not implemented. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2253299127295740283==-- From jira-events at lists.jboss.org Fri Mar 23 06:07:49 2012 Content-Type: multipart/mixed; boundary="===============0946388758063829270==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11940) mobile showcase - a4j:push - not retrieving pushes from server on Android Date: Fri, 23 Mar 2012 06:07:49 -0400 Message-ID: <1186186416.27726.1332497269397.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 125521490.15036.1328110250830.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0946388758063829270== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11940?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11940. ----------------------------- Resolution: Done = > mobile showcase - a4j:push - not retrieving pushes from server on Android > ------------------------------------------------------------------------- > > Key: RF-11940 > URL: https://issues.jboss.org/browse/RF-11940 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, mobile, showcase > Environment: container: JBoss AS 7.1.0.CR1b > device: Motorola Xoom(Android 3.2.1) > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > > There is no push done in demo for a4j:push, however push demo work for de= sktop fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0946388758063829270==-- From jira-events at lists.jboss.org Fri Mar 23 06:13:47 2012 Content-Type: multipart/mixed; boundary="===============2238811718672516492==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Fri, 23 Mar 2012 06:13:47 -0400 Message-ID: <292243213.27736.1332497627448.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2238811718672516492== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678896#com= ment-12678896 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12013: --------------------------------- Hey Stian, thanks for your efforts. I'm looking into RF-12072 now. Just for clarity, RF-12072 appeared with this patch or have you experienced= it before? Just note that CDI events just delegates to TopicsContext, so {{Service Tra= cker has not been initialized}} issue won't disappear. I would recommend you readinghttp://rik-ansikter.blogspot.com/2012/02/conf= iguring-richfaces-push-with-42.html and the troubleshooting section linked = there. = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2238811718672516492==-- From jira-events at lists.jboss.org Fri Mar 23 06:48:47 2012 Content-Type: multipart/mixed; boundary="===============5913517921762187748==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 06:48:47 -0400 Message-ID: <1050478041.27846.1332499727817.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5913517921762187748== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678906#com= ment-12678906 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- Hey Stian, I have imported your sample, just little modified the bean to ge= t some debugging output: {code:Java} @SessionScoped @ManagedBean public class RichBean { private AtomicInteger count =3D new AtomicInteger(0); public int getCount() { = int c =3D count.get(); System.out.println("getCount - start " + c); new Thread() { public void run() { try { Thread.sleep(5000); count.incrementAndGet(); TopicKey topicKey =3D new TopicKey("chat"); TopicsContext topicsContext =3D TopicsContext.lookup(); System.out.println("push " + count.get()); topicsContext.publish(topicKey, ""); } catch (Exception e) { e.printStackTrace(); } }; }.start(); if (c > 0) { try { Thread.sleep(10000); } catch (InterruptedException e) { } } System.out.println("getCount - end " + c); return c; } } {code} Now, the output from server is: {code} 11:39:33,582 INFO [stdout] (Thread-28) push 1 11:39:33,634 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 1 11:39:38,635 INFO [stdout] (Thread-29) push 2 11:39:43,635 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 1 11:39:43,660 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 2 11:39:48,661 INFO [stdout] (Thread-30) push 3 11:39:53,661 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 2 11:39:53,681 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 3 11:39:58,686 INFO [stdout] (Thread-31) push 4 11:40:03,686 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 3 11:40:03,717 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 4 11:40:08,720 INFO [stdout] (Thread-32) push 5 11:40:13,720 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 4 11:40:13,744 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 5 11:40:18,745 INFO [stdout] (Thread-33) push 6 11:40:23,744 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 5 11:40:23,768 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 6 11:40:28,769 INFO [stdout] (Thread-34) push 7 11:40:33,769 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 6 11:40:33,796 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 7 11:40:38,797 INFO [stdout] (Thread-35) push 8 11:40:43,797 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 7 11:40:43,820 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 8 11:40:48,821 INFO [stdout] (Thread-36) push 9 11:40:53,821 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 8 11:40:53,841 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 9 11:40:58,842 INFO [stdout] (Thread-37) push 10 11:41:03,842 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 9 11:41:03,862 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 10 11:41:08,863 INFO [stdout] (Thread-38) push 11 11:41:13,863 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 10 11:41:13,889 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 11 11:41:18,890 INFO [stdout] (Thread-39) push 12 11:41:23,889 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 11 11:41:23,911 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 12 11:41:28,912 INFO [stdout] (Thread-40) push 13 11:41:33,912 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 12 11:41:33,937 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 13 11:41:38,938 INFO [stdout] (Thread-41) push 14 11:41:43,938 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 13 11:41:43,961 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 14 11:41:48,961 INFO [stdout] (Thread-42) push 15 11:41:53,961 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 14 11:41:53,982 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 15 11:41:58,982 INFO [stdout] (Thread-43) push 16 11:42:03,982 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 15 11:42:03,993 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 16 11:42:08,994 INFO [stdout] (Thread-44) push 17 11:42:13,993 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 16 11:42:14,026 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 17 11:42:19,027 INFO [stdout] (Thread-45) push 18 11:42:24,027 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 17 11:42:24,050 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 18 {code} The AJAX re-render is actually done each 10 seconds, thus it returns stale = value, but that's completely expected behavior since the {{getCount}} needs= to wait for returning previous value (it's JSF requirement- only one AJAX = request at time). When we comment the {{Thread.sleep(10000);}} we get: {code} 11:43:13,067 INFO [stdout] (Thread-50) push 1 11:43:13,123 INFO [stdout] (http--0.0.0.0-8080-3) getCount - start 1 11:43:13,124 INFO [stdout] (http--0.0.0.0-8080-3) getCount - end 1 11:43:18,136 INFO [stdout] (Thread-51) push 2 11:43:18,167 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 2 11:43:18,174 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 2 11:43:23,180 INFO [stdout] (Thread-52) push 3 11:43:23,203 INFO [stdout] (http--0.0.0.0-8080-4) getCount - start 3 11:43:23,203 INFO [stdout] (http--0.0.0.0-8080-4) getCount - end 3 11:43:28,205 INFO [stdout] (Thread-53) push 4 11:43:28,225 INFO [stdout] (http--0.0.0.0-8080-3) getCount - start 4 11:43:28,247 INFO [stdout] (http--0.0.0.0-8080-3) getCount - end 4 11:43:33,254 INFO [stdout] (Thread-54) push 5 11:43:33,277 INFO [stdout] (http--0.0.0.0-8080-3) getCount - start 5 11:43:33,278 INFO [stdout] (http--0.0.0.0-8080-3) getCount - end 5 {code} = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5913517921762187748==-- From jira-events at lists.jboss.org Fri Mar 23 06:48:48 2012 Content-Type: multipart/mixed; boundary="===============4453924019009834167==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 06:48:48 -0400 Message-ID: <573425194.27861.1332499728241.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4453924019009834167== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678907#com= ment-12678907 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- With regards to previous records I'm rejecting this issue. Feel free to reopen it when necessary. = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4453924019009834167==-- From jira-events at lists.jboss.org Fri Mar 23 06:48:48 2012 Content-Type: multipart/mixed; boundary="===============2184623330763807489==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 06:48:48 -0400 Message-ID: <1753419203.27863.1332499728291.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2184623330763807489== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12072. ----------------------------- Fix Version/s: (was: 4.2.1.CR1) Resolution: Rejected = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2184623330763807489==-- From jira-events at lists.jboss.org Fri Mar 23 06:54:47 2012 Content-Type: multipart/mixed; boundary="===============5695509152564712462==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Fri, 23 Mar 2012 06:54:47 -0400 Message-ID: <1335438138.27886.1332500087537.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5695509152564712462== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678896#com= ment-12678896 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12013 at 3/23/12 6:54 AM: ---------------------------------------------------------- Hey Stian, thanks for your efforts. I'm looking into RF-12072 now. Just for clarity, RF-12072 appeared with this patch or have you experienced= it before? Just note that CDI events just delegates to TopicsContext, so {{Service Tra= cker has not been initialized}} issue won't disappear. I would recommend you reading http://rik-ansikter.blogspot.com/2012/02/con= figuring-richfaces-push-with-42.html and the troubleshooting section linked= there. = was (Author: lfryc): Hey Stian, thanks for your efforts. I'm looking into RF-12072 now. Just for clarity, RF-12072 appeared with this patch or have you experienced= it before? Just note that CDI events just delegates to TopicsContext, so {{Service Tra= cker has not been initialized}} issue won't disappear. I would recommend you readinghttp://rik-ansikter.blogspot.com/2012/02/conf= iguring-richfaces-push-with-42.html and the troubleshooting section linked = there. = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5695509152564712462==-- From jira-events at lists.jboss.org Fri Mar 23 06:54:47 2012 Content-Type: multipart/mixed; boundary="===============6358657213242585091==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12013) Deadlock in push component Date: Fri, 23 Mar 2012 06:54:47 -0400 Message-ID: <1945283698.27888.1332500087664.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 654291399.48838.1330441536575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6358657213242585091== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12013?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678910#com= ment-12678910 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12013: --------------------------------- Merged to {{release/4.2.1.CR1}}. = > Deadlock in push component > -------------------------- > > Key: RF-12013 > URL: https://issues.jboss.org/browse/RF-12013 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Deadlocked threads in the push component prevented server from stopping. = Not sure whether or not this happened when I initiated shutdown or if these= where hanging around for a while. > Relevant output from jstack: > {code} > Found one Java-level deadlock: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > "push-publish-thread-1": > waiting to lock monitor 0x0000000042650238 (object 0x00000000e5ed5a50, = a org.richfaces.application.push.impl.RequestImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x00000000427d9ec0 (object 0x00000000e5ed59a0, = a org.richfaces.application.push.impl.SessionImpl), > which is held by "push-publish-thread-1" > Java stack information for the threads listed above: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D > "push-publish-thread-1": > at org.richfaces.application.push.impl.RequestImpl.postMessages(RequestI= mpl.java:85) > - waiting to lock <0x00000000e5ed5a50> (a org.richfaces.application.push= .impl.RequestImpl) > at org.richfaces.application.push.impl.SessionImpl.push(SessionImpl.java= :237) > - locked <0x00000000e5ed59a0> (a org.richfaces.application.push.impl.Ses= sionImpl) > at org.richfaces.application.push.impl.TopicImpl$TopicContext.publishMes= sages(TopicImpl.java:88) > at org.richfaces.application.push.impl.TopicImpl$PublishTask.run(TopicIm= pl.java:53) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImp= l.java:117) > - waiting to lock <0x00000000e5ed59a0> (a org.richfaces.application.push= .impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImp= l.java:107) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.= java:115) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResource= Impl.java:651) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:600) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceIm= pl.java:185) > - locked <0x00000000e5ee3380> (a org.atmosphere.cpr.AtmosphereResourceEv= entImpl) > at org.richfaces.application.push.impl.RequestImpl.onBroadcast(RequestIm= pl.java:129) > - locked <0x00000000e5ed5a50> (a org.richfaces.application.push.impl.Req= uestImpl) > at org.atmosphere.cpr.AtmosphereResourceImpl.onBroadcast(AtmosphereResou= rceImpl.java:663) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:608) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereR= esourceImpl.java:584) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadc= aster.java:713) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:7= 47) > - locked <0x00000000e5ed5a88> (a org.atmosphere.cpr.AtmosphereResourceIm= pl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44= 1) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) > at java.lang.Thread.run(Thread.java:662) > Found 1 deadlock. > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6358657213242585091==-- From jira-events at lists.jboss.org Fri Mar 23 07:26:47 2012 Content-Type: multipart/mixed; boundary="===============0199065466902597223==" MIME-Version: 1.0 From: phelen harg (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12081) Problem with RichEditor RF 4.2.0 Date: Fri, 23 Mar 2012 07:26:47 -0400 Message-ID: <1278339548.27975.1332502007395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0199065466902597223== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable phelen harg created RF-12081: -------------------------------- Summary: Problem with RichEditor RF 4.2.0 Key: RF-12081 URL: https://issues.jboss.org/browse/RF-12081 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.2.0.Final Reporter: phelen harg I'm migrating my Application from RF 3.3.3 to RF 4.2.0. But no= w i'm facing a problem with the richEditor. When I load the the component, = all the links in application receive a background like this picture: = Analizing the code with Firebug, I found the problem in the CS= S of RichEditor. /org.richfaces.resources/javax.faces.resource/org.richface= s.ckeditor/skins/richfaces/editor.ecss?db=3DeAHj0yqqAgACGAEl If I erase the CSS the backgroud disappear. There is some ki= nd of workaround for this? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0199065466902597223==-- From jira-events at lists.jboss.org Fri Mar 23 07:43:47 2012 Content-Type: multipart/mixed; boundary="===============6957553708212170756==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Fri, 23 Mar 2012 07:43:47 -0400 Message-ID: <355068690.27992.1332503027429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6957553708212170756== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-11833: ----------------------------- = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6957553708212170756==-- From jira-events at lists.jboss.org Fri Mar 23 07:43:47 2012 Content-Type: multipart/mixed; boundary="===============1806770311598083955==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Fri, 23 Mar 2012 07:43:47 -0400 Message-ID: <407597700.27994.1332503027548.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1806770311598083955== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11833: ---------------------------- Comment: was deleted (was: A comment with security level 'JBoss Employee' was removed.) = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1806770311598083955==-- From jira-events at lists.jboss.org Fri Mar 23 07:49:47 2012 Content-Type: multipart/mixed; boundary="===============5251815215812866438==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 07:49:47 -0400 Message-ID: <526475191.28003.1332503387346.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5251815215812866438== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678923#com= ment-12678923 ] = Stian Thorgersen commented on RF-12072: --------------------------------------- By wrapping "Thread.sleep(10000);" with "if (c > 0)" the example doesn't wo= rk, as you allow the page to be rendered fully before the first event is se= nt, hence bypassing the problem. = In my application I use the push component to refresh the views when new da= ta is available. The application allows users to "add/change" data asynchro= nously, so the data may be already changed when the model values are update= d, or it may be changed later. In certain situations, especially when the s= erver is running on a slow machine, the client can miss the update events a= ltogether: * Client presses commandButton * Asynchronous change to data started * JSF model values updated * Data updated + update event is fired * Page is viewed in browser, but update event is lost It works fine in either of the following scenarios: * Client presses commandButton * Asynchronous change to data started * Data updated + update event is fired * JSF model values updated (missed event isn't a problem as data is changed= before model values are updated) * Page is viewed in browser and: * Client presses commandButton * Asynchronous change to data started * JSF model values updated * Page is viewed in browser * Data updated + update event is fired (page is refreshed by push component= and new values are retrieved from server) The example tries to force the first scenario where the data is lost by mak= ing sure the page is viewed after the event is fired. = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5251815215812866438==-- From jira-events at lists.jboss.org Fri Mar 23 08:25:47 2012 Content-Type: multipart/mixed; boundary="===============8832728609477154065==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12082) Components: Output UI module doesn't pass unit tests (AbstractTogglePanelTest#testGetChildName) Date: Fri, 23 Mar 2012 08:25:47 -0400 Message-ID: <147991329.28097.1332505547854.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8832728609477154065== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jan Papousek created RF-12082: --------------------------------- Summary: Components: Output UI module doesn't pass unit tests = (AbstractTogglePanelTest#testGetChildName) Key: RF-12082 URL: https://issues.jboss.org/browse/RF-12082 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-output Affects Versions: 4.3.0.Milestone1 Reporter: Jan Papousek Priority: Critical {code} ---------------------------------------------------------------------------= ---- Test set: org.richfaces.component.AbstractTogglePanelTest ---------------------------------------------------------------------------= ---- Tests run: 5, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec <= << FAILURE! testGetChildName(org.richfaces.component.AbstractTogglePanelTest) Time ela= psed: 0.005 sec <<< FAILURE! java.lang.AssertionError: Expected exception: java.lang.IllegalArgumentExce= ption at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectEx= ception.java:32) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.ja= va:28) at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Class= Runner.java:79) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:71) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:49) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) at org.junit.runners.ParentRunner.run(ParentRunner.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.= java:234) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Pr= ovider.java:133) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.j= ava:114) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(Re= flectionUtils.java:188) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(P= roviderFactory.java:166) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provide= rFactory.java:86) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Forked= Booter.java:101) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74) {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8832728609477154065==-- From jira-events at lists.jboss.org Fri Mar 23 08:29:48 2012 Content-Type: multipart/mixed; boundary="===============4579025537430628476==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12083) Components: Output UI module doesn't pass unit tests (MenuItemRendererTest and DropDownMenuRendererTest) Date: Fri, 23 Mar 2012 08:29:48 -0400 Message-ID: <356683327.28101.1332505788416.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4579025537430628476== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jan Papousek created RF-12083: --------------------------------- Summary: Components: Output UI module doesn't pass unit tests = (MenuItemRendererTest and DropDownMenuRendererTest) Key: RF-12083 URL: https://issues.jboss.org/browse/RF-12083 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-output Affects Versions: 4.2.1.CR1 Reporter: Jan Papousek Priority: Critical {code} ---------------------------------------------------------------------------= ---- Test set: org.richfaces.renderkit.html.MenuItemRendererTest ---------------------------------------------------------------------------= ---- Tests run: 6, Failures: 3, Errors: 0, Skipped: 1, Time elapsed: 3.172 sec <= << FAILURE! testDoEncodeServerMode(org.richfaces.renderkit.html.MenuItemRendererTest) = Time elapsed: 0.566 sec <<< FAILURE! java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Diff [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1]
    Test
    at org.junit.Assert.fail(Assert.java:91) at org.junit.Assert.assertTrue(Assert.java:43) at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rendere= rTestBase.java:93) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:81) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:73) at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeServerMod= e(MenuItemRendererTest.java:51) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMe= thod.java:44) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCalla= ble.java:15) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMeth= od.java:41) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMetho= d.java:20) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.ja= va:28) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java= :31) at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Class= Runner.java:79) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:71) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:49) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) at org.junit.runners.ParentRunner.run(ParentRunner.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.= java:234) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Pr= ovider.java:133) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.j= ava:114) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(Re= flectionUtils.java:188) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(P= roviderFactory.java:166) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provide= rFactory.java:86) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Forked= Booter.java:101) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74) testDoEncodeAjaxMode(org.richfaces.renderkit.html.MenuItemRendererTest) Ti= me elapsed: 0.613 sec <<< FAILURE! java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Diff [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1]
    Test
    at org.junit.Assert.fail(Assert.java:91) at org.junit.Assert.assertTrue(Assert.java:43) at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rendere= rTestBase.java:93) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:81) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:73) at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeAjaxMode(= MenuItemRendererTest.java:71) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMe= thod.java:44) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCalla= ble.java:15) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMeth= od.java:41) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMetho= d.java:20) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.ja= va:28) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java= :31) at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Class= Runner.java:79) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:71) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:49) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) at org.junit.runners.ParentRunner.run(ParentRunner.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.= java:234) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Pr= ovider.java:133) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.j= ava:114) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(Re= flectionUtils.java:188) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(P= roviderFactory.java:166) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provide= rFactory.java:86) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Forked= Booter.java:101) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74) testDoEncodeClientMode(org.richfaces.renderkit.html.MenuItemRendererTest) = Time elapsed: 0.724 sec <<< FAILURE! java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Diff [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1]
    Test
    at org.junit.Assert.fail(Assert.java:91) at org.junit.Assert.assertTrue(Assert.java:43) at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rendere= rTestBase.java:93) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:81) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:73) at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeClientMod= e(MenuItemRendererTest.java:88) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMe= thod.java:44) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCalla= ble.java:15) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMeth= od.java:41) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMetho= d.java:20) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.ja= va:28) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java= :31) at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Class= Runner.java:79) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:71) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:49) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) at org.junit.runners.ParentRunner.run(ParentRunner.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.= java:234) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Pr= ovider.java:133) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.j= ava:114) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(Re= flectionUtils.java:188) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(P= roviderFactory.java:166) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provide= rFactory.java:86) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Forked= Booter.java:101) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74) {code} {code} ---------------------------------------------------------------------------= ---- Test set: org.richfaces.renderkit.html.DropDownMenuRendererTest ---------------------------------------------------------------------------= ---- Tests run: 4, Failures: 2, Errors: 0, Skipped: 1, Time elapsed: 2.206 sec <= << FAILURE! testDoEncodeServerMode(org.richfaces.renderkit.html.DropDownMenuRendererTes= t) Time elapsed: 0.729 sec <<< FAILURE! java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Diff [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[2]/div[1]/div[1]/div[1]/div[1] to at /div[1]/= div[2]/div[1]/div[1]/div[1]/span[1]
    File
    Open
    Save As...
    Save
    SaveAll
    at org.junit.Assert.fail(Assert.java:91) at org.junit.Assert.assertTrue(Assert.java:43) at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rendere= rTestBase.java:93) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:81) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:73) at org.richfaces.renderkit.html.DropDownMenuRendererTest.testDoEncodeServe= rMode(DropDownMenuRendererTest.java:51) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMe= thod.java:44) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCalla= ble.java:15) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMeth= od.java:41) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMetho= d.java:20) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.ja= va:28) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java= :31) at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Class= Runner.java:79) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:71) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:49) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) at org.junit.runners.ParentRunner.run(ParentRunner.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.= java:234) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Pr= ovider.java:133) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.j= ava:114) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(Re= flectionUtils.java:188) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(P= roviderFactory.java:166) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provide= rFactory.java:86) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Forked= Booter.java:101) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74) testDoEncodeAjaxMode(org.richfaces.renderkit.html.DropDownMenuRendererTest)= Time elapsed: 0.677 sec <<< FAILURE! java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Diff [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[2]/div[1]/div[1]/div[1]/div[1] to at /div[1]/= div[2]/div[1]/div[1]/div[1]/span[1]
    File
    Open
    Save As...
    Save
    SaveAll
    at org.junit.Assert.fail(Assert.java:91) at org.junit.Assert.assertTrue(Assert.java:43) at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rendere= rTestBase.java:93) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:81) at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase.j= ava:73) at org.richfaces.renderkit.html.DropDownMenuRendererTest.testDoEncodeAjaxM= ode(DropDownMenuRendererTest.java:56) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMe= thod.java:44) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCalla= ble.java:15) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMeth= od.java:41) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMetho= d.java:20) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.ja= va:28) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java= :31) at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Class= Runner.java:79) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:71) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunne= r.java:49) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) at org.junit.runners.ParentRunner.run(ParentRunner.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.= java:234) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Pr= ovider.java:133) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.j= ava:114) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(Re= flectionUtils.java:188) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(P= roviderFactory.java:166) at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provide= rFactory.java:86) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Forked= Booter.java:101) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74) {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4579025537430628476==-- From jira-events at lists.jboss.org Fri Mar 23 09:04:47 2012 Content-Type: multipart/mixed; boundary="===============2035796488013401205==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 09:04:47 -0400 Message-ID: <683919181.28169.1332507887342.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2035796488013401205== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678936#com= ment-12678936 ] = Jean ANDRE commented on RF-12038: --------------------------------- Yes, I know about the link then...is there a better way? I'm not sure I understand your question. Well, we use Mojarra 2.1.6 and if = you install and run the workbench, probably you can see and reproduce the p= henomenon. It is a specific IE problem, not a FireFox problem. Under IE, th= is is the explanation found in forum, IE generates a javascript variable wh= ich has the same id as the component (the tag). Like this, I imagine, it is= easier to manipulate the component via this variable. But in our case, rel= ate to the a4j:function, Richfaces declares also a javascript variable as a= n handle to a function. Then, there is a clash, one variable is hidden/dest= roy by the other as they have the same name, just because we gave to a4j:fu= nction the same id as the name of the function. When you try to access to t= he function, it does not work because it is a tag object and then you recei= ve the famous message... So, to summarize, by knowing the way of IE works, developers have to pay at= tention about this fact. It is not a problem of RichFaces but RichFaces can= probably display a warning message or have a specific compatibility note i= n their PDF/HTML documentation. Now, it seems that the error occurs in JSF itself, inside JSF itself. Note = that the same error occurs when from a button, we send a click event to the= close image of the tab - RF-12060 Reported by IE =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D {code} Agent utilisateur : Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trid= ent/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729) Horodateur : Fri, 23 Mar 2012 13:03:12 UTC Message=C2=A0: Cet objet ne g=C3=A8re pas cette propri=C3=A9t=C3=A9 ou cett= e m=C3=A9thode Ligne=C2=A0: 89 Caract=C3=A8re=C2=A0: 28 Code=C2=A0: 0 URI=C2=A0: http://localhost:12000/CrmWeb/pages/index.jsf Message=C2=A0: Objet requis Ligne=C2=A0: 1 Caract=C3=A8re=C2=A0: 22732 Code=C2=A0: 0 URI=C2=A0: http://localhost:12000/CrmWeb/javax.faces.resource/jsf.js.jsf?ln= =3Djavax.faces {code} = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: waiting_on_user > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2035796488013401205==-- From jira-events at lists.jboss.org Fri Mar 23 09:28:49 2012 Content-Type: multipart/mixed; boundary="===============8795767856579294900==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 09:28:49 -0400 Message-ID: <356770682.28226.1332509329537.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8795767856579294900== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678949#com= ment-12678949 ] = Jean ANDRE commented on RF-12038: --------------------------------- And the line 89 is the function close on a second . It seems = there is another clash even if this time, there is no id given to the tag... {code}
    > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8795767856579294900==-- From jira-events at lists.jboss.org Fri Mar 23 09:40:47 2012 Content-Type: multipart/mixed; boundary="===============3934828733609175669==" MIME-Version: 1.0 From: Ulf Almehed (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Fri, 23 Mar 2012 09:40:47 -0400 Message-ID: <594013720.28248.1332510047340.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3934828733609175669== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12026?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678954#com= ment-12678954 ] = Ulf Almehed commented on RF-12026: ---------------------------------- I have tested with some different browsers, and I can repeat the problem wi= th different Firefox browsers (3.6 - 11), but not with Chrome, IE or Safari. = > Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" > ------------------------------------------------------------------------ > > Key: RF-12026 > URL: https://issues.jboss.org/browse/RF-12026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Environment: FireFox 3.6.27 > Reporter: Ulf Almehed > Assignee: Pavol Pitonak > Priority: Minor > Labels: regression > Fix For: 4.2.1.CR1 > > > Ajax request fails with javascript error "invalid 'in' operand event", ri= chfaces-queue.js line 130. > This was introduced by the fix in RF-11943. Checking for existence of lay= erX fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3934828733609175669==-- From jira-events at lists.jboss.org Fri Mar 23 10:11:47 2012 Content-Type: multipart/mixed; boundary="===============9142546944626159878==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10968) Tree: treeSelectionChangeListener and treeToggleListener do not work Date: Fri, 23 Mar 2012 10:11:47 -0400 Message-ID: <147548398.28316.1332511907859.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 35352639.27278.1304411418583.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9142546944626159878== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10968?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678967#com= ment-12678967 ] = Pavol Pitonak commented on RF-10968: ------------------------------------ Component reference [1] documents the correct attributes. On the other hand= , VDL doc [2] contains wrong attributes. [1] http://docs.jboss.org/richfaces/4.2.X/4.2.0.Final/Component_Reference/e= n-US/html_single/#sect-Component_Reference-richtree-Event_handling [2] http://docs.jboss.org/richfaces/4.2.X/4.2.0.Final/vdldoc/rich/tree.html = > Tree: treeSelectionChangeListener and treeToggleListener do not work > -------------------------------------------------------------------- > > Key: RF-10968 > URL: https://issues.jboss.org/browse/RF-10968 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-tree > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22458 > Metamer 4.1.0-SNAPSHOT r.22459 > Mojarra 2.0.3- > JBoss AS 6.0.0.Final > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 11.0.696.57 @ Linux i686 > Reporter: Pavol Pitonak > Fix For: 4.3-Tracking > > Attachments: NodesTreeSequenceKeyModelImpl.java, tree.xhtml, Tree= Bean.java, TreeNodeImpl.java > > > Attributes treeSelectionChangeListener and treeToggleListener in rich:tre= e do not work. However, attributes selectionChangeListener and toggleListen= er do work. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9142546944626159878==-- From jira-events at lists.jboss.org Fri Mar 23 10:22:50 2012 Content-Type: multipart/mixed; boundary="===============8645398154005064521==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12079) ignores Date: Fri, 23 Mar 2012 10:22:50 -0400 Message-ID: <610051988.28347.1332512570594.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2129957963.25561.1332425267314.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8645398154005064521== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12079?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-12079: ---------------------------------- Assignee: Brian Leathem (was: Pavol Pitonak) = > ignores > ---------------------------------- > > Key: RF-12079 > URL: https://issues.jboss.org/browse/RF-12079 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.0 and JSF 2.2 with CDI (Bean type "jav= ax.inject.Named") > Application Server GlassFish Server Open Source Edition 3.1.2 (build 23) > Reporter: Wesley Menezes > Assignee: Brian Leathem > > In JSF with a and this have nested, if is applied in , the ajax listener isn't called. > But, if applied to (under) , the ajax event fires m= ethod listener call. > {code:title=3DXHTML (snippet)} > id=3D"memoriaTree" > value=3D"#{cadCustomerBean.rootNodes}" > toggleType=3D"client" > var=3D"node" > nodeType=3D"#{node.data.type}" > > > id=3D"memoriaRoot" > type=3D"customer" > iconLeaf=3D"../images/fichario.gif" > data=3D"#{node.data.id}"> > > immediate=3D"true" > execute=3D"@this" > event=3D"mousedown" > listener=3D"#{cadCustomerBean.processTreeSelectionChange(= node.data)}"/> > > > {code} > {code:title=3DBEAN (snippet)} > /*imports...*/ > @Named > @SessionScoped > public class CadCustomerBean implements Serializable { > public void processTreeSelectionChange (MyClass myObject) { > = > System.out.println(myObject); > } > } > {code} > Obs. In RichFaces 4.2.0 Final showcase, the has the attribute= "selectionChangeListener", but I found only "treeSelectionChangeListener" = in jars of RichFaces (like attribute of the tag, or like a tag = ). The "Component_Reference.pdf" is ok. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8645398154005064521==-- From jira-events at lists.jboss.org Fri Mar 23 10:22:50 2012 Content-Type: multipart/mixed; boundary="===============0431445237172379738==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12079) ignores Date: Fri, 23 Mar 2012 10:22:50 -0400 Message-ID: <1529841444.28344.1332512570497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2129957963.25561.1332425267314.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0431445237172379738== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12079?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678970#com= ment-12678970 ] = Pavol Pitonak commented on RF-12079: ------------------------------------ There is an issue for tree's listeners - RF-10968. a4j:ajax doesn't accept listener methods as is used in the sample above. Se= e documentation for a4j:ajax: {quote} The expression must evaluate to a public method that takes an ActionEvent p= arameter, with a return type of void, or to a public method that takes no a= rguments with a return type of void. {quote} = > ignores > ---------------------------------- > > Key: RF-12079 > URL: https://issues.jboss.org/browse/RF-12079 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.0 and JSF 2.2 with CDI (Bean type "jav= ax.inject.Named") > Application Server GlassFish Server Open Source Edition 3.1.2 (build 23) > Reporter: Wesley Menezes > Assignee: Pavol Pitonak > > In JSF with a and this have nested, if is applied in , the ajax listener isn't called. > But, if applied to (under) , the ajax event fires m= ethod listener call. > {code:title=3DXHTML (snippet)} > id=3D"memoriaTree" > value=3D"#{cadCustomerBean.rootNodes}" > toggleType=3D"client" > var=3D"node" > nodeType=3D"#{node.data.type}" > > > id=3D"memoriaRoot" > type=3D"customer" > iconLeaf=3D"../images/fichario.gif" > data=3D"#{node.data.id}"> > > immediate=3D"true" > execute=3D"@this" > event=3D"mousedown" > listener=3D"#{cadCustomerBean.processTreeSelectionChange(= node.data)}"/> > > > {code} > {code:title=3DBEAN (snippet)} > /*imports...*/ > @Named > @SessionScoped > public class CadCustomerBean implements Serializable { > public void processTreeSelectionChange (MyClass myObject) { > = > System.out.println(myObject); > } > } > {code} > Obs. In RichFaces 4.2.0 Final showcase, the has the attribute= "selectionChangeListener", but I found only "treeSelectionChangeListener" = in jars of RichFaces (like attribute of the tag, or like a tag = ). The "Component_Reference.pdf" is ok. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0431445237172379738==-- From jira-events at lists.jboss.org Fri Mar 23 11:41:47 2012 Content-Type: multipart/mixed; boundary="===============3314613548410196426==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Fri, 23 Mar 2012 11:41:47 -0400 Message-ID: <1535268655.28477.1332517307458.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3314613548410196426== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12026?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-12026: ---------------------------------- Assignee: Brian Leathem (was: Pavol Pitonak) I was able to reproduce in both Firefox 3.6.13 and 11.0. I added a new samp= le to Metamer which can be accessed after deploy on http://localhost:8080/m= etamer/faces/components/richExtendedDataTable/rf-12026.xhtml = > Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" > ------------------------------------------------------------------------ > > Key: RF-12026 > URL: https://issues.jboss.org/browse/RF-12026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Environment: FireFox 3.6.27 > Reporter: Ulf Almehed > Assignee: Brian Leathem > Priority: Minor > Labels: regression > Fix For: 4.2.1.CR1 > > > Ajax request fails with javascript error "invalid 'in' operand event", ri= chfaces-queue.js line 130. > This was introduced by the fix in RF-11943. Checking for existence of lay= erX fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3314613548410196426==-- From jira-events at lists.jboss.org Fri Mar 23 11:41:47 2012 Content-Type: multipart/mixed; boundary="===============9184257802788307352==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Fri, 23 Mar 2012 11:41:47 -0400 Message-ID: <163479656.28481.1332517307790.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9184257802788307352== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12026?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-12026: ------------------------------- Environment: Firefox 3.6.27, 11.0 (was: FireFox 3.6.27) = > Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" > ------------------------------------------------------------------------ > > Key: RF-12026 > URL: https://issues.jboss.org/browse/RF-12026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Environment: Firefox 3.6.27, 11.0 > Reporter: Ulf Almehed > Assignee: Brian Leathem > Priority: Minor > Labels: regression > Fix For: 4.2.1.CR1 > > > Ajax request fails with javascript error "invalid 'in' operand event", ri= chfaces-queue.js line 130. > This was introduced by the fix in RF-11943. Checking for existence of lay= erX fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9184257802788307352==-- From jira-events at lists.jboss.org Fri Mar 23 11:56:47 2012 Content-Type: multipart/mixed; boundary="===============3198321152846750793==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Fri, 23 Mar 2012 11:56:47 -0400 Message-ID: <2101963775.28511.1332518207642.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3198321152846750793== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12026?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678870#com= ment-12678870 ] = Brian Leathem edited comment on RF-12026 at 3/23/12 11:54 AM: -------------------------------------------------------------- Brian: Yes, here is a small sample that will reproduce the error: It displays an E= xtendedDataTable with the clientRows property set. If you drag the vertical= scroller to the bottom, the table wount render anything due to the js-erro= r. Browser: FireFox 3.6.28 A fix would be to replace the guard "if (event) {" with "if (event && event= instanceof Object) {" (line 129 in richfaces-queue.js). {code:title=3Dedt.xhtml} JSF Demo = {code} {code:title=3DEdtBean.java} package org.bogus; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import java.util.Locale; import javax.enterprise.context.SessionScoped; import javax.inject.Named; //@RequestScoped @SessionScoped @Named public class EdtBean implements Serializable { private static final long serialVersionUID =3D 1L; private List mEdtData =3D new ArrayList(); public EdtBean() { mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); } public void setEdtData(List mEdtData) { this.mEdtData =3D mEdtData; } public List getEdtData() { return mEdtData; } = } {code} = was (Author: uad): Brian: Yes, here is a small sample that will reproduce the error: It displays an E= xtendedDataTable with the clientRows property set. If you drag the vertical= scroller to the bottom, the table wount render anything due to the js-erro= r. Browser: FireFox 3.6.28 A fix would be to replace the guard "if (event) {" with "if (event && event= instanceof Object) {" (line 129 in richfaces-queue.js). edt.xhtml: JSF Demo = EdtBean.java: package org.bogus; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import java.util.Locale; import javax.enterprise.context.SessionScoped; import javax.inject.Named; //@RequestScoped @SessionScoped @Named public class EdtBean implements Serializable { private static final long serialVersionUID =3D 1L; private List mEdtData =3D new ArrayList(); public EdtBean() { mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); mEdtData.add(new String[]{"Apa", "Boa", "Cikada"}); mEdtData.add(new String[]{"Doris", "Emma", "Frida"}); mEdtData.add(new String[]{"Glosa", "Hemkunskap", "IG"}); mEdtData.add(new String[]{"Jul", "Kristihimmelf=C3=A4rdsdag", "L=C3=A5ngf= redag"}); mEdtData.add(new String[]{"Mousaka", "Nudlar", "Omelett"}); mEdtData.add(new String[]{"Paris", "Quibet", "Rotebro"}); mEdtData.add(new String[]{"Skotland", "Tanzania", "Uruguay"}); mEdtData.add(new String[]{"Vask", "Whiteboard", "X-krok"}); mEdtData.add(new String[]{"Youngblood", "ZZ-Top", "=C3=85dalen31"}); } public void setEdtData(List mEdtData) { this.mEdtData =3D mEdtData; } public List getEdtData() { return mEdtData; } = } = > Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" > ------------------------------------------------------------------------ > > Key: RF-12026 > URL: https://issues.jboss.org/browse/RF-12026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Environment: Firefox 3.6.27, 11.0 > Reporter: Ulf Almehed > Assignee: Brian Leathem > Priority: Minor > Labels: regression > Fix For: 4.2.1.CR1 > > > Ajax request fails with javascript error "invalid 'in' operand event", ri= chfaces-queue.js line 130. > This was introduced by the fix in RF-11943. Checking for existence of lay= erX fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3198321152846750793==-- From jira-events at lists.jboss.org Fri Mar 23 12:14:47 2012 Content-Type: multipart/mixed; boundary="===============7870268792162336256==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 12:14:47 -0400 Message-ID: <801088249.28542.1332519287552.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7870268792162336256== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678996#com= ment-12678996 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- Hi Stian, you are right, it's the problem of timing, I forgot I have added the condit= ion. = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7870268792162336256==-- From jira-events at lists.jboss.org Fri Mar 23 12:14:47 2012 Content-Type: multipart/mixed; boundary="===============0185226416018319376==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 12:14:47 -0400 Message-ID: <1748295460.28537.1332519287398.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0185226416018319376== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-12072: ----------------------------- = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0185226416018319376==-- From jira-events at lists.jboss.org Fri Mar 23 12:16:47 2012 Content-Type: multipart/mixed; boundary="===============7277903166593580931==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 12:16:47 -0400 Message-ID: <1805396347.28547.1332519407524.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7277903166593580931== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678997#com= ment-12678997 ] = Jean ANDRE commented on RF-12038: --------------------------------- The problem under IE is really about: event.stopPropagation(). Removing the= instruction removes the error. To summarize, we have 2 errors. The first = comes from event.stopPropagation(). Is there a variable clash with event ob= ject under IE and what is the substitute solution? and the second if about = the null element inside the jsf.js.jsf?ln=3Djavax.faces. with the instructi= on: if(!element.name). = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: waiting_on_user > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7277903166593580931==-- From jira-events at lists.jboss.org Fri Mar 23 12:20:47 2012 Content-Type: multipart/mixed; boundary="===============9085171580815267653==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 12:20:47 -0400 Message-ID: <1941075761.28557.1332519647840.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9085171580815267653== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12072: ---------------------------- Fix Version/s: 4.2.1.CR1 = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9085171580815267653==-- From jira-events at lists.jboss.org Fri Mar 23 12:22:47 2012 Content-Type: multipart/mixed; boundary="===============9194988520732608628==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12026) Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" Date: Fri, 23 Mar 2012 12:22:47 -0400 Message-ID: <813272285.28563.1332519767589.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1447882664.73686.1331126016454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9194988520732608628== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12026?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12026. -------------------------------- Resolution: Done Thanks Ulf, Pavol for your help in reproducing this issue. I added an instanceof object check before the layerX/Y removal. = > Javascript error in AjaxRequests on FireFox "invalid 'in' operand event" > ------------------------------------------------------------------------ > > Key: RF-12026 > URL: https://issues.jboss.org/browse/RF-12026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Environment: Firefox 3.6.27, 11.0 > Reporter: Ulf Almehed > Assignee: Brian Leathem > Priority: Minor > Labels: regression > Fix For: 4.2.1.CR1 > > > Ajax request fails with javascript error "invalid 'in' operand event", ri= chfaces-queue.js line 130. > This was introduced by the fix in RF-11943. Checking for existence of lay= erX fails if event isn't an Object (but a simple type). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9194988520732608628==-- From jira-events at lists.jboss.org Fri Mar 23 12:26:47 2012 Content-Type: multipart/mixed; boundary="===============5587316053383631291==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 12:26:47 -0400 Message-ID: <1264409403.28576.1332520007454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5587316053383631291== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679002#com= ment-12679002 ] = Jean ANDRE commented on RF-12038: --------------------------------- Solution found by setting the following script inside the header. There is = some adapation for FireFox does not recognize: "window.event is undefined"= but now under FireFox we have the NPE. {code} = {code} To conclude, the solution is really to stop event propagation to ovoid the = NPE inside jsf.js.jsf but the way to be done must be adapted to each browse= r. = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: waiting_on_user > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5587316053383631291==-- From jira-events at lists.jboss.org Fri Mar 23 12:57:47 2012 Content-Type: multipart/mixed; boundary="===============5754672823119381789==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Fri, 23 Mar 2012 12:57:47 -0400 Message-ID: <1353223282.28619.1332521867370.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5754672823119381789== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679002#com= ment-12679002 ] = Jean ANDRE edited comment on RF-12038 at 3/23/12 12:56 PM: ----------------------------------------------------------- Solution found by setting the following script somewhere. There is some ada= pation for FireFox but now under FireFox we have the NPE: = {code} window.event.cancelBubble =3D true; {code} To conclude, the solution is really to stop event propagation to ovoid the = NPE inside jsf.js.jsf but the way to be done must be adapted to each browse= r. = was (Author: jorelia64): Solution found by setting the following script inside the header. There= is some adapation for FireFox does not recognize: "window.event is undefi= ned" but now under FireFox we have the NPE. {code} = {code} To conclude, the solution is really to stop event propagation to ovoid the = NPE inside jsf.js.jsf but the way to be done must be adapted to each browse= r. = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: waiting_on_user > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5754672823119381789==-- From jira-events at lists.jboss.org Fri Mar 23 13:35:47 2012 Content-Type: multipart/mixed; boundary="===============3722891370739508427==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11996) rich:contextMenu on several rows in extendedDataTable Date: Fri, 23 Mar 2012 13:35:47 -0400 Message-ID: <821304956.28645.1332524147554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1622600198.30257.1329820356436.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3722891370739508427== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11996?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679015#com= ment-12679015 ] = Brian Leathem commented on RF-11996: ------------------------------------ I'll compare it to the desktop experience: # right click on an icon on your desktop ## it gets selected, and the contextmenu appears # right click on another icon ## the selection changes, and the contextmenu appears # hold shift/ctrl and right click on another icon, they all are selected an= d the contextMenu appears To me, this is the behaviour we should be emulating, and works today, excpe= t we need to make the change: {quote} if (rightClick && selected) { do not select } {quote} = > rich:contextMenu on several rows in extendedDataTable > ----------------------------------------------------- > > Key: RF-11996 > URL: https://issues.jboss.org/browse/RF-11996 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu, component-tables > Affects Versions: 4.2.0.CR1 > Reporter: Philip Maes > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > Hi, > I was using the contextmenu from the sandbox and now I'm using the one fr= om 4.2.0.RC1. With the sandbox contextmenu, when several rows in a table w= ere selected the right-click to open the contextmenu didn't unselect others= rows. > The new rich:contextMenu does unselect the other rows. It's quite embaras= sing because we can't use it to apply a contextmenu for several selected ro= ws... > Thanks in advance, > best regards. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3722891370739508427==-- From jira-events at lists.jboss.org Fri Mar 23 13:35:47 2012 Content-Type: multipart/mixed; boundary="===============7363736530944556952==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11996) rich:contextMenu on several rows in extendedDataTable Date: Fri, 23 Mar 2012 13:35:47 -0400 Message-ID: <1199211820.28647.1332524147618.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1622600198.30257.1329820356436.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7363736530944556952== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11996?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679015#com= ment-12679015 ] = Brian Leathem edited comment on RF-11996 at 3/23/12 1:34 PM: ------------------------------------------------------------- I'll compare it to the desktop experience: # right click on an icon on your desktop #* it gets selected, and the contextmenu appears # right click on another icon #* the selection changes, and the contextmenu appears # hold shift/ctrl and right click on another icon, they all are selected an= d the contextMenu appears To me, this is the behaviour we should be emulating, and works today, excpe= t we need to make the change: {quote} if (rightClick && selected) { do not select } {quote} = was (Author: bleathem): I'll compare it to the desktop experience: # right click on an icon on your desktop ## it gets selected, and the contextmenu appears # right click on another icon ## the selection changes, and the contextmenu appears # hold shift/ctrl and right click on another icon, they all are selected an= d the contextMenu appears To me, this is the behaviour we should be emulating, and works today, excpe= t we need to make the change: {quote} if (rightClick && selected) { do not select } {quote} = > rich:contextMenu on several rows in extendedDataTable > ----------------------------------------------------- > > Key: RF-11996 > URL: https://issues.jboss.org/browse/RF-11996 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu, component-tables > Affects Versions: 4.2.0.CR1 > Reporter: Philip Maes > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > Hi, > I was using the contextmenu from the sandbox and now I'm using the one fr= om 4.2.0.RC1. With the sandbox contextmenu, when several rows in a table w= ere selected the right-click to open the contextmenu didn't unselect others= rows. > The new rich:contextMenu does unselect the other rows. It's quite embaras= sing because we can't use it to apply a contextmenu for several selected ro= ws... > Thanks in advance, > best regards. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7363736530944556952==-- From jira-events at lists.jboss.org Fri Mar 23 16:37:48 2012 Content-Type: multipart/mixed; boundary="===============5555797793870397349==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 16:37:48 -0400 Message-ID: <712040448.28978.1332535068085.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5555797793870397349== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12072: ---------------------------- Workaround Description: = Use {{a4j:jsFunction}} and {{}} {code:XML} {code} Workaround: Workaround Exists = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5555797793870397349==-- From jira-events at lists.jboss.org Fri Mar 23 16:37:48 2012 Content-Type: multipart/mixed; boundary="===============0404153412384712831==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 16:37:48 -0400 Message-ID: <1053617124.28988.1332535068577.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0404153412384712831== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679059#com= ment-12679059 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- Hey Stian, I have added simple naive workaround for this issue. = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0404153412384712831==-- From jira-events at lists.jboss.org Fri Mar 23 16:42:47 2012 Content-Type: multipart/mixed; boundary="===============8636030942873962368==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 16:42:47 -0400 Message-ID: <1968623475.28993.1332535367456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8636030942873962368== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679060#com= ment-12679060 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- Currently {{a4j:push}} subscribes once page is fully loaded [1]. What we can do is subscribe immediately, but queue all requests which will = come before document is ready. Then on document ready event, we will fire all events queued before. [1] https://github.com/richfaces/components/blob/develop/core/ui/src/main/r= esources/META-INF/resources/org.richfaces/push.js#L185 = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8636030942873962368==-- From jira-events at lists.jboss.org Fri Mar 23 16:44:47 2012 Content-Type: multipart/mixed; boundary="===============7729327473163890658==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Fri, 23 Mar 2012 16:44:47 -0400 Message-ID: <729187840.29004.1332535487310.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7729327473163890658== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679062#com= ment-12679062 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- Hey Stian, any chance you could look into fixing the issue the proposed way= ^ ? = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7729327473163890658==-- From jira-events at lists.jboss.org Sat Mar 24 13:09:48 2012 Content-Type: multipart/mixed; boundary="===============5691228120671602355==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10968) Tree: treeSelectionChangeListener and treeToggleListener do not work Date: Sat, 24 Mar 2012 13:09:48 -0400 Message-ID: <178634877.29388.1332608988642.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 35352639.27278.1304411418583.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5691228120671602355== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10968?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-10968: ------------------------------- Fix Version/s: 4.2.1.CR1 (was: 4.3-Tracking) = > Tree: treeSelectionChangeListener and treeToggleListener do not work > -------------------------------------------------------------------- > > Key: RF-10968 > URL: https://issues.jboss.org/browse/RF-10968 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-tree > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22458 > Metamer 4.1.0-SNAPSHOT r.22459 > Mojarra 2.0.3- > JBoss AS 6.0.0.Final > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 11.0.696.57 @ Linux i686 > Reporter: Pavol Pitonak > Fix For: 4.2.1.CR1 > > Attachments: NodesTreeSequenceKeyModelImpl.java, tree.xhtml, Tree= Bean.java, TreeNodeImpl.java > > > Attributes treeSelectionChangeListener and treeToggleListener in rich:tre= e do not work. However, attributes selectionChangeListener and toggleListen= er do work. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5691228120671602355==-- From jira-events at lists.jboss.org Sat Mar 24 13:11:47 2012 Content-Type: multipart/mixed; boundary="===============2026690048393347840==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12080) rich:hotKey usage clears body onload attribute Date: Sat, 24 Mar 2012 13:11:47 -0400 Message-ID: <1525891085.29390.1332609107715.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1411413331.27453.1332488387294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2026690048393347840== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12080?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12080: ------------------------------- Fix Version/s: 4.2.1.CR1 = > rich:hotKey usage clears body onload attribute > ---------------------------------------------- > > Key: RF-12080 > URL: https://issues.jboss.org/browse/RF-12080 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.2.0.Final > Environment: myfaces 2.1.6, tomahawk 1.1.11 > Reporter: Michael Heinen > Priority: Minor > Fix For: 4.2.1.CR1 > > > I'm happy to see rich:hotKey in richfaces 4.2, I used it already with ric= hfaces 3.3.3. > One thing I noticed now is that the onload attribute of t:documentboy is = cleared on clientside as soon as rich:hotKey is used on a page. Maybe cause= d by jquery usage? > From my pov this should be either fixed or documented in the component gu= ide as well as in the showcase sample. > Workaround is obvious: Instead of onload use document.ready -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2026690048393347840==-- From jira-events at lists.jboss.org Sat Mar 24 13:13:47 2012 Content-Type: multipart/mixed; boundary="===============3211437484474867734==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12081) Problem with RichEditor RF 4.2.0 Date: Sat, 24 Mar 2012 13:13:47 -0400 Message-ID: <2005441719.29392.1332609227304.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1278339548.27975.1332502007395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3211437484474867734== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12081?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12081: ------------------------------- Labels: waiting_on_user (was: ) Can you upload the picture you are referring to? Also, do you see this problem with the showcase? http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Deditor = > Problem with RichEditor RF 4.2.0 > -------------------------------- > > Key: RF-12081 > URL: https://issues.jboss.org/browse/RF-12081 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: phelen harg > Labels: waiting_on_user > > I'm migrating my Application from RF 3.3.3 to RF 4.2.0. But = now i'm facing a problem with the richEditor. When I load the the component= , all the links in application receive a background like this picture: = > Analizing the code with Firebug, I found the problem in the = CSS of RichEditor. /org.richfaces.resources/javax.faces.resource/org.richfa= ces.ckeditor/skins/richfaces/editor.ecss?db=3DeAHj0yqqAgACGAEl > If I erase the CSS the backgroud disappear. There is some = kind of workaround for this? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3211437484474867734==-- From jira-events at lists.jboss.org Sat Mar 24 13:15:48 2012 Content-Type: multipart/mixed; boundary="===============1708882359130381818==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12083) Components: Output UI module doesn't pass unit tests (MenuItemRendererTest and DropDownMenuRendererTest) Date: Sat, 24 Mar 2012 13:15:48 -0400 Message-ID: <1182282289.29396.1332609348133.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 356683327.28101.1332505788416.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1708882359130381818== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12083?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12083: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Brian Leathem = > Components: Output UI module doesn't pass unit tests (MenuItemRendererTes= t and DropDownMenuRendererTest) > -------------------------------------------------------------------------= ------------------------------- > > Key: RF-12083 > URL: https://issues.jboss.org/browse/RF-12083 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.2.1.CR1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.renderkit.html.MenuItemRendererTest > -------------------------------------------------------------------------= ------ > Tests run: 6, Failures: 3, Errors: 0, Skipped: 1, Time elapsed: 3.172 sec= <<< FAILURE! > testDoEncodeServerMode(org.richfaces.renderkit.html.MenuItemRendererTest)= Time elapsed: 0.566 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeServerM= ode(MenuItemRendererTest.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeAjaxMode(org.richfaces.renderkit.html.MenuItemRendererTest) = Time elapsed: 0.613 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeAjaxMod= e(MenuItemRendererTest.java:71) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeClientMode(org.richfaces.renderkit.html.MenuItemRendererTest)= Time elapsed: 0.724 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeClientM= ode(MenuItemRendererTest.java:88) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.renderkit.html.DropDownMenuRendererTest > -------------------------------------------------------------------------= ------ > Tests run: 4, Failures: 2, Errors: 0, Skipped: 1, Time elapsed: 2.206 sec= <<< FAILURE! > testDoEncodeServerMode(org.richfaces.renderkit.html.DropDownMenuRendererT= est) Time elapsed: 0.729 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[2]/div[1]/div[1]/div[1]/div[1] to at /div[1= ]/div[2]/div[1]/div[1]/div[1]/span[1] >
    >
    > > File >
    >
    >
    >
    >
    > > > > > > Open > > >
    >
    > > > > > > Save As... > >
    >
    >
    >
    > > > > > Save > > >
    >
    >
    >
    > > > > > > SaveAll > > >
    >
    >
    >
    >
    >
    >
    >
    > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.DropDownMenuRendererTest.testDoEncodeSer= verMode(DropDownMenuRendererTest.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeAjaxMode(org.richfaces.renderkit.html.DropDownMenuRendererTes= t) Time elapsed: 0.677 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[2]/div[1]/div[1]/div[1]/div[1] to at /div[1= ]/div[2]/div[1]/div[1]/div[1]/span[1] >
    >
    > > File >
    >
    >
    >
    >
    > > > > > > Open > > >
    >
    > > > > > > Save As... > >
    >
    >
    >
    > > > > > Save > > >
    >
    >
    >
    > > > > > > SaveAll > > >
    >
    >
    >
    >
    >
    >
    >
    > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.DropDownMenuRendererTest.testDoEncodeAja= xMode(DropDownMenuRendererTest.java:56) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1708882359130381818==-- From jira-events at lists.jboss.org Sat Mar 24 13:15:48 2012 Content-Type: multipart/mixed; boundary="===============6008173562977527833==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12082) Components: Output UI module doesn't pass unit tests (AbstractTogglePanelTest#testGetChildName) Date: Sat, 24 Mar 2012 13:15:47 -0400 Message-ID: <380516993.29394.1332609347988.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 147991329.28097.1332505547854.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6008173562977527833== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12082?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12082. -------------------------------- Assignee: Brian Leathem Resolution: Out of Date This has already been fixed with commit: https://github.com/richfaces/components/commit/286b32c76a39564b739c4d46de28= f3f2fea77bc4 = > Components: Output UI module doesn't pass unit tests (AbstractTogglePanel= Test#testGetChildName) > -------------------------------------------------------------------------= ---------------------- > > Key: RF-12082 > URL: https://issues.jboss.org/browse/RF-12082 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.3.0.Milestone1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Priority: Critical > > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.component.AbstractTogglePanelTest > -------------------------------------------------------------------------= ------ > Tests run: 5, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec= <<< FAILURE! > testGetChildName(org.richfaces.component.AbstractTogglePanelTest) Time e= lapsed: 0.005 sec <<< FAILURE! > java.lang.AssertionError: Expected exception: java.lang.IllegalArgumentEx= ception > at org.junit.internal.runners.statements.ExpectException.evaluate(Expect= Exception.java:32) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6008173562977527833==-- From jira-events at lists.jboss.org Sat Mar 24 13:55:47 2012 Content-Type: multipart/mixed; boundary="===============2896014406333543591==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11936) rich:contextMenu activation is possible outside of tree nodes Date: Sat, 24 Mar 2012 13:55:47 -0400 Message-ID: <845620540.29415.1332611747803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 643933580.14431.1328103828616.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2896014406333543591== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11936?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11936. -------------------------------- Resolution: Done Added a selector filtering which DOM elements trigger the contextMenu. This selector can be overridden with the "targetSelector" attribute. = > rich:contextMenu activation is possible outside of tree nodes > ------------------------------------------------------------- > > Key: RF-11936 > URL: https://issues.jboss.org/browse/RF-11936 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-tree > Affects Versions: 4.2.0.CR1 > Environment: browsers: all browsers > Reporter: Juraj Huska > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: contextMenu.png, exdt_cm1.png, exdt_cm2.png > > > In the showcase demo for rich:contextMenu, the sample Tree ContextMenu, i= t is possible to activate the context menu not only from the nodes, but als= o outside of thenodes. > It is *rather a problem of the rich:tree*, since its rows contains nodes,= which are rendered with 100% width. > When it is then selected with the contextMenu item, a popup with empty co= ntent is displayed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2896014406333543591==-- From jira-events at lists.jboss.org Sun Mar 25 14:52:49 2012 Content-Type: multipart/mixed; boundary="===============4190150923639357911==" MIME-Version: 1.0 From: Ivan Costa (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12084) Richfaces 4.2 when inside dont work and causes 'identifier resolved to null' Date: Sun, 25 Mar 2012 14:52:49 -0400 Message-ID: <1382382061.29574.1332701569056.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4190150923639357911== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ivan Costa created RF-12084: ------------------------------- Summary: Richfaces 4.2 when inside don= t work and causes 'identifier resolved to null' Key: RF-12084 URL: https://issues.jboss.org/browse/RF-12084 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-a4j-core Affects Versions: 4.2.0.Final Environment: Windows Vista, Firefox 11, Richfaces 4.2 Final, Mojar= ra 2.1.7, Tomcat 7.0.26 Reporter: Ivan Costa a4j:commandLink or a4j:ajax tags inside ui:fragment causes 'identifier reso= lved to null', = but h:commandLink + f:ajax (both from Mojarra) works perfectly fine! The problem is described here https://community.jboss.org/message/723859 and here: https://community.jboss.org/thread/196867 = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4190150923639357911==-- From jira-events at lists.jboss.org Mon Mar 26 00:10:48 2012 Content-Type: multipart/mixed; boundary="===============2766822913821461683==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12083) Components: Output UI module doesn't pass unit tests (MenuItemRendererTest and DropDownMenuRendererTest) Date: Mon, 26 Mar 2012 00:10:47 -0400 Message-ID: <1964342779.29746.1332735047851.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 356683327.28101.1332505788416.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2766822913821461683== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12083?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12083. -------------------------------- Resolution: Done = > Components: Output UI module doesn't pass unit tests (MenuItemRendererTes= t and DropDownMenuRendererTest) > -------------------------------------------------------------------------= ------------------------------- > > Key: RF-12083 > URL: https://issues.jboss.org/browse/RF-12083 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.2.1.CR1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.renderkit.html.MenuItemRendererTest > -------------------------------------------------------------------------= ------ > Tests run: 6, Failures: 3, Errors: 0, Skipped: 1, Time elapsed: 3.172 sec= <<< FAILURE! > testDoEncodeServerMode(org.richfaces.renderkit.html.MenuItemRendererTest)= Time elapsed: 0.566 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeServerM= ode(MenuItemRendererTest.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeAjaxMode(org.richfaces.renderkit.html.MenuItemRendererTest) = Time elapsed: 0.613 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeAjaxMod= e(MenuItemRendererTest.java:71) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeClientMode(org.richfaces.renderkit.html.MenuItemRendererTest)= Time elapsed: 0.724 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeClientM= ode(MenuItemRendererTest.java:88) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.renderkit.html.DropDownMenuRendererTest > -------------------------------------------------------------------------= ------ > Tests run: 4, Failures: 2, Errors: 0, Skipped: 1, Time elapsed: 2.206 sec= <<< FAILURE! > testDoEncodeServerMode(org.richfaces.renderkit.html.DropDownMenuRendererT= est) Time elapsed: 0.729 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[2]/div[1]/div[1]/div[1]/div[1] to at /div[1= ]/div[2]/div[1]/div[1]/div[1]/span[1] >
    >
    > > File >
    >
    >
    >
    >
    > > > > > > Open > > >
    >
    > > > > > > Save As... > >
    >
    >
    >
    > > > > > Save > > >
    >
    >
    >
    > > > > > > SaveAll > > >
    >
    >
    >
    >
    >
    >
    >
    > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.DropDownMenuRendererTest.testDoEncodeSer= verMode(DropDownMenuRendererTest.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeAjaxMode(org.richfaces.renderkit.html.DropDownMenuRendererTes= t) Time elapsed: 0.677 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[2]/div[1]/div[1]/div[1]/div[1] to at /div[1= ]/div[2]/div[1]/div[1]/div[1]/span[1] >
    >
    > > File >
    >
    >
    >
    >
    > > > > > > Open > > >
    >
    > > > > > > Save As... > >
    >
    >
    >
    > > > > > Save > > >
    >
    >
    >
    > > > > > > SaveAll > > >
    >
    >
    >
    >
    >
    >
    >
    > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.DropDownMenuRendererTest.testDoEncodeAja= xMode(DropDownMenuRendererTest.java:56) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2766822913821461683==-- From jira-events at lists.jboss.org Mon Mar 26 00:29:47 2012 Content-Type: multipart/mixed; boundary="===============4383882702953997870==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11996) rich:contextMenu on several rows in extendedDataTable Date: Mon, 26 Mar 2012 00:29:47 -0400 Message-ID: <76253475.29769.1332736187450.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1622600198.30257.1329820356436.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4383882702953997870== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11996?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11996. -------------------------------- Resolution: Done Prevented the contextMenu click from triggering an EDT row selection if the= row was already selected. Feel free to re-open this issue, if you have a use case that does not fit t= his solution. = > rich:contextMenu on several rows in extendedDataTable > ----------------------------------------------------- > > Key: RF-11996 > URL: https://issues.jboss.org/browse/RF-11996 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu, component-tables > Affects Versions: 4.2.0.CR1 > Reporter: Philip Maes > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > Hi, > I was using the contextmenu from the sandbox and now I'm using the one fr= om 4.2.0.RC1. With the sandbox contextmenu, when several rows in a table w= ere selected the right-click to open the contextmenu didn't unselect others= rows. > The new rich:contextMenu does unselect the other rows. It's quite embaras= sing because we can't use it to apply a contextmenu for several selected ro= ws... > Thanks in advance, > best regards. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4383882702953997870==-- From jira-events at lists.jboss.org Mon Mar 26 01:03:15 2012 Content-Type: multipart/mixed; boundary="===============6810606008054968815==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11968) 4.2.0.CR1 contextMenu positioning incorrect when dynamically rendering on row select Date: Mon, 26 Mar 2012 01:03:15 -0400 Message-ID: <1079512174.29793.1332738195798.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 784637995.32591.1328750928377.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6810606008054968815== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11968?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11968: ------------------------------- Fix Version/s: 4.Future (was: 4.2.1.CR1) Workaround Description: = Declare the contextMenu component before the dynamically rendered div, as i= n: {code} ... ... {code} This way, the dynamic rendering of the panel div does not affect the positi= on of the contextMenu was:None tested. Workaround description updated, further resolution of this issue will conti= nue when the positioning jQuery plugin has adequate Qunit tests. = > 4.2.0.CR1 contextMenu positioning incorrect when dynamically rendering on= row select > -------------------------------------------------------------------------= ----------- > > Key: RF-11968 > URL: https://issues.jboss.org/browse/RF-11968 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.CR1 > Environment: Chrome browser Glassfish 3.1.1 Mojarra 2.1.6 > Reporter: Brendan Healey > Assignee: Brian Leathem > Fix For: 4.Future > > Attachments: contextMenuWrongPositioning.png > > > There's a positioning error with contextMenu in the following scenario. > I have an extendedDataTable which renders a rich:panel when a row in the > table is selected. Initially no row is selected and the rich:panel is not > rendered. I right click in the table and the menuItem appears way below > the row I right clicked. > {code} > id=3D"mytable" value=3D"#{bean.someList}" var=3D"var" > selection=3D"#{bean.selectedRow}" > selectionMode=3D"single"> > event=3D"selectionchange" > listener=3D"#{bean.doRowSelect}"/> > ... > > > > ... > > > > > > {code} > {code} > public void doRowSelect(...) { > selectedDepartment =3D ... (usual stuff); > } > {code} > Also tried with contextMenu mode=3D"client" with the same result. > Regards, > Brendan. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6810606008054968815==-- From jira-events at lists.jboss.org Mon Mar 26 01:06:47 2012 Content-Type: multipart/mixed; boundary="===============6773189992622172839==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12085) The richfaces version change script is missing version strings in the kitchensink archetype file Date: Mon, 26 Mar 2012 01:06:47 -0400 Message-ID: <1849208334.29814.1332738407483.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6773189992622172839== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-12085: ---------------------------------- Summary: The richfaces version change script is missing versio= n strings in the kitchensink archetype file Key: RF-12085 URL: https://issues.jboss.org/browse/RF-12085 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype, build/distribution Reporter: Brian Leathem Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Priority: Critical Fix For: 4.2.1.CR1 {code} [archetypes (release/4.2.1.CR1)]> ack 4.3.0 components/component/src/main/resources/META-INF/maven/archetype-metadata.x= ml 39: 4.3.0-SNAPSHOT components/components-aggregator/src/main/resources/META-INF/maven/archetyp= e-metadata.xml 36: 4.3.0-SNAPSHOT components/component-short/src/main/resources/META-INF/maven/archetype-meta= data.xml 39: 4.3.0-SNAPSHOT kitchensink/src/main/resources/META-INF/maven/archetype-metadata.xml 10: 4.3.0-SNAPSHOT kitchensink/src/test/resources/projects/basic/archetype.properties 5:richfaces-version=3D4.3.0-SNAPSHOT {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6773189992622172839==-- From jira-events at lists.jboss.org Mon Mar 26 01:08:47 2012 Content-Type: multipart/mixed; boundary="===============1038910679734931616==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12086) Update the RichFaces WFK version in the archetypes Date: Mon, 26 Mar 2012 01:08:47 -0400 Message-ID: <1088995279.29817.1332738527229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1038910679734931616== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-12086: ---------------------------------- Summary: Update the RichFaces WFK version in the archetypes Key: RF-12086 URL: https://issues.jboss.org/browse/RF-12086 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: archetype Reporter: Brian Leathem Priority: Critical Fix For: 4.2.1.CR1 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1038910679734931616==-- From jira-events at lists.jboss.org Mon Mar 26 01:19:47 2012 Content-Type: multipart/mixed; boundary="===============5554553669174643924==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12086) Update the RichFaces WFK version in the archetypes Date: Mon, 26 Mar 2012 01:19:47 -0400 Message-ID: <1250851143.29820.1332739187458.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1088995279.29817.1332738527229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5554553669174643924== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12086?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-12086: -------------------------------- = > Update the RichFaces WFK version in the archetypes > -------------------------------------------------- > > Key: RF-12086 > URL: https://issues.jboss.org/browse/RF-12086 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: archetype > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5554553669174643924==-- From jira-events at lists.jboss.org Mon Mar 26 01:19:47 2012 Content-Type: multipart/mixed; boundary="===============2033310987812127525==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12086) Update the RichFaces WFK version in the archetypes Date: Mon, 26 Mar 2012 01:19:47 -0400 Message-ID: <1534781798.29819.1332739187410.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1088995279.29817.1332738527229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2033310987812127525== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12086?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12086: ---------------------------------- Assignee: Brian Leathem = > Update the RichFaces WFK version in the archetypes > -------------------------------------------------- > > Key: RF-12086 > URL: https://issues.jboss.org/browse/RF-12086 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: archetype > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2033310987812127525==-- From jira-events at lists.jboss.org Mon Mar 26 01:19:47 2012 Content-Type: multipart/mixed; boundary="===============3483667646763094009==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12086) Update the RichFaces WFK version in the archetypes Date: Mon, 26 Mar 2012 01:19:47 -0400 Message-ID: <885881222.29818.1332739187342.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1088995279.29817.1332738527229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3483667646763094009== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12086?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12086. -------------------------------- Resolution: Done = > Update the RichFaces WFK version in the archetypes > -------------------------------------------------- > > Key: RF-12086 > URL: https://issues.jboss.org/browse/RF-12086 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: archetype > Reporter: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3483667646763094009==-- From jira-events at lists.jboss.org Mon Mar 26 01:19:47 2012 Content-Type: multipart/mixed; boundary="===============1556929020546009471==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12086) Update the RichFaces WFK version in the archetypes Date: Mon, 26 Mar 2012 01:19:47 -0400 Message-ID: <1872675132.29821.1332739187526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1088995279.29817.1332738527229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1556929020546009471== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12086?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12086: ---------------------------------- Assignee: (was: Brian Leathem) = > Update the RichFaces WFK version in the archetypes > -------------------------------------------------- > > Key: RF-12086 > URL: https://issues.jboss.org/browse/RF-12086 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: archetype > Reporter: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1556929020546009471==-- From jira-events at lists.jboss.org Mon Mar 26 01:21:47 2012 Content-Type: multipart/mixed; boundary="===============7151376572859908726==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12086) Update the RichFaces WFK version in the archetypes Date: Mon, 26 Mar 2012 01:21:47 -0400 Message-ID: <2054192308.29823.1332739307713.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1088995279.29817.1332738527229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7151376572859908726== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12086?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12086: ---------------------------------- Assignee: Brian Leathem = > Update the RichFaces WFK version in the archetypes > -------------------------------------------------- > > Key: RF-12086 > URL: https://issues.jboss.org/browse/RF-12086 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: archetype > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7151376572859908726==-- From jira-events at lists.jboss.org Mon Mar 26 01:21:47 2012 Content-Type: multipart/mixed; boundary="===============8619099259608146106==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12064) Remove the superfluous versions from the generated pom in the kitchensink archetype Date: Mon, 26 Mar 2012 01:21:47 -0400 Message-ID: <375879157.29822.1332739307657.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1846737024.18946.1332201047228.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8619099259608146106== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12064?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12064. -------------------------------- Resolution: Done = > Remove the superfluous versions from the generated pom in the kitchensink= archetype > -------------------------------------------------------------------------= ---------- > > Key: RF-12064 > URL: https://issues.jboss.org/browse/RF-12064 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: archetype, build/distribution > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.1.CR1 > > > The kitchensink archetype unnecessarily specifies version for it's depend= encies. The dependency version that are already specified in the BOM shoul= d be removed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8619099259608146106==-- From jira-events at lists.jboss.org Mon Mar 26 01:21:49 2012 Content-Type: multipart/mixed; boundary="===============4199786123947424596==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11977) Multiple fileUpload controls on the same page do not work Date: Mon, 26 Mar 2012 01:21:48 -0400 Message-ID: <1317389287.29825.1332739308317.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1904484642.1106.1329137880969.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4199786123947424596== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11977?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11977: ---------------------------------- Assignee: Brian Leathem = > Multiple fileUpload controls on the same page do not work > --------------------------------------------------------- > > Key: RF-11977 > URL: https://issues.jboss.org/browse/RF-11977 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Environment: IE7,8,9, FireFox, Google Chrome > Reporter: Roxana Balaci > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: rf-11977-chromium-afterClickOn2ndUploadBtn.png, rf-1= 1977-Chromium.png, rf-11977-ff11.png > > > Situation: > Two rich:fileUpload controls, in the same form. > When: > # choose first file for upload > # choose second file for upload > # click upload button for the first file > The first control disappears from the page and you cannot upload the seco= nd file (the upload event is never caught). > Could you please indicate a solution for this problem? > Thank you very much! > Part of the code used for testing is the following: > {code} > > > > fileUploadListener=3D"#{bean.method1}" maxFilesQuantity=3D"1" > immediateUpload=3D"true" listHeight=3D"65px" > > > fileUploadListener=3D"#{bean.method2}" maxFilesQuantity=3D"1" > immediateUpload=3D"true" listHeight=3D"65px" > > > render=3D"stg" /> > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4199786123947424596==-- From jira-events at lists.jboss.org Mon Mar 26 01:21:50 2012 Content-Type: multipart/mixed; boundary="===============4799890439149381362==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10968) Tree: treeSelectionChangeListener and treeToggleListener do not work Date: Mon, 26 Mar 2012 01:21:50 -0400 Message-ID: <815305212.29830.1332739310792.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 35352639.27278.1304411418583.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4799890439149381362== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10968?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-10968: ---------------------------------- Assignee: Brian Leathem = > Tree: treeSelectionChangeListener and treeToggleListener do not work > -------------------------------------------------------------------- > > Key: RF-10968 > URL: https://issues.jboss.org/browse/RF-10968 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-tree > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22458 > Metamer 4.1.0-SNAPSHOT r.22459 > Mojarra 2.0.3- > JBoss AS 6.0.0.Final > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 11.0.696.57 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: NodesTreeSequenceKeyModelImpl.java, tree.xhtml, Tree= Bean.java, TreeNodeImpl.java > > > Attributes treeSelectionChangeListener and treeToggleListener in rich:tre= e do not work. However, attributes selectionChangeListener and toggleListen= er do work. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4799890439149381362==-- From jira-events at lists.jboss.org Mon Mar 26 04:06:47 2012 Content-Type: multipart/mixed; boundary="===============8117432914790482244==" MIME-Version: 1.0 From: Vladimir Romashov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12077) Selection in extendedDataTable doesn't work in Chrome Date: Mon, 26 Mar 2012 04:06:47 -0400 Message-ID: <68795795.30005.1332749207538.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2021407965.24539.1332406547698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8117432914790482244== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12077?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679168#com= ment-12679168 ] = Vladimir Romashov commented on RF-12077: ---------------------------------------- I found problem. I have addon AdBlock 2.5.22 in my chrome, if I disable it,= selection works fine. I close issuer. = > Selection in extendedDataTable doesn't work in Chrome > ----------------------------------------------------- > > Key: RF-12077 > URL: https://issues.jboss.org/browse/RF-12077 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: Windows XP. JBoss AS 7 Chrome 17.0.963.83 > Reporter: Vladimir Romashov > Priority: Blocker > Labels: waiting_on_user > > JavaScript error in console on rendered page with = > Uncaught TypeError: Cannot read property 'length' of null > richfaces.utils.getCSSRule extendedDataTable.js.jsf:40 > richfaces.ui.ExtendedDataTable.richfaces.BaseComponent.extendClass.initia= lize extendedDataTable.js.jsf:362 > jQuery.extend.proxy.proxyjquery.js.jsf:814 > jQuery.Callbacks.firejquery.js.jsf:1046 > jQuery.Callbacks.self.fireWithjquery.js.jsf:1164 > jQuery.extend.readyjquery.js.jsf:435 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8117432914790482244==-- From jira-events at lists.jboss.org Mon Mar 26 04:08:47 2012 Content-Type: multipart/mixed; boundary="===============5116926305591296349==" MIME-Version: 1.0 From: Vladimir Romashov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12077) Selection in extendedDataTable doesn't work in Chrome Date: Mon, 26 Mar 2012 04:08:47 -0400 Message-ID: <311868608.30008.1332749327720.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2021407965.24539.1332406547698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5116926305591296349== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12077?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Vladimir Romashov closed RF-12077. ---------------------------------- Resolution: Rejected Problem in chrome addon AdBlock 2.5.22. = > Selection in extendedDataTable doesn't work in Chrome > ----------------------------------------------------- > > Key: RF-12077 > URL: https://issues.jboss.org/browse/RF-12077 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: Windows XP. JBoss AS 7 Chrome 17.0.963.83 > Reporter: Vladimir Romashov > Priority: Blocker > Labels: waiting_on_user > > JavaScript error in console on rendered page with = > Uncaught TypeError: Cannot read property 'length' of null > richfaces.utils.getCSSRule extendedDataTable.js.jsf:40 > richfaces.ui.ExtendedDataTable.richfaces.BaseComponent.extendClass.initia= lize extendedDataTable.js.jsf:362 > jQuery.extend.proxy.proxyjquery.js.jsf:814 > jQuery.Callbacks.firejquery.js.jsf:1046 > jQuery.Callbacks.self.fireWithjquery.js.jsf:1164 > jQuery.extend.readyjquery.js.jsf:435 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5116926305591296349==-- From jira-events at lists.jboss.org Mon Mar 26 04:10:52 2012 Content-Type: multipart/mixed; boundary="===============3404097140282834991==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12085) The richfaces version change script is missing version strings in the kitchensink archetype file Date: Mon, 26 Mar 2012 04:10:50 -0400 Message-ID: <583572585.30031.1332749450214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1849208334.29814.1332738407483.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3404097140282834991== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12085?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12085. ----------------------------- Resolution: Done = > The richfaces version change script is missing version strings in the kit= chensink archetype file > -------------------------------------------------------------------------= ----------------------- > > Key: RF-12085 > URL: https://issues.jboss.org/browse/RF-12085 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype, build/distribution > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > > {code} > [archetypes (release/4.2.1.CR1)]> ack 4.3.0 > components/component/src/main/resources/META-INF/maven/archetype-metadata= .xml > 39: 4.3.0-SNAPSHOT > components/components-aggregator/src/main/resources/META-INF/maven/archet= ype-metadata.xml > 36: 4.3.0-SNAPSHOT > components/component-short/src/main/resources/META-INF/maven/archetype-me= tadata.xml > 39: 4.3.0-SNAPSHOT > kitchensink/src/main/resources/META-INF/maven/archetype-metadata.xml > 10: 4.3.0-SNAPSHOT > kitchensink/src/test/resources/projects/basic/archetype.properties > 5:richfaces-version=3D4.3.0-SNAPSHOT > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3404097140282834991==-- From jira-events at lists.jboss.org Mon Mar 26 04:10:52 2012 Content-Type: multipart/mixed; boundary="===============4236537840148934615==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12085) The richfaces version change script is missing version strings in the kitchensink archetype file Date: Mon, 26 Mar 2012 04:10:50 -0400 Message-ID: <1911036480.30028.1332749450084.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1849208334.29814.1332738407483.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4236537840148934615== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12085?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679173#com= ment-12679173 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12085: --------------------------------- Hi Brian, nice catch. I forgot to change version in regular files (other than {{pom.xml}}) in {{a= rchetypes}}. Other modules are okay. = > The richfaces version change script is missing version strings in the kit= chensink archetype file > -------------------------------------------------------------------------= ----------------------- > > Key: RF-12085 > URL: https://issues.jboss.org/browse/RF-12085 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype, build/distribution > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > > {code} > [archetypes (release/4.2.1.CR1)]> ack 4.3.0 > components/component/src/main/resources/META-INF/maven/archetype-metadata= .xml > 39: 4.3.0-SNAPSHOT > components/components-aggregator/src/main/resources/META-INF/maven/archet= ype-metadata.xml > 36: 4.3.0-SNAPSHOT > components/component-short/src/main/resources/META-INF/maven/archetype-me= tadata.xml > 39: 4.3.0-SNAPSHOT > kitchensink/src/main/resources/META-INF/maven/archetype-metadata.xml > 10: 4.3.0-SNAPSHOT > kitchensink/src/test/resources/projects/basic/archetype.properties > 5:richfaces-version=3D4.3.0-SNAPSHOT > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4236537840148934615==-- From jira-events at lists.jboss.org Mon Mar 26 04:14:49 2012 Content-Type: multipart/mixed; boundary="===============7733983312088224162==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11965) showcase - a4j:push - error thrown after creating topic for pushCdi Date: Mon, 26 Mar 2012 04:14:49 -0400 Message-ID: <1075411159.30052.1332749689315.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1869426390.30466.1328703648739.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7733983312088224162== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11965?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11965. ---------------------------- = > showcase - a4j:push - error thrown after creating topic for pushCdi > ------------------------------------------------------------------- > > Key: RF-11965 > URL: https://issues.jboss.org/browse/RF-11965 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.2.0.Final > Environment: container: JBoss AS 7.1.0.CR1b > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > When deploying showcase 4.2.0.CR1 then after pushCdi topic created an err= or is thrown: > {code} > 18:13:42,211 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) initializing > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) AS7MessagingProviderManagement initialized > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushJms > 18:13:42,761 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushTopicsContext > 18:13:42,802 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushCdi > 18:13:42,972 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.$ > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.c= reateTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.CR1.ja= r:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(= TopicsContext.java:48) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsCon= text.java:69) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessa= ge(TopicsContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessagePro= ducerRunnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: topic/pushTopicsContext -- service= jboss.naming.context.java.topic.pushTopicsContext > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.CR1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.CR1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= ValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.j= ar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar= :] > at com.google.common.collect.ComputingConcurrentHashMap.getOrComp= ute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.pushTopicsContext > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:92) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:87) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.lookupTopic(JMSTopicsContextImpl.java:94) [richfaces-core-impl-4.2.= 0-20120130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:125) [richfaces-core-impl-4.2.0-201= 20130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0-20120130.140419-2= 6.jar:] > ... 12 more > {code} > The functionality of push demos is fine, just the tests are not passing o= n Hudson, which I have to investigate whether it is caused by this one. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7733983312088224162==-- From jira-events at lists.jboss.org Mon Mar 26 04:14:49 2012 Content-Type: multipart/mixed; boundary="===============2264139812295836843==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11965) showcase - a4j:push - error thrown after creating topic for pushCdi Date: Mon, 26 Mar 2012 04:14:48 -0400 Message-ID: <1128609033.30048.1332749688946.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1869426390.30466.1328703648739.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2264139812295836843== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11965?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679176#com= ment-12679176 ] = Juraj Huska commented on RF-11965: ---------------------------------- Verified that it is OK now. = > showcase - a4j:push - error thrown after creating topic for pushCdi > ------------------------------------------------------------------- > > Key: RF-11965 > URL: https://issues.jboss.org/browse/RF-11965 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.2.0.Final > Environment: container: JBoss AS 7.1.0.CR1b > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > When deploying showcase 4.2.0.CR1 then after pushCdi topic created an err= or is thrown: > {code} > 18:13:42,211 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) initializing > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) AS7MessagingProviderManagement initialized > 18:13:42,219 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushJms > 18:13:42,761 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushTopicsContext > 18:13:42,802 INFO [org.richfaces.demo.push.JMSInitializer] (MSC service = thread 1-2) creating topic pushCdi > 18:13:42,972 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.$ > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.c= reateTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.CR1.ja= r:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(= TopicsContext.java:48) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsCon= text.java:69) [richfaces-core-api-4.2.0.CR1.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessa= ge(TopicsContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessagePro= ducerRunnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: topic/pushTopicsContext -- service= jboss.naming.context.java.topic.pushTopicsContext > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.CR1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1= .apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.CR1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= ValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.j= ar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= Segment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar= :] > at com.google.common.collect.ComputingConcurrentHashMap.getOrComp= ute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$Computing= MapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: topic/pushTopicsContext --= service jboss.naming.context.java.topic.pushTopicsContext > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:92) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:87) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.lookupTopic(JMSTopicsContextImpl.java:94) [richfaces-core-impl-4.2.= 0-20120130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:125) [richfaces-core-impl-4.2.0-201= 20130.140419-26.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0-20120130.140419-2= 6.jar:] > ... 12 more > {code} > The functionality of push demos is fine, just the tests are not passing o= n Hudson, which I have to investigate whether it is caused by this one. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2264139812295836843==-- From jira-events at lists.jboss.org Mon Mar 26 04:16:50 2012 Content-Type: multipart/mixed; boundary="===============2222706127100415076==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11905) showcase - shutdown of the JBoss AS with showcase deployed throws DB error Date: Mon, 26 Mar 2012 04:16:49 -0400 Message-ID: <451026666.30061.1332749809675.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2222706127100415076== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11905?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679178#com= ment-12679178 ] = Juraj Huska commented on RF-11905: ---------------------------------- Verified that it is OK now. = > showcase - shutdown of the JBoss AS with showcase deployed throws DB error > -------------------------------------------------------------------------- > > Key: RF-11905 > URL: https://issues.jboss.org/browse/RF-11905 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 7.1.0.CR1b, 7.0.2.Final > app: showcase 4.2.0-SNAPSHOT > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > When shutting down JBoss AS 7 with showcase deployed, then the DB error i= s thrown: > {code} > 16:09:52,334 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] HHH000231: S= chema export unsuccessful: org.h2.jdbc.JdbcSQLException: Database is alread= y closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EX= IT=3DFALSE" to the db URL) [90121-161] > at org.h2.message.DbException.getJdbcSQLException(DbException.java:329) > at org.h2.message.DbException.get(DbException.java:169) > at org.h2.message.DbException.get(DbException.java:146) > at org.h2.message.DbException.get(DbException.java:135) > at org.h2.jdbc.JdbcConnection.checkClosed(JdbcConnection.java:1394) > at org.h2.jdbc.JdbcConnection.checkClosed(JdbcConnection.java:1369) > at org.h2.jdbc.JdbcConnection.createStatement(JdbcConnection.java:191) > at org.jboss.jca.adapters.jdbc.WrappedConnection.createStatement(Wrapped= Connection.java:301) > at org.hibernate.tool.hbm2ddl.DatabaseExporter.(DatabaseExporter.j= ava:54) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.execute(SchemaExport.java:368= ) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:319) [= hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:315) [= hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.internal.SessionFactoryImpl.close(SessionFactoryImpl.ja= va:1305) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.ejb.EntityManagerFactoryImpl.close(EntityManagerFactory= Impl.java:126) [hibernate-entitymanager-4.0.0.Final.jar:4.0.0.Final] > at org.richfaces.demo.arrangeablemodel.PersistenceService.destroy(Persis= tenceService.java:159) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.jboss.as.ee.component.ManagedReferenceLifecycleMethodInterceptorF= actory$ManagedReferenceLifecycleMethodInterceptor.processInvocation(Managed= ReferenceLifecycleMethodInterceptorFactory.java:130) [jboss-as-ee-7.1.0.CR1= b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterc= eptor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.ManagedReferenceReleaseInterceptorFactory$M= anagedReferenceReleaseInterceptor.processInvocation(ManagedReferenceRelease= InterceptorFactory.java:90) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterc= eptor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInter= ceptor.java:45) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInte= rceptor.java:61) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.BasicComponentInstance.destroy(BasicCompone= ntInstance.java:122) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.as.web.deployment.component.WebComponentInstantiator$2.rele= ase(WebComponentInstantiator.java:102) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.C= R1b] > at org.jboss.as.web.deployment.WebInjectionContainer.destroyInstance(Web= InjectionContainer.java:67) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.as.web.deployment.jsf.JsfInjectionProvider.invokePreDestroy= (JsfInjectionProvider.java:56) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at com.sun.faces.mgbean.BeanBuilder.destroy(BeanBuilder.java:116) [jsf-i= mpl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at com.sun.faces.mgbean.BeanManager.destroy(BeanManager.java:283) [jsf-i= mpl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at com.sun.faces.application.WebappLifecycleListener.handleAttributeEven= t(WebappLifecycleListener.java:314) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SN= APSHOT] > at com.sun.faces.application.WebappLifecycleListener.contextDestroyed(We= bappLifecycleListener.java:368) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSH= OT] > at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureList= ener.java:308) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at org.apache.catalina.core.StandardContext.listenerStop(StandardContext= .java:3489) [jbossweb-7.0.7.Final.jar:] > at org.apache.catalina.core.StandardContext.stop(StandardContext.java:39= 99) [jbossweb-7.0.7.Final.jar:] > at org.jboss.as.web.deployment.WebDeploymentService.stop(WebDeploymentSe= rvice.java:96) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.msc.service.ServiceControllerImpl$StopTask.stopService(Serv= iceControllerImpl.java:1909) > at org.jboss.msc.service.ServiceControllerImpl$StopTask.run(ServiceContr= ollerImpl.java:1872) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) [:1.6.0_22] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) [:1.6.0_22] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2222706127100415076==-- From jira-events at lists.jboss.org Mon Mar 26 04:16:50 2012 Content-Type: multipart/mixed; boundary="===============5402777156115968158==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11905) showcase - shutdown of the JBoss AS with showcase deployed throws DB error Date: Mon, 26 Mar 2012 04:16:49 -0400 Message-ID: <1691788823.30064.1332749810026.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5402777156115968158== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11905?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11905. ---------------------------- = > showcase - shutdown of the JBoss AS with showcase deployed throws DB error > -------------------------------------------------------------------------- > > Key: RF-11905 > URL: https://issues.jboss.org/browse/RF-11905 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 7.1.0.CR1b, 7.0.2.Final > app: showcase 4.2.0-SNAPSHOT > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > When shutting down JBoss AS 7 with showcase deployed, then the DB error i= s thrown: > {code} > 16:09:52,334 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] HHH000231: S= chema export unsuccessful: org.h2.jdbc.JdbcSQLException: Database is alread= y closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EX= IT=3DFALSE" to the db URL) [90121-161] > at org.h2.message.DbException.getJdbcSQLException(DbException.java:329) > at org.h2.message.DbException.get(DbException.java:169) > at org.h2.message.DbException.get(DbException.java:146) > at org.h2.message.DbException.get(DbException.java:135) > at org.h2.jdbc.JdbcConnection.checkClosed(JdbcConnection.java:1394) > at org.h2.jdbc.JdbcConnection.checkClosed(JdbcConnection.java:1369) > at org.h2.jdbc.JdbcConnection.createStatement(JdbcConnection.java:191) > at org.jboss.jca.adapters.jdbc.WrappedConnection.createStatement(Wrapped= Connection.java:301) > at org.hibernate.tool.hbm2ddl.DatabaseExporter.(DatabaseExporter.j= ava:54) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.execute(SchemaExport.java:368= ) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:319) [= hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:315) [= hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.internal.SessionFactoryImpl.close(SessionFactoryImpl.ja= va:1305) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] > at org.hibernate.ejb.EntityManagerFactoryImpl.close(EntityManagerFactory= Impl.java:126) [hibernate-entitymanager-4.0.0.Final.jar:4.0.0.Final] > at org.richfaces.demo.arrangeablemodel.PersistenceService.destroy(Persis= tenceService.java:159) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.jboss.as.ee.component.ManagedReferenceLifecycleMethodInterceptorF= actory$ManagedReferenceLifecycleMethodInterceptor.processInvocation(Managed= ReferenceLifecycleMethodInterceptorFactory.java:130) [jboss-as-ee-7.1.0.CR1= b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterc= eptor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.ManagedReferenceReleaseInterceptorFactory$M= anagedReferenceReleaseInterceptor.processInvocation(ManagedReferenceRelease= InterceptorFactory.java:90) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedInterc= eptor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInter= ceptor.java:45) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.ja= va:288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInte= rceptor.java:61) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] > at org.jboss.as.ee.component.BasicComponentInstance.destroy(BasicCompone= ntInstance.java:122) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.as.web.deployment.component.WebComponentInstantiator$2.rele= ase(WebComponentInstantiator.java:102) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.C= R1b] > at org.jboss.as.web.deployment.WebInjectionContainer.destroyInstance(Web= InjectionContainer.java:67) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.as.web.deployment.jsf.JsfInjectionProvider.invokePreDestroy= (JsfInjectionProvider.java:56) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at com.sun.faces.mgbean.BeanBuilder.destroy(BeanBuilder.java:116) [jsf-i= mpl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at com.sun.faces.mgbean.BeanManager.destroy(BeanManager.java:283) [jsf-i= mpl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at com.sun.faces.application.WebappLifecycleListener.handleAttributeEven= t(WebappLifecycleListener.java:314) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SN= APSHOT] > at com.sun.faces.application.WebappLifecycleListener.contextDestroyed(We= bappLifecycleListener.java:368) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSH= OT] > at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureList= ener.java:308) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] > at org.apache.catalina.core.StandardContext.listenerStop(StandardContext= .java:3489) [jbossweb-7.0.7.Final.jar:] > at org.apache.catalina.core.StandardContext.stop(StandardContext.java:39= 99) [jbossweb-7.0.7.Final.jar:] > at org.jboss.as.web.deployment.WebDeploymentService.stop(WebDeploymentSe= rvice.java:96) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] > at org.jboss.msc.service.ServiceControllerImpl$StopTask.stopService(Serv= iceControllerImpl.java:1909) > at org.jboss.msc.service.ServiceControllerImpl$StopTask.run(ServiceContr= ollerImpl.java:1872) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec= utor.java:886) [:1.6.0_22] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor= .java:908) [:1.6.0_22] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5402777156115968158==-- From jira-events at lists.jboss.org Mon Mar 26 04:23:48 2012 Content-Type: multipart/mixed; boundary="===============8795385536480444505==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11936) rich:contextMenu activation is possible outside of tree nodes Date: Mon, 26 Mar 2012 04:23:48 -0400 Message-ID: <1051976863.30076.1332750228266.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 643933580.14431.1328103828616.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8795385536480444505== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11936?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11936. ---------------------------- Verified that it is OK now. = > rich:contextMenu activation is possible outside of tree nodes > ------------------------------------------------------------- > > Key: RF-11936 > URL: https://issues.jboss.org/browse/RF-11936 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-tree > Affects Versions: 4.2.0.CR1 > Environment: browsers: all browsers > Reporter: Juraj Huska > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: contextMenu.png, exdt_cm1.png, exdt_cm2.png > > > In the showcase demo for rich:contextMenu, the sample Tree ContextMenu, i= t is possible to activate the context menu not only from the nodes, but als= o outside of thenodes. > It is *rather a problem of the rich:tree*, since its rows contains nodes,= which are rendered with 100% width. > When it is then selected with the contextMenu item, a popup with empty co= ntent is displayed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8795385536480444505==-- From jira-events at lists.jboss.org Mon Mar 26 04:30:47 2012 Content-Type: multipart/mixed; boundary="===============1491975682922258909==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11936) rich:contextMenu activation is possible outside of tree nodes Date: Mon, 26 Mar 2012 04:30:47 -0400 Message-ID: <915786401.30088.1332750647423.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 643933580.14431.1328103828616.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1491975682922258909== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11936?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679183#com= ment-12679183 ] = Juraj Huska commented on RF-11936: ---------------------------------- However, the issue mentioned by Pjotr Andreev is still occurring. Should I = file another JIRA for it ? = > rich:contextMenu activation is possible outside of tree nodes > ------------------------------------------------------------- > > Key: RF-11936 > URL: https://issues.jboss.org/browse/RF-11936 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-tree > Affects Versions: 4.2.0.CR1 > Environment: browsers: all browsers > Reporter: Juraj Huska > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: contextMenu.png, exdt_cm1.png, exdt_cm2.png > > > In the showcase demo for rich:contextMenu, the sample Tree ContextMenu, i= t is possible to activate the context menu not only from the nodes, but als= o outside of thenodes. > It is *rather a problem of the rich:tree*, since its rows contains nodes,= which are rendered with 100% width. > When it is then selected with the contextMenu item, a popup with empty co= ntent is displayed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1491975682922258909==-- From jira-events at lists.jboss.org Mon Mar 26 04:30:47 2012 Content-Type: multipart/mixed; boundary="===============7044599847423519278==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11936) rich:contextMenu activation is possible outside of tree nodes Date: Mon, 26 Mar 2012 04:30:47 -0400 Message-ID: <1435450267.30093.1332750647615.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 643933580.14431.1328103828616.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7044599847423519278== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11936?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska reopened RF-11936: ------------------------------ = > rich:contextMenu activation is possible outside of tree nodes > ------------------------------------------------------------- > > Key: RF-11936 > URL: https://issues.jboss.org/browse/RF-11936 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-tree > Affects Versions: 4.2.0.CR1 > Environment: browsers: all browsers > Reporter: Juraj Huska > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: contextMenu.png, exdt_cm1.png, exdt_cm2.png > > > In the showcase demo for rich:contextMenu, the sample Tree ContextMenu, i= t is possible to activate the context menu not only from the nodes, but als= o outside of thenodes. > It is *rather a problem of the rich:tree*, since its rows contains nodes,= which are rendered with 100% width. > When it is then selected with the contextMenu item, a popup with empty co= ntent is displayed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7044599847423519278==-- From jira-events at lists.jboss.org Mon Mar 26 04:48:48 2012 Content-Type: multipart/mixed; boundary="===============7701567571994782744==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11936) rich:contextMenu activation is possible outside of tree nodes Date: Mon, 26 Mar 2012 04:48:48 -0400 Message-ID: <1200632084.30152.1332751728461.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 643933580.14431.1328103828616.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7701567571994782744== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11936?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11936. ---------------------------- Resolution: Done Sorry, I have built showcase with older RichFaces libraries. I have also verified that both mentioned issues are OK now. = > rich:contextMenu activation is possible outside of tree nodes > ------------------------------------------------------------- > > Key: RF-11936 > URL: https://issues.jboss.org/browse/RF-11936 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-tree > Affects Versions: 4.2.0.CR1 > Environment: browsers: all browsers > Reporter: Juraj Huska > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: contextMenu.png, exdt_cm1.png, exdt_cm2.png > > > In the showcase demo for rich:contextMenu, the sample Tree ContextMenu, i= t is possible to activate the context menu not only from the nodes, but als= o outside of thenodes. > It is *rather a problem of the rich:tree*, since its rows contains nodes,= which are rendered with 100% width. > When it is then selected with the contextMenu item, a popup with empty co= ntent is displayed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7701567571994782744==-- From jira-events at lists.jboss.org Mon Mar 26 05:20:47 2012 Content-Type: multipart/mixed; boundary="===============0409273229336714349==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12087) itemChangeListener attribute @listener does not work Date: Mon, 26 Mar 2012 05:20:47 -0400 Message-ID: <1894988349.30243.1332753647412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0409273229336714349== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-12087: -------------------------------- Summary: itemChangeListener attribute @listener does not work Key: RF-12087 URL: https://issues.jboss.org/browse/RF-12087 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Firefox 11.0 @ Linux x86_64 Reporter: Ji=C5=99=C3=AD =C5=A0tefek # Deploy Metamer. # Open http://localhost:8080/metamer/faces/components/richItemChangeListene= r/accordion.xhtml ( or http://localhost:8080/metamer/faces/components/richItemChangeListener/pa= nelMenu.xhtml or http://localhost:8080/metamer/faces/components/richItemChangeListener/ta= bPanel.xhtml or http://localhost:8080/metamer/faces/components/richItemChangeListener/to= gglePanel.xhtml = ) # Click on accordion panel Item 2. # 2 messages with "* itemChangeListenerBean item changed: null -> item2" sh= ould appear in phases list. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0409273229336714349==-- From jira-events at lists.jboss.org Mon Mar 26 05:54:48 2012 Content-Type: multipart/mixed; boundary="===============3017693019624131221==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12088) itemChangeListener attribute @for does not work Date: Mon, 26 Mar 2012 05:54:47 -0400 Message-ID: <1852550807.30367.1332755687380.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3017693019624131221== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-12088: -------------------------------- Summary: itemChangeListener attribute @for does not work Key: RF-12088 URL: https://issues.jboss.org/browse/RF-12088 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Firefox 11.0 @ Linux x86_64 Reporter: Ji=C5=99=C3=AD =C5=A0tefek TODO -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3017693019624131221==-- From jira-events at lists.jboss.org Mon Mar 26 05:56:47 2012 Content-Type: multipart/mixed; boundary="===============3016230629687112127==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12088) itemChangeListener attribute @for does not work Date: Mon, 26 Mar 2012 05:56:47 -0400 Message-ID: <2040324573.30371.1332755807474.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3016230629687112127== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12088?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek deleted RF-12088: ----------------------------- = > itemChangeListener attribute @for does not work > ----------------------------------------------- > > Key: RF-12088 > URL: https://issues.jboss.org/browse/RF-12088 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 11.0 @ Linux x86_64 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > > TODO -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3016230629687112127==-- From jira-events at lists.jboss.org Mon Mar 26 06:00:49 2012 Content-Type: multipart/mixed; boundary="===============0333199177092202508==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12089) itemChangeListener attribute @for does not work Date: Mon, 26 Mar 2012 06:00:49 -0400 Message-ID: <405838573.30375.1332756049100.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0333199177092202508== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-12089: -------------------------------- Summary: itemChangeListener attribute @for does not work Key: RF-12089 URL: https://issues.jboss.org/browse/RF-12089 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Firefox 11.0 @ Linux x86_64 Reporter: Ji=C5=99=C3=AD =C5=A0tefek TODO -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0333199177092202508==-- From jira-events at lists.jboss.org Mon Mar 26 06:14:47 2012 Content-Type: multipart/mixed; boundary="===============8466101693309760042==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12089) itemChangeListener attribute @for does not work Date: Mon, 26 Mar 2012 06:14:47 -0400 Message-ID: <1836835142.30392.1332756887516.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 405838573.30375.1332756049100.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8466101693309760042== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12089?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-12089: ----------------------------- Description: = # Deploy Metamer. # Open http://localhost:8080/metamer/faces/components/richItemChangeListene= r/RF-12089.xhtml . was:TODO = > itemChangeListener attribute @for does not work > ----------------------------------------------- > > Key: RF-12089 > URL: https://issues.jboss.org/browse/RF-12089 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 11.0 @ Linux x86_64 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > > # Deploy Metamer. > # Open http://localhost:8080/metamer/faces/components/richItemChangeListe= ner/RF-12089.xhtml . -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8466101693309760042==-- From jira-events at lists.jboss.org Mon Mar 26 06:20:47 2012 Content-Type: multipart/mixed; boundary="===============3389534686572199333==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12051) Showcase: simplified Push CDI sample which wouldn't use subtopics Date: Mon, 26 Mar 2012 06:20:47 -0400 Message-ID: <1727261770.30417.1332757247334.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1777587358.12158.1331830847464.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3389534686572199333== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12051?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12051. ----------------------------- Resolution: Done Removed subtopics usage - added safeHtml validator. = > Showcase: simplified Push CDI sample which wouldn't use subtopics > ----------------------------------------------------------------- > > Key: RF-12051 > URL: https://issues.jboss.org/browse/RF-12051 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > Push CDI sample in Showcase is currently quite complex and people run int= o issues when starting to use it, > because there is usage of subtopics. > There are two alternative ways how to address it: > # simplify current sample > # provide new sample as alternative to this one -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3389534686572199333==-- From jira-events at lists.jboss.org Mon Mar 26 07:08:48 2012 Content-Type: multipart/mixed; boundary="===============6129823130983492804==" MIME-Version: 1.0 From: Morten Ludvigsen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11339) selection hangs in extendedDataTable when there are more than one table in the view Date: Mon, 26 Mar 2012 07:08:48 -0400 Message-ID: <879710814.30540.1332760128058.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 980202873.13540.1313853617638.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6129823130983492804== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11339?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12622305#com= ment-12622305 ] = Morten Ludvigsen edited comment on RF-11339 at 3/26/12 7:07 AM: ---------------------------------------------------------------- Fix for this issue is: https://github.com/richfaces/components/commit/e16faf320ebac41ea870ab5868ed= 8be2a87aadcf = was (Author: mortenlud): Fix for this issue is: https://github.com/mortenlud/components/commit/2363ce22f999470ffa3190ecdd59= 6361fecffab6 = > selection hangs in extendedDataTable when there are more than one table i= n the view > -------------------------------------------------------------------------= ---------- > > Key: RF-11339 > URL: https://issues.jboss.org/browse/RF-11339 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Environment: GlassFish 3.1, and Chrome 13 > Reporter: Morten Ludvigsen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: ExtendedDataTable, selection > Fix For: 4.1.0.Milestone3 > > > I have a problem with selection in extendedDataTables when there are two = tables in the view. = > Some of the selections are not removed when a new row is selected. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6129823130983492804==-- From jira-events at lists.jboss.org Mon Mar 26 07:42:48 2012 Content-Type: multipart/mixed; boundary="===============0792537841852633198==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12038) IE8 - Object does not support this property or method - a4j:jsFunction Date: Mon, 26 Mar 2012 07:42:48 -0400 Message-ID: <1361777422.30640.1332762168071.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1674243330.3069.1331568048477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0792537841852633198== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12038?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679239#com= ment-12679239 ] = Jean ANDRE commented on RF-12038: --------------------------------- More information... the object event received under IE is MSHTML::DispCEven= tObj and it is not the event we got under FireFox (from jQuery?). {code} {code} There is certainly a way to do better - Accessing directly to window.event = inside onclick does not work. Then the javascript code below was put inside= r the HTML header. {code} function stopPropagation(event) { if (isWindows()) { window.event.cancelBubble =3D true; } else { event.stopPropagation(); } {code} = > IE8 - Object does not support this property or method - a4j:jsFunction > ---------------------------------------------------------------------- > > Key: RF-12038 > URL: https://issues.jboss.org/browse/RF-12038 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: cssparser-0.9.6- guava-11.0.1 - hibernate-validator-= 4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 -= Windows 7 - IE 8.0.1.7601.17514 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: waiting_on_user > Attachments: index.xhtml, NestedWeb.zip, NestedWeb_RF-12038.zip, = ScreenShot_RF-12038.png > > > Under IE8, IE reports the following error message due to a javascript err= or. However, the page are well displayed and the application is running ok. > Object doesn't support this property or method line 177 caracter 1 > Object doesn't support this property or method line 177 caracter 99 > Under IE Debugger, the line is: > {code} > closeTab=3Dfunction(tabId){RichFaces.ajax("closeTab",null,{"incId":"1","p= arameters":{"tabId":tabId} } )};< > The caracter 99, is......................................................= ........................| (here) > {code} > This is a code generated by a4j:jsFunction from the XHTML > {code} > > > > > > > {code} > The rendered code is : > {code} > > > closeTab=3Dfunction(tabId){RichFaces.ajax("clo= seTab",null,{"incId":"1","parameters":{"tabId":tabId} } )}; > {code} > See also this link as we got almost a similar: https://bugzilla.redhat.co= m/show_bug.cgi?id=3D601360. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0792537841852633198==-- From jira-events at lists.jboss.org Mon Mar 26 07:52:47 2012 Content-Type: multipart/mixed; boundary="===============3210407870805026501==" MIME-Version: 1.0 From: phelen harg (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12081) Problem with RichEditor RF 4.2.0 Date: Mon, 26 Mar 2012 07:52:47 -0400 Message-ID: <2128524434.30694.1332762767520.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1278339548.27975.1332502007395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3210407870805026501== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12081?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] phelen harg updated RF-12081: ----------------------------- Attachment: Sem t=C3=ADtulo.jpg = > Problem with RichEditor RF 4.2.0 > -------------------------------- > > Key: RF-12081 > URL: https://issues.jboss.org/browse/RF-12081 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: phelen harg > Labels: waiting_on_user > Attachments: Sem t=C3=ADtulo.jpg > > > I'm migrating my Application from RF 3.3.3 to RF 4.2.0. But = now i'm facing a problem with the richEditor. When I load the the component= , all the links in application receive a background like this picture: = > Analizing the code with Firebug, I found the problem in the = CSS of RichEditor. /org.richfaces.resources/javax.faces.resource/org.richfa= ces.ckeditor/skins/richfaces/editor.ecss?db=3DeAHj0yqqAgACGAEl > If I erase the CSS the backgroud disappear. There is some = kind of workaround for this? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3210407870805026501==-- From jira-events at lists.jboss.org Mon Mar 26 07:54:48 2012 Content-Type: multipart/mixed; boundary="===============3828002226265227017==" MIME-Version: 1.0 From: phelen harg (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12081) Problem with RichEditor RF 4.2.0 Date: Mon, 26 Mar 2012 07:54:48 -0400 Message-ID: <93904904.30711.1332762888110.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1278339548.27975.1332502007395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3828002226265227017== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12081?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679249#com= ment-12679249 ] = phelen harg commented on RF-12081: ---------------------------------- I attached the picture. No, in the showcase doesn't have this problem. Only= on my workspace. I't can be a problem with the configuration? Because i'm = migrating from 3.3 to 4.2. = > Problem with RichEditor RF 4.2.0 > -------------------------------- > > Key: RF-12081 > URL: https://issues.jboss.org/browse/RF-12081 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: phelen harg > Labels: waiting_on_user > Attachments: Sem t=C3=ADtulo.jpg > > > I'm migrating my Application from RF 3.3.3 to RF 4.2.0. But = now i'm facing a problem with the richEditor. When I load the the component= , all the links in application receive a background like this picture: = > Analizing the code with Firebug, I found the problem in the = CSS of RichEditor. /org.richfaces.resources/javax.faces.resource/org.richfa= ces.ckeditor/skins/richfaces/editor.ecss?db=3DeAHj0yqqAgACGAEl > If I erase the CSS the backgroud disappear. There is some = kind of workaround for this? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3828002226265227017==-- From jira-events at lists.jboss.org Mon Mar 26 09:09:48 2012 Content-Type: multipart/mixed; boundary="===============4767205587086454125==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: can't connect to JMS on AS7.1 since it is secured Date: Mon, 26 Mar 2012 09:09:47 -0400 Message-ID: <436816878.30926.1332767387936.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1110785355.5085.1329395076292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4767205587086454125== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11983?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679280#com= ment-12679280 ] = Juraj Huska commented on RF-11983: ---------------------------------- The behavior is the same when deploying on _JBoss AS 6.0.0.Final_. I have used similar workaround when I have set to: _JBOSS_HOME/server/default/deploy/hornetq/hornetq-configuration.xml_ the same property: _false_ = > Showcase: can't connect to JMS on AS7.1 since it is secured > ----------------------------------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Environment: JBoos AS 7.0.2.Final (in default configuration) / JB= oss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > {code:title=3DJBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.= service() for servlet Faces Servlet threw exception: com.google.common.coll= ect.ComputationException: javax.faces.FacesException: ConnectionFactory -- = service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(S= essionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl= .java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [ric= hfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWra= pperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Reso= urceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss= -jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2= .0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1= .6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.F= inal] > ... 12 more > {code} > {code:title=3DJBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycl= e] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: co= m.google.common.collect.ComputationException: javax.faces.FacesException: C= onnectionFactory -- service jboss.naming.context.java.ConnectionFactory: ja= vax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collec= t.ComputationException: javax.faces.FacesException: ConnectionFactory -- se= rvice jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-= jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)= [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1= 259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat= ionPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3= -b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(Pers= istenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.F= inal] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-we= b-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:95= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.= ComputationException: javax.faces.FacesException: ConnectionFactory -- serv= ice jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.B= eta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionList= enerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.Fa= cesException: ConnectionFactory -- service jboss.naming.context.java.Connec= tionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProx= y.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api= -4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(Pus= hCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImp= l.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java= :628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1= .2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [class= es:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessag= e(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 2] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0= .1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:2= 76) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMe= thodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.ja= va:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpress= ion.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(Met= hodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Be= ta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (Me= ssageProducerThread) javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory: com.google.common.collect.C= omputationException: javax.faces.FacesException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTo= pic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsC= ontext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.ja= va:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(Topi= csContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRu= nnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss= .naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueRe= ference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment= .getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(Com= putingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdap= ter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- servi= ce jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNaming= Store.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_2= 2] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl= -4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopic= Context.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Fin= al.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(= JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big d= elay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalo= ne-preview.xml", the CDI push demo works correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4767205587086454125==-- From jira-events at lists.jboss.org Mon Mar 26 09:13:47 2012 Content-Type: multipart/mixed; boundary="===============2516552252228454762==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12090) Components: add jrebel profile to allow rapid development Date: Mon, 26 Mar 2012 09:13:47 -0400 Message-ID: <1665682564.30930.1332767627411.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2516552252228454762== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-12090: ------------------------------- Summary: Components: add jrebel profile to allow rapid develop= ment Key: RF-12090 URL: https://issues.jboss.org/browse/RF-12090 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: build/distribution Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.1.CR1 The {{jrebel}} profile will * generate {{rebel.xml}} * unpack project dependencies which will be used by CDK command-line genera= tor -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2516552252228454762==-- From jira-events at lists.jboss.org Mon Mar 26 09:13:47 2012 Content-Type: multipart/mixed; boundary="===============7738494938711829862==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12090) Components: add jrebel profile to allow rapid development Date: Mon, 26 Mar 2012 09:13:47 -0400 Message-ID: <1302869616.30931.1332767627472.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1665682564.30930.1332767627411.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7738494938711829862== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12090?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12090: ---------------------------- Priority: Minor (was: Major) = > Components: add jrebel profile to allow rapid development > --------------------------------------------------------- > > Key: RF-12090 > URL: https://issues.jboss.org/browse/RF-12090 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: build/distribution > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > The {{jrebel}} profile will > * generate {{rebel.xml}} > * unpack project dependencies which will be used by CDK command-line gene= rator -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7738494938711829862==-- From jira-events at lists.jboss.org Mon Mar 26 09:15:54 2012 Content-Type: multipart/mixed; boundary="===============5942940837011053902==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12090) Components: add jrebel profile to allow rapid development Date: Mon, 26 Mar 2012 09:15:54 -0400 Message-ID: <58097842.30959.1332767754708.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1665682564.30930.1332767627411.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5942940837011053902== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12090?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12090. ----------------------------- Resolution: Done = > Components: add jrebel profile to allow rapid development > --------------------------------------------------------- > > Key: RF-12090 > URL: https://issues.jboss.org/browse/RF-12090 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: build/distribution > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > The {{jrebel}} profile will > * generate {{rebel.xml}} > * unpack project dependencies which will be used by CDK command-line gene= rator -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5942940837011053902==-- From jira-events at lists.jboss.org Mon Mar 26 09:15:54 2012 Content-Type: multipart/mixed; boundary="===============9005556919950318226==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-7351) Regression: "messages: globalOnly does not work properly" Date: Mon, 26 Mar 2012 09:15:54 -0400 Message-ID: <22628080.30957.1332767754533.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11790963.1244614376426.JavaMail.jira@cloud.prod.atl2.jboss.com --===============9005556919950318226== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7351?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-7351. ---------------------------- Resolution: Done = > Regression: "messages: globalOnly does not work properly" > --------------------------------------------------------- > > Key: RF-7351 > URL: https://issues.jboss.org/browse/RF-7351 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output, regression > Affects Versions: 3.3.1, 4.0.0.Final > Environment: Windows / JBoss 4.2.2.GA / Seam 2.1.1.GA / RichFaces= 3.3.1.GA > Reporter: Joseph Miller > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > Attachments: example-globalOnly-bug.zip, example-globalOnly-bug.z= ip, Screen shot 2011-04-22 at 16.22.11.png, Screen shot 2011-04-27 at 08.51= .26.png, Screen shot 2011-04-27 at 08.52.49.png > > Time Spent: 4 hours > Remaining Estimate: 0 minutes > > Looks like a regression of RF-615... I've upgraded my Seam project to sue= RF 3.3.1, in order to fix a number of other bugs, but now messages intende= d for a single UI component (via the for=3D ) are appearing in the global m= essages list at the top of my page. > My page template has: > > ... > > and the controls have: > > ... > > I can switch the rich:messages to h:messages, and it behaves as it should= . Also reverting back to the RichFaces 3.2.2.SR1 jars makes the problem go = away, but I get the other older bugs back :( -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9005556919950318226==-- From jira-events at lists.jboss.org Mon Mar 26 09:15:55 2012 Content-Type: multipart/mixed; boundary="===============1478854693669233323==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Mon, 26 Mar 2012 09:15:55 -0400 Message-ID: <1801887010.30961.1332767755109.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1478854693669233323== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679282#com= ment-12679282 ] = Rene O commented on RF-11948: ----------------------------- This solution doesn't work for all usecases. If you use ajax, this solution= fails. See the following code for an example: {code:title=3D'Show table with ajax'} JSF Test =

    = ColA #{item.itemA}
    {code} If you click the ajaxified button to show the table, the rich:ready event i= sn't fired and so the resizing doesn't work. = If you press F5 to refresh the page, the event is fired. But this is not th= e wanted behaviour. The resizing also works directly, if panelGroup with id=3D'mytableGroup' is= alway rendered -> = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1478854693669233323==-- From jira-events at lists.jboss.org Mon Mar 26 09:17:47 2012 Content-Type: multipart/mixed; boundary="===============3315053760786064047==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Mon, 26 Mar 2012 09:17:47 -0400 Message-ID: <971068719.30968.1332767867521.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3315053760786064047== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Rene O reopened RF-11948: ------------------------- = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3315053760786064047==-- From jira-events at lists.jboss.org Mon Mar 26 09:17:47 2012 Content-Type: multipart/mixed; boundary="===============1647654479469545261==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12090) Components: add jrebel profile to allow rapid development Date: Mon, 26 Mar 2012 09:17:47 -0400 Message-ID: <1454443474.30969.1332767867577.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1665682564.30930.1332767627411.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1647654479469545261== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12090?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679283#com= ment-12679283 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12090: --------------------------------- https://github.com/richfaces/components/commit/c6b4287d7b08c7b33a3acf64cdcb= 3f6a7f5d4cbb = > Components: add jrebel profile to allow rapid development > --------------------------------------------------------- > > Key: RF-12090 > URL: https://issues.jboss.org/browse/RF-12090 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: build/distribution > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > The {{jrebel}} profile will > * generate {{rebel.xml}} > * unpack project dependencies which will be used by CDK command-line gene= rator -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1647654479469545261==-- From jira-events at lists.jboss.org Mon Mar 26 09:43:47 2012 Content-Type: multipart/mixed; boundary="===============2931489460494375098==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Mon, 26 Mar 2012 09:43:47 -0400 Message-ID: <1282688716.31065.1332769427341.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2931489460494375098== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679287#com= ment-12679287 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12044: --------------------------------- Regrettably there is nothing we can do about it. As some users reports, IE handles selected shortcuts specifically: http://stackoverflow.com/questions/7883807/prevent-default-event-action-not= -working We are already taking all available actions to prevent propagation: https://github.com/richfaces/components/blob/develop/misc/ui/src/main/resou= rces/META-INF/resources/org.richfaces/hotkey.js#L51 I suggest to open issue in {{RFPL/doc}} to note this limitation in Componen= t Reference. = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2931489460494375098==-- From jira-events at lists.jboss.org Mon Mar 26 09:51:48 2012 Content-Type: multipart/mixed; boundary="===============4465132035888684347==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Mon, 26 Mar 2012 09:51:47 -0400 Message-ID: <1281719483.31086.1332769908019.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4465132035888684347== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679289#com= ment-12679289 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12044: --------------------------------- Jan, could you please try additionally how RF3 behaved in regards to {{Alt+= X}} shortcut? = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4465132035888684347==-- From jira-events at lists.jboss.org Mon Mar 26 09:51:48 2012 Content-Type: multipart/mixed; boundary="===============5691063922175536565==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Mon, 26 Mar 2012 09:51:48 -0400 Message-ID: <919660236.31092.1332769908446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5691063922175536565== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679289#com= ment-12679289 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12044 at 3/26/12 9:51 AM: ---------------------------------------------------------- Jan, could you please try additionally how RF3 behaved in regards to {{Alt+= X}} shortcut as we don't want to break backward compatibility? = was (Author: lfryc): Jan, could you please try additionally how RF3 behaved in regards to {{= Alt+X}} shortcut? = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Jan Papousek > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5691063922175536565==-- From jira-events at lists.jboss.org Mon Mar 26 09:51:48 2012 Content-Type: multipart/mixed; boundary="===============0615007043706300302==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Mon, 26 Mar 2012 09:51:48 -0400 Message-ID: <857980534.31089.1332769908323.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0615007043706300302== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-12044: ------------------------------- Assignee: Jan Papousek (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Jan Papousek > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0615007043706300302==-- From jira-events at lists.jboss.org Mon Mar 26 09:56:47 2012 Content-Type: multipart/mixed; boundary="===============6555959972228811259==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Mon, 26 Mar 2012 09:56:47 -0400 Message-ID: <1250818346.31097.1332770207366.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6555959972228811259== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-12044: ------------------------------- Assignee: Pavol Pitonak (was: Jan Papousek) = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Pavol Pitonak > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6555959972228811259==-- From jira-events at lists.jboss.org Mon Mar 26 10:05:00 2012 Content-Type: multipart/mixed; boundary="===============8158555174225584502==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11975) Prototype script error in Portal Date: Mon, 26 Mar 2012 10:04:49 -0400 Message-ID: <316073460.31128.1332770689488.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1984257857.36640.1328882328345.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8158555174225584502== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11975?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679293#com= ment-12679293 ] = RH Bugzilla Integration commented on RF-11975: ---------------------------------------------- Ken Finnigan made a comment on [bug 793999|https://= bugzilla.redhat.com/show_bug.cgi?id=3D793999] Technical note updated. If any revisions are required, please edit the = "Technical Notes" field accordingly. All revisions will be proofread by the Engineering Content= Services team. = Diffed Contents: @@ -27,4 +27,4 @@ moving the $A function in the JavaScript to the top of the file, but this = would require a patch to RichFaces RESULT -Known Issue+Known Issue - https://issues.jboss.org/browse/RF-11975 = > Prototype script error in Portal > -------------------------------- > > Key: RF-11975 > URL: https://issues.jboss.org/browse/RF-11975 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 3.3.3.Final > Environment: GateIn v3.2 > JBoss PortletBridge v2.2.0.Final > Firefox > Reporter: Ken Finnigan > Priority: Minor > Fix For: 3.Future > > > When a user wants to add two separate portlets to the same portal page, w= ith both portlets using RichFaces components, the JBoss PortletBridge needs= to have the context parameter "org.jboss.portletbridge.WRAP_SCRIPTS" set t= o true. This wraps the RichFaces JavaScript files with a check to prevent = the same file being loaded twice on the one page, as there are two portlets= with RichFaces scripts being loaded. > In this situation, the prototype.js script (or framework_pack.js when Loa= dScriptStrategy is ALL) returns "$A() is not defined" within Firefox, but i= n Chrome and IE it works fine. > This JS error in Firefox can be resolved by moving the $A function to the= very top of the file to ensure it is defined when needed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8158555174225584502==-- From jira-events at lists.jboss.org Mon Mar 26 10:05:00 2012 Content-Type: multipart/mixed; boundary="===============8307367380626324606==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11975) Prototype script error in Portal Date: Mon, 26 Mar 2012 10:04:49 -0400 Message-ID: <863564851.31123.1332770689290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1984257857.36640.1328882328345.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8307367380626324606== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11975?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679292#com= ment-12679292 ] = RH Bugzilla Integration commented on RF-11975: ---------------------------------------------- Ken Finnigan made a comment on [bug 793999|https://= bugzilla.redhat.com/show_bug.cgi?id=3D793999] I guess a new ticket could be opened, but I don't believe it's an issue tha= t will ever be resolved. Best person to ask is Thomas about what he wants = > Prototype script error in Portal > -------------------------------- > > Key: RF-11975 > URL: https://issues.jboss.org/browse/RF-11975 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 3.3.3.Final > Environment: GateIn v3.2 > JBoss PortletBridge v2.2.0.Final > Firefox > Reporter: Ken Finnigan > Priority: Minor > Fix For: 3.Future > > > When a user wants to add two separate portlets to the same portal page, w= ith both portlets using RichFaces components, the JBoss PortletBridge needs= to have the context parameter "org.jboss.portletbridge.WRAP_SCRIPTS" set t= o true. This wraps the RichFaces JavaScript files with a check to prevent = the same file being loaded twice on the one page, as there are two portlets= with RichFaces scripts being loaded. > In this situation, the prototype.js script (or framework_pack.js when Loa= dScriptStrategy is ALL) returns "$A() is not defined" within Firefox, but i= n Chrome and IE it works fine. > This JS error in Firefox can be resolved by moving the $A function to the= very top of the file to ensure it is defined when needed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8307367380626324606==-- From jira-events at lists.jboss.org Mon Mar 26 10:05:00 2012 Content-Type: multipart/mixed; boundary="===============4785579825581760289==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11975) Prototype script error in Portal Date: Mon, 26 Mar 2012 10:04:48 -0400 Message-ID: <251919563.31115.1332770688092.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1984257857.36640.1328882328345.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4785579825581760289== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11975?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-11975: ----------------------------------------- Bugzilla Update: Perform = > Prototype script error in Portal > -------------------------------- > > Key: RF-11975 > URL: https://issues.jboss.org/browse/RF-11975 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 3.3.3.Final > Environment: GateIn v3.2 > JBoss PortletBridge v2.2.0.Final > Firefox > Reporter: Ken Finnigan > Priority: Minor > Fix For: 3.Future > > > When a user wants to add two separate portlets to the same portal page, w= ith both portlets using RichFaces components, the JBoss PortletBridge needs= to have the context parameter "org.jboss.portletbridge.WRAP_SCRIPTS" set t= o true. This wraps the RichFaces JavaScript files with a check to prevent = the same file being loaded twice on the one page, as there are two portlets= with RichFaces scripts being loaded. > In this situation, the prototype.js script (or framework_pack.js when Loa= dScriptStrategy is ALL) returns "$A() is not defined" within Firefox, but i= n Chrome and IE it works fine. > This JS error in Firefox can be resolved by moving the $A function to the= very top of the file to ensure it is defined when needed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4785579825581760289==-- From jira-events at lists.jboss.org Mon Mar 26 10:05:00 2012 Content-Type: multipart/mixed; boundary="===============7013164284967173901==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11975) Prototype script error in Portal Date: Mon, 26 Mar 2012 10:04:48 -0400 Message-ID: <1934877958.31119.1332770688955.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1984257857.36640.1328882328345.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7013164284967173901== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11975?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-11975: ----------------------------------------- Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=3D7939= 99 = > Prototype script error in Portal > -------------------------------- > > Key: RF-11975 > URL: https://issues.jboss.org/browse/RF-11975 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 3.3.3.Final > Environment: GateIn v3.2 > JBoss PortletBridge v2.2.0.Final > Firefox > Reporter: Ken Finnigan > Priority: Minor > Fix For: 3.Future > > > When a user wants to add two separate portlets to the same portal page, w= ith both portlets using RichFaces components, the JBoss PortletBridge needs= to have the context parameter "org.jboss.portletbridge.WRAP_SCRIPTS" set t= o true. This wraps the RichFaces JavaScript files with a check to prevent = the same file being loaded twice on the one page, as there are two portlets= with RichFaces scripts being loaded. > In this situation, the prototype.js script (or framework_pack.js when Loa= dScriptStrategy is ALL) returns "$A() is not defined" within Firefox, but i= n Chrome and IE it works fine. > This JS error in Firefox can be resolved by moving the $A function to the= very top of the file to ensure it is defined when needed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7013164284967173901==-- From jira-events at lists.jboss.org Mon Mar 26 10:10:47 2012 Content-Type: multipart/mixed; boundary="===============8736850232608707074==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12080) rich:hotKey usage clears body onload attribute Date: Mon, 26 Mar 2012 10:10:47 -0400 Message-ID: <779412766.31153.1332771047302.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1411413331.27453.1332488387294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8736850232608707074== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12080?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-12080: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > rich:hotKey usage clears body onload attribute > ---------------------------------------------- > > Key: RF-12080 > URL: https://issues.jboss.org/browse/RF-12080 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.2.0.Final > Environment: myfaces 2.1.6, tomahawk 1.1.11 > Reporter: Michael Heinen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > > I'm happy to see rich:hotKey in richfaces 4.2, I used it already with ric= hfaces 3.3.3. > One thing I noticed now is that the onload attribute of t:documentboy is = cleared on clientside as soon as rich:hotKey is used on a page. Maybe cause= d by jquery usage? > From my pov this should be either fixed or documented in the component gu= ide as well as in the showcase sample. > Workaround is obvious: Instead of onload use document.ready -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8736850232608707074==-- From jira-events at lists.jboss.org Mon Mar 26 10:35:57 2012 Content-Type: multipart/mixed; boundary="===============6513389680849109480==" MIME-Version: 1.0 From: Dupont Dupont (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12091) rich:dataScroller scrollListener not documented Date: Mon, 26 Mar 2012 10:35:48 -0400 Message-ID: <1487113708.31251.1332772548274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6513389680849109480== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dupont Dupont created RF-12091: ---------------------------------- Summary: rich:dataScroller scrollListener not documented Key: RF-12091 URL: https://issues.jboss.org/browse/RF-12091 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final Reporter: Dupont Dupont rich:dataScroller has a scrollListener attribute, but it's not documented (= no occurence in component reference or in taglib.xml). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6513389680849109480==-- From jira-events at lists.jboss.org Mon Mar 26 11:05:48 2012 Content-Type: multipart/mixed; boundary="===============6046238264696507933==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 11:05:48 -0400 Message-ID: <210647362.31355.1332774348258.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6046238264696507933== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679321#com= ment-12679321 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11990: --------------------------------- This is the upstream issue: MyFaces does not separate these two scripts wit= h comma. We would need to simpler sample for having this fixed. = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6046238264696507933==-- From jira-events at lists.jboss.org Mon Mar 26 11:09:47 2012 Content-Type: multipart/mixed; boundary="===============8432372176381332787==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 11:09:47 -0400 Message-ID: <1815348497.31365.1332774587847.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8432372176381332787== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679322#com= ment-12679322 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11990: --------------------------------- Daniel, just one point: when {{f:ajax}} is attached to the component, you d= on't need to use {{rich:validator}}, since ajax request will validate the i= nput and produce faces message. = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8432372176381332787==-- From jira-events at lists.jboss.org Mon Mar 26 11:34:49 2012 Content-Type: multipart/mixed; boundary="===============5839052358176095665==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 11:34:49 -0400 Message-ID: <1705692282.31445.1332776089300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5839052358176095665== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679336#com= ment-12679336 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11990: --------------------------------- Following behavior reproduces the issue as well: {code:java} @FacesBehavior("eu.fryc.Behavior1") public class Behavior1 extends ClientBehaviorBase { = @Override public String getScript(ClientBehaviorContext behaviorContext) { return "alert('xyz')"; } } {code} {code:xml} http://fryc.eu/behavior behavior1 eu.fryc.Behavior1 {code} {code:XML} {code} It produces: {code:XML} {code} = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5839052358176095665==-- From jira-events at lists.jboss.org Mon Mar 26 11:36:47 2012 Content-Type: multipart/mixed; boundary="===============3043133646917235897==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 11:36:47 -0400 Message-ID: <1675862592.31453.1332776207668.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3043133646917235897== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679338#com= ment-12679338 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11990: --------------------------------- Note that explicit definition on {{event}} attributes for both behaviors (o= r not-defining {{event}} attributes at all) fixes the issue: {code:xml} {code} {code:xml} {code} = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3043133646917235897==-- From jira-events at lists.jboss.org Mon Mar 26 11:38:49 2012 Content-Type: multipart/mixed; boundary="===============6614742679174003225==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 11:38:49 -0400 Message-ID: <407552288.31462.1332776329341.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6614742679174003225== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679336#com= ment-12679336 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11990 at 3/26/12 11:37 AM: ----------------------------------------------------------- Following behavior reproduces the issue as well: {code:java|title=3DBehavior1.java} @FacesBehavior("eu.fryc.Behavior1") public class Behavior1 extends ClientBehaviorBase { = @Override public String getScript(ClientBehaviorContext behaviorContext) { return "alert('xyz')"; } } {code} {code:xml|title=3DMETA-INF/fryc.taglib.xml} http://fryc.eu/behavior behavior1 eu.fryc.Behavior1 {code} {code:XML|title=3Dbehavior-test.xhtml} {code} It produces: {code:XML|title=3Doutput} {code} = was (Author: lfryc): Following behavior reproduces the issue as well: {code:java} @FacesBehavior("eu.fryc.Behavior1") public class Behavior1 extends ClientBehaviorBase { = @Override public String getScript(ClientBehaviorContext behaviorContext) { return "alert('xyz')"; } } {code} {code:xml} http://fryc.eu/behavior behavior1 eu.fryc.Behavior1 {code} {code:XML} {code} It produces: {code:XML} {code} = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6614742679174003225==-- From jira-events at lists.jboss.org Mon Mar 26 11:42:47 2012 Content-Type: multipart/mixed; boundary="===============3724025000515508705==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 11:42:47 -0400 Message-ID: <1722161623.31495.1332776567813.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3724025000515508705== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679344#com= ment-12679344 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11990: --------------------------------- Note that Mojarra behaves even more invalid: {code:xml|title=3Dtest1.xhtml} {code} {code:xml|title=3Doutput1} {code} Again, it works great when {{event}} provided for both behaviors or not pro= vided at all. = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3724025000515508705==-- From jira-events at lists.jboss.org Mon Mar 26 13:41:47 2012 Content-Type: multipart/mixed; boundary="===============2140668418397456849==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12084) Richfaces 4.2 when inside dont work and causes 'identifier resolved to null' Date: Mon, 26 Mar 2012 13:41:47 -0400 Message-ID: <1054953498.32027.1332783707376.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1382382061.29574.1332701569056.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2140668418397456849== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12084?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12084: ------------------------------- Summary: Richfaces 4.2 when inside don= t work and causes 'identifier resolved to null' (was: Richfaces 4.2 when inside dont work and causes 'identifier resolved to = null') Forum Reference: https://community.jboss.org/message/723859, https://co= mmunity.jboss.org/thread/196867 (was: https://community.jboss.org/message/= 723859, https://community.jboss.org/thread/196867) = > Richfaces 4.2 when inside dont work and causes '= identifier resolved to null' > -------------------------------------------------------------------------= ---------------------------- > > Key: RF-12084 > URL: https://issues.jboss.org/browse/RF-12084 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: Windows Vista, Firefox 11, Richfaces 4.2 Final, Moja= rra 2.1.7, Tomcat 7.0.26 > Reporter: Ivan Costa > Labels: richfaces > > a4j:commandLink or a4j:ajax tags inside ui:fragment causes 'identifier re= solved to null', = > but h:commandLink + f:ajax (both from Mojarra) works perfectly fine! > The problem is described here > https://community.jboss.org/message/723859 > and here: > https://community.jboss.org/thread/196867 > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2140668418397456849==-- From jira-events at lists.jboss.org Mon Mar 26 14:02:47 2012 Content-Type: multipart/mixed; boundary="===============0568022803962236255==" MIME-Version: 1.0 From: Robert Gary (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Mon, 26 Mar 2012 14:02:47 -0400 Message-ID: <69599813.32096.1332784967357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0568022803962236255== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Robert Gary created RF-12092: -------------------------------- Summary: a4j:poll : a4j:status never clears Key: RF-12092 URL: https://issues.jboss.org/browse/RF-12092 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-push/poll Affects Versions: 4.2.0.Final Reporter: Robert Gary When a4j:poll fires a4j:status correctly displays the request is in progres= s. However, it never shows it complete. Using any other a4j component will = correctly update the a4j:status. So if the a4j:status is stuck showing its = waiting because of an a4j:poll if you click on an a4j:commandButton the a4j= :status will correctly show its now complete. This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0568022803962236255==-- From jira-events at lists.jboss.org Mon Mar 26 14:02:47 2012 Content-Type: multipart/mixed; boundary="===============4252229551926297710==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12091) rich:dataScroller scrollListener not documented Date: Mon, 26 Mar 2012 14:02:47 -0400 Message-ID: <1631546630.32095.1332784967316.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1487113708.31251.1332772548274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4252229551926297710== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12091?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12091: ------------------------------- Fix Version/s: 4.2.1.CR1 Assignee: Brian Leathem Forum Reference: https://community.jboss.org/thread/197474 (was: https= ://community.jboss.org/thread/197474) Looks like the method: {code} public DataScrollListener[] getScrollListeners() { return (DataScrollListener[]) getFacesListeners(DataScrollListener.clas= s); } {code} is missing the @Attribute annotation. It should be added, with generate=3D= false. = > rich:dataScroller scrollListener not documented > ----------------------------------------------- > > Key: RF-12091 > URL: https://issues.jboss.org/browse/RF-12091 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Reporter: Dupont Dupont > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > rich:dataScroller has a scrollListener attribute, but it's not documented= (no occurence in component reference or in taglib.xml). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4252229551926297710==-- From jira-events at lists.jboss.org Mon Mar 26 14:10:47 2012 Content-Type: multipart/mixed; boundary="===============9157573694934261093==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Mon, 26 Mar 2012 14:10:47 -0400 Message-ID: <653192255.32150.1332785447374.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 69599813.32096.1332784967357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9157573694934261093== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12092: ------------------------------- Assignee: Pavol Pitonak QE, would you please create a metamer page to reproduce this issue? = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Robert Gary > Assignee: Pavol Pitonak > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9157573694934261093==-- From jira-events at lists.jboss.org Mon Mar 26 14:13:04 2012 Content-Type: multipart/mixed; boundary="===============1551252853828520385==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12084) Richfaces 4.2 when inside dont work and causes 'identifier resolved to null' Date: Mon, 26 Mar 2012 14:12:47 -0400 Message-ID: <1541699031.32160.1332785567340.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1382382061.29574.1332701569056.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1551252853828520385== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12084?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12084: ---------------------------------- Assignee: Pavol Pitonak QE, please create a metamer page including the above test code. = > Richfaces 4.2 when inside dont work and causes '= identifier resolved to null' > -------------------------------------------------------------------------= ---------------------------- > > Key: RF-12084 > URL: https://issues.jboss.org/browse/RF-12084 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: Windows Vista, Firefox 11, Richfaces 4.2 Final, Moja= rra 2.1.7, Tomcat 7.0.26 > Reporter: Ivan Costa > Assignee: Pavol Pitonak > Labels: richfaces > > a4j:commandLink or a4j:ajax tags inside ui:fragment causes 'identifier re= solved to null', = > but h:commandLink + f:ajax (both from Mojarra) works perfectly fine! > The problem is described here > https://community.jboss.org/message/723859 > and here: > https://community.jboss.org/thread/196867 > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1551252853828520385==-- From jira-events at lists.jboss.org Mon Mar 26 14:14:47 2012 Content-Type: multipart/mixed; boundary="===============7904705354178803097==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12087) itemChangeListener attribute @listener does not work Date: Mon, 26 Mar 2012 14:14:47 -0400 Message-ID: <285109870.32164.1332785687569.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1894988349.30243.1332753647412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7904705354178803097== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12087?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12087: ------------------------------- Fix Version/s: 4.3-Tracking = > itemChangeListener attribute @listener does not work > ---------------------------------------------------- > > Key: RF-12087 > URL: https://issues.jboss.org/browse/RF-12087 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 11.0 @ Linux x86_64 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 4.3-Tracking > > > # Deploy Metamer. > # Open http://localhost:8080/metamer/faces/components/richItemChangeListe= ner/accordion.xhtml > ( > or http://localhost:8080/metamer/faces/components/richItemChangeListener/= panelMenu.xhtml > or http://localhost:8080/metamer/faces/components/richItemChangeListener/= tabPanel.xhtml > or http://localhost:8080/metamer/faces/components/richItemChangeListener/= togglePanel.xhtml = > ) > # Click on accordion panel Item 2. > # 2 messages with "* itemChangeListenerBean item changed: null -> item2" = should appear in phases list. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7904705354178803097==-- From jira-events at lists.jboss.org Mon Mar 26 14:14:47 2012 Content-Type: multipart/mixed; boundary="===============0124999343617617578==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12089) itemChangeListener attribute @for does not work Date: Mon, 26 Mar 2012 14:14:47 -0400 Message-ID: <512575733.32167.1332785687682.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 405838573.30375.1332756049100.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0124999343617617578== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12089?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12089: ------------------------------- Fix Version/s: 4.3-Tracking = > itemChangeListener attribute @for does not work > ----------------------------------------------- > > Key: RF-12089 > URL: https://issues.jboss.org/browse/RF-12089 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 11.0 @ Linux x86_64 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 4.3-Tracking > > > # Deploy Metamer. > # Open http://localhost:8080/metamer/faces/components/richItemChangeListe= ner/RF-12089.xhtml . -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0124999343617617578==-- From jira-events at lists.jboss.org Mon Mar 26 14:18:47 2012 Content-Type: multipart/mixed; boundary="===============8104539356873184920==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12021) Compilation of Input UI component logs 2 errors about faces-config.xml Date: Mon, 26 Mar 2012 14:18:47 -0400 Message-ID: <1350620685.32173.1332785927671.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 518462150.61467.1330674576214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8104539356873184920== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12021?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12021: ------------------------------- Fix Version/s: 4.2.1.CR1 Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=3D8010= 48 (was: https://bugzilla.redhat.com/show_bug.cgi?id=3D801048) = > Compilation of Input UI component logs 2 errors about faces-config.xml > ---------------------------------------------------------------------- > > Key: RF-12021 > URL: https://issues.jboss.org/browse/RF-12021 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: Marek Novotny > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > Compilation of RF UI Components specifically Input UI has got 2 errors in= log - related to bad faces-config.xml on line number 29 and 240. > The following is snippet of log: > {noformat} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces UI Components: Input UI 4.2.0.Final > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-java-versi= on) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-maven-vers= ion) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-cdk-plugin:4.2.0.Final-redhat-1:generate (cdk-generate-s= ources) @ richfaces-ui-input-ui --- > [Error] faces-config.xml:29:71: cvc-complex-type.2.4.a: Invalid content w= as found starting with element 'xi:include'. One of '{"http://java.sun.com/= xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-exte= nsion}' is expected. > [Error] faces-config.xml:240:71: cvc-complex-type.2.4.a: Invalid content = was found starting with element 'xi:include'. One of '{"http://java.sun.com= /xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-ext= ension}' is expected. > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8104539356873184920==-- From jira-events at lists.jboss.org Mon Mar 26 14:18:47 2012 Content-Type: multipart/mixed; boundary="===============1791106003572799058==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12079) ignores Date: Mon, 26 Mar 2012 14:18:47 -0400 Message-ID: <1432921847.32170.1332785927494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2129957963.25561.1332425267314.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1791106003572799058== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12079?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12079. -------------------------------- Resolution: Duplicate Issue = > ignores > ---------------------------------- > > Key: RF-12079 > URL: https://issues.jboss.org/browse/RF-12079 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.0 and JSF 2.2 with CDI (Bean type "jav= ax.inject.Named") > Application Server GlassFish Server Open Source Edition 3.1.2 (build 23) > Reporter: Wesley Menezes > Assignee: Brian Leathem > > In JSF with a and this have nested, if is applied in , the ajax listener isn't called. > But, if applied to (under) , the ajax event fires m= ethod listener call. > {code:title=3DXHTML (snippet)} > id=3D"memoriaTree" > value=3D"#{cadCustomerBean.rootNodes}" > toggleType=3D"client" > var=3D"node" > nodeType=3D"#{node.data.type}" > > > id=3D"memoriaRoot" > type=3D"customer" > iconLeaf=3D"../images/fichario.gif" > data=3D"#{node.data.id}"> > > immediate=3D"true" > execute=3D"@this" > event=3D"mousedown" > listener=3D"#{cadCustomerBean.processTreeSelectionChange(= node.data)}"/> > > > {code} > {code:title=3DBEAN (snippet)} > /*imports...*/ > @Named > @SessionScoped > public class CadCustomerBean implements Serializable { > public void processTreeSelectionChange (MyClass myObject) { > = > System.out.println(myObject); > } > } > {code} > Obs. In RichFaces 4.2.0 Final showcase, the has the attribute= "selectionChangeListener", but I found only "treeSelectionChangeListener" = in jars of RichFaces (like attribute of the tag, or like a tag = ). The "Component_Reference.pdf" is ok. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1791106003572799058==-- From jira-events at lists.jboss.org Mon Mar 26 14:39:47 2012 Content-Type: multipart/mixed; boundary="===============0467830044266689568==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 14:39:47 -0400 Message-ID: <70378671.32207.1332787187421.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0467830044266689568== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679434#com= ment-12679434 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11990: --------------------------------- Issues reported in MyFaces: https://issues.apache.org/jira/browse/MYFACES-3= 513 = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0467830044266689568==-- From jira-events at lists.jboss.org Mon Mar 26 14:45:48 2012 Content-Type: multipart/mixed; boundary="===============4122772582709017212==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 14:45:47 -0400 Message-ID: <1996814340.32237.1332787547996.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4122772582709017212== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679434#com= ment-12679434 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11990 at 3/26/12 2:45 PM: ---------------------------------------------------------- Issues reported in upstream projects: https://issues.apache.org/jira/browse/MYFACES-3513 http://java.net/jira/browse/JAVASERVERFACES-2354 = was (Author: lfryc): Issues reported in MyFaces: https://issues.apache.org/jira/browse/MYFAC= ES-3513 = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > Fix For: 4.2.1.CR1 > > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4122772582709017212==-- From jira-events at lists.jboss.org Mon Mar 26 14:47:47 2012 Content-Type: multipart/mixed; boundary="===============7270767275631477906==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 14:47:47 -0400 Message-ID: <1616072039.32241.1332787667580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7270767275631477906== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11990. ----------------------------- Fix Version/s: (was: 4.2.1.CR1) Resolution: Rejected I'm rejecting this since it is upstream projects' issue. = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7270767275631477906==-- From jira-events at lists.jboss.org Mon Mar 26 14:47:48 2012 Content-Type: multipart/mixed; boundary="===============2656789587683020618==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Mon, 26 Mar 2012 14:47:47 -0400 Message-ID: <1795243020.32245.1332787667961.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2656789587683020618== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679344#com= ment-12679344 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11990 at 3/26/12 2:47 PM: ---------------------------------------------------------- Note that Mojarra behaves even more wrong: {code:xml|title=3Dtest1.xhtml} {code} {code:xml|title=3Doutput1} {code} Again, it works great when {{event}} provided for both behaviors or not pro= vided at all. = was (Author: lfryc): Note that Mojarra behaves even more invalid: {code:xml|title=3Dtest1.xhtml} {code} {code:xml|title=3Doutput1} {code} Again, it works great when {{event}} provided for both behaviors or not pro= vided at all. = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2656789587683020618==-- From jira-events at lists.jboss.org Mon Mar 26 16:12:47 2012 Content-Type: multipart/mixed; boundary="===============0169440218627526444==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12093) ResourceServlet can't handle resources outside of specific libraries Date: Mon, 26 Mar 2012 16:12:47 -0400 Message-ID: <197597681.32473.1332792767445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 346104444.32472.1332792767413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0169440218627526444== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12093?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12093: ---------------------------- Description: = {{ResourceServlet}} is limited to what it can serve to only several specifi= c libraries: * [{{CKEditorLibrary}}|https://github.com/richfaces/core/blob/develop/impl/= src/main/java/org/richfaces/webapp/ResourceServlet.java#L194] * [{{StaticResourceLibrary}}|https://github.com/richfaces/core/blob/develop= /impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] * [{{RichFacesImageLibrary}}|https://github.com/richfaces/core/blob/develop= /impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] We should allow to serve any resource. Some limitations may be placed on resources server by ResourceServlet as di= scussed in RF-11888. was: {{ResourceServlet}} is limited to what it can serve to only several specifi= c libraries: * [{{CKEditorLibrary}}|https://github.com/richfaces/core/blob/develop/impl/= src/main/java/org/richfaces/webapp/ResourceServlet.java#L194] * [{{StaticResourceLibrary}}|https://github.com/richfaces/core/blob/develop= /impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] * [{{RichFacesImageLibrary}}|https://github.com/richfaces/core/blob/develop= /impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] ---- We should allow to serve any resource. = > ResourceServlet can't handle resources outside of specific libraries > -------------------------------------------------------------------- > > Key: RF-12093 > URL: https://issues.jboss.org/browse/RF-12093 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > {{ResourceServlet}} is limited to what it can serve to only several speci= fic libraries: > * [{{CKEditorLibrary}}|https://github.com/richfaces/core/blob/develop/imp= l/src/main/java/org/richfaces/webapp/ResourceServlet.java#L194] > * [{{StaticResourceLibrary}}|https://github.com/richfaces/core/blob/devel= op/impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] > * [{{RichFacesImageLibrary}}|https://github.com/richfaces/core/blob/devel= op/impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] > We should allow to serve any resource. > Some limitations may be placed on resources server by ResourceServlet as = discussed in RF-11888. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0169440218627526444==-- From jira-events at lists.jboss.org Mon Mar 26 16:12:47 2012 Content-Type: multipart/mixed; boundary="===============5030380665353098858==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12093) ResourceServlet can't handle resources outside of specific libraries Date: Mon, 26 Mar 2012 16:12:47 -0400 Message-ID: <346104444.32472.1332792767413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5030380665353098858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-12093: ------------------------------- Summary: ResourceServlet can't handle resources outside of spe= cific libraries Key: RF-12093 URL: https://issues.jboss.org/browse/RF-12093 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: core Affects Versions: 4.2.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.1.CR1 {{ResourceServlet}} is limited to what it can serve to only several specifi= c libraries: * [{{CKEditorLibrary}}|https://github.com/richfaces/core/blob/develop/impl/= src/main/java/org/richfaces/webapp/ResourceServlet.java#L194] * [{{StaticResourceLibrary}}|https://github.com/richfaces/core/blob/develop= /impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] * [{{RichFacesImageLibrary}}|https://github.com/richfaces/core/blob/develop= /impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] ---- We should allow to serve any resource. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5030380665353098858==-- From jira-events at lists.jboss.org Mon Mar 26 16:52:47 2012 Content-Type: multipart/mixed; boundary="===============0440262923796498440==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12091) rich:dataScroller scrollListener not documented Date: Mon, 26 Mar 2012 16:52:47 -0400 Message-ID: <2027483944.32594.1332795167337.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1487113708.31251.1332772548274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0440262923796498440== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12091?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12091. -------------------------------- Resolution: Done Added an @Attribute annotated getter for the scrollListener attribute: {code} @Attribute public abstract MethodExpression getScrollListener(); {code} = > rich:dataScroller scrollListener not documented > ----------------------------------------------- > > Key: RF-12091 > URL: https://issues.jboss.org/browse/RF-12091 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Reporter: Dupont Dupont > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > rich:dataScroller has a scrollListener attribute, but it's not documented= (no occurence in component reference or in taglib.xml). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0440262923796498440==-- From jira-events at lists.jboss.org Mon Mar 26 17:13:47 2012 Content-Type: multipart/mixed; boundary="===============3456296662851665276==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10968) Tree: treeSelectionChangeListener and treeToggleListener do not work Date: Mon, 26 Mar 2012 17:13:47 -0400 Message-ID: <419582021.32648.1332796427539.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 35352639.27278.1304411418583.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3456296662851665276== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10968?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-10968. -------------------------------- Resolution: Done Renamed the xml CDK attributes for the tree listeners = > Tree: treeSelectionChangeListener and treeToggleListener do not work > -------------------------------------------------------------------- > > Key: RF-10968 > URL: https://issues.jboss.org/browse/RF-10968 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-tree > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22458 > Metamer 4.1.0-SNAPSHOT r.22459 > Mojarra 2.0.3- > JBoss AS 6.0.0.Final > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 11.0.696.57 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: NodesTreeSequenceKeyModelImpl.java, tree.xhtml, Tree= Bean.java, TreeNodeImpl.java > > > Attributes treeSelectionChangeListener and treeToggleListener in rich:tre= e do not work. However, attributes selectionChangeListener and toggleListen= er do work. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3456296662851665276==-- From jira-events at lists.jboss.org Mon Mar 26 18:06:47 2012 Content-Type: multipart/mixed; boundary="===============2219818726762874694==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12021) Compilation of Input UI component logs 2 errors about faces-config.xml Date: Mon, 26 Mar 2012 18:06:47 -0400 Message-ID: <824112745.32709.1332799607544.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 518462150.61467.1330674576214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2219818726762874694== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12021?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12021. -------------------------------- Fix Version/s: (was: 4.2.1.CR1) Resolution: Won't Fix The CDK generates a faces-config.xml using the src faces-config.xml file as= a base. The CDK evaluates the xi:include statements, generating a valid f= aces-config.xml. It's not worth spending the time to dig into the xml parsers validation to = suppress this error, given that this file producing the errors is an interm= ediate file, and not present in the delivered artifact. = > Compilation of Input UI component logs 2 errors about faces-config.xml > ---------------------------------------------------------------------- > > Key: RF-12021 > URL: https://issues.jboss.org/browse/RF-12021 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: Marek Novotny > Assignee: Brian Leathem > > Compilation of RF UI Components specifically Input UI has got 2 errors in= log - related to bad faces-config.xml on line number 29 and 240. > The following is snippet of log: > {noformat} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces UI Components: Input UI 4.2.0.Final > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-java-versi= on) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0-redhat-1:enforce (enforce-maven-vers= ion) @ richfaces-ui-input-ui --- > [INFO] The requirePluginVersions rule is currently not compatible with Ma= ven3. > [INFO] = > [INFO] --- maven-cdk-plugin:4.2.0.Final-redhat-1:generate (cdk-generate-s= ources) @ richfaces-ui-input-ui --- > [Error] faces-config.xml:29:71: cvc-complex-type.2.4.a: Invalid content w= as found starting with element 'xi:include'. One of '{"http://java.sun.com/= xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-exte= nsion}' is expected. > [Error] faces-config.xml:240:71: cvc-complex-type.2.4.a: Invalid content = was found starting with element 'xi:include'. One of '{"http://java.sun.com= /xml/ns/javaee":property, "http://java.sun.com/xml/ns/javaee":component-ext= ension}' is expected. > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2219818726762874694==-- From jira-events at lists.jboss.org Tue Mar 27 03:21:49 2012 Content-Type: multipart/mixed; boundary="===============0150711320417399264==" MIME-Version: 1.0 From: Daniel G (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11990) client-side validation and ajax calls create maleformed javascript Date: Tue, 27 Mar 2012 03:21:49 -0400 Message-ID: <342065594.33135.1332832909061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 941910750.25122.1329496418429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0150711320417399264== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11990?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679515#com= ment-12679515 ] = Daniel G commented on RF-11990: ------------------------------- Thank you for figuring out the details. I'll check the faces messages from ajax-call-validation maybe this is even = better for my components. regards Daniel = > client-side validation and ajax calls create maleformed javascript > ------------------------------------------------------------------ > > Key: RF-11990 > URL: https://issues.jboss.org/browse/RF-11990 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final, 4.1.0.Final > Environment: MyFaces 2.1.5, Hibernate-Validation 4.2.0.Final > Reporter: Daniel G > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: javascript, myfaces, richfaces, validation > > Using rich:validation and f:ajax together, maleformed JavaScript is gener= ated. > I'm having a composite component, that has to be able to refresh given ot= her components on change, but the JavaScript code generated by: > {quote} > > > > {quote} > is missing a comma between the Chain parameters. > see the red {color:red}'{color} > {quote} > onchange=3D"jsf.util.chain(document.getElementById('idForm:bNr:input'), > event,'jsf.ajax.request(\'idForm:bNr:input\',event,\{render:\'idForm:idTo= olBar:idSaveButton\',\'javax.faces.behavior.event\':\'change\'\}){color:red= }''{color}idForm_3AbNr_3Ainput_3Av(event,"idForm:kopf:bezugNr:input&qu= ot;,"idForm:kopf:bezugNr:input")'); return false;" /> > {quote} > the code is tanken from 4.0.0.Final, but looks similar in 4.1.0.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0150711320417399264==-- From jira-events at lists.jboss.org Tue Mar 27 03:32:49 2012 Content-Type: multipart/mixed; boundary="===============1528875254998753249==" MIME-Version: 1.0 From: Dupont Dupont (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12091) rich:dataScroller scrollListener not documented Date: Tue, 27 Mar 2012 03:32:48 -0400 Message-ID: <1949264797.33160.1332833568771.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1487113708.31251.1332772548274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1528875254998753249== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12091?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679518#com= ment-12679518 ] = Dupont Dupont commented on RF-12091: ------------------------------------ Thanks Brian ! = > rich:dataScroller scrollListener not documented > ----------------------------------------------- > > Key: RF-12091 > URL: https://issues.jboss.org/browse/RF-12091 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Reporter: Dupont Dupont > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > rich:dataScroller has a scrollListener attribute, but it's not documented= (no occurence in component reference or in taglib.xml). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1528875254998753249==-- From jira-events at lists.jboss.org Tue Mar 27 03:42:52 2012 Content-Type: multipart/mixed; boundary="===============6476860800629193762==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Tue, 27 Mar 2012 03:42:52 -0400 Message-ID: <394140560.33216.1332834172347.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6476860800629193762== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679524#com= ment-12679524 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- The proposed solution of queuing requests solves the issue only partially -= it significantly decreases probability of losing event, but it still doesn= 't eliminate it completely. To ensure completeness, you would need to block until a client is subscribe= d to a topic before you could continue with rendering of the page. ---- Another suggestion is to create new event {{subscribed}}, allowing you to r= eact on successful subscription with specific action - in this case partial= page reload. ---- Still we need to make sure this behavior is documented properly. = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6476860800629193762==-- From jira-events at lists.jboss.org Tue Mar 27 03:58:47 2012 Content-Type: multipart/mixed; boundary="===============4791928107271919363==" MIME-Version: 1.0 From: Karsten Wutzke (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12094) Provide a feature to rich:dataTable that reflects the default sort order on a column (according to the JPQL statement that produced the list items) Date: Tue, 27 Mar 2012 03:58:47 -0400 Message-ID: <815335129.33287.1332835127644.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4791928107271919363== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Karsten Wutzke created RF-12094: ----------------------------------- Summary: Provide a feature to rich:dataTable that reflects the= default sort order on a column (according to the JPQL statement that produ= ced the list items) Key: RF-12094 URL: https://issues.jboss.org/browse/RF-12094 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Reporter: Karsten Wutzke A rich:dataTable list is usually sorted by one or several columns according= to the JPQL or other statement that produced the list. I would be worthwhile to have the rich:dataTable reflect the default orderi= ng state by providing an attribute to rich:column that would set the respec= tive up or down sort arrow instead of the default up-down arrow. By default= , e.g. on page reload, if nothing was remembered by the browser, rich:dataT= able defaults to the dual up-down arrow for all rich:column's. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4791928107271919363==-- From jira-events at lists.jboss.org Tue Mar 27 04:20:53 2012 Content-Type: multipart/mixed; boundary="===============3552196070722325585==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12080) rich:hotKey usage clears body onload attribute Date: Tue, 27 Mar 2012 04:20:53 -0400 Message-ID: <1864541917.33334.1332836453365.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1411413331.27453.1332488387294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3552196070722325585== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12080?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679533#com= ment-12679533 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12080: --------------------------------- Could you please try if {{t:documentBody}} works when you place following s= cript inside the body? {code:Javascript} $(document).ready(function() { document.title =3D 'xyz'; }); {code} Could you please send the respected source code generated by {{}}? ---- Anyway I think the proper fix is on the Tomahawk's side, since it seems it = is doing something wrong, because simply using {{}} do= n't break by using {{document.ready}}: {code:html} {code} = > rich:hotKey usage clears body onload attribute > ---------------------------------------------- > > Key: RF-12080 > URL: https://issues.jboss.org/browse/RF-12080 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.2.0.Final > Environment: myfaces 2.1.6, tomahawk 1.1.11 > Reporter: Michael Heinen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: myfaces, tomahawk > Fix For: 4.2.1.CR1 > > > I'm happy to see rich:hotKey in richfaces 4.2, I used it already with ric= hfaces 3.3.3. > One thing I noticed now is that the onload attribute of t:documentboy is = cleared on clientside as soon as rich:hotKey is used on a page. Maybe cause= d by jquery usage? > From my pov this should be either fixed or documented in the component gu= ide as well as in the showcase sample. > Workaround is obvious: Instead of onload use document.ready -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3552196070722325585==-- From jira-events at lists.jboss.org Tue Mar 27 04:20:54 2012 Content-Type: multipart/mixed; boundary="===============3575805546611212429==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12080) rich:hotKey usage clears body onload attribute Date: Tue, 27 Mar 2012 04:20:53 -0400 Message-ID: <1786290798.33336.1332836453989.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1411413331.27453.1332488387294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3575805546611212429== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12080?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12080: ---------------------------- Workaround Description: Use [{{$(document).ready(handler)}}|http://api.= jquery.com/ready/] instead of {{}}. Workaround: Workaround Exists = > rich:hotKey usage clears body onload attribute > ---------------------------------------------- > > Key: RF-12080 > URL: https://issues.jboss.org/browse/RF-12080 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.2.0.Final > Environment: myfaces 2.1.6, tomahawk 1.1.11 > Reporter: Michael Heinen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: myfaces, tomahawk > Fix For: 4.2.1.CR1 > > > I'm happy to see rich:hotKey in richfaces 4.2, I used it already with ric= hfaces 3.3.3. > One thing I noticed now is that the onload attribute of t:documentboy is = cleared on clientside as soon as rich:hotKey is used on a page. Maybe cause= d by jquery usage? > From my pov this should be either fixed or documented in the component gu= ide as well as in the showcase sample. > Workaround is obvious: Instead of onload use document.ready -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3575805546611212429==-- From jira-events at lists.jboss.org Tue Mar 27 04:22:48 2012 Content-Type: multipart/mixed; boundary="===============1621103145360024267==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12080) rich:hotKey usage clears body onload attribute Date: Tue, 27 Mar 2012 04:22:48 -0400 Message-ID: <988839671.33339.1332836568300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1411413331.27453.1332488387294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1621103145360024267== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12080?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679533#com= ment-12679533 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12080 at 3/27/12 4:21 AM: ---------------------------------------------------------- Could you please try if {{t:documentBody}} works when you place following s= cript inside the body? {code:Javascript} $(document).ready(function() { document.title =3D 'xyz'; }); {code} Could you please send the respected source code generated by {{}}? ---- Anyway I think the proper fix is on the Tomahawk's side, since it seems it = is doing something wrong, because simple {{}} don't br= eak by using {{document.ready}}: {code:html} {code} = was (Author: lfryc): Could you please try if {{t:documentBody}} works when you place followi= ng script inside the body? {code:Javascript} $(document).ready(function() { document.title =3D 'xyz'; }); {code} Could you please send the respected source code generated by {{}}? ---- Anyway I think the proper fix is on the Tomahawk's side, since it seems it = is doing something wrong, because simply using {{}} do= n't break by using {{document.ready}}: {code:html} {code} = > rich:hotKey usage clears body onload attribute > ---------------------------------------------- > > Key: RF-12080 > URL: https://issues.jboss.org/browse/RF-12080 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.2.0.Final > Environment: myfaces 2.1.6, tomahawk 1.1.11 > Reporter: Michael Heinen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: myfaces, tomahawk, waiting_on_user > > I'm happy to see rich:hotKey in richfaces 4.2, I used it already with ric= hfaces 3.3.3. > One thing I noticed now is that the onload attribute of t:documentboy is = cleared on clientside as soon as rich:hotKey is used on a page. Maybe cause= d by jquery usage? > From my pov this should be either fixed or documented in the component gu= ide as well as in the showcase sample. > Workaround is obvious: Instead of onload use document.ready -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1621103145360024267==-- From jira-events at lists.jboss.org Tue Mar 27 04:22:49 2012 Content-Type: multipart/mixed; boundary="===============2429026614201159369==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12080) rich:hotKey usage clears body onload attribute Date: Tue, 27 Mar 2012 04:22:49 -0400 Message-ID: <938005110.33343.1332836569487.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1411413331.27453.1332488387294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2429026614201159369== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12080?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12080: ---------------------------- Fix Version/s: (was: 4.2.1.CR1) = > rich:hotKey usage clears body onload attribute > ---------------------------------------------- > > Key: RF-12080 > URL: https://issues.jboss.org/browse/RF-12080 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.2.0.Final > Environment: myfaces 2.1.6, tomahawk 1.1.11 > Reporter: Michael Heinen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: myfaces, tomahawk, waiting_on_user > > I'm happy to see rich:hotKey in richfaces 4.2, I used it already with ric= hfaces 3.3.3. > One thing I noticed now is that the onload attribute of t:documentboy is = cleared on clientside as soon as rich:hotKey is used on a page. Maybe cause= d by jquery usage? > From my pov this should be either fixed or documented in the component gu= ide as well as in the showcase sample. > Workaround is obvious: Instead of onload use document.ready -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2429026614201159369==-- From jira-events at lists.jboss.org Tue Mar 27 04:22:56 2012 Content-Type: multipart/mixed; boundary="===============1241638341008513685==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12080) rich:hotKey usage clears body onload attribute Date: Tue, 27 Mar 2012 04:22:54 -0400 Message-ID: <816606518.33346.1332836575206.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1411413331.27453.1332488387294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1241638341008513685== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12080?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679533#com= ment-12679533 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12080 at 3/27/12 4:22 AM: ---------------------------------------------------------- Could you please try if {{t:documentBody}} works when you place following s= cript inside the body? {code:Javascript} $(document).ready(function() { document.title =3D 'xyz'; }); {code} Could you please send the respected source code generated by {{}}? ---- Anyway I think the proper fix is on the Tomahawk's side, since it seems it = is doing something wrong, because simple {{}} don't br= eak by using {{document.ready}}: {code:html} {code} Both alerts are shown. = was (Author: lfryc): Could you please try if {{t:documentBody}} works when you place followi= ng script inside the body? {code:Javascript} $(document).ready(function() { document.title =3D 'xyz'; }); {code} Could you please send the respected source code generated by {{}}? ---- Anyway I think the proper fix is on the Tomahawk's side, since it seems it = is doing something wrong, because simple {{}} don't br= eak by using {{document.ready}}: {code:html} {code} = > rich:hotKey usage clears body onload attribute > ---------------------------------------------- > > Key: RF-12080 > URL: https://issues.jboss.org/browse/RF-12080 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.2.0.Final > Environment: myfaces 2.1.6, tomahawk 1.1.11 > Reporter: Michael Heinen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: myfaces, tomahawk, waiting_on_user > > I'm happy to see rich:hotKey in richfaces 4.2, I used it already with ric= hfaces 3.3.3. > One thing I noticed now is that the onload attribute of t:documentboy is = cleared on clientside as soon as rich:hotKey is used on a page. Maybe cause= d by jquery usage? > From my pov this should be either fixed or documented in the component gu= ide as well as in the showcase sample. > Workaround is obvious: Instead of onload use document.ready -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1241638341008513685==-- From jira-events at lists.jboss.org Tue Mar 27 05:28:47 2012 Content-Type: multipart/mixed; boundary="===============7238149584907642646==" MIME-Version: 1.0 From: Stian Thorgersen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Lost event in push Date: Tue, 27 Mar 2012 05:28:47 -0400 Message-ID: <191541269.33525.1332840527405.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7238149584907642646== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679549#com= ment-12679549 ] = Stian Thorgersen commented on RF-12072: --------------------------------------- {quote} Hey Stian, any chance you could look into fixing the issue the proposed way= ^ ? {quote} Are you talking about the workaround or queueing requests? I think the best solution is the subscribed event, as the other solution of= queueing requests sounds fairly complex + as you say it doesn't eliminate = the problem. = > Lost event in push > ------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7238149584907642646==-- From jira-events at lists.jboss.org Tue Mar 27 06:02:48 2012 Content-Type: multipart/mixed; boundary="===============9007233248788068390==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12095) Incorrect behavior of two pushes on the page Date: Tue, 27 Mar 2012 06:02:48 -0400 Message-ID: <2084709749.33571.1332842568105.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============9007233248788068390== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-12095: ------------------------------- Summary: Incorrect behavior of two pushes on the page Key: RF-12095 URL: https://issues.jboss.org/browse/RF-12095 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-push/poll Affects Versions: 4.2.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D When you have 2 pushes on the page and one is conditionally rendered, reren= dering it causes unsubscribing of second push: {code:xml}



    = = = = = =
    = #{richBean.date} =
    = =
    = #{richBean.date}
    {code} {code:java} @ManagedBean public class RichBean { public Date getDate() { return new Date(); } public void push() throws MessageException { TopicKey topicKey =3D new TopicKey("sampleAddress"); TopicsContext topicsContext =3D TopicsContext.lookup(); topicsContext.publish(topicKey, new Date().toString()); System.out.println("push event"); } = public void push2() throws MessageException { TopicKey topicKey =3D new TopicKey("sampleAddress2"); TopicsContext topicsContext =3D TopicsContext.lookup(); topicsContext.publish(topicKey, new Date().toString()); System.out.println("push event 2"); } } {code} Steps to reproduce: 1. open the page 2. you can see "subscribed" and "subscribed2" alert messages 3. both, Push! and Push 2! buttons reloads respective dates 4. click on checkbox and on the right of Push! button EXPECTED: only Push! should stop to work ACTUAL: both Push! and Push 2! stops to work -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9007233248788068390==-- From jira-events at lists.jboss.org Tue Mar 27 06:08:47 2012 Content-Type: multipart/mixed; boundary="===============3517648936526365794==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12096) Push: there is delay between repeated subscribtion Date: Tue, 27 Mar 2012 06:08:47 -0400 Message-ID: <298994236.33589.1332842927828.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3517648936526365794== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-12096: ------------------------------- Summary: Push: there is delay between repeated subscribtion Key: RF-12096 URL: https://issues.jboss.org/browse/RF-12096 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-push/poll Affects Versions: 4.2.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D When you have conditionally rendered {{a4j:push}} component and you disable= it, then it stops to receive push events. Once you enable it, there is delay before it will start to receive events a= gain. Sample code for reproduction: {code:xml}



    = = = = = =
    = #{richBean.date} =
    {code} {code:java} package demo; import java.util.Date; import javax.faces.bean.ManagedBean; import org.richfaces.application.push.MessageException; import org.richfaces.application.push.TopicKey; import org.richfaces.application.push.TopicsContext; @ManagedBean public class RichBean { public Date getDate() { return new Date(); } public void push() throws MessageException { TopicKey topicKey =3D new TopicKey("sampleAddress"); TopicsContext topicsContext =3D TopicsContext.lookup(); topicsContext.publish(topicKey, new Date().toString()); System.out.println("push event"); } } {code} Steps to reproduce: 1. open the sample page (the "subscribed" message appears) 2. click on Push! button (the date is changed) 3. check the checkbox 4. click on Push! button (the date is not changed anymore) 5. uncheck the checkbox (the "subscribed" message appears again) 6. click on Push! EXPECTED: the date should be changed ACTUAL: the date is not changed If you will wait for some seconds, the Push! button will cause change of th= e date, but in this delay, client can lose data updates (since "subscribed" event d= oes not show that the client is starting to receive data). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3517648936526365794==-- From jira-events at lists.jboss.org Tue Mar 27 06:10:47 2012 Content-Type: multipart/mixed; boundary="===============1285029516135997607==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12095) Incorrect behavior of two pushes on the page Date: Tue, 27 Mar 2012 06:10:47 -0400 Message-ID: <715274205.33591.1332843047742.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2084709749.33571.1332842568105.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1285029516135997607== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12095?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679555#com= ment-12679555 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12095: --------------------------------- There is delay in between repeated subscription after disabling and enablin= g push: RF-12096 = > Incorrect behavior of two pushes on the page > -------------------------------------------- > > Key: RF-12095 > URL: https://issues.jboss.org/browse/RF-12095 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > When you have 2 pushes on the page and one is conditionally rendered, rer= endering it causes unsubscribing of second push: > {code:xml} > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xmlns:f=3D"http://java.sun.com/jsf/core" xmlns:a4j=3D"http://richface= s.org/a4j"> > > > > > >



    > > > = > = > > > > = > = > = > > > > > > > = >
    > = > > #{richBean.date} > > = >
    > = > > > = > >
    > = > > #{richBean.date} > >
    >
    >
    > > {code} > {code:java} > @ManagedBean > public class RichBean { > public Date getDate() { > return new Date(); > } > public void push() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event"); > } > = > public void push2() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress2"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event 2"); > } > } > {code} > Steps to reproduce: > 1. open the page > 2. you can see "subscribed" and "subscribed2" alert messages > 3. both, Push! and Push 2! buttons reloads respective dates > 4. click on checkbox and on the right of Push! button > EXPECTED: only Push! should stop to work > ACTUAL: both Push! and Push 2! stops to work -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1285029516135997607==-- From jira-events at lists.jboss.org Tue Mar 27 06:15:47 2012 Content-Type: multipart/mixed; boundary="===============8831467409412910779==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12095) Incorrect behavior of two pushes on the page Date: Tue, 27 Mar 2012 06:15:47 -0400 Message-ID: <1150727644.33602.1332843347639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2084709749.33571.1332842568105.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8831467409412910779== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12095?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679558#com= ment-12679558 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12095 at 3/27/12 6:15 AM: ---------------------------------------------------------- The second push starts to work again if you will wait for some delay - this= issue is discribed here: RF-12096 = was (Author: lfryc): The second push starts to work again if you will wait for some delay - = this issue is discribed here: RF-12095 = > Incorrect behavior of two pushes on the page > -------------------------------------------- > > Key: RF-12095 > URL: https://issues.jboss.org/browse/RF-12095 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > When you have 2 pushes on the page and one is conditionally rendered, rer= endering it causes unsubscribing of second push: > {code:xml} > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xmlns:f=3D"http://java.sun.com/jsf/core" xmlns:a4j=3D"http://richface= s.org/a4j"> > > > > > >



    > > > = > = > > > > = > = > = > > > > > > > = >
    > = > > #{richBean.date} > > = >
    > = > > > = > >
    > = > > #{richBean.date} > >
    >
    >
    > > {code} > {code:java} > @ManagedBean > public class RichBean { > public Date getDate() { > return new Date(); > } > public void push() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event"); > } > = > public void push2() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress2"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event 2"); > } > } > {code} > Steps to reproduce: > 1. open the page > 2. you can see "subscribed" and "subscribed2" alert messages > 3. both, Push! and Push 2! buttons reloads respective dates > 4. click on checkbox and on the right of Push! button > EXPECTED: only Push! should stop to work > ACTUAL: both Push! and Push 2! stops to work -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8831467409412910779==-- From jira-events at lists.jboss.org Tue Mar 27 06:15:47 2012 Content-Type: multipart/mixed; boundary="===============1750893097450420912==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12095) Incorrect behavior of two pushes on the page Date: Tue, 27 Mar 2012 06:15:47 -0400 Message-ID: <1381895199.33600.1332843347478.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2084709749.33571.1332842568105.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1750893097450420912== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12095?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679558#com= ment-12679558 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12095: --------------------------------- The second push starts to work again if you will wait for some delay - this= issue is discribed here: RF-12095 = > Incorrect behavior of two pushes on the page > -------------------------------------------- > > Key: RF-12095 > URL: https://issues.jboss.org/browse/RF-12095 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > When you have 2 pushes on the page and one is conditionally rendered, rer= endering it causes unsubscribing of second push: > {code:xml} > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xmlns:f=3D"http://java.sun.com/jsf/core" xmlns:a4j=3D"http://richface= s.org/a4j"> > > > > > >



    > > > = > = > > > > = > = > = > > > > > > > = >
    > = > > #{richBean.date} > > = >
    > = > > > = > >
    > = > > #{richBean.date} > >
    >
    >
    > > {code} > {code:java} > @ManagedBean > public class RichBean { > public Date getDate() { > return new Date(); > } > public void push() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event"); > } > = > public void push2() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress2"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event 2"); > } > } > {code} > Steps to reproduce: > 1. open the page > 2. you can see "subscribed" and "subscribed2" alert messages > 3. both, Push! and Push 2! buttons reloads respective dates > 4. click on checkbox and on the right of Push! button > EXPECTED: only Push! should stop to work > ACTUAL: both Push! and Push 2! stops to work -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1750893097450420912==-- From jira-events at lists.jboss.org Tue Mar 27 06:17:48 2012 Content-Type: multipart/mixed; boundary="===============1579122675900408719==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12095) Incorrect behavior of two pushes on the page Date: Tue, 27 Mar 2012 06:17:47 -0400 Message-ID: <1761929447.33605.1332843467993.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2084709749.33571.1332842568105.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1579122675900408719== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12095?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12095. ----------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Resolution: Duplicate Issue = > Incorrect behavior of two pushes on the page > -------------------------------------------- > > Key: RF-12095 > URL: https://issues.jboss.org/browse/RF-12095 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > When you have 2 pushes on the page and one is conditionally rendered, rer= endering it causes unsubscribing of second push: > {code:xml} > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xmlns:f=3D"http://java.sun.com/jsf/core" xmlns:a4j=3D"http://richface= s.org/a4j"> > > > > > >



    > > > = > = > > > > = > = > = > > > > > > > = >
    > = > > #{richBean.date} > > = >
    > = > > > = > >
    > = > > #{richBean.date} > >
    >
    >
    > > {code} > {code:java} > @ManagedBean > public class RichBean { > public Date getDate() { > return new Date(); > } > public void push() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event"); > } > = > public void push2() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress2"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event 2"); > } > } > {code} > Steps to reproduce: > 1. open the page > 2. you can see "subscribed" and "subscribed2" alert messages > 3. both, Push! and Push 2! buttons reloads respective dates > 4. click on checkbox and on the right of Push! button > EXPECTED: only Push! should stop to work > ACTUAL: both Push! and Push 2! stops to work -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1579122675900408719==-- From jira-events at lists.jboss.org Tue Mar 27 06:19:47 2012 Content-Type: multipart/mixed; boundary="===============0095808545011214275==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Add onsubscribed event (was: Lost event in push) Date: Tue, 27 Mar 2012 06:19:47 -0400 Message-ID: <1001707987.33607.1332843587834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0095808545011214275== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12072: ---------------------------- Summary: Add onsubscribed event (was: Lost event in push) (was: Lost e= vent in push) Affects: Documentation (Ref Guide, User Guide, etc.) = > Add onsubscribed event (was: Lost event in push) > ------------------------------------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0095808545011214275==-- From jira-events at lists.jboss.org Tue Mar 27 06:23:47 2012 Content-Type: multipart/mixed; boundary="===============4959025865485859690==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Push: add onsubscribed event (was: Lost event in push) Date: Tue, 27 Mar 2012 06:23:47 -0400 Message-ID: <612515439.33612.1332843827395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4959025865485859690== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12072: ---------------------------- Summary: Push: add onsubscribed event (was: Lost event in push) (was: = Add onsubscribed event (was: Lost event in push)) = > Push: add onsubscribed event (was: Lost event in push) > ------------------------------------------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4959025865485859690==-- From jira-events at lists.jboss.org Tue Mar 27 06:25:47 2012 Content-Type: multipart/mixed; boundary="===============4249735464412144064==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Push: add onsubscribed event (was: Lost event in push) Date: Tue, 27 Mar 2012 06:25:47 -0400 Message-ID: <1137216446.33616.1332843947522.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4249735464412144064== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679559#com= ment-12679559 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- Verified that addition of {{subscribed}} event fixes the issue: {code:xml} {code} = > Push: add onsubscribed event (was: Lost event in push) > ------------------------------------------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4249735464412144064==-- From jira-events at lists.jboss.org Tue Mar 27 06:27:47 2012 Content-Type: multipart/mixed; boundary="===============4118509386561246887==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Push: add onsubscribed event (was: Lost event in push) Date: Tue, 27 Mar 2012 06:27:47 -0400 Message-ID: <1545645043.33621.1332844067371.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4118509386561246887== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679560#com= ment-12679560 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12072: --------------------------------- Stian, I was talking about queuing mechanism, but we have decided to rather= support {{subscribed}} event. Thanks for cooperating on this issue. = > Push: add onsubscribed event (was: Lost event in push) > ------------------------------------------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4118509386561246887==-- From jira-events at lists.jboss.org Tue Mar 27 06:27:47 2012 Content-Type: multipart/mixed; boundary="===============6962854509561946259==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12072) Push: add onsubscribed event (was: Lost event in push) Date: Tue, 27 Mar 2012 06:27:47 -0400 Message-ID: <1076656421.33624.1332844067480.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1823827590.22721.1332335688298.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6962854509561946259== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12072?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12072. ----------------------------- Resolution: Done = > Push: add onsubscribed event (was: Lost event in push) > ------------------------------------------------------ > > Key: RF-12072 > URL: https://issues.jboss.org/browse/RF-12072 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Stian Thorgersen > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > Event can be lost if produced while a response is being prepared. I've at= tached an example where a push event is used to refresh a count whenever an= event is fired. It's using Thread.sleep to simulate an event being produce= d while the response is being prepared. Note, if the sleep just before retu= rning the count is removed it all works fine, and the page is refreshed eve= ry 5 seconds, but with the sleep in place the event is lost. > View: > {code} > > > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > > > > > > > > > > > {code} > Bean: > {code} > package com.example; > import java.io.Serializable; > import java.util.concurrent.atomic.AtomicInteger; > import javax.enterprise.context.SessionScoped; > import javax.inject.Named; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @Named > @SessionScoped > public class MyBean implements Serializable > { > private AtomicInteger count =3D new AtomicInteger(); > public int getCount() > { > int c =3D count.get(); > new Thread() > { > public void run() > { > try > { > Thread.sleep(5000); > count.incrementAndGet(); > TopicKey topicKey =3D new TopicKey("chat"); > TopicsContext topicsContext =3D TopicsContext.lookup(= ); > topicsContext.publish(topicKey, ""); > } > catch (Exception e) > { > e.printStackTrace(); > } > }; > }.start(); > = > try > { > Thread.sleep(10000); > } > catch (InterruptedException e) > { > } > return c; > } > } > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6962854509561946259==-- From jira-events at lists.jboss.org Tue Mar 27 06:27:47 2012 Content-Type: multipart/mixed; boundary="===============2152059688263784225==" MIME-Version: 1.0 From: Stephan Meisinger (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12097) Richfaces 4.2.0 invalid css entry for *.rf-insl-tt Date: Tue, 27 Mar 2012 06:27:47 -0400 Message-ID: <771471005.33626.1332844067523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2152059688263784225== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Stephan Meisinger created RF-12097: -------------------------------------- Summary: Richfaces 4.2.0 invalid css entry for *.rf-insl-tt Key: RF-12097 URL: https://issues.jboss.org/browse/RF-12097 Project: RichFaces Issue Type: Bug Components: skinning Affects Versions: 4.2.0.Final Environment: Tomcat 6.0.35 Richfaces 4.2.0 Windows 7 Reporter: Stephan Meisinger a invalid css syntax for *.rf-insl-tt for PackedCompressed/DEFAULT/packed/p= acked.css *.rf-insl-tt{position:absolute;display:none;padding:2px;border:1px solid "#= E5973E ";background-color:#FAE6B0;} should be *.rf-insl-tt{position:absolute;display:none;padding:2px;border:1px solid #E= 5973E;background-color:#FAE6B0;} see http://www.w3.org/TR/CSS1/#border and http://www.w3.org/TR/CSS1/#color-= units -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2152059688263784225==-- From jira-events at lists.jboss.org Tue Mar 27 07:03:49 2012 Content-Type: multipart/mixed; boundary="===============7343900404256956310==" MIME-Version: 1.0 From: Stefan Risto (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-6026) PickList doesn't accept comma in string value of SelectItem Date: Tue, 27 Mar 2012 07:03:49 -0400 Message-ID: <147651777.33687.1332846229142.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26556146.1233700724331.JavaMail.jira@cloud.prod.atl2.jboss.com --===============7343900404256956310== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-6026?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679565#comm= ent-12679565 ] = Stefan Risto commented on RF-6026: ---------------------------------- The problem still exists in RF 4.2. I use a converter that produces a Strin= g containing a comma. But the java script code does not escape the comma in= any way, so my converter fails, because it gets two selections where it ex= pects one, e.g. "You,me" is the selected value, but the converter is caled = with "You" and a second time with "me". = > PickList doesn't accept comma in string value of SelectItem > ----------------------------------------------------------- > > Key: RF-6026 > URL: https://issues.jboss.org/browse/RF-6026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.0 > Environment: WebLogic 10, JSF 1.2, RichFaces 3.3.0, Hibernate JPA= , Facelets 1.1.14 > Reporter: Andrzej Haczewski > Fix For: 3.Future > > > When you use a List where SelectItems are created like this: > new SelectItem("SOME STRING,CONTAINING COMMA", "A nice string to show in = list") > as a PickList , and use List as PickList value, th= en PickList doesn't validate when you add that item to target list. > The reason is that UISelectMany is trying to validate values "SOME STRING= S" and "CONTAINING COMMA" with available items. > The exact point is the UISelectMany.matchValue() method, which returns fa= lse on validation of that PickList. > Sample code: > --- BackingBean.java > class BackingBean { > private List picklistItems; > private List result; > public BackingBean() { > picklistItems =3D new ArrayList(); > picklistItems.add(new SelectItem("SAMPLE,EXAMPLE", "Sample example")); > } > // then comes getters and setters for picklistItems and result > } > --- PickList.xhtml > > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7343900404256956310==-- From jira-events at lists.jboss.org Tue Mar 27 07:23:48 2012 Content-Type: multipart/mixed; boundary="===============1639293057238364684==" MIME-Version: 1.0 From: Stefan Risto (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12098) PickList doesn't accept comma in string value Date: Tue, 27 Mar 2012 07:23:48 -0400 Message-ID: <1104299453.33800.1332847428203.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1639293057238364684== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Stefan Risto created RF-12098: --------------------------------- Summary: PickList doesn't accept comma in string value Key: RF-12098 URL: https://issues.jboss.org/browse/RF-12098 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 4.2.0.Final Reporter: Stefan Risto The rich:pickList Component does not handle values containing commas. I used a converter and in the getAsString - Method a String containing a co= mma was returned, such as "You,Me". After selecting this value in the pick = list the converters getAsObject method is called twice, once for "You" and = once for "Me". I would expect to get the same value in getAsObject as the converters getAs= String returned. Maybe the comma should be escaped by the component and/or = the javascript code. This Bug seems to be related to RF-6766, but that bug is not targeted for R= F 4.X -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1639293057238364684==-- From jira-events at lists.jboss.org Tue Mar 27 07:23:49 2012 Content-Type: multipart/mixed; boundary="===============3289700400490668018==" MIME-Version: 1.0 From: Stefan Risto (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12098) PickList doesn't accept comma in string value Date: Tue, 27 Mar 2012 07:23:49 -0400 Message-ID: <1787402807.33819.1332847429549.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1104299453.33800.1332847428203.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3289700400490668018== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12098?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Stefan Risto updated RF-12098: ------------------------------ Description: = The rich:pickList Component does not handle values containing commas. I used a converter and in the getAsString - Method a String containing a co= mma was returned, such as "You,Me". After selecting this value in the pick = list the converters getAsObject method is called twice, once for "You" and = once for "Me". I would expect to get the same value in getAsObject as the converters getAs= String returned. Maybe the comma should be escaped by the component and/or = the javascript code. This Bug seems to be related to RF-6026, but that bug is not targeted for R= F 4.X was: The rich:pickList Component does not handle values containing commas. I used a converter and in the getAsString - Method a String containing a co= mma was returned, such as "You,Me". After selecting this value in the pick = list the converters getAsObject method is called twice, once for "You" and = once for "Me". I would expect to get the same value in getAsObject as the converters getAs= String returned. Maybe the comma should be escaped by the component and/or = the javascript code. This Bug seems to be related to RF-6766, but that bug is not targeted for R= F 4.X = > PickList doesn't accept comma in string value > --------------------------------------------- > > Key: RF-12098 > URL: https://issues.jboss.org/browse/RF-12098 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.2.0.Final > Reporter: Stefan Risto > > The rich:pickList Component does not handle values containing commas. > I used a converter and in the getAsString - Method a String containing a = comma was returned, such as "You,Me". After selecting this value in the pic= k list the converters getAsObject method is called twice, once for "You" an= d once for "Me". > I would expect to get the same value in getAsObject as the converters get= AsString returned. Maybe the comma should be escaped by the component and/o= r the javascript code. > This Bug seems to be related to RF-6026, but that bug is not targeted for= RF 4.X -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3289700400490668018==-- From jira-events at lists.jboss.org Tue Mar 27 07:45:49 2012 Content-Type: multipart/mixed; boundary="===============1339724513360847704==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12084) Richfaces 4.2 when inside dont work and causes 'identifier resolved to null' Date: Tue, 27 Mar 2012 07:45:49 -0400 Message-ID: <605104238.34011.1332848749038.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1382382061.29574.1332701569056.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1339724513360847704== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12084?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-12084: ---------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) = > Richfaces 4.2 when inside dont work and causes '= identifier resolved to null' > -------------------------------------------------------------------------= ---------------------------- > > Key: RF-12084 > URL: https://issues.jboss.org/browse/RF-12084 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: Windows Vista, Firefox 11, Richfaces 4.2 Final, Moja= rra 2.1.7, Tomcat 7.0.26 > Reporter: Ivan Costa > Assignee: J=C3=A1n Jamrich > Labels: richfaces > > a4j:commandLink or a4j:ajax tags inside ui:fragment causes 'identifier re= solved to null', = > but h:commandLink + f:ajax (both from Mojarra) works perfectly fine! > The problem is described here > https://community.jboss.org/message/723859 > and here: > https://community.jboss.org/thread/196867 > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1339724513360847704==-- From jira-events at lists.jboss.org Tue Mar 27 08:08:51 2012 Content-Type: multipart/mixed; boundary="===============0116682694791999447==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12083) Components: Output UI module doesn't pass unit tests (MenuItemRendererTest and DropDownMenuRendererTest) Date: Tue, 27 Mar 2012 08:08:48 -0400 Message-ID: <1213706763.34116.1332850128203.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 356683327.28101.1332505788416.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0116682694791999447== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12083?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek closed RF-12083. ----------------------------- = > Components: Output UI module doesn't pass unit tests (MenuItemRendererTes= t and DropDownMenuRendererTest) > -------------------------------------------------------------------------= ------------------------------- > > Key: RF-12083 > URL: https://issues.jboss.org/browse/RF-12083 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.2.1.CR1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.renderkit.html.MenuItemRendererTest > -------------------------------------------------------------------------= ------ > Tests run: 6, Failures: 3, Errors: 0, Skipped: 1, Time elapsed: 3.172 sec= <<< FAILURE! > testDoEncodeServerMode(org.richfaces.renderkit.html.MenuItemRendererTest)= Time elapsed: 0.566 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeServerM= ode(MenuItemRendererTest.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeAjaxMode(org.richfaces.renderkit.html.MenuItemRendererTest) = Time elapsed: 0.613 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeAjaxMod= e(MenuItemRendererTest.java:71) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeClientMode(org.richfaces.renderkit.html.MenuItemRendererTest)= Time elapsed: 0.724 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[1] to at /div[1]/span[1] >
    > > > > > > Test > > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.MenuItemRendererTest.testDoEncodeClientM= ode(MenuItemRendererTest.java:88) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.renderkit.html.DropDownMenuRendererTest > -------------------------------------------------------------------------= ------ > Tests run: 4, Failures: 2, Errors: 0, Skipped: 1, Time elapsed: 2.206 sec= <<< FAILURE! > testDoEncodeServerMode(org.richfaces.renderkit.html.DropDownMenuRendererT= est) Time elapsed: 0.729 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[2]/div[1]/div[1]/div[1]/div[1] to at /div[1= ]/div[2]/div[1]/div[1]/div[1]/span[1] >
    >
    > > File >
    >
    >
    >
    >
    > > > > > > Open > > >
    >
    > > > > > > Save As... > >
    >
    >
    >
    > > > > > Save > > >
    >
    >
    >
    > > > > > > SaveAll > > >
    >
    >
    >
    >
    >
    >
    >
    > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.DropDownMenuRendererTest.testDoEncodeSer= verMode(DropDownMenuRendererTest.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > testDoEncodeAjaxMode(org.richfaces.renderkit.html.DropDownMenuRendererTes= t) Time elapsed: 0.677 sec <<< FAILURE! > java.lang.AssertionError: XML was not similar:org.custommonkey.xmlunit.Di= ff > [different] Expected element tag name 'div' but was 'span' - comparing at /div[1]/div[2]/div[1]/div[1]/div[1]/div[1] to at /div[1= ]/div[2]/div[1]/div[1]/div[1]/span[1] >
    >
    > > File >
    >
    >
    >
    >
    > > > > > > Open > > >
    >
    > > > > > > Save As... > >
    >
    >
    >
    > > > > > Save > > >
    >
    >
    >
    > > > > > > SaveAll > > >
    >
    >
    >
    >
    >
    >
    >
    > >
    > at org.junit.Assert.fail(Assert.java:91) > at org.junit.Assert.assertTrue(Assert.java:43) > at org.richfaces.renderkit.html.RendererTestBase.checkXmlStructure(Rende= rerTestBase.java:93) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:81) > at org.richfaces.renderkit.html.RendererTestBase.doTest(RendererTestBase= .java:73) > at org.richfaces.renderkit.html.DropDownMenuRendererTest.testDoEncodeAja= xMode(DropDownMenuRendererTest.java:56) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framework= Method.java:44) > at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCal= lable.java:15) > at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMe= thod.java:41) > at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMet= hod.java:20) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.ja= va:31) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0116682694791999447==-- From jira-events at lists.jboss.org Tue Mar 27 08:12:48 2012 Content-Type: multipart/mixed; boundary="===============3049282093352374041==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12082) Components: Output UI module doesn't pass unit tests (AbstractTogglePanelTest#testGetChildName) Date: Tue, 27 Mar 2012 08:12:47 -0400 Message-ID: <2047462804.34123.1332850367820.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 147991329.28097.1332505547854.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3049282093352374041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12082?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679602#com= ment-12679602 ] = Jan Papousek commented on RF-12082: ----------------------------------- I see a little problem. The issues has been fixed in release/4.2.1.CR1 bran= ch, but the develop branch (for 4.3.0) hasn't been updated. = > Components: Output UI module doesn't pass unit tests (AbstractTogglePanel= Test#testGetChildName) > -------------------------------------------------------------------------= ---------------------- > > Key: RF-12082 > URL: https://issues.jboss.org/browse/RF-12082 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.3.0.Milestone1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Priority: Critical > > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.component.AbstractTogglePanelTest > -------------------------------------------------------------------------= ------ > Tests run: 5, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec= <<< FAILURE! > testGetChildName(org.richfaces.component.AbstractTogglePanelTest) Time e= lapsed: 0.005 sec <<< FAILURE! > java.lang.AssertionError: Expected exception: java.lang.IllegalArgumentEx= ception > at org.junit.internal.runners.statements.ExpectException.evaluate(Expect= Exception.java:32) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3049282093352374041==-- From jira-events at lists.jboss.org Tue Mar 27 08:26:48 2012 Content-Type: multipart/mixed; boundary="===============1993330526026223252==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Tue, 27 Mar 2012 08:26:47 -0400 Message-ID: <1631182880.34167.1332851207617.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 69599813.32096.1332784967357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1993330526026223252== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-12092: ---------------------------------- Assignee: Brian Leathem (was: Pavol Pitonak) I wasn't able to reproduce the bug in Metamer (http://localhost:8080/metame= r/faces/components/a4jPoll/simple.xhtml). {quote} RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5 JBoss AS 7.1.0.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Chrome 17.0.963.83 @ Linux i686 {quote} = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Robert Gary > Assignee: Brian Leathem > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1993330526026223252==-- From jira-events at lists.jboss.org Tue Mar 27 08:37:47 2012 Content-Type: multipart/mixed; boundary="===============0258259355203023906==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Tue, 27 Mar 2012 08:37:47 -0400 Message-ID: <1601112588.34209.1332851867594.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0258259355203023906== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-12044: ---------------------------------- Assignee: Jan Papousek (was: Pavol Pitonak) It works for me in Chrome 17.0.963.83 on Linux. = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Jan Papousek > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0258259355203023906==-- From jira-events at lists.jboss.org Tue Mar 27 09:20:52 2012 Content-Type: multipart/mixed; boundary="===============7743692613980480169==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12093) ResourceServlet can't handle resources outside of specific libraries Date: Tue, 27 Mar 2012 09:20:52 -0400 Message-ID: <1829511889.34300.1332854452392.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 346104444.32472.1332792767413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7743692613980480169== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12093?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12093. ----------------------------- Resolution: Done = > ResourceServlet can't handle resources outside of specific libraries > -------------------------------------------------------------------- > > Key: RF-12093 > URL: https://issues.jboss.org/browse/RF-12093 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > {{ResourceServlet}} is limited to what it can serve to only several speci= fic libraries: > * [{{CKEditorLibrary}}|https://github.com/richfaces/core/blob/develop/imp= l/src/main/java/org/richfaces/webapp/ResourceServlet.java#L194] > * [{{StaticResourceLibrary}}|https://github.com/richfaces/core/blob/devel= op/impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] > * [{{RichFacesImageLibrary}}|https://github.com/richfaces/core/blob/devel= op/impl/src/main/java/org/richfaces/webapp/ResourceServlet.java#L213] > We should allow to serve any resource. > Some limitations may be placed on resources server by ResourceServlet as = discussed in RF-11888. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7743692613980480169==-- From jira-events at lists.jboss.org Tue Mar 27 09:47:47 2012 Content-Type: multipart/mixed; boundary="===============4831357028129732959==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12058) rich:fileUpload - wrong upload icon if resourceOptimization param is set to true Date: Tue, 27 Mar 2012 09:47:47 -0400 Message-ID: <1169628380.34375.1332856067763.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1723961468.15563.1332085067290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4831357028129732959== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12058?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679629#com= ment-12679629 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12058: --------------------------------- Hi Thursten, I'm not able to reproduce the issue. Could you please try to minimize the sample so you would be able to provide= us WAR or source code where we could reproduce the issue? I have tried on two applications: [RichFaces Showcase hosting|http://showcase.richfaces.org/richfaces/compone= nt-sample.jsf?demo=3DfileUpload&skin=3DblueSky] [input-demo developer example|https://github.com/richfaces/dev-examples/tre= e/develop/input-demo] (source) using Tomcat 6.0.33 I have also tried to look into {{richfaces-components-ui.jar/META-INF/resou= rces/org.richfaces.staticResource/4.2.0.Final/PackedCompressed/org.richface= s.images/fu-upl.gif}} and the image there looks fine. = > rich:fileUpload - wrong upload icon if resourceOptimization param is set = to true = > -------------------------------------------------------------------------= -------- > > Key: RF-12058 > URL: https://issues.jboss.org/browse/RF-12058 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, resource handling > Affects Versions: 4.2.0.Final > Environment: Tomcat6.33, Richfaces 4.2.0 FINAL, JDK1.6 > Reporter: Thorsten Nieser > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.1.CR1 > > Attachments: css-snippet.jpg, nok.jpg, ok.jpg > > > If the new resource optimization is disabled all icons of the fileUpload = element are fine. > (http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dfile= Upload&skin=3DblueSky) > But if I enabled the optimization by setting the context param to true, t= he upload button shows the red cross instead of the green check mark. > > org.richfaces.resourceOptimization.enabled > true > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4831357028129732959==-- From jira-events at lists.jboss.org Tue Mar 27 09:49:48 2012 Content-Type: multipart/mixed; boundary="===============7714964360529039377==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12058) rich:fileUpload - wrong upload icon if resourceOptimization param is set to true Date: Tue, 27 Mar 2012 09:49:47 -0400 Message-ID: <1268180601.34396.1332856187949.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1723961468.15563.1332085067290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7714964360529039377== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12058?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12058. ----------------------------- Fix Version/s: (was: 4.2.1.CR1) Resolution: Cannot Reproduce Bug Hey Thorsten, I'm resolving this issue as {{Cannot reproduce bug}}, but feel free to reopen it if you feel you have more details which will all= ow us to reproduce the issue. = > rich:fileUpload - wrong upload icon if resourceOptimization param is set = to true = > -------------------------------------------------------------------------= -------- > > Key: RF-12058 > URL: https://issues.jboss.org/browse/RF-12058 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, resource handling > Affects Versions: 4.2.0.Final > Environment: Tomcat6.33, Richfaces 4.2.0 FINAL, JDK1.6 > Reporter: Thorsten Nieser > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Attachments: css-snippet.jpg, nok.jpg, ok.jpg > > > If the new resource optimization is disabled all icons of the fileUpload = element are fine. > (http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dfile= Upload&skin=3DblueSky) > But if I enabled the optimization by setting the context param to true, t= he upload button shows the red cross instead of the green check mark. > > org.richfaces.resourceOptimization.enabled > true > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7714964360529039377==-- From jira-events at lists.jboss.org Tue Mar 27 09:54:47 2012 Content-Type: multipart/mixed; boundary="===============4166318728546176185==" MIME-Version: 1.0 From: kevin 2 (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10782) Input components: add attribute "width" Date: Tue, 27 Mar 2012 09:54:47 -0400 Message-ID: <1012864646.34409.1332856487675.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1936252277.35651.1300460925805.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4166318728546176185== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10782?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679636#com= ment-12679636 ] = kevin 2 commented on RF-10782: ------------------------------ Is there any workaround for this issue on rich:select component ? Thanks. = > Input components: add attribute "width" > --------------------------------------- > > Key: RF-10782 > URL: https://issues.jboss.org/browse/RF-10782 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component, component-input > Affects Versions: 4.0.0.Final > Reporter: Gleb Galkin > Fix For: 4.Future > > > For input components we can define width using attribute style. For more = description see the linked issue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4166318728546176185==-- From jira-events at lists.jboss.org Tue Mar 27 10:25:48 2012 Content-Type: multipart/mixed; boundary="===============5205277135396692601==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12099) Kitchensink archetype - mobile demo - loading the about page causes error on the server side Date: Tue, 27 Mar 2012 10:25:48 -0400 Message-ID: <1483697602.34497.1332858348789.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5205277135396692601== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12099: -------------------------------- Summary: Kitchensink archetype - mobile demo - loading the abo= ut page causes error on the server side Key: RF-12099 URL: https://issues.jboss.org/browse/RF-12099 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype Affects Versions: 4.2.0.Final Environment: mobile demo for project generated by Kitchensink arch= etype Reporter: Juraj Huska Priority: Minor After clicking on the link(small blue i in white circle) which should point= to the about page, following error is thrown on the server side: {code} 16:15:07,894 SEVERE [org.richfaces.log.Context] (http--0.0.0.0-8080-4) /res= ources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.member.name}"= : Target Unreachable, 'member' returned null: javax.el.PropertyNotFoundExce= ption: /resources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.me= mber.name}": Target Unreachable, 'member' returned null at com.sun.faces.facelets.el.TagValueExpression.getType(TagValueExpression= .java:100) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConvertedV= alue(HtmlBasicInputRenderer.java:95) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1030) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.validate(UIInput.java:960) [jboss-jsf-api= _2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.executeValidate(UIInput.java:1233) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.processValidators(UIInput.java:698) [jbos= s-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIForm.processValidators(UIForm.java:253) [jboss-= jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.richfaces.context.PartialViewExecuteVisitCallback.visit(PartialView= ExecuteVisitCallback.java:55) [richfaces-core-impl-4.3.0-20120302.170417-5.= jar:4.3.0-SNAPSHOT] at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(Base= ExtendedVisitContext.java:321) [richfaces-core-impl-4.3.0-20120302.170417-5= .jar:4.3.0-SNAPSHOT] at javax.faces.component.UIForm.visitTree(UIForm.java:381) [jboss-jsf-api_= 2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.richfaces.context.ExtendedPartialViewContextImpl.executeComponents(= ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.3.0-2012030= 2.170417-5.jar:4.3.0-SNAPSHOT] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialExec= utePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-impl-4.3.= 0-20120302.170417-5.jar:4.3.0-SNAPSHOT] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(Ext= endedPartialViewContextImpl.java:196) [richfaces-core-impl-4.3.0-20120302.1= 70417-5.jar:4.3.0-SNAPSHOT] at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:1170= ) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidati= onsPhase.java:76) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-j= bossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) [= jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] {code} The about page is loaded successfully, however after next attempts to click= on the same link results in loading blank page. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5205277135396692601==-- From jira-events at lists.jboss.org Tue Mar 27 10:25:49 2012 Content-Type: multipart/mixed; boundary="===============4871515456763005971==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12074) Showcase mediaOutput refers to GAE limitations Date: Tue, 27 Mar 2012 10:25:49 -0400 Message-ID: <1794966587.34500.1332858349404.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 852769834.23256.1332345771654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4871515456763005971== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12074?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12074: ---------------------------------- Assignee: Brian Leathem = > Showcase mediaOutput refers to GAE limitations > ---------------------------------------------- > > Key: RF-12074 > URL: https://issues.jboss.org/browse/RF-12074 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > {quote} > As the Google Application Engine restricts AWT class usage, this example = reads the existing image and only performs re-indexing of the palette using= colors you selected below. = > {quote} > The example, and the wording should be re-worked to not refer to the GAE = limitation. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4871515456763005971==-- From jira-events at lists.jboss.org Tue Mar 27 10:31:48 2012 Content-Type: multipart/mixed; boundary="===============2988311970720409840==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Tue, 27 Mar 2012 10:31:48 -0400 Message-ID: <1284181192.34536.1332858708532.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2988311970720409840== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679610#com= ment-12679610 ] = Pavol Pitonak edited comment on RF-12044 at 3/27/12 10:30 AM: -------------------------------------------------------------- Alt+X works for me in Chrome 17.0.963.83 on Linux with RichFaces 4. = was (Author: ppitonak): It works for me in Chrome 17.0.963.83 on Linux. = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Jan Papousek > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2988311970720409840==-- From jira-events at lists.jboss.org Tue Mar 27 10:31:49 2012 Content-Type: multipart/mixed; boundary="===============8629719747357951476==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12099) Kitchensink archetype - mobile demo - loading the about page causes error on the server side Date: Tue, 27 Mar 2012 10:31:49 -0400 Message-ID: <1611459765.34539.1332858709249.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1483697602.34497.1332858348789.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8629719747357951476== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12099?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12099: ----------------------------- Description: = After clicking on the link(the info button - small blue i in white circle) = which should point to the about page, following error is thrown on the serv= er side: {code} 16:15:07,894 SEVERE [org.richfaces.log.Context] (http--0.0.0.0-8080-4) /res= ources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.member.name}"= : Target Unreachable, 'member' returned null: javax.el.PropertyNotFoundExce= ption: /resources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.me= mber.name}": Target Unreachable, 'member' returned null at com.sun.faces.facelets.el.TagValueExpression.getType(TagValueExpression= .java:100) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConvertedV= alue(HtmlBasicInputRenderer.java:95) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1030) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.validate(UIInput.java:960) [jboss-jsf-api= _2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.executeValidate(UIInput.java:1233) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.processValidators(UIInput.java:698) [jbos= s-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIForm.processValidators(UIForm.java:253) [jboss-= jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.richfaces.context.PartialViewExecuteVisitCallback.visit(PartialView= ExecuteVisitCallback.java:55) [richfaces-core-impl-4.3.0-20120302.170417-5.= jar:4.3.0-SNAPSHOT] at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(Base= ExtendedVisitContext.java:321) [richfaces-core-impl-4.3.0-20120302.170417-5= .jar:4.3.0-SNAPSHOT] at javax.faces.component.UIForm.visitTree(UIForm.java:381) [jboss-jsf-api_= 2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.richfaces.context.ExtendedPartialViewContextImpl.executeComponents(= ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.3.0-2012030= 2.170417-5.jar:4.3.0-SNAPSHOT] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialExec= utePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-impl-4.3.= 0-20120302.170417-5.jar:4.3.0-SNAPSHOT] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(Ext= endedPartialViewContextImpl.java:196) [richfaces-core-impl-4.3.0-20120302.1= 70417-5.jar:4.3.0-SNAPSHOT] at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:1170= ) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidati= onsPhase.java:76) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-j= bossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) [= jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] {code} The about page is loaded successfully, however after next attempts to click= on the same link results in loading blank page. was: After clicking on the link(small blue i in white circle) which should point= to the about page, following error is thrown on the server side: {code} 16:15:07,894 SEVERE [org.richfaces.log.Context] (http--0.0.0.0-8080-4) /res= ources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.member.name}"= : Target Unreachable, 'member' returned null: javax.el.PropertyNotFoundExce= ption: /resources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.me= mber.name}": Target Unreachable, 'member' returned null at com.sun.faces.facelets.el.TagValueExpression.getType(TagValueExpression= .java:100) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConvertedV= alue(HtmlBasicInputRenderer.java:95) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1030) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.validate(UIInput.java:960) [jboss-jsf-api= _2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.executeValidate(UIInput.java:1233) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIInput.processValidators(UIInput.java:698) [jbos= s-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIForm.processValidators(UIForm.java:253) [jboss-= jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.richfaces.context.PartialViewExecuteVisitCallback.visit(PartialView= ExecuteVisitCallback.java:55) [richfaces-core-impl-4.3.0-20120302.170417-5.= jar:4.3.0-SNAPSHOT] at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(Base= ExtendedVisitContext.java:321) [richfaces-core-impl-4.3.0-20120302.170417-5= .jar:4.3.0-SNAPSHOT] at javax.faces.component.UIForm.visitTree(UIForm.java:381) [jboss-jsf-api_= 2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.richfaces.context.ExtendedPartialViewContextImpl.executeComponents(= ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.3.0-2012030= 2.170417-5.jar:4.3.0-SNAPSHOT] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialExec= utePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-impl-4.3.= 0-20120302.170417-5.jar:4.3.0-SNAPSHOT] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(Ext= endedPartialViewContextImpl.java:196) [richfaces-core-impl-4.3.0-20120302.1= 70417-5.jar:4.3.0-SNAPSHOT] at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:1170= ) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidati= onsPhase.java:76) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-j= bossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) [= jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] {code} The about page is loaded successfully, however after next attempts to click= on the same link results in loading blank page. = > Kitchensink archetype - mobile demo - loading the about page causes error= on the server side > -------------------------------------------------------------------------= ------------------- > > Key: RF-12099 > URL: https://issues.jboss.org/browse/RF-12099 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: mobile demo for project generated by Kitchensink arc= hetype > Reporter: Juraj Huska > Priority: Minor > > After clicking on the link(the info button - small blue i in white circle= ) which should point to the about page, following error is thrown on the se= rver side: > {code} > 16:15:07,894 SEVERE [org.richfaces.log.Context] (http--0.0.0.0-8080-4) /r= esources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.member.name= }": Target Unreachable, 'member' returned null: javax.el.PropertyNotFoundEx= ception: /resources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.= member.name}": Target Unreachable, 'member' returned null > at com.sun.faces.facelets.el.TagValueExpression.getType(TagValueExpressi= on.java:100) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConverte= dValue(HtmlBasicInputRenderer.java:95) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1030) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIInput.validate(UIInput.java:960) [jboss-jsf-a= pi_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIInput.executeValidate(UIInput.java:1233) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIInput.processValidators(UIInput.java:698) [jb= oss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.processValidators(UIComponentBa= se.java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.processValidators(UIComponentBa= se.java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.processValidators(UIComponentBa= se.java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.processValidators(UIComponentBa= se.java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.processValidators(UIForm.java:253) [jbos= s-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.PartialViewExecuteVisitCallback.visit(PartialVi= ewExecuteVisitCallback.java:55) [richfaces-core-impl-4.3.0-20120302.170417-= 5.jar:4.3.0-SNAPSHOT] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(Ba= seExtendedVisitContext.java:321) [richfaces-core-impl-4.3.0-20120302.170417= -5.jar:4.3.0-SNAPSHOT] > at javax.faces.component.UIForm.visitTree(UIForm.java:381) [jboss-jsf-ap= i_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.executeComponent= s(ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.3.0-20120= 302.170417-5.jar:4.3.0-SNAPSHOT] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialEx= ecutePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-impl-4.= 3.0-20120302.170417-5.jar:4.3.0-SNAPSHOT] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(E= xtendedPartialViewContextImpl.java:196) [richfaces-core-impl-4.3.0-20120302= .170417-5.jar:4.3.0-SNAPSHOT] > at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:11= 70) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValida= tionsPhase.java:76) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7= -jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > {code} > The about page is loaded successfully, however after next attempts to cli= ck on the same link results in loading blank page. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8629719747357951476==-- From jira-events at lists.jboss.org Tue Mar 27 11:06:52 2012 Content-Type: multipart/mixed; boundary="===============8787213346718875142==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12100) Kitchensink archetype - mobile demo - adding new member causes rendering blank page Date: Tue, 27 Mar 2012 11:06:52 -0400 Message-ID: <2080953888.34709.1332860812065.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8787213346718875142== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12100: -------------------------------- Summary: Kitchensink archetype - mobile demo - adding new memb= er causes rendering blank page Key: RF-12100 URL: https://issues.jboss.org/browse/RF-12100 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype Affects Versions: 4.2.0.Final Environment: mobile demo for Kitchensink archetype Reporter: Juraj Huska Attachments: blank.png When you add new member, either from mobile or from desktop kitchensink dem= o, *all loaded mobile demos* will be (after retrieving the push from the se= rver) rendering the blank page. As blank, I mean just the header of the page, please see the screenshot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8787213346718875142==-- From jira-events at lists.jboss.org Tue Mar 27 11:06:55 2012 Content-Type: multipart/mixed; boundary="===============8447571139158419486==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12100) Kitchensink archetype - mobile demo - adding new member causes rendering blank page Date: Tue, 27 Mar 2012 11:06:55 -0400 Message-ID: <651945152.34721.1332860815122.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2080953888.34709.1332860812065.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8447571139158419486== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12100?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12100: ----------------------------- Attachment: blank.png = > Kitchensink archetype - mobile demo - adding new member causes rendering = blank page > -------------------------------------------------------------------------= ---------- > > Key: RF-12100 > URL: https://issues.jboss.org/browse/RF-12100 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: mobile demo for Kitchensink archetype > Reporter: Juraj Huska > Attachments: blank.png > > > When you add new member, either from mobile or from desktop kitchensink d= emo, *all loaded mobile demos* will be (after retrieving the push from the = server) rendering the blank page. > As blank, I mean just the header of the page, please see the screenshot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8447571139158419486==-- From jira-events at lists.jboss.org Tue Mar 27 11:08:48 2012 Content-Type: multipart/mixed; boundary="===============2638082850579859140==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12100) Kitchensink archetype - mobile demo - adding new member causes rendering blank page Date: Tue, 27 Mar 2012 11:08:48 -0400 Message-ID: <663569758.34731.1332860928221.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2080953888.34709.1332860812065.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2638082850579859140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12100?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12100: ----------------------------- Steps to Reproduce: = 1. load the *mobile* kitchensink example on several mobile devices, or on s= everal tabs of your browser 2. add a new member, either from the desktop demo or from the mobile demo 3. see that blank page, same as in the screenshot, is rendered on all the l= oaded mobile demos was: 1. load the *mobile* kitchensink example on several mobile devices, or on s= everal tabs of your browser 2. add new member, either from desktop demo or from mobile demo 3. see that blank page from the screenshot is rendered on all loaded mobile= demos = > Kitchensink archetype - mobile demo - adding new member causes rendering = blank page > -------------------------------------------------------------------------= ---------- > > Key: RF-12100 > URL: https://issues.jboss.org/browse/RF-12100 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: mobile demo for Kitchensink archetype > Reporter: Juraj Huska > Attachments: blank.png > > > When you add new member, either from mobile or from desktop kitchensink d= emo, *all loaded mobile demos* will be (after retrieving the push from the = server) rendering the blank page. > As blank, I mean just the header of the page, please see the screenshot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2638082850579859140==-- From jira-events at lists.jboss.org Tue Mar 27 11:56:47 2012 Content-Type: multipart/mixed; boundary="===============5415803203831976916==" MIME-Version: 1.0 From: Thorsten Nieser (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12058) rich:fileUpload - wrong upload icon if resourceOptimization param is set to true Date: Tue, 27 Mar 2012 11:56:47 -0400 Message-ID: <835393657.35015.1332863807363.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1723961468.15563.1332085067290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5415803203831976916== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12058?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679730#com= ment-12679730 ] = Thorsten Nieser commented on RF-12058: -------------------------------------- Hi Lukas, Thanks for taking a look at this behaviour! Regarding your negative testing results I checked my project again, replace= d some jars with newer ones (JSF impl updated to 2.1.7) and in addition I r= ealized that I missed a mandatory jar file in my richfaces project, the css= parser one. Now, the error seems to be fixed on my side. Regards, Thorsten = > rich:fileUpload - wrong upload icon if resourceOptimization param is set = to true = > -------------------------------------------------------------------------= -------- > > Key: RF-12058 > URL: https://issues.jboss.org/browse/RF-12058 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, resource handling > Affects Versions: 4.2.0.Final > Environment: Tomcat6.33, Richfaces 4.2.0 FINAL, JDK1.6 > Reporter: Thorsten Nieser > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Attachments: css-snippet.jpg, nok.jpg, ok.jpg > > > If the new resource optimization is disabled all icons of the fileUpload = element are fine. > (http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dfile= Upload&skin=3DblueSky) > But if I enabled the optimization by setting the context param to true, t= he upload button shows the red cross instead of the green check mark. > > org.richfaces.resourceOptimization.enabled > true > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5415803203831976916==-- From jira-events at lists.jboss.org Tue Mar 27 12:37:47 2012 Content-Type: multipart/mixed; boundary="===============2938257052253020129==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12101) Kitchensink example - rendering of the rich:messages is quite inconsistent Date: Tue, 27 Mar 2012 12:37:47 -0400 Message-ID: <1230939528.35068.1332866267338.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2938257052253020129== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12101: -------------------------------- Summary: Kitchensink example - rendering of the rich:messages = is quite inconsistent Key: RF-12101 URL: https://issues.jboss.org/browse/RF-12101 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype Affects Versions: 4.2.0.Final Environment: app generated by the kitchensink archetype browser: Chrome, Firefox, mobile devices browser(iPhone) Reporter: Juraj Huska Priority: Minor The rich:messages tag generates messages on an inconsistent way, I think. T= hey are rendered after BLUR event is done on the input, and the problem is = that sometimes they are rendered and sometimes not. They also tend to disappear after clicking on Register button, another prob= lem is that they are sometimes stacked, so in some cases there are more mes= sages than inputs. IMHO the rich:messages tag should be removed, since there is already rich:m= essage generated for every input, and they are not giving additional inform= ation, on the contrary they are misleading. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2938257052253020129==-- From jira-events at lists.jboss.org Tue Mar 27 12:39:47 2012 Content-Type: multipart/mixed; boundary="===============7073290559702013302==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12101) Kitchensink example - rendering of the rich:messages is quite inconsistent Date: Tue, 27 Mar 2012 12:39:47 -0400 Message-ID: <1585711874.35074.1332866387397.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1230939528.35068.1332866267338.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7073290559702013302== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12101?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12101: ----------------------------- Attachment: IMG_0038.PNG = > Kitchensink example - rendering of the rich:messages is quite inconsistent > -------------------------------------------------------------------------- > > Key: RF-12101 > URL: https://issues.jboss.org/browse/RF-12101 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: app generated by the kitchensink archetype > browser: Chrome, Firefox, mobile devices browser(iPhone) > Reporter: Juraj Huska > Priority: Minor > Attachments: IMG_0038.PNG > > > The rich:messages tag generates messages on an inconsistent way, I think.= They are rendered after BLUR event is done on the input, and the problem i= s that sometimes they are rendered and sometimes not. > They also tend to disappear after clicking on Register button, another pr= oblem is that they are sometimes stacked, so in some cases there are more m= essages than inputs. > IMHO the rich:messages tag should be removed, since there is already rich= :message generated for every input, and they are not giving additional info= rmation, on the contrary they are misleading. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7073290559702013302==-- From jira-events at lists.jboss.org Tue Mar 27 12:45:49 2012 Content-Type: multipart/mixed; boundary="===============0269788668546007429==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12101) Kitchensink example - rich:messages does not provide additional info, they are quite misleading Date: Tue, 27 Mar 2012 12:45:49 -0400 Message-ID: <801645815.35105.1332866749435.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1230939528.35068.1332866267338.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0269788668546007429== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12101?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-12101: ----------------------------- Summary: Kitchensink example - rich:messages does not provide addit= ional info, they are quite misleading (was: Kitchensink example - renderin= g of the rich:messages is quite inconsistent) Issue Type: Enhancement (was: Bug) Description: IMHO the rich:messages tag should be removed, since there = is already rich:message generated for every input, and they are not giving = additional information, on the contrary they are misleading. (was: The ric= h:messages tag generates messages on an inconsistent way, I think. They are= rendered after BLUR event is done on the input, and the problem is that so= metimes they are rendered and sometimes not. They also tend to disappear after clicking on Register button, another prob= lem is that they are sometimes stacked, so in some cases there are more mes= sages than inputs. IMHO the rich:messages tag should be removed, since there is already rich:m= essage generated for every input, and they are not giving additional inform= ation, on the contrary they are misleading.) Priority: Optional (was: Minor) = > Kitchensink example - rich:messages does not provide additional info, the= y are quite misleading > -------------------------------------------------------------------------= ---------------------- > > Key: RF-12101 > URL: https://issues.jboss.org/browse/RF-12101 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: app generated by the kitchensink archetype > browser: Chrome, Firefox, mobile devices browser(iPhone) > Reporter: Juraj Huska > Priority: Optional > Attachments: IMG_0038.PNG > > > IMHO the rich:messages tag should be removed, since there is already rich= :message generated for every input, and they are not giving additional info= rmation, on the contrary they are misleading. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0269788668546007429==-- From jira-events at lists.jboss.org Tue Mar 27 12:47:47 2012 Content-Type: multipart/mixed; boundary="===============6686194222803198207==" MIME-Version: 1.0 From: Robert Gary (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Tue, 27 Mar 2012 12:47:47 -0400 Message-ID: <1592465123.35111.1332866867826.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 69599813.32096.1332784967357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6686194222803198207== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679745#com= ment-12679745 ] = Robert Gary commented on RF-12092: ---------------------------------- I'm able to reproduce it on... RichFaces 4.2.0.CR1 MyFaces MyFaces 2.0.6 JBoss 6.0.0.Final JVM 1.7_01 IE 9.0.8 FF 3.6.16 Chrome 17.0.963.83 m I'm using the following code... = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Robert Gary > Assignee: Brian Leathem > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6686194222803198207==-- From jira-events at lists.jboss.org Tue Mar 27 13:11:47 2012 Content-Type: multipart/mixed; boundary="===============8573937946768304830==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12102) Kitchensink archetype - shutdown of JBoss AS with project generated from this archetype throws error Date: Tue, 27 Mar 2012 13:11:47 -0400 Message-ID: <1394038810.35167.1332868307274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8573937946768304830== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12102: -------------------------------- Summary: Kitchensink archetype - shutdown of JBoss AS with pro= ject generated from this archetype throws error Key: RF-12102 URL: https://issues.jboss.org/browse/RF-12102 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype Affects Versions: 4.2.0.Final Environment: container: JBoss AS 7.1.1.Final Reporter: Juraj Huska Priority: Trivial There is the same error thrown as in RF-11905, when shutting down the serve= r. Kitchensink uses his own DS configuration, and it is enough to add proposed= DB_CLOSE_ON_EXIT=3DFALSE to the connection url, in the file _/src/main/web= app/WEB-INF/kitchensink-quickstart-ds.xml_, in order to workaround the erro= r. So it will look like: {code:xml} jdbc:h2:mem:kitchensink-quickstart;DB_CLOSE_ON_EXIT=3DFALSE= {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8573937946768304830==-- From jira-events at lists.jboss.org Tue Mar 27 14:27:47 2012 Content-Type: multipart/mixed; boundary="===============0614686994851084885==" MIME-Version: 1.0 From: Robert Gary (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Tue, 27 Mar 2012 14:27:47 -0400 Message-ID: <1961374343.35317.1332872867377.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 69599813.32096.1332784967357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0614686994851084885== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679764#com= ment-12679764 ] = Robert Gary commented on RF-12092: ---------------------------------- I just reproduced this on Majarra 2.0. I'm going to attach a simple WAR tha= t reproduces the issue with Majarro as well as MyFaces. = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Robert Gary > Assignee: Brian Leathem > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0614686994851084885==-- From jira-events at lists.jboss.org Tue Mar 27 14:29:48 2012 Content-Type: multipart/mixed; boundary="===============5543547305304577081==" MIME-Version: 1.0 From: Robert Gary (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Tue, 27 Mar 2012 14:29:48 -0400 Message-ID: <794300376.35334.1332872988153.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 69599813.32096.1332784967357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5543547305304577081== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Robert Gary updated RF-12092: ----------------------------- Attachment: a4jPollIssue.war Includes RF 4.1 but I'm also seeing it in RF 4.2.CR1 = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Robert Gary > Assignee: Brian Leathem > Attachments: a4jPollIssue.war > > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5543547305304577081==-- From jira-events at lists.jboss.org Tue Mar 27 16:54:47 2012 Content-Type: multipart/mixed; boundary="===============7420536185699213466==" MIME-Version: 1.0 From: Jason Lee (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11988) rich:fileUpload doesn't seem to work on GlassFish Date: Tue, 27 Mar 2012 16:54:47 -0400 Message-ID: <1052813684.35678.1332881687567.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1031298844.7144.1329428856250.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7420536185699213466== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11988?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679801#com= ment-12679801 ] = Jason Lee commented on RF-11988: -------------------------------- Any update on this issue? = > rich:fileUpload doesn't seem to work on GlassFish > ------------------------------------------------- > > Key: RF-11988 > URL: https://issues.jboss.org/browse/RF-11988 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Mac OS X, Firefox 10, Chrome 17, GlassFish 3.1.2, Gl= assFish 4.0 > Reporter: Jason Lee > Fix For: 4.3-Tracking > > Attachments: rfupload.log, rfupload.tar.gz > > > While it renders fine, POSTs initiated from rich:fileUpload error out. I= have tested this using both Firefox 10+ and Chrome 17+ against GlassFish 3= .1.2 and GlassFish 4.0. I will attach both the log file and a sample appli= cation that should demonstrate the issue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7420536185699213466==-- From jira-events at lists.jboss.org Tue Mar 27 17:41:47 2012 Content-Type: multipart/mixed; boundary="===============4443744855578138491==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11988) rich:fileUpload doesn't seem to work on GlassFish Date: Tue, 27 Mar 2012 17:41:47 -0400 Message-ID: <395162121.35709.1332884507389.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1031298844.7144.1329428856250.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4443744855578138491== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11988?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679808#com= ment-12679808 ] = Brian Leathem commented on RF-11988: ------------------------------------ This issue is currently tracking the 4.3 release, which means it will be sc= heduled for an upcoming 4.3 Milestone release. = > rich:fileUpload doesn't seem to work on GlassFish > ------------------------------------------------- > > Key: RF-11988 > URL: https://issues.jboss.org/browse/RF-11988 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Mac OS X, Firefox 10, Chrome 17, GlassFish 3.1.2, Gl= assFish 4.0 > Reporter: Jason Lee > Fix For: 4.3-Tracking > > Attachments: rfupload.log, rfupload.tar.gz > > > While it renders fine, POSTs initiated from rich:fileUpload error out. I= have tested this using both Firefox 10+ and Chrome 17+ against GlassFish 3= .1.2 and GlassFish 4.0. I will attach both the log file and a sample appli= cation that should demonstrate the issue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4443744855578138491==-- From jira-events at lists.jboss.org Tue Mar 27 17:43:47 2012 Content-Type: multipart/mixed; boundary="===============7210358006314575665==" MIME-Version: 1.0 From: Jason Lee (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11988) rich:fileUpload doesn't seem to work on GlassFish Date: Tue, 27 Mar 2012 17:43:47 -0400 Message-ID: <533368171.35715.1332884627676.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1031298844.7144.1329428856250.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7210358006314575665== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11988?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679809#com= ment-12679809 ] = Jason Lee commented on RF-11988: -------------------------------- That will work. Thanks for the update. = > rich:fileUpload doesn't seem to work on GlassFish > ------------------------------------------------- > > Key: RF-11988 > URL: https://issues.jboss.org/browse/RF-11988 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.CR1 > Environment: Mac OS X, Firefox 10, Chrome 17, GlassFish 3.1.2, Gl= assFish 4.0 > Reporter: Jason Lee > Fix For: 4.3-Tracking > > Attachments: rfupload.log, rfupload.tar.gz > > > While it renders fine, POSTs initiated from rich:fileUpload error out. I= have tested this using both Firefox 10+ and Chrome 17+ against GlassFish 3= .1.2 and GlassFish 4.0. I will attach both the log file and a sample appli= cation that should demonstrate the issue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7210358006314575665==-- From jira-events at lists.jboss.org Tue Mar 27 18:00:48 2012 Content-Type: multipart/mixed; boundary="===============7332057898079224950==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11977) Multiple fileUpload controls on the same page do not work Date: Tue, 27 Mar 2012 18:00:48 -0400 Message-ID: <1106831253.35727.1332885648480.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1904484642.1106.1329137880969.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7332057898079224950== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11977?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11977. -------------------------------- Resolution: Done Re-structured the fileupload javascript, removing shared prtototype state = > Multiple fileUpload controls on the same page do not work > --------------------------------------------------------- > > Key: RF-11977 > URL: https://issues.jboss.org/browse/RF-11977 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Environment: IE7,8,9, FireFox, Google Chrome > Reporter: Roxana Balaci > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > Attachments: rf-11977-chromium-afterClickOn2ndUploadBtn.png, rf-1= 1977-Chromium.png, rf-11977-ff11.png > > > Situation: > Two rich:fileUpload controls, in the same form. > When: > # choose first file for upload > # choose second file for upload > # click upload button for the first file > The first control disappears from the page and you cannot upload the seco= nd file (the upload event is never caught). > Could you please indicate a solution for this problem? > Thank you very much! > Part of the code used for testing is the following: > {code} > > > > fileUploadListener=3D"#{bean.method1}" maxFilesQuantity=3D"1" > immediateUpload=3D"true" listHeight=3D"65px" > > > fileUploadListener=3D"#{bean.method2}" maxFilesQuantity=3D"1" > immediateUpload=3D"true" listHeight=3D"65px" > > > render=3D"stg" /> > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7332057898079224950==-- From jira-events at lists.jboss.org Tue Mar 27 18:02:47 2012 Content-Type: multipart/mixed; boundary="===============2251016519305412163==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11977) Multiple fileUpload controls on the same page do not work Date: Tue, 27 Mar 2012 18:02:47 -0400 Message-ID: <1803817125.35729.1332885767282.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1904484642.1106.1329137880969.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2251016519305412163== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11977?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679812#com= ment-12679812 ] = Brian Leathem commented on RF-11977: ------------------------------------ QE: The structure of _fileupload.js_ has changed significantly, please veri= fy that no regressions have been introduced with this fix. = > Multiple fileUpload controls on the same page do not work > --------------------------------------------------------- > > Key: RF-11977 > URL: https://issues.jboss.org/browse/RF-11977 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Environment: IE7,8,9, FireFox, Google Chrome > Reporter: Roxana Balaci > Assignee: Brian Leathem > Labels: needs-qe > Fix For: 4.2.1.CR1 > > Attachments: rf-11977-chromium-afterClickOn2ndUploadBtn.png, rf-1= 1977-Chromium.png, rf-11977-ff11.png > > > Situation: > Two rich:fileUpload controls, in the same form. > When: > # choose first file for upload > # choose second file for upload > # click upload button for the first file > The first control disappears from the page and you cannot upload the seco= nd file (the upload event is never caught). > Could you please indicate a solution for this problem? > Thank you very much! > Part of the code used for testing is the following: > {code} > > > > fileUploadListener=3D"#{bean.method1}" maxFilesQuantity=3D"1" > immediateUpload=3D"true" listHeight=3D"65px" > > > fileUploadListener=3D"#{bean.method2}" maxFilesQuantity=3D"1" > immediateUpload=3D"true" listHeight=3D"65px" > > > render=3D"stg" /> > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2251016519305412163==-- From jira-events at lists.jboss.org Tue Mar 27 20:32:47 2012 Content-Type: multipart/mixed; boundary="===============8477558818417797282==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Tue, 27 Mar 2012 20:32:47 -0400 Message-ID: <510487768.35839.1332894767800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8477558818417797282== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679828#com= ment-12679828 ] = Brian Leathem commented on RF-11948: ------------------------------------ Now you are addressing a different timing. If you want to set the column w= idth on page load, listen to the rich:ready event of the EDT as mentioned a= bove. If you want to set the column width after an ajax event, call the ja= vascript via the oncomplete handler of the ajax method, as in: {code} {code} where setWidth is defined: {code} var setWidth =3D function () { var table =3D #{rich:component('capitals')}; table && table.setColumnWidth('colCapital','200') } var table =3D #{rich:component('capitals')}; table && jQuery(table.element).bind("rich:ready", setWidth); {code} Really though, doing these manipulations via the javascript API (while poss= ible) is messy, and you should really be using the _width_ attribute of _ri= ch:column_ if at all possible. = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8477558818417797282==-- From jira-events at lists.jboss.org Tue Mar 27 20:32:48 2012 Content-Type: multipart/mixed; boundary="===============4701021354056598918==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Tue, 27 Mar 2012 20:32:47 -0400 Message-ID: <1196597502.35842.1332894767917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4701021354056598918== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11948. -------------------------------- Resolution: Done = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4701021354056598918==-- From jira-events at lists.jboss.org Wed Mar 28 01:03:47 2012 Content-Type: multipart/mixed; boundary="===============6575791138231146703==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12074) Showcase mediaOutput refers to GAE limitations Date: Wed, 28 Mar 2012 01:03:47 -0400 Message-ID: <538214713.36051.1332911027435.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 852769834.23256.1332345771654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6575791138231146703== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12074?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12074. -------------------------------- Resolution: Done Removed the GAE reference from the sample description = > Showcase mediaOutput refers to GAE limitations > ---------------------------------------------- > > Key: RF-12074 > URL: https://issues.jboss.org/browse/RF-12074 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > {quote} > As the Google Application Engine restricts AWT class usage, this example = reads the existing image and only performs re-indexing of the palette using= colors you selected below. = > {quote} > The example, and the wording should be re-worked to not refer to the GAE = limitation. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6575791138231146703==-- From jira-events at lists.jboss.org Wed Mar 28 01:15:48 2012 Content-Type: multipart/mixed; boundary="===============2399958006405934066==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11781) rich:list and rich:dataScroller: numbering on other than the first page Date: Wed, 28 Mar 2012 01:15:48 -0400 Message-ID: <1830398307.36058.1332911748760.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1768310689.66112.1322839661061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2399958006405934066== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11781?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11781: ------------------------------- Fix Version/s: 4.3-Tracking (was: 4.2.1.CR1) = > rich:list and rich:dataScroller: numbering on other than the first page > ----------------------------------------------------------------------- > > Key: RF-11781 > URL: https://issues.jboss.org/browse/RF-11781 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.CR2 > Reporter: Jan Papousek > Fix For: 4.3-Tracking > > > When the rich:list and rich:dataScroller are used together, the first ite= ms in lists on pages 2, 3, ... shouldn't be numbered with number 1. For exa= mple, when the number of items on one page is limited to 10, the first item= on the second page should be numbered with 11 (not 1). > To try the behaviour of this components working together deploy Metamer a= nd open http://localhost:8080/metamer/faces/components/richList/scroller.xh= tml. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2399958006405934066==-- From jira-events at lists.jboss.org Wed Mar 28 02:30:47 2012 Content-Type: multipart/mixed; boundary="===============5283077988449829766==" MIME-Version: 1.0 From: Antonio Rodriguez (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12103) onmouse events dont working on rich:notifyMessage Date: Wed, 28 Mar 2012 02:30:47 -0400 Message-ID: <1986202609.36071.1332916247280.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5283077988449829766== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Antonio Rodriguez created RF-12103: -------------------------------------- Summary: onmouse events dont working on rich:notifyMessage Key: RF-12103 URL: https://issues.jboss.org/browse/RF-12103 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final Reporter: Antonio Rodriguez Hi, im using rich:notifyStack and rich:notifyMessage to show erros of requi= red=3Dtrue h:inputText. All goes OK but i need that onclick event over the notifiyMessage, the curs= or go focused on the h:inputText associated with the notifyMessage. I notic= ed that the events (onmouseover, onclick, onmouseout...) doesnt work on not= ifyMessages. However, this events goes OK on rich:message. Does anybody knows why the mouse events dont work with notifyMessages??? Thanks -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5283077988449829766==-- From jira-events at lists.jboss.org Wed Mar 28 02:53:50 2012 Content-Type: multipart/mixed; boundary="===============3112896342534238387==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Wed, 28 Mar 2012 02:53:48 -0400 Message-ID: <805234101.36121.1332917628867.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3112896342534238387== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Rene O reopened RF-11948: ------------------------- = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3112896342534238387==-- From jira-events at lists.jboss.org Wed Mar 28 02:53:50 2012 Content-Type: multipart/mixed; boundary="===============7266416585841524572==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Wed, 28 Mar 2012 02:53:48 -0400 Message-ID: <441563189.36120.1332917628821.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7266416585841524572== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679866#com= ment-12679866 ] = Rene O commented on RF-11948: ----------------------------- I would like to use the width attribute if there were the possibility to us= e percent values. But now you only can use static values. = See RF-11174 and RF-11175 . In my usecase my table has a dynamic width and i want that the column width= is calculated according to the width of the table... That there is only one button was only an example to demonstrate this probl= em. = If the oncomplete is the only chance to do this right, i think the best sol= ution is that the table itself has an oncomplete attribute. = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7266416585841524572==-- From jira-events at lists.jboss.org Wed Mar 28 03:11:53 2012 Content-Type: multipart/mixed; boundary="===============0182599648555280249==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 03:11:53 -0400 Message-ID: <783876666.36145.1332918713764.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0182599648555280249== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679869#com= ment-12679869 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11884 at 3/28/12 3:08 AM: ---------------------------------------------------------- Problem 3: this is regular HTML feature, let's use this style for whole application/pa= ge: {code:html} {code} or define {{none}} border only to specific link: {code:xml} {code} = was (Author: lfryc): Problem 1: this is regular HTML feature, let's use this style for whole application/pa= ge: {code:html} {code} or define {{none}} border only to specific link: {code:xml} {code} = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0182599648555280249==-- From jira-events at lists.jboss.org Wed Mar 28 03:11:53 2012 Content-Type: multipart/mixed; boundary="===============5635714806525826258==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 03:11:53 -0400 Message-ID: <129710060.36140.1332918713422.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5635714806525826258== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679869#com= ment-12679869 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- Problem 1: this is regular HTML feature, let's use this style for whole application/pa= ge: {code:html} {code} or define {{none}} border only to specific link: {code:xml} {code} = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5635714806525826258==-- From jira-events at lists.jboss.org Wed Mar 28 03:45:47 2012 Content-Type: multipart/mixed; boundary="===============0177882220978851604==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12104) BeanValidator: label not handled using MessageFactory Date: Wed, 28 Mar 2012 03:45:47 -0400 Message-ID: <1962209716.36295.1332920747471.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0177882220978851604== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Markus Staab created RF-12104: --------------------------------- Summary: BeanValidator: label not handled using MessageFactory Key: RF-12104 URL: https://issues.jboss.org/browse/RF-12104 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 3.3.3.Final Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2 Reporter: Markus Staab The BeanValidator, in contrast to most JSF validators e.g. LongRangeValidat= or, does not use the MessageFactory to handle validation error message. see LongRangeValidators' validate-method: {code} .... throw new ValidatorException(MessageFactory.getMess= age (context, NOT_IN_RANGE_MESSAGE_ID, stringValue(component, minimum, context), stringValue(component, maximum, context), MessageFactory.getLabel(context, componen= t))); ... {code} Therefore error-message of a BeanValidator will neither prepand the String = which is provided from the components' label-attribute nor the components' = client id. see BeanValidator's validate & extractMessages-method {code} .... private Collection extractMessages(Set= > violations) { Collection messages =3D null; if (null !=3D violations && violations.size() > 0) { messages =3D new ArrayList(violations.size()); for (ConstraintViolation constraintViolation : violati= ons) { messages.add(constraintViolation.getMessage()); } } return messages; } ... {code} All error messages are taken 1:1 from the BeanValidator. While e.g. the error-message of LongRangeValidtor looks like "Startdate: Va= lue is greater than allowable maximum of ''{0}''." the error looks like "Va= lue is greater than allowable maximum of ''{0}''.". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0177882220978851604==-- From jira-events at lists.jboss.org Wed Mar 28 03:51:47 2012 Content-Type: multipart/mixed; boundary="===============6732807526431653691==" MIME-Version: 1.0 From: Markus Staab (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12104) BeanValidator: label not handled using MessageFactory Date: Wed, 28 Mar 2012 03:51:47 -0400 Message-ID: <1944800509.36314.1332921107325.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1962209716.36295.1332920747471.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6732807526431653691== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12104?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Markus Staab updated RF-12104: ------------------------------ Description: = The BeanValidator, in contrast to most JSF validators e.g. LongRangeValidat= or, does not use the MessageFactory to handle validation error message. see LongRangeValidators' validate-method: {code} .... throw new ValidatorException(MessageFactory.getMess= age (context, NOT_IN_RANGE_MESSAGE_ID, stringValue(component, minimum, context), stringValue(component, maximum, context), MessageFactory.getLabel(context, componen= t))); ... {code} Therefore error-message of a BeanValidator will neither prepand the String = which is provided from the components' label-attribute nor the components' = client id. see BeanValidator's validate & extractMessages-method {code} .... private Collection extractMessages(Set= > violations) { Collection messages =3D null; if (null !=3D violations && violations.size() > 0) { messages =3D new ArrayList(violations.size()); for (ConstraintViolation constraintViolation : violati= ons) { messages.add(constraintViolation.getMessage()); } } return messages; } ... {code} All error messages are taken 1:1 from the BeanValidator. While e.g. the error-message of LongRangeValidtor looks like "Startdate: Va= lue is greater than allowable maximum of ''{0}''." the error looks like "Va= lue is greater than allowable maximum of ''{0}''.". The reference to the component which violates the rule is not shown. was: The BeanValidator, in contrast to most JSF validators e.g. LongRangeValidat= or, does not use the MessageFactory to handle validation error message. see LongRangeValidators' validate-method: {code} .... throw new ValidatorException(MessageFactory.getMess= age (context, NOT_IN_RANGE_MESSAGE_ID, stringValue(component, minimum, context), stringValue(component, maximum, context), MessageFactory.getLabel(context, componen= t))); ... {code} Therefore error-message of a BeanValidator will neither prepand the String = which is provided from the components' label-attribute nor the components' = client id. see BeanValidator's validate & extractMessages-method {code} .... private Collection extractMessages(Set= > violations) { Collection messages =3D null; if (null !=3D violations && violations.size() > 0) { messages =3D new ArrayList(violations.size()); for (ConstraintViolation constraintViolation : violati= ons) { messages.add(constraintViolation.getMessage()); } } return messages; } ... {code} All error messages are taken 1:1 from the BeanValidator. While e.g. the error-message of LongRangeValidtor looks like "Startdate: Va= lue is greater than allowable maximum of ''{0}''." the error looks like "Va= lue is greater than allowable maximum of ''{0}''.". = > BeanValidator: label not handled using MessageFactory > ----------------------------------------------------- > > Key: RF-12104 > URL: https://issues.jboss.org/browse/RF-12104 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2 > Reporter: Markus Staab > > The BeanValidator, in contrast to most JSF validators e.g. LongRangeValid= ator, does not use the MessageFactory to handle validation error message. > see LongRangeValidators' validate-method: > {code} > .... > throw new ValidatorException(MessageFactory.getMe= ssage > (context, > NOT_IN_RANGE_MESSAGE_ID, > stringValue(component, minimum, context= ), > stringValue(component, maximum, context= ), > MessageFactory.getLabel(context, compon= ent))); > ... > {code} > Therefore error-message of a BeanValidator will neither prepand the Strin= g which is provided from the components' label-attribute nor the components= ' client id. > see BeanValidator's validate & extractMessages-method > {code} > .... > private Collection extractMessages(Set> violations) { > Collection messages =3D null; > if (null !=3D violations && violations.size() > 0) { > messages =3D new ArrayList(violations.size()); > for (ConstraintViolation constraintViolation : viola= tions) { > messages.add(constraintViolation.getMessage()); > } > } > return messages; > } > ... > {code} > All error messages are taken 1:1 from the BeanValidator. > While e.g. the error-message of LongRangeValidtor looks like "Startdate: = Value is greater than allowable maximum of ''{0}''." the error looks like "= Value is greater than allowable maximum of ''{0}''.". > The reference to the component which violates the rule is not shown. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6732807526431653691==-- From jira-events at lists.jboss.org Wed Mar 28 04:27:48 2012 Content-Type: multipart/mixed; boundary="===============6600931102540371288==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 04:27:48 -0400 Message-ID: <1735385158.36504.1332923268229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6600931102540371288== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679902#com= ment-12679902 ] = Jan Papousek commented on RF-12044: ----------------------------------- Pavol: My fault. I have plugin which is activated on Alt+X. You have to cha= nge the key combination to something which is active in your installation (= e.g. Ctrl+W). = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Jan Papousek > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6600931102540371288==-- From jira-events at lists.jboss.org Wed Mar 28 04:31:48 2012 Content-Type: multipart/mixed; boundary="===============4729417603246079153==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12105) panelToggleListener attribute @listener does not work Date: Wed, 28 Mar 2012 04:31:47 -0400 Message-ID: <1942473592.36521.1332923507950.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4729417603246079153== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-12105: -------------------------------- Summary: panelToggleListener attribute @listener does not work Key: RF-12105 URL: https://issues.jboss.org/browse/RF-12105 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Firefox 11.0 @ Linux x86_64 Reporter: Ji=C5=99=C3=AD =C5=A0tefek # Deploy Metamer. # Open http://localhost:8080/metamer/faces/components/richPanelToggleListen= er/collapsiblePanel.xhtml # Click on chevron to collapse a panel. # Messages with "* pannelToggleListenerBean panel collapsed" should appear = in phases list. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4729417603246079153==-- From jira-events at lists.jboss.org Wed Mar 28 04:43:48 2012 Content-Type: multipart/mixed; boundary="===============4068416998371566097==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12106) panelToggleListener attribute @for does not work Date: Wed, 28 Mar 2012 04:43:47 -0400 Message-ID: <581703508.36545.1332924227837.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4068416998371566097== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-12106: -------------------------------- Summary: panelToggleListener attribute @for does not work Key: RF-12106 URL: https://issues.jboss.org/browse/RF-12106 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc Affects Versions: 4.2.0.Final Environment: RichFaces 4.2.1-SNAPSHOT Metamer 4.2.1-SNAPSHOT Mojarra 2.1.5-SNAPSHOT JBoss AS 7.1.0.Final OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux Firefox 11.0 @ Linux x86_64 = Reporter: Ji=C5=99=C3=AD =C5=A0tefek # Deploy Metamer. # Open http://localhost:8080/metamer/faces/components/richPanelToggleListen= er/RF-?.xhtml //will fix the address soon -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4068416998371566097==-- From jira-events at lists.jboss.org Wed Mar 28 04:45:48 2012 Content-Type: multipart/mixed; boundary="===============6022441028498808120==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12106) panelToggleListener attribute @for does not work Date: Wed, 28 Mar 2012 04:45:48 -0400 Message-ID: <362233054.36565.1332924348076.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 581703508.36545.1332924227837.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6022441028498808120== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12106?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-12106: ----------------------------- Description: = # Deploy Metamer. # Open http://localhost:8080/metamer/faces/components/richPanelToggleListen= er/RF-12106.xhtml was: # Deploy Metamer. # Open http://localhost:8080/metamer/faces/components/richPanelToggleListen= er/RF-?.xhtml //will fix the address soon = > panelToggleListener attribute @for does not work > ------------------------------------------------ > > Key: RF-12106 > URL: https://issues.jboss.org/browse/RF-12106 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 11.0 @ Linux x86_64 = > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > > # Deploy Metamer. > # Open http://localhost:8080/metamer/faces/components/richPanelToggleList= ener/RF-12106.xhtml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6022441028498808120==-- From jira-events at lists.jboss.org Wed Mar 28 04:55:47 2012 Content-Type: multipart/mixed; boundary="===============8278183290069437429==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12043) Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility mode Date: Wed, 28 Mar 2012 04:55:47 -0400 Message-ID: <1272849507.36585.1332924947435.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 714594071.9445.1331737907625.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8278183290069437429== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12043?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek closed RF-12043. ----------------------------- Verified. = > Metamer: rich:contextMenu isn't rendered correctly in IE 9 compatibility = mode > -------------------------------------------------------------------------= ---- > > Key: RF-12043 > URL: https://issues.jboss.org/browse/RF-12043 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT = > Metamer 4.2.1-SNAPSHOT = > Mojarra 2.1.5-SNAPSHOT = > JBoss AS 7.1.0.Final = > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux = > Internet Explorer 7.0 @ Win32 (this is IE 9 Compatibility Mode) > Reporter: Jan Papousek > Assignee: Brian Leathem > Labels: IE9, needs-qe, regression > Fix For: 4.2.1.CR1 > > Attachments: metamer-ie-9-rich_contextMenu.png > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8278183290069437429==-- From jira-events at lists.jboss.org Wed Mar 28 04:57:48 2012 Content-Type: multipart/mixed; boundary="===============2030105316660630486==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12042) Metamer: rich:contextMenu doesn't disappear after clicking out of the menu in IE9 and Google Chrome Date: Wed, 28 Mar 2012 04:57:48 -0400 Message-ID: <1110528261.36600.1332925068026.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1422678186.9420.1331737667612.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2030105316660630486== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12042?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek closed RF-12042. ----------------------------- Verified. = > Metamer: rich:contextMenu doesn't disappear after clicking out of the men= u in IE9 and Google Chrome > -------------------------------------------------------------------------= -------------------------- > > Key: RF-12042 > URL: https://issues.jboss.org/browse/RF-12042 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.2.0.Final > Environment: =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 = > Reporter: Jan Papousek > Assignee: Brian Leathem > Labels: Chrome, IE9, needs-qe > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2030105316660630486==-- From jira-events at lists.jboss.org Wed Mar 28 05:21:47 2012 Content-Type: multipart/mixed; boundary="===============1512637496461156754==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 05:21:47 -0400 Message-ID: <2104915745.36656.1332926507445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1512637496461156754== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679916#com= ment-12679916 ] = Jan Papousek commented on RF-12044: ----------------------------------- I've checked the behaviour with RichFaces 3.3.4. It seems to me that the co= mponent rich:hotkey doesn't have any attribute to prevent defaults and it d= oesn't prevent defaults automatically. So the key combinations like Ctrl+W = (or Alt+X in IE 9) don't work correctly. = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Jan Papousek > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1512637496461156754==-- From jira-events at lists.jboss.org Wed Mar 28 05:25:47 2012 Content-Type: multipart/mixed; boundary="===============2443032922661388826==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 05:25:47 -0400 Message-ID: <1971839080.36660.1332926747409.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2443032922661388826== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-12044: ------------------------------ Steps to Reproduce: = - deploy Metamer - open http://localhost:8080/metamer/faces/components/richHotKey/orderingLi= st.xhtml *IE 9* - click on an item in rich:orderingList - press Alt+X -> browser's action is invoked (the item should be moved to t= he bottom of the list instead) *Google Chrome* / *IE 9* - set key attribute to "ctrl+w" - click on an item in rich:orderingList - press Ctrl+W -> browser's tab is closed was: - deploy Metamer - open http://localhost:8080/metamer/faces/components/richHotKey/orderingLi= st.xhtml - click on an item in rich:orderingList - press Alt+X -> browser's action is invoked (the item should be moved to t= he bottom of the list instead) = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Jan Papousek > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2443032922661388826==-- From jira-events at lists.jboss.org Wed Mar 28 05:27:47 2012 Content-Type: multipart/mixed; boundary="===============4963064302106353097==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 05:27:47 -0400 Message-ID: <748510499.36665.1332926867487.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4963064302106353097== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek reassigned RF-12044: --------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Jan Papousek) = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4963064302106353097==-- From jira-events at lists.jboss.org Wed Mar 28 05:27:47 2012 Content-Type: multipart/mixed; boundary="===============6823747850524905551==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 05:27:47 -0400 Message-ID: <1438998121.36669.1332926867681.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6823747850524905551== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679916#com= ment-12679916 ] = Jan Papousek edited comment on RF-12044 at 3/28/12 5:27 AM: ------------------------------------------------------------ I've checked the behaviour with RichFaces 3.3.4. It seems to me that the co= mponent rich:hotkey idoesn't have any attribute to prevent defaults in 3.3.= X and it doesn't prevent defaults automatically. So the key combinations li= ke Ctrl+W (or Alt+X in IE 9) don't work correctly. = was (Author: jpapouse): I've checked the behaviour with RichFaces 3.3.4. It seems to me that th= e component rich:hotkey doesn't have any attribute to prevent defaults and = it doesn't prevent defaults automatically. So the key combinations like Ctr= l+W (or Alt+X in IE 9) don't work correctly. = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6823747850524905551==-- From jira-events at lists.jboss.org Wed Mar 28 05:37:47 2012 Content-Type: multipart/mixed; boundary="===============4908945907109703869==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12084) Richfaces 4.2 when inside dont work and causes 'identifier resolved to null' Date: Wed, 28 Mar 2012 05:37:47 -0400 Message-ID: <825887521.36684.1332927467433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1382382061.29574.1332701569056.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4908945907109703869== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12084?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reassigned RF-12084: -------------------------------- Assignee: (was: J=C3=A1n Jamrich) Issue simulated in Metamer. See Sources tab for more details. = > Richfaces 4.2 when inside dont work and causes '= identifier resolved to null' > -------------------------------------------------------------------------= ---------------------------- > > Key: RF-12084 > URL: https://issues.jboss.org/browse/RF-12084 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: Windows Vista, Firefox 11, Richfaces 4.2 Final, Moja= rra 2.1.7, Tomcat 7.0.26 > Reporter: Ivan Costa > Labels: richfaces > > a4j:commandLink or a4j:ajax tags inside ui:fragment causes 'identifier re= solved to null', = > but h:commandLink + f:ajax (both from Mojarra) works perfectly fine! > The problem is described here > https://community.jboss.org/message/723859 > and here: > https://community.jboss.org/thread/196867 > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4908945907109703869==-- From jira-events at lists.jboss.org Wed Mar 28 05:41:48 2012 Content-Type: multipart/mixed; boundary="===============2349914748889571135==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12082) Components: Output UI module doesn't pass unit tests (AbstractTogglePanelTest#testGetChildName) Date: Wed, 28 Mar 2012 05:41:48 -0400 Message-ID: <2109059964.36693.1332927708141.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 147991329.28097.1332505547854.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2349914748889571135== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12082?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679920#com= ment-12679920 ] = Jan Papousek commented on RF-12082: ----------------------------------- To be more specific. What's the strategy of applying patches from 4.2.1 to = 4.3.0? I think the issues for 4.3.0 having patches in 4.2.1 and waiting for= merging should stay opened. = > Components: Output UI module doesn't pass unit tests (AbstractTogglePanel= Test#testGetChildName) > -------------------------------------------------------------------------= ---------------------- > > Key: RF-12082 > URL: https://issues.jboss.org/browse/RF-12082 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.3.0.Milestone1 > Reporter: Jan Papousek > Assignee: Brian Leathem > Priority: Critical > > {code} > -------------------------------------------------------------------------= ------ > Test set: org.richfaces.component.AbstractTogglePanelTest > -------------------------------------------------------------------------= ------ > Tests run: 5, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec= <<< FAILURE! > testGetChildName(org.richfaces.component.AbstractTogglePanelTest) Time e= lapsed: 0.005 sec <<< FAILURE! > java.lang.AssertionError: Expected exception: java.lang.IllegalArgumentEx= ception > at org.junit.internal.runners.statements.ExpectException.evaluate(Expect= Exception.java:32) > at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.= java:28) > at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4Cla= ssRunner.java:79) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:71) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRun= ner.java:49) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provide= r.java:234) > at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4= Provider.java:133) > at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider= .java:114) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(= ReflectionUtils.java:188) > at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke= (ProviderFactory.java:166) > at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(Provi= derFactory.java:86) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:101) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 74) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2349914748889571135==-- From jira-events at lists.jboss.org Wed Mar 28 05:51:47 2012 Content-Type: multipart/mixed; boundary="===============0200801568801701595==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11950) rich:findComponent does not retrieve the component for multiply-nested, dynamically generated tab components Date: Wed, 28 Mar 2012 05:51:47 -0400 Message-ID: <1352859583.36730.1332928307618.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 25533681.21797.1328288808791.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0200801568801701595== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11950?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reassigned RF-11950: -------------------------------- Assignee: J=C3=A1n Jamrich = > rich:findComponent does not retrieve the component for multiply-nested, d= ynamically generated tab components > -------------------------------------------------------------------------= ----------------------------------- > > Key: RF-11950 > URL: https://issues.jboss.org/browse/RF-11950 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final > Environment: Websphere 8 - RAD 8 - JSF Mojorra 2.1.4 - Spring 3.0= .6 Final - Firefox 10.0 - Windows 7 (6.1 sp1) = > Reporter: Jean ANDRE > Assignee: J=C3=A1n Jamrich > Fix For: 4.Future > > Attachments: index.xhtml, index.xhtml, listClient.xhtml, NestedWe= b_RF-11950.zip, requestClientDocument.xhtml, requestClientDocument.xhtml, t= absClient.xhtml, tabsClient.xhtml > > > The rich:findComponent does not retrieve the component - What we want to = achieve is to send .click() event on a command button. We got different err= ors depending the tests we made such as syntax error. > The involved code: > ------------------ > {code} > > > > value=3D"#{msg['common.command.cancel']}" > onclick=3D"#{rich:findComponent('#{activity.id}-closeCmd')}.click(= );;return false;" > render=3D"#{tab.id}-tabsClient" > immediate=3D"true" /> > {code} > The error we got: > ---------------- > {code} > syntax error - [Stopper sur une erreur] - jsf.js.jsf?ln=3Djavax.faces (li= gne 1) > .click();return false; > {code} > The corresponding view source: > ------------------------------ > {code} > onclick=3D"jsf.util.chain(this,event,".click();return false;", > "RichFaces.ajax( \"tabbedForm:TAB_CLIENT\\u002D1\\u002Drcd\\u00= 2DcancelCreateCmd\",event,{\"incId\":\"1\"} )"= ;); > return false;" = > name=3D"tabbedForm:TAB_CLIENT-1-rcd-cancelCreateCmd" id=3D"tabbedForm:TAB= _CLIENT-1-rcd-cancelCreateCmd"> > {code} > The generated javaScript under firebug: > -------------------------------------- > {code} > function onclick(event) { > jsf.util.chain(this, event, ".click();return false;", "RichFaces.ajax(\"t= abbedForm:TAB_CLIENT\\u002D1\\u002Drcd\\u002DcancelCreateCmd\",event,{\"inc= Id\":\"1\"} )"); > return false; > } > {code} > If we hard code the Id instead of the calculated one we got following err= or: > {code} > uncaught exception: Syntax error, unrecognized expression: TAB_CLIENT-1-T= AB_RCD-closeCmd > Line 0 > {code} > The generated javaScript under firebug: > -------------------------------------- > {code} > function anonymous(event) { > rich: > findComponent("TAB_CLIENT-1-TAB_RCD-closeCmd").click(); > return false; > } > {code} > If we use directly jQuery: > {code} > > > > value=3D"#{msg['common.command.cancel']}" > onclick=3D"$('##{activity.id}-closeCmd').click();return fal= se;" > render=3D"desktopTabPanel" > immediate=3D"true" /> > {code} > {code} > missing ; before statement > http://localhost:12000/crm/javax.faces.resource/jsf.js.jsf?ln=3Djavax.fac= es > Line 1 > {code} > If we hardcode an existing static Id, we got the error as shown the scree= n capture: > {code} > function onclick(event) { > jsf.util.chain(this, event, "org.richfaces.component.UICommandButton(a)39= de2ca.click();", "RichFaces.ajax(\"tabbedForm:TAB_CLIENT\\u002D1\\u002Drcd\= \u002DcancelCreateCmd\",event,{\"incId\":\"1\"} )"); > return false; > } > {code} > {code} > value=3D"#{msg['common.command.cancel']}" > onclick=3D"#{rich:findComponent('qsearchClient')}.click();" > render=3D"#{tab.id}-tabsClient" > immediate=3D"true" />  > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0200801568801701595==-- From jira-events at lists.jboss.org Wed Mar 28 07:21:48 2012 Content-Type: multipart/mixed; boundary="===============3231327684397498263==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11560) Showcase on OpenShift Express: Push stops to work after first long-polling request Date: Wed, 28 Mar 2012 07:21:48 -0400 Message-ID: <1907121326.36990.1332933708502.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 703843376.3936.1318926525118.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3231327684397498263== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11560?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek resolved RF-11560. ------------------------------- Labels: openshift (was: ) Fix Version/s: 4.2.1.CR1 Resolution: Cannot Reproduce Bug = > Showcase on OpenShift Express: Push stops to work after first long-pollin= g request > -------------------------------------------------------------------------= --------- > > Key: RF-11560 > URL: https://issues.jboss.org/browse/RF-11560 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Jan Papousek > Labels: openshift > Fix For: 4.2.1.CR1 > > > Both demos affected: TopicsContext and Push CDI. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3231327684397498263==-- From jira-events at lists.jboss.org Wed Mar 28 09:11:47 2012 Content-Type: multipart/mixed; boundary="===============8109210931701841077==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12107) Kitchensink archetype - comments additions to the generated pom.xml Date: Wed, 28 Mar 2012 09:11:47 -0400 Message-ID: <713779216.37241.1332940307373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8109210931701841077== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-12107: -------------------------------- Summary: Kitchensink archetype - comments additions to the gen= erated pom.xml Key: RF-12107 URL: https://issues.jboss.org/browse/RF-12107 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: archetype Affects Versions: 4.2.0.Final Environment: app generated by Kitchensink archetype Reporter: Juraj Huska Priority: Optional I would like to suggest some comments additions, to increase user's compreh= ension. - _To the comment above arq-jbossas-managed profile:_ There should be mentioned that you have to provide path to your JBoss insta= nce, by changing the jbossHome property in arquillian.xml, or we can alter = the profile to download and unzip JBoss distribution as it is [here|https:/= /github.com/richfaces/qa/blob/master/pom.xml#L559]. - _In the same comment as mentioned above_ There should be definitely mentioned the version of JBoss AS it works with,= or there should be this version defined explicitly, since it does not work= with all AS 7 distributions - _The comment above arq-jbossas-remote profile_ There is the same problem with JBoss AS versions as mentioned above. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8109210931701841077==-- From jira-events at lists.jboss.org Wed Mar 28 09:52:48 2012 Content-Type: multipart/mixed; boundary="===============8095847180882955436==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10754) extendedDataTable: two or more components placed on the page causes horizontal scroll to disappear Date: Wed, 28 Mar 2012 09:52:47 -0400 Message-ID: <989489984.37473.1332942767928.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1257024085.24840.1300129130468.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8095847180882955436== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10754?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-10754. ----------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix Version/s: 4.2.1.CR1 (was: 4.Future) Resolution: Done EDT scrolling feature rewritten. = > extendedDataTable: two or more components placed on the page causes horiz= ontal scroll to disappear > -------------------------------------------------------------------------= ------------------------- > > Key: RF-10754 > URL: https://issues.jboss.org/browse/RF-10754 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > just get any example where table has horizontal scroll and add one more t= able by copy/paste. (change id's if need) > result: scroll disappear. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8095847180882955436==-- From jira-events at lists.jboss.org Wed Mar 28 09:54:47 2012 Content-Type: multipart/mixed; boundary="===============6936699930356740638==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10754) extendedDataTable: two or more components placed on the page causes horizontal scroll to disappear Date: Wed, 28 Mar 2012 09:54:47 -0400 Message-ID: <677496116.37484.1332942887739.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1257024085.24840.1300129130468.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6936699930356740638== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10754?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680016#com= ment-12680016 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-10754: --------------------------------- Thanks for the hint Peter, I have used it as the base for the rewritten ver= sion of scrolling feature. I would appreciate your feedback how the new version stands in {{4.2.1.CR1}= }. Let's take in the wild! = > extendedDataTable: two or more components placed on the page causes horiz= ontal scroll to disappear > -------------------------------------------------------------------------= ------------------------- > > Key: RF-10754 > URL: https://issues.jboss.org/browse/RF-10754 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > just get any example where table has horizontal scroll and add one more t= able by copy/paste. (change id's if need) > result: scroll disappear. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6936699930356740638==-- From jira-events at lists.jboss.org Wed Mar 28 09:54:48 2012 Content-Type: multipart/mixed; boundary="===============7506255280401368005==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 09:54:47 -0400 Message-ID: <1133561328.37490.1332942887960.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7506255280401368005== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680017#com= ment-12680017 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- Problem 4: scrolling feature rewritten (RF-10754) = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7506255280401368005==-- From jira-events at lists.jboss.org Wed Mar 28 10:07:47 2012 Content-Type: multipart/mixed; boundary="===============2473939415319081620==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:07:47 -0400 Message-ID: <644577994.37555.1332943667545.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2473939415319081620== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680027#com= ment-12680027 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- Problem 1 and 2: Problem is caused by switching IE to Quirks mode, when forced to use IE8/IE= 9 engine, it works fine. Let's force the browser to use right mode: {code:xml} {code} {code:xml} {code} = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2473939415319081620==-- From jira-events at lists.jboss.org Wed Mar 28 10:19:51 2012 Content-Type: multipart/mixed; boundary="===============8578752481856168101==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12108) components are not rerendered after ajax action if attribute ajaxRendered="true" inside Date: Wed, 28 Mar 2012 10:19:49 -0400 Message-ID: <975271229.37623.1332944389491.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8578752481856168101== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Artur Mioduszewski created RF-12108: --------------------------------------- Summary: components are not rerendered after ajax action if at= tribute ajaxRendered=3D"true" inside = Key: RF-12108 URL: https://issues.jboss.org/browse/RF-12108 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final Environment: JDK1.6, JBoss 6.0.Final, richfaces 4.1.0.Final/4.2.0.Final seam 3.1 IE 9 = Reporter: Artur Mioduszewski In case getting 2 tabs (in my case it is primefaces tabs): {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} 1. tab: 2. tab (some code with ajax) Ex. = {code} {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} 1. tab: 2. tab (some code with ajax) Ex. = {code} When I change tabs order, problem does not exist. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8578752481856168101==-- From jira-events at lists.jboss.org Wed Mar 28 10:23:47 2012 Content-Type: multipart/mixed; boundary="===============8439108496998317970==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12108) Components second tab changes are not rendered after performing some ajax action if attribute ajaxRendered="true" inside located on first tab Date: Wed, 28 Mar 2012 10:23:47 -0400 Message-ID: <878469612.37651.1332944627825.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 975271229.37623.1332944389491.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8439108496998317970== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12108?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12108: ------------------------------------ Summary: Components second tab changes are not rendered after performin= g some ajax action if attribute ajaxRendered=3D"true" inside located on first tab (was: components are not rerendered after ajax ac= tion if attribute ajaxRendered=3D"true" inside ) = > Components second tab changes are not rendered after performing some ajax= action if attribute ajaxRendered=3D"true" inside located= on first tab > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= ----------- > > Key: RF-12108 > URL: https://issues.jboss.org/browse/RF-12108 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > seam 3.1 > IE 9 = > Reporter: Artur Mioduszewski > > In case getting 2 tabs (in my case it is primefaces tabs): > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > 1. tab: > > > > > 2. tab (some code with ajax) > Ex. > > > > = > {code} > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > 1. tab: > > > > > 2. tab (some code with ajax) > Ex. > > > > = > {code} > When I change tabs order, problem does not exist. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8439108496998317970==-- From jira-events at lists.jboss.org Wed Mar 28 10:25:47 2012 Content-Type: multipart/mixed; boundary="===============0988341415124334943==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12108) Components second tab changes are not rendered after performing some ajax action if attribute ajaxRendered="true" inside located on first tab Date: Wed, 28 Mar 2012 10:25:47 -0400 Message-ID: <341971274.37657.1332944747647.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 975271229.37623.1332944389491.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0988341415124334943== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12108?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12108: ------------------------------------ Workaround Description: Setting rich:message attribute ajaxRendered=3D"= false" (was: Setting message attribute ajaxRendered=3D"false" ) = > Components second tab changes are not rendered after performing some ajax= action if attribute ajaxRendered=3D"true" inside located= on first tab > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= ----------- > > Key: RF-12108 > URL: https://issues.jboss.org/browse/RF-12108 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > seam 3.1 > IE 9 = > Reporter: Artur Mioduszewski > > In case getting 2 tabs (in my case it is primefaces tabs): > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > 1. tab: > > > > > 2. tab (some code with ajax) > Ex. > > > > = > {code} > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > 1. tab: > > > > > 2. tab (some code with ajax) > Ex. > > > > = > {code} > When I change tabs order, problem does not exist. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0988341415124334943==-- From jira-events at lists.jboss.org Wed Mar 28 10:35:51 2012 Content-Type: multipart/mixed; boundary="===============3796259596365339557==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:35:51 -0400 Message-ID: <616850657.37777.1332945351546.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3796259596365339557== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680044#com= ment-12680044 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- I cannot reproduce *Problem 5* either. [{{dev-examples/iteration-demo}}|htt= ps://github.com/richfaces/dev-examples/tree/4085ca9b07438d2474bb6cc20cd59db= bd4abaef6/iteration-demo] works fine in IE modes. = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3796259596365339557==-- From jira-events at lists.jboss.org Wed Mar 28 10:39:49 2012 Content-Type: multipart/mixed; boundary="===============1468593984217831618==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:39:48 -0400 Message-ID: <879396154.37794.1332945588133.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1468593984217831618== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680046#com= ment-12680046 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- I cannot reproduce *Problem 6* either. In the code, I can see there might be theoretically negative value provided= as the {{style.height}}. But without proper example we can't address this = issue. = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1468593984217831618==-- From jira-events at lists.jboss.org Wed Mar 28 10:41:47 2012 Content-Type: multipart/mixed; boundary="===============5794421658967704094==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:41:47 -0400 Message-ID: <1378919520.37799.1332945707523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5794421658967704094== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680047#com= ment-12680047 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- I would like to ask you to provide *Short, Self Contained, Correct (Runnabl= e), Example* and report each issue separately. Please consider reading [Submitting effective issue report|https://communit= y.jboss.org/wiki/SubmittingEffectiveIssueReports]. = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5794421658967704094==-- From jira-events at lists.jboss.org Wed Mar 28 10:47:55 2012 Content-Type: multipart/mixed; boundary="===============5121146782254778688==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:47:47 -0400 Message-ID: <351129996.37823.1332946067562.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5121146782254778688== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680047#com= ment-12680047 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11884 at 3/28/12 10:45 AM: ----------------------------------------------------------- I would like to ask you to provide *Short, Self Contained, Correct (Runnabl= e), Example* and report each issue separately. Please take your time with reporting issues - it's highly appreciated to sc= an through JIRA and make sure there is no similar issue reported. Once you = report issue, make it as clear as possible. Consider reading [Submitting effective issue report|https://community.jboss= .org/wiki/SubmittingEffectiveIssueReports]. = was (Author: lfryc): I would like to ask you to provide *Short, Self Contained, Correct (Run= nable), Example* and report each issue separately. Please consider reading [Submitting effective issue report|https://communit= y.jboss.org/wiki/SubmittingEffectiveIssueReports]. = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5121146782254778688==-- From jira-events at lists.jboss.org Wed Mar 28 10:47:55 2012 Content-Type: multipart/mixed; boundary="===============5723609744253281070==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:47:47 -0400 Message-ID: <217603568.37831.1332946067841.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5723609744253281070== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680027#com= ment-12680027 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11884 at 3/28/12 10:47 AM: ----------------------------------------------------------- Problem 1 and 2: Problem is caused by switching IE to Quirks mode, when forced to use IE8/IE= 9 engine, it works fine. Let's force the browser to use right mode: {code:xml} {code} {code:xml} {code} Further reading: [Defining Document Compatibility (msdn.microsoft.com)|http= ://msdn.microsoft.com/en-us/library/ie/cc288325(v=3Dvs.85).aspx] = was (Author: lfryc): Problem 1 and 2: Problem is caused by switching IE to Quirks mode, when forced to use IE8/IE= 9 engine, it works fine. Let's force the browser to use right mode: {code:xml} {code} {code:xml} {code} = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5723609744253281070==-- From jira-events at lists.jboss.org Wed Mar 28 10:49:48 2012 Content-Type: multipart/mixed; boundary="===============5636079294640074112==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:49:48 -0400 Message-ID: <294977038.37857.1332946188440.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5636079294640074112== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680055#com= ment-12680055 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- If you would have more details to any of these details, please open new iss= ue and link to this one. = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5636079294640074112==-- From jira-events at lists.jboss.org Wed Mar 28 10:49:48 2012 Content-Type: multipart/mixed; boundary="===============3432068951742902819==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:49:48 -0400 Message-ID: <1542946896.37864.1332946188678.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3432068951742902819== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680055#com= ment-12680055 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11884 at 3/28/12 10:49 AM: ----------------------------------------------------------- If you would have more details to any of these problems, please open new is= sue and link to this one. = was (Author: lfryc): If you would have more details to any of these details, please open new= issue and link to this one. = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3432068951742902819==-- From jira-events at lists.jboss.org Wed Mar 28 10:49:48 2012 Content-Type: multipart/mixed; boundary="===============6764088483960244938==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 10:49:48 -0400 Message-ID: <2001851539.37862.1332946188615.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6764088483960244938== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11884. ----------------------------- Resolution: Partially Completed = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6764088483960244938==-- From jira-events at lists.jboss.org Wed Mar 28 10:51:48 2012 Content-Type: multipart/mixed; boundary="===============7289080902003403060==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10754) extendedDataTable: two or more components placed on the page causes horizontal scroll to disappear Date: Wed, 28 Mar 2012 10:51:47 -0400 Message-ID: <1976666805.37877.1332946307961.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1257024085.24840.1300129130468.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7289080902003403060== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10754?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680016#com= ment-12680016 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-10754 at 3/28/12 10:50 AM: ----------------------------------------------------------- Thanks for the hint Peter, I have used it as the base for the rewritten ver= sion of scrolling feature. I would appreciate your feedback how the new version stands in {{4.2.1.CR1}= }. Let's check it in the wild! = was (Author: lfryc): Thanks for the hint Peter, I have used it as the base for the rewritten= version of scrolling feature. I would appreciate your feedback how the new version stands in {{4.2.1.CR1}= }. Let's take in the wild! = > extendedDataTable: two or more components placed on the page causes horiz= ontal scroll to disappear > -------------------------------------------------------------------------= ------------------------- > > Key: RF-10754 > URL: https://issues.jboss.org/browse/RF-10754 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.1.CR1 > > > just get any example where table has horizontal scroll and add one more t= able by copy/paste. (change id's if need) > result: scroll disappear. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7289080902003403060==-- From jira-events at lists.jboss.org Wed Mar 28 11:01:47 2012 Content-Type: multipart/mixed; boundary="===============4002617757575258554==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 11:01:47 -0400 Message-ID: <806396444.37907.1332946907573.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4002617757575258554== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680056#com= ment-12680056 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12044: --------------------------------- Jan, I think preventing defaults events works out of the box in RF3: see line 92 in [hotKey.js|http://anonsvn.jboss.org/repos/richfaces/branches= /community/3.3.X/ui/hotKey/src/main/resources/org/richfaces/renderkit/html/= scripts/hotKey.js] = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4002617757575258554==-- From jira-events at lists.jboss.org Wed Mar 28 11:25:47 2012 Content-Type: multipart/mixed; boundary="===============4112640092158050903==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 11:25:47 -0400 Message-ID: <968976384.37963.1332948347459.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4112640092158050903== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680061#com= ment-12680061 ] = Jan Papousek commented on RF-12044: ----------------------------------- Lukas: You are right. It is working in Firefox 10, but it isn't working in = Google Chrome and IE 9. = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > Fix For: 4.2.1.CR1 > > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4112640092158050903==-- From jira-events at lists.jboss.org Wed Mar 28 11:31:47 2012 Content-Type: multipart/mixed; boundary="===============0233021782390956415==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12109) Showcase in AS 7.1.1 (JSF 2.1.7) missing doctype and root Date: Wed, 28 Mar 2012 11:31:47 -0400 Message-ID: <1464963313.37982.1332948707417.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0233021782390956415== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-12109: ---------------------------------- Summary: Showcase in AS 7.1.1 (JSF 2.1.7) missing doctype and = root Key: RF-12109 URL: https://issues.jboss.org/browse/RF-12109 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Reporter: Brian Leathem Assignee: Brian Leathem Priority: Critical Fix For: 4.2.1.CR1 Changes to how ui:include and templates are processed in Mojarra 2.1.7 resu= lt in the doctype and html root element being omitted from the showcase. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0233021782390956415==-- From jira-events at lists.jboss.org Wed Mar 28 11:39:47 2012 Content-Type: multipart/mixed; boundary="===============3435452037440898891==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Wed, 28 Mar 2012 11:39:47 -0400 Message-ID: <1943236373.37991.1332949187400.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3435452037440898891== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680067#com= ment-12680067 ] = Rene O commented on RF-11948: ----------------------------- To make things a little bit clearer, here is another example which demonstr= ates my problem better: {code:title=3D"mainpage"} JSF Test = {code} {code:title=3D"includeA - active at start"} = = {code} {code:title=3D"includeB - active if button within includeA is clicked"} = = ColA #{item.a}
    =
    {code} The oncomplete-workaround to resize the table fails with an js error becaus= e the table itself doesn't exists during ajax execution: = Zeitstempel: 28.03.2012 17:37:45 Fehler: syntax error Quelldatei: http://localhost:8080/jsf2testcase/javax.faces.resource/richfac= es.js.jsf Zeile: 481 Quelltext: .setColumnWidth('colA','500');; = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3435452037440898891==-- From jira-events at lists.jboss.org Wed Mar 28 12:21:48 2012 Content-Type: multipart/mixed; boundary="===============8548100196269266945==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12108) Components second tab changes are not rendered after performing some ajax action if attribute ajaxRendered="true" inside located on first tab Date: Wed, 28 Mar 2012 12:21:47 -0400 Message-ID: <1429606304.38142.1332951707910.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 975271229.37623.1332944389491.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8548100196269266945== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12108?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12108: ------------------------------------ Description: = In case getting 2 tabs (in my case it is primefaces tabs): {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} 1. tab: 2. tab (some code with ajax) Ex. = {code} {code:title=3DRENDERING ON SECOND TAB CORRECTLY WORKS (after clicking link)} 1. tab: 2. tab (some code with ajax) Ex. = {code} When I change tabs order, problem does not exist. was: In case getting 2 tabs (in my case it is primefaces tabs): {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} 1. tab: 2. tab (some code with ajax) Ex. = {code} {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} 1. tab: 2. tab (some code with ajax) Ex. = {code} When I change tabs order, problem does not exist. = > Components second tab changes are not rendered after performing some ajax= action if attribute ajaxRendered=3D"true" inside located= on first tab > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= ----------- > > Key: RF-12108 > URL: https://issues.jboss.org/browse/RF-12108 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > seam 3.1 > IE 9 = > Reporter: Artur Mioduszewski > > In case getting 2 tabs (in my case it is primefaces tabs): > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > 1. tab: > > > > > 2. tab (some code with ajax) > Ex. > > > > = > {code} > {code:title=3DRENDERING ON SECOND TAB CORRECTLY WORKS (after clicking lin= k)} > 1. tab: > > > > > 2. tab (some code with ajax) > Ex. > > > > = > {code} > When I change tabs order, problem does not exist. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8548100196269266945==-- From jira-events at lists.jboss.org Wed Mar 28 12:23:48 2012 Content-Type: multipart/mixed; boundary="===============7918848961517062802==" MIME-Version: 1.0 From: Artur Mioduszewski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12108) Components second tab changes are not rendered after performing some ajax action if attribute ajaxRendered="true" inside located on first tab Date: Wed, 28 Mar 2012 12:23:48 -0400 Message-ID: <45097191.38146.1332951828723.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 975271229.37623.1332944389491.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7918848961517062802== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12108?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Artur Mioduszewski updated RF-12108: ------------------------------------ Description: = In case getting 2 tabs (in my case it is primefaces tabs): {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} First tab: Second tab (some code with ajax) Ex. = {code} {code:title=3DRENDERING ON SECOND TAB CORRECTLY WORKS (after clicking link)} First tab: Second tab (some code with ajax) Ex. = {code} When I change tabs order, problem does not exist. was: In case getting 2 tabs (in my case it is primefaces tabs): {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} 1. tab: 2. tab (some code with ajax) Ex. = {code} {code:title=3DRENDERING ON SECOND TAB CORRECTLY WORKS (after clicking link)} 1. tab: 2. tab (some code with ajax) Ex. = {code} When I change tabs order, problem does not exist. = > Components second tab changes are not rendered after performing some ajax= action if attribute ajaxRendered=3D"true" inside located= on first tab > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= ----------- > > Key: RF-12108 > URL: https://issues.jboss.org/browse/RF-12108 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > seam 3.1 > IE 9 = > Reporter: Artur Mioduszewski > > In case getting 2 tabs (in my case it is primefaces tabs): > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > First tab: > > > > > Second tab (some code with ajax) > Ex. > > > > = > {code} > {code:title=3DRENDERING ON SECOND TAB CORRECTLY WORKS (after clicking lin= k)} > First tab: > > > > > Second tab (some code with ajax) > Ex. > > > > = > {code} > When I change tabs order, problem does not exist. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7918848961517062802==-- From jira-events at lists.jboss.org Wed Mar 28 13:00:47 2012 Content-Type: multipart/mixed; boundary="===============2593461780834690773==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Wed, 28 Mar 2012 13:00:47 -0400 Message-ID: <1996880946.38211.1332954047424.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2593461780834690773== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11948. -------------------------------- Resolution: Done Ok, I exposed the ready event described above via a facelet attribute, so y= ou can do: {code} {code} This event is fired after the EDT is initialized, both after a page load (d= ocument ready) and after an ajax update. = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2593461780834690773==-- From jira-events at lists.jboss.org Wed Mar 28 13:04:47 2012 Content-Type: multipart/mixed; boundary="===============2503410960061770352==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12086) Update the RichFaces WFK version in the archetypes Date: Wed, 28 Mar 2012 13:04:47 -0400 Message-ID: <902109341.38225.1332954287247.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1088995279.29817.1332738527229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2503410960061770352== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12086?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12086. -------------------------------- Resolution: Done RF-12086: Updated the WFK Richfaces version to 4.2.1.Final-redhat-1 = > Update the RichFaces WFK version in the archetypes > -------------------------------------------------- > > Key: RF-12086 > URL: https://issues.jboss.org/browse/RF-12086 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: archetype > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2503410960061770352==-- From jira-events at lists.jboss.org Wed Mar 28 13:33:48 2012 Content-Type: multipart/mixed; boundary="===============5484746220826525274==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 13:33:48 -0400 Message-ID: <634195872.38256.1332956028626.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5484746220826525274== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12044. ----------------------------- Fix Version/s: (was: 4.2.1.CR1) Resolution: Won't Fix = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5484746220826525274==-- From jira-events at lists.jboss.org Wed Mar 28 13:33:48 2012 Content-Type: multipart/mixed; boundary="===============0966926005599636263==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 13:33:48 -0400 Message-ID: <483157150.38254.1332956028487.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0966926005599636263== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680104#com= ment-12680104 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12044: --------------------------------- Thanks for the assistance. I'm rejecting this issue as {{Won't fix}}. = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0966926005599636263==-- From jira-events at lists.jboss.org Wed Mar 28 13:35:47 2012 Content-Type: multipart/mixed; boundary="===============8521432648235110326==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Wed, 28 Mar 2012 13:35:47 -0400 Message-ID: <594384359.38259.1332956147483.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8521432648235110326== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680105#com= ment-12680105 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12044: --------------------------------- Documentation issue opened: RFPL-2102 = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8521432648235110326==-- From jira-events at lists.jboss.org Wed Mar 28 14:21:47 2012 Content-Type: multipart/mixed; boundary="===============0131527582153329290==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Wed, 28 Mar 2012 14:21:47 -0400 Message-ID: <804685542.38382.1332958907864.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0131527582153329290== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680121#com= ment-12680121 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- Hey Friedhelm, I was able to simulate *Problem 6* with adding {code:javascript} this.bodyElement.style.height =3D (-1) + "px"; {code} It doesn't work in IE8 and lower, but it works fine on IE9. But since I'm not sure about the semantics, I prefer do not hide issue befo= re we will have sample and steps for reproduction. = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0131527582153329290==-- From jira-events at lists.jboss.org Wed Mar 28 14:25:47 2012 Content-Type: multipart/mixed; boundary="===============5568597042491465211==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12109) Showcase in AS 7.1.1 (JSF 2.1.7) missing doctype and root Date: Wed, 28 Mar 2012 14:25:47 -0400 Message-ID: <389419011.38395.1332959147779.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1464963313.37982.1332948707417.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5568597042491465211== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12109?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12109. -------------------------------- Resolution: Done Added doctype and html root to the welcome page = > Showcase in AS 7.1.1 (JSF 2.1.7) missing doctype and root > ---------------------------------------------------------------- > > Key: RF-12109 > URL: https://issues.jboss.org/browse/RF-12109 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.1.CR1 > > > Changes to how ui:include and templates are processed in Mojarra 2.1.7 re= sult in the doctype and html root element being omitted from the showcase. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5568597042491465211==-- From jira-events at lists.jboss.org Wed Mar 28 16:28:47 2012 Content-Type: multipart/mixed; boundary="===============7103419706862115650==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11560) Showcase on OpenShift Express: Push stops to work after first long-polling request Date: Wed, 28 Mar 2012 16:28:47 -0400 Message-ID: <1265304924.38545.1332966527516.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 703843376.3936.1318926525118.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7103419706862115650== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11560?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11560: ---------------------------- Fix Version/s: (was: 4.2.1.CR1) = > Showcase on OpenShift Express: Push stops to work after first long-pollin= g request > -------------------------------------------------------------------------= --------- > > Key: RF-11560 > URL: https://issues.jboss.org/browse/RF-11560 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Jan Papousek > Labels: openshift > > Both demos affected: TopicsContext and Push CDI. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7103419706862115650==-- From jira-events at lists.jboss.org Thu Mar 29 01:10:53 2012 Content-Type: multipart/mixed; boundary="===============7667369607258885302==" MIME-Version: 1.0 From: Friedhelm Kuehn (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Thu, 29 Mar 2012 01:10:53 -0400 Message-ID: <1782111670.38962.1332997853829.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7667369607258885302== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Friedhelm Kuehn closed RF-11884. -------------------------------- Hi Lukas, thank you for (partially) solving this. I solved this myself anot= her way. After opening this issue on 14. of January 2012 with 'critical'.. = and not getting any help for 3 weeks, I decided to leave Richfaces towards = ... you can guess. = I needed 6 weeks to reach the target platform and had a running solution be= fore this issue was resolved. This is not the response time we can live wit= h. Sorry. = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7667369607258885302==-- From jira-events at lists.jboss.org Thu Mar 29 03:21:48 2012 Content-Type: multipart/mixed; boundary="===============6713136877721023577==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11948) rich:extendedDataTable generates a js-error stating this.normalPartStyle is undefined Date: Thu, 29 Mar 2012 03:21:47 -0400 Message-ID: <494333638.39196.1333005707984.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2050628653.20854.1328272188456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6713136877721023577== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11948?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680214#com= ment-12680214 ] = Rene O commented on RF-11948: ----------------------------- Thanks a lot Brian. This solution works. = > rich:extendedDataTable generates a js-error stating this.normalPartStyle = is undefined > -------------------------------------------------------------------------= ------------ > > Key: RF-11948 > URL: https://issues.jboss.org/browse/RF-11948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.0.CR1 > Environment: richfaces-4.2.0-SNAPSHOT, Firefox 10, IE8 > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > If you use rich:extendedDataTable and manually set the width of a column = afterwards, a js error occurs > {code:title=3Dpage-snippet to reproduce the issue} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" = > > > > JSF Test = > > > > > > = > > > > ColA > > #{item.itemA} > > > > > > > {code} > {code:title=3Djs error} > Fehler: this.normalPartStyle is undefined > Quelldatei: http://localhost:8080/jsftest/javax.faces.resource/extendedDa= taTable.js.jsf?ln=3Dorg.richfaces > Zeile: 279 > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6713136877721023577==-- From jira-events at lists.jboss.org Thu Mar 29 03:56:51 2012 Content-Type: multipart/mixed; boundary="===============9193939553511848961==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11884) Multiple Errors with IE8/9 Date: Thu, 29 Mar 2012 03:56:51 -0400 Message-ID: <977429598.39344.1333007811497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9193939553511848961== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11884?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680220#com= ment-12680220 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11884: --------------------------------- Hi Friedhelm, just note that RichFaces is truly open source project, you can ever step into and analyse/highlight problems, which will increase = chance to get issue you experience fixed. Clear and consistent issue report is the base! = > Multiple Errors with IE8/9 > -------------------------- > > Key: RF-11884 > URL: https://issues.jboss.org/browse/RF-11884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, component-tables, co= mponent-tree > Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (a= ll errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics on= ly, problems still persist when PF is removed) > Reporter: Friedhelm Kuehn > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.1.CR1 > > Attachments: ProgramVariable_Table.xhtml, Richfaces_4.1_Problems.= pdf, Richfaces_4.1_Problems_Konfiguration.pdf, Test.war > > > Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big s= pacing area below tabs (height about 20 px, should be 2px). > Problem 2: Content of not-popped-up Popup-Panel is not visible, but an ar= ea is claimed on screen. > Problem 3: with icon: Icon is surrounded by dark border > Problem 4: No Horzontal-Scroller in ExtendDatatable (with Chrome also). > Problem 5: Use of IconCollapsed/..Expanded creates double Icons in TreeNo= de > Problem 6: Javascript Error in ExtendedDataTable.js > Biggest Problem: We have to deliver our application in a few weeks. Suppo= rt for IE8/9 is hard customer requirement. > I have a made a documentation for each problem, but don't find a way to a= ttach a PDF to this issue - ?? > Please help ! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9193939553511848961==-- From jira-events at lists.jboss.org Thu Mar 29 07:04:48 2012 Content-Type: multipart/mixed; boundary="===============2947153812956833551==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11950) rich:findComponent does not retrieve the component for multiply-nested, dynamically generated tab components Date: Thu, 29 Mar 2012 07:04:48 -0400 Message-ID: <279166879.39940.1333019088194.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 25533681.21797.1328288808791.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2947153812956833551== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11950?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reassigned RF-11950: -------------------------------- Assignee: (was: J=C3=A1n Jamrich) = > rich:findComponent does not retrieve the component for multiply-nested, d= ynamically generated tab components > -------------------------------------------------------------------------= ----------------------------------- > > Key: RF-11950 > URL: https://issues.jboss.org/browse/RF-11950 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.1.0.Final > Environment: Websphere 8 - RAD 8 - JSF Mojorra 2.1.4 - Spring 3.0= .6 Final - Firefox 10.0 - Windows 7 (6.1 sp1) = > Reporter: Jean ANDRE > Fix For: 4.Future > > Attachments: index.xhtml, index.xhtml, listClient.xhtml, NestedWe= b_RF-11950.zip, requestClientDocument.xhtml, requestClientDocument.xhtml, t= absClient.xhtml, tabsClient.xhtml > > > The rich:findComponent does not retrieve the component - What we want to = achieve is to send .click() event on a command button. We got different err= ors depending the tests we made such as syntax error. > The involved code: > ------------------ > {code} > > > > value=3D"#{msg['common.command.cancel']}" > onclick=3D"#{rich:findComponent('#{activity.id}-closeCmd')}.click(= );;return false;" > render=3D"#{tab.id}-tabsClient" > immediate=3D"true" /> > {code} > The error we got: > ---------------- > {code} > syntax error - [Stopper sur une erreur] - jsf.js.jsf?ln=3Djavax.faces (li= gne 1) > .click();return false; > {code} > The corresponding view source: > ------------------------------ > {code} > onclick=3D"jsf.util.chain(this,event,".click();return false;", > "RichFaces.ajax( \"tabbedForm:TAB_CLIENT\\u002D1\\u002Drcd\\u00= 2DcancelCreateCmd\",event,{\"incId\":\"1\"} )"= ;); > return false;" = > name=3D"tabbedForm:TAB_CLIENT-1-rcd-cancelCreateCmd" id=3D"tabbedForm:TAB= _CLIENT-1-rcd-cancelCreateCmd"> > {code} > The generated javaScript under firebug: > -------------------------------------- > {code} > function onclick(event) { > jsf.util.chain(this, event, ".click();return false;", "RichFaces.ajax(\"t= abbedForm:TAB_CLIENT\\u002D1\\u002Drcd\\u002DcancelCreateCmd\",event,{\"inc= Id\":\"1\"} )"); > return false; > } > {code} > If we hard code the Id instead of the calculated one we got following err= or: > {code} > uncaught exception: Syntax error, unrecognized expression: TAB_CLIENT-1-T= AB_RCD-closeCmd > Line 0 > {code} > The generated javaScript under firebug: > -------------------------------------- > {code} > function anonymous(event) { > rich: > findComponent("TAB_CLIENT-1-TAB_RCD-closeCmd").click(); > return false; > } > {code} > If we use directly jQuery: > {code} > > > > value=3D"#{msg['common.command.cancel']}" > onclick=3D"$('##{activity.id}-closeCmd').click();return fal= se;" > render=3D"desktopTabPanel" > immediate=3D"true" /> > {code} > {code} > missing ; before statement > http://localhost:12000/crm/javax.faces.resource/jsf.js.jsf?ln=3Djavax.fac= es > Line 1 > {code} > If we hardcode an existing static Id, we got the error as shown the scree= n capture: > {code} > function onclick(event) { > jsf.util.chain(this, event, "org.richfaces.component.UICommandButton(a)39= de2ca.click();", "RichFaces.ajax(\"tabbedForm:TAB_CLIENT\\u002D1\\u002Drcd\= \u002DcancelCreateCmd\",event,{\"incId\":\"1\"} )"); > return false; > } > {code} > {code} > value=3D"#{msg['common.command.cancel']}" > onclick=3D"#{rich:findComponent('qsearchClient')}.click();" > render=3D"#{tab.id}-tabsClient" > immediate=3D"true" />  > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2947153812956833551==-- From jira-events at lists.jboss.org Thu Mar 29 07:54:47 2012 Content-Type: multipart/mixed; boundary="===============2226072938123499286==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12110) [rich:contextMenu] contextmenu doesn't work anymore if an ajax request is fired while contextmenu is visible Date: Thu, 29 Mar 2012 07:54:47 -0400 Message-ID: <2058795180.40029.1333022087624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2226072938123499286== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Rene O created RF-12110: --------------------------- Summary: [rich:contextMenu] contextmenu doesn't work anymore i= f an ajax request is fired while contextmenu is visible Key: RF-12110 URL: https://issues.jboss.org/browse/RF-12110 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final Environment: Tomcat 7, myfaces-2.1.6, richfaces-4.2.0.Final and 4.= 2.1-SNAPSHOT Reporter: Rene O The example shows the problem: {code:title=3Dexample.xhtml} = JSF Test = Steps to reproduce the issue:

    1. right click to show context menu
    2. wait till context menu hides
    3. click button 'click me'
    4. right click to show context menu
    5. context menu is visible

    Now do the following
    1. right click to show context menu
    2. click button 'click me' before context menu hides
    3. right click to show context menu
    4. context menu doesn't work anymore...


    right click for context-menu Test =
    = {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2226072938123499286==-- From jira-events at lists.jboss.org Thu Mar 29 09:34:48 2012 Content-Type: multipart/mixed; boundary="===============4806858078855455874==" MIME-Version: 1.0 From: =?utf-8?q?Nicholas_Oxh=C3=B8j_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss?= =?utf-8?q?=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12111) Threading/performance issues with DocumentBuilder/ResponseWriterContentHandler Date: Thu, 29 Mar 2012 09:34:47 -0400 Message-ID: <4872397.40358.1333028087560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4806858078855455874== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Nicholas Oxh=C3=B8j created RF-12111: ----------------------------------- Summary: Threading/performance issues with DocumentBuilder/Res= ponseWriterContentHandler Key: RF-12111 URL: https://issues.jboss.org/browse/RF-12111 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 3.3.3.Final Reporter: Nicholas Oxh=C3=B8j Hi We have recently encountered some threading/performance issues with the way= DocumentBuilder is used in ResponseWriterContentHandler in RichFaces 3.3.3= . Upon investigation, we discovered that this issue was apparently already = reported in an "RF-10035 DocumentBuilder performance issue" and fixed in Ri= chFaces 3.3.1.SP3 on Jan. 31, 2011. See https://issues.jboss.org/browse/JBP= APP-6166 The problem is that these bug fixes, were apparently NOT carried forward to= the later branches (3.3.2 and 3.3.3). Was this just forgotten or is there a specific reason why these ServicePack= fixes were left out? Regards, Nicholas Weise Oxh=C3=B8j -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4806858078855455874==-- From jira-events at lists.jboss.org Thu Mar 29 10:19:47 2012 Content-Type: multipart/mixed; boundary="===============0268763902106807750==" MIME-Version: 1.0 From: Tanya Ruttenberg (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12112) inputText not putting in data from rich:popupPanel Date: Thu, 29 Mar 2012 10:19:47 -0400 Message-ID: <1217484082.40487.1333030787274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0268763902106807750== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Tanya Ruttenberg created RF-12112: ------------------------------------- Summary: inputText not putting in data from rich:popupPanel Key: RF-12112 URL: https://issues.jboss.org/browse/RF-12112 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.2.0.Final Environment: Windows Vista, EAP 6beta, eclipse indigo Reporter: Tanya Ruttenberg Fix For: 4.2.0.Final a rich:popupPanel containing h:inputText does not input the data for either= an a4j:commandButton or h:commandButton. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0268763902106807750==-- From jira-events at lists.jboss.org Thu Mar 29 10:21:47 2012 Content-Type: multipart/mixed; boundary="===============0240547070101641810==" MIME-Version: 1.0 From: Tanya Ruttenberg (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12112) inputText not putting in data from rich:popupPanel Date: Thu, 29 Mar 2012 10:21:47 -0400 Message-ID: <1117591853.40491.1333030907656.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1217484082.40487.1333030787274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0240547070101641810== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12112?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680343#com= ment-12680343 ] = Tanya Ruttenberg commented on RF-12112: --------------------------------------- My little richfaces-webapp was created by clicking on RichFaces Project in = the Create Projects section of JBoss Central view in eclipse. I didn't do = this from scratch. I'm uploading the source files and pom. = > inputText not putting in data from rich:popupPanel > -------------------------------------------------- > > Key: RF-12112 > URL: https://issues.jboss.org/browse/RF-12112 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: Windows Vista, EAP 6beta, eclipse indigo > Reporter: Tanya Ruttenberg > Labels: richfaces > Fix For: 4.2.0.Final > > > a rich:popupPanel containing h:inputText does not input the data for eith= er an a4j:commandButton or h:commandButton. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0240547070101641810==-- From jira-events at lists.jboss.org Thu Mar 29 10:39:47 2012 Content-Type: multipart/mixed; boundary="===============5142900120185230832==" MIME-Version: 1.0 From: Tanya Ruttenberg (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12112) inputText not putting in data from rich:popupPanel Date: Thu, 29 Mar 2012 10:39:47 -0400 Message-ID: <1118729409.40503.1333031987458.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1217484082.40487.1333030787274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5142900120185230832== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12112?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Tanya Ruttenberg updated RF-12112: ---------------------------------- Attachment: richfaces-tdr.zip contains sourcefiles and pom.xml = > inputText not putting in data from rich:popupPanel > -------------------------------------------------- > > Key: RF-12112 > URL: https://issues.jboss.org/browse/RF-12112 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: Windows Vista, EAP 6beta, eclipse indigo > Reporter: Tanya Ruttenberg > Labels: richfaces > Fix For: 4.2.0.Final > > Attachments: richfaces-tdr.zip > > > a rich:popupPanel containing h:inputText does not input the data for eith= er an a4j:commandButton or h:commandButton. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5142900120185230832==-- From jira-events at lists.jboss.org Thu Mar 29 11:15:48 2012 Content-Type: multipart/mixed; boundary="===============1072697833961466508==" MIME-Version: 1.0 From: Leo Higgins (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12113) rich:inputNumberSpinner minValue and maxValue being ignored after second request Date: Thu, 29 Mar 2012 11:15:48 -0400 Message-ID: <1286311086.40531.1333034148641.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1072697833961466508== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Leo Higgins created RF-12113: -------------------------------- Summary: rich:inputNumberSpinner minValue and maxValue being i= gnored after second request Key: RF-12113 URL: https://issues.jboss.org/browse/RF-12113 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.2.0.Final Environment: Windows 7 x64, Firefox/Waterfox v10.0.1, Chrome v17.0= .963.83 m, IE8 64-bit v8.0.7601.17514 Reporter: Leo Higgins When setting the value of the component to a value either below the specifi= ed minValue or above the specified maxValue, the component correctly sets t= he value to either the minValue or the maxValue. On a subsequent request, however, the component does not set the value to t= he minValue or the maxValue. This bug exists on all above browsers at the R= ichfaces showcase here: http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3DinputNu= mberSpinner&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1072697833961466508==-- From jira-events at lists.jboss.org Thu Mar 29 15:26:48 2012 Content-Type: multipart/mixed; boundary="===============1092091230265778288==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12111) Threading/performance issues with DocumentBuilder/ResponseWriterContentHandler Date: Thu, 29 Mar 2012 15:26:47 -0400 Message-ID: <84303719.41365.1333049207849.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 4872397.40358.1333028087560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1092091230265778288== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12111?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12111: ------------------------------- Fix Version/s: 3.Future = > Threading/performance issues with DocumentBuilder/ResponseWriterContentHa= ndler > -------------------------------------------------------------------------= ----- > > Key: RF-12111 > URL: https://issues.jboss.org/browse/RF-12111 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Reporter: Nicholas Oxh=C3=B8j > Fix For: 3.Future > > > Hi > We have recently encountered some threading/performance issues with the w= ay DocumentBuilder is used in ResponseWriterContentHandler in RichFaces 3.3= .3. Upon investigation, we discovered that this issue was apparently alread= y reported in an "RF-10035 DocumentBuilder performance issue" and fixed in = RichFaces 3.3.1.SP3 on Jan. 31, 2011. See https://issues.jboss.org/browse/J= BPAPP-6166 > The problem is that these bug fixes, were apparently NOT carried forward = to the later branches (3.3.2 and 3.3.3). > Was this just forgotten or is there a specific reason why these ServicePa= ck fixes were left out? > Regards, > Nicholas Weise Oxh=C3=B8j -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1092091230265778288==-- From jira-events at lists.jboss.org Thu Mar 29 15:26:48 2012 Content-Type: multipart/mixed; boundary="===============2636355000883029010==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12104) BeanValidator: label not handled using MessageFactory Date: Thu, 29 Mar 2012 15:26:48 -0400 Message-ID: <539814225.41367.1333049208061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1962209716.36295.1332920747471.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2636355000883029010== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12104?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12104: ------------------------------- Fix Version/s: 3.Future = > BeanValidator: label not handled using MessageFactory > ----------------------------------------------------- > > Key: RF-12104 > URL: https://issues.jboss.org/browse/RF-12104 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: Liferay 5.2.4, Portlet 2.0, JSF 1.2 > Reporter: Markus Staab > Fix For: 3.Future > > > The BeanValidator, in contrast to most JSF validators e.g. LongRangeValid= ator, does not use the MessageFactory to handle validation error message. > see LongRangeValidators' validate-method: > {code} > .... > throw new ValidatorException(MessageFactory.getMe= ssage > (context, > NOT_IN_RANGE_MESSAGE_ID, > stringValue(component, minimum, context= ), > stringValue(component, maximum, context= ), > MessageFactory.getLabel(context, compon= ent))); > ... > {code} > Therefore error-message of a BeanValidator will neither prepand the Strin= g which is provided from the components' label-attribute nor the components= ' client id. > see BeanValidator's validate & extractMessages-method > {code} > .... > private Collection extractMessages(Set> violations) { > Collection messages =3D null; > if (null !=3D violations && violations.size() > 0) { > messages =3D new ArrayList(violations.size()); > for (ConstraintViolation constraintViolation : viola= tions) { > messages.add(constraintViolation.getMessage()); > } > } > return messages; > } > ... > {code} > All error messages are taken 1:1 from the BeanValidator. > While e.g. the error-message of LongRangeValidtor looks like "Startdate: = Value is greater than allowable maximum of ''{0}''." the error looks like "= Value is greater than allowable maximum of ''{0}''.". > The reference to the component which violates the rule is not shown. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2636355000883029010==-- From jira-events at lists.jboss.org Thu Mar 29 15:26:49 2012 Content-Type: multipart/mixed; boundary="===============2716639286046340990==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Thu, 29 Mar 2012 15:26:49 -0400 Message-ID: <840461084.41372.1333049209575.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 69599813.32096.1332784967357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2716639286046340990== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12679745#com= ment-12679745 ] = Brian Leathem edited comment on RF-12092 at 3/29/12 3:26 PM: ------------------------------------------------------------- I'm able to reproduce it on... RichFaces 4.2.0.CR1 MyFaces MyFaces 2.0.6 JBoss 6.0.0.Final JVM 1.7_01 IE 9.0.8 FF 3.6.16 Chrome 17.0.963.83 m I'm using the following code... {code} {code} = was (Author: RobertGary1): I'm able to reproduce it on... RichFaces 4.2.0.CR1 MyFaces MyFaces 2.0.6 JBoss 6.0.0.Final JVM 1.7_01 IE 9.0.8 FF 3.6.16 Chrome 17.0.963.83 m I'm using the following code... = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Robert Gary > Assignee: Brian Leathem > Attachments: a4jPollIssue.war > > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2716639286046340990==-- From jira-events at lists.jboss.org Thu Mar 29 15:35:48 2012 Content-Type: multipart/mixed; boundary="===============5343128658267656069==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-9324) a4j:queue event handlers doesn't work at all Date: Thu, 29 Mar 2012 15:35:48 -0400 Message-ID: <2083740640.41390.1333049748221.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 137221601.9097.1283870812840.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5343128658267656069== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9324?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-9324. ------------------------------- Assignee: (was: Ilya Shaikovsky) Fix Version/s: (was: 4.Future) Resolution: Duplicate Issue = > a4j:queue event handlers doesn't work at all > -------------------------------------------- > > Key: RF-9324 > URL: https://issues.jboss.org/browse/RF-9324 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.0.0.Milestone2 > Environment: Java(TM) SE Runtime Environment 1.6.0_20-b02 > Linux 2.6.31-22-generic > Mojarra 2.0.2-FCS > Firefox 3.6.3 > Apache Tomcat 6.0.26 > core-demo : M2 https://repository.jboss.org/nexus/content/groups/public/o= rg/richfaces/examples/core-demo/4.0.0.20100826-M2/core-demo-4.0.0.20100826-= M2-tomcat6.war > http://localhost:8080/core-demo/queue.jsf > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > I modified queue.html sample to look like this: > > > > > > > It seems queue is working, because it handles multiple events and trigger= s only one request, but alert is not shown on completion. > The same for all other event handlers. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5343128658267656069==-- From jira-events at lists.jboss.org Thu Mar 29 15:37:47 2012 Content-Type: multipart/mixed; boundary="===============0829383832656545395==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Thu, 29 Mar 2012 15:37:47 -0400 Message-ID: <98263931.41394.1333049867338.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 69599813.32096.1332784967357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0829383832656545395== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12092: ---------------------------------- Assignee: Pavol Pitonak (was: Brian Leathem) Pavol, can you please try agin to re-produce in metamer, with the user-prov= ided source? = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Robert Gary > Assignee: Pavol Pitonak > Attachments: a4jPollIssue.war > > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0829383832656545395==-- From jira-events at lists.jboss.org Thu Mar 29 15:39:47 2012 Content-Type: multipart/mixed; boundary="===============1360221399210590459==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12028) a4j:outputPanel - Error message enhancement Date: Thu, 29 Mar 2012 15:39:47 -0400 Message-ID: <901635050.41399.1333049987470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1368665910.75459.1331155416313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1360221399210590459== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12028?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680435#com= ment-12680435 ] = Brian Leathem commented on RF-12028: ------------------------------------ Understood, what I'm asking is to see what error message you get with a JSF= standard component, when you reference a non existing attribute. Somethin= g like: {code} {code} = > a4j:outputPanel - Error message enhancement > ------------------------------------------- > > Key: RF-12028 > URL: https://issues.jboss.org/browse/RF-12028 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: JSF / Mojarra 2.1.6 - cssparser-0.9.6 - guava-11.0.1= - hibernate-validator-4.2.0.Final - springframework 3.0.6.RELEASE - richfa= ces--4.2.0.Final - sac-1.3 - FireFox 10 - WAS 8.0.0.1 / Windows 7 > Reporter: Jean ANDRE > Labels: waiting_on_user > > When we set an non existing attribute on a4j:outputPanel, for eg. "class"= because we have converted a div to a a4j:outputPanel, the error message di= splayed at the user interface does not inform the developer about the fault= y component. The message we got is only : > > Error 500: javax.servlet.ServletException: Setter not found for propert= y class = > This error message is not very helpful to debug.... ;) > {code} > layout=3D"block" > class=3D"dark-box" > rendered=3D"#{productBean.expanded eq true}"> > {code} > We should have, as usual, the line of the XHTML file or the component nam= e, the line number, well something more accurate that really help to go fas= ter. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1360221399210590459==-- From jira-events at lists.jboss.org Thu Mar 29 16:06:48 2012 Content-Type: multipart/mixed; boundary="===============0527907425594744835==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12028) a4j:outputPanel - Error message enhancement Date: Thu, 29 Mar 2012 16:06:47 -0400 Message-ID: <423714547.41444.1333051607459.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1368665910.75459.1331155416313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0527907425594744835== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12028?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680439#com= ment-12680439 ] = Jean ANDRE commented on RF-12028: --------------------------------- Well, - for a div -> silent, ignore, no message - for a div with duplicate attribute -> Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 30] L'attribut "class" a d=C3=A9j=C3=A0 =C3=A9t= =C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "div". - for a h:message -> silent, ignore, no message Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 49] L'attribut "globalOnly" a d=C3=A9j=C3=A0 =C3= =A9t=C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "h:messages" - for h:panelGrid -> silent, ignore, no message - for h:panelGrid with duplicate attribute -> Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 57] L'attribut "columns" a d=C3=A9j=C3=A0 =C3=A9t= =C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "h:panelGrid". = To summarize: 1) an invalid attribute is ignore, server does not stop and no message app= ears on the console 2) an duplicate valid attribute trigger an HTTP error 500. Line number and= attribute name and tag are clearly identified. 3) Note also, from our experience, MyFaces implementation is more strict a= nd reports more errors at the console level. >From my side, I prefer to have a warning message at the console/log for th= ese trivial errors, it helps to maintain a clean code since even the IDE do= es not detect such error. = = > a4j:outputPanel - Error message enhancement > ------------------------------------------- > > Key: RF-12028 > URL: https://issues.jboss.org/browse/RF-12028 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: JSF / Mojarra 2.1.6 - cssparser-0.9.6 - guava-11.0.1= - hibernate-validator-4.2.0.Final - springframework 3.0.6.RELEASE - richfa= ces--4.2.0.Final - sac-1.3 - FireFox 10 - WAS 8.0.0.1 / Windows 7 > Reporter: Jean ANDRE > Labels: waiting_on_user > > When we set an non existing attribute on a4j:outputPanel, for eg. "class"= because we have converted a div to a a4j:outputPanel, the error message di= splayed at the user interface does not inform the developer about the fault= y component. The message we got is only : > > Error 500: javax.servlet.ServletException: Setter not found for propert= y class = > This error message is not very helpful to debug.... ;) > {code} > layout=3D"block" > class=3D"dark-box" > rendered=3D"#{productBean.expanded eq true}"> > {code} > We should have, as usual, the line of the XHTML file or the component nam= e, the line number, well something more accurate that really help to go fas= ter. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0527907425594744835==-- From jira-events at lists.jboss.org Thu Mar 29 16:08:47 2012 Content-Type: multipart/mixed; boundary="===============2086744879309446644==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12028) a4j:outputPanel - Error message enhancement Date: Thu, 29 Mar 2012 16:08:47 -0400 Message-ID: <168261917.41449.1333051727602.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1368665910.75459.1331155416313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2086744879309446644== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12028?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680439#com= ment-12680439 ] = Jean ANDRE edited comment on RF-12028 at 3/29/12 4:07 PM: ---------------------------------------------------------- Well, - for a div -> silent, ignore, no message - for a div with duplicate attribute -> Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 30] L'attribut "class" a d=C3=A9j=C3=A0 =C3=A9t= =C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "div". - for a h:message -> silent, ignore, no message Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 49] L'attribut "globalOnly" a d=C3=A9j=C3=A0 =C3= =A9t=C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "h:messages" - for h:panelGrid -> silent, ignore, no message - for h:panelGrid with duplicate attribute -> Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 57] L'attribut "columns" a d=C3=A9j=C3=A0 =C3=A9t= =C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "h:panelGrid". = To summarize: 1) an invalid attribute is ignored, server does not stop and no message ap= pears at the console 2) an duplicate valid attribute trigger an HTTP error 500. Line number and= attribute name and tag are clearly identified. 3) Note also, from our experience, MyFaces implementation is more strict a= nd reports more errors at the console level. >From my side, I prefer to have a warning message at the console/log for th= ese trivial errors, it helps to maintain a clean code since even the IDE do= es not detect such error. = = was (Author: jorelia64): Well, - for a div -> silent, ignore, no message - for a div with duplicate attribute -> Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 30] L'attribut "class" a d=C3=A9j=C3=A0 =C3=A9t= =C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "div". - for a h:message -> silent, ignore, no message Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 49] L'attribut "globalOnly" a d=C3=A9j=C3=A0 =C3= =A9t=C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "h:messages" - for h:panelGrid -> silent, ignore, no message - for h:panelGrid with duplicate attribute -> Error 500: javax.servlet.ServletException: Error Parsing /pages/clie= nt/infoClient.xhtml: Error Traced[line: 57] L'attribut "columns" a d=C3=A9j=C3=A0 =C3=A9t= =C3=A9 indiqu=C3=A9 pour l'=C3=A9l=C3=A9ment "h:panelGrid". = To summarize: 1) an invalid attribute is ignore, server does not stop and no message app= ears on the console 2) an duplicate valid attribute trigger an HTTP error 500. Line number and= attribute name and tag are clearly identified. 3) Note also, from our experience, MyFaces implementation is more strict a= nd reports more errors at the console level. >From my side, I prefer to have a warning message at the console/log for th= ese trivial errors, it helps to maintain a clean code since even the IDE do= es not detect such error. = = > a4j:outputPanel - Error message enhancement > ------------------------------------------- > > Key: RF-12028 > URL: https://issues.jboss.org/browse/RF-12028 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: JSF / Mojarra 2.1.6 - cssparser-0.9.6 - guava-11.0.1= - hibernate-validator-4.2.0.Final - springframework 3.0.6.RELEASE - richfa= ces--4.2.0.Final - sac-1.3 - FireFox 10 - WAS 8.0.0.1 / Windows 7 > Reporter: Jean ANDRE > Labels: waiting_on_user > > When we set an non existing attribute on a4j:outputPanel, for eg. "class"= because we have converted a div to a a4j:outputPanel, the error message di= splayed at the user interface does not inform the developer about the fault= y component. The message we got is only : > > Error 500: javax.servlet.ServletException: Setter not found for propert= y class = > This error message is not very helpful to debug.... ;) > {code} > layout=3D"block" > class=3D"dark-box" > rendered=3D"#{productBean.expanded eq true}"> > {code} > We should have, as usual, the line of the XHTML file or the component nam= e, the line number, well something more accurate that really help to go fas= ter. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2086744879309446644==-- From jira-events at lists.jboss.org Thu Mar 29 16:10:47 2012 Content-Type: multipart/mixed; boundary="===============2381678543500034885==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Thu, 29 Mar 2012 16:10:47 -0400 Message-ID: <1717636535.41467.1333051847470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2381678543500034885== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12032?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680440#com= ment-12680440 ] = Brian Leathem commented on RF-12032: ------------------------------------ Surely you have access to the server logs in your development and QE applic= ation development phases? Have you tried adding an tag to see if any FacesMessages are= being queued that are not being displayed? = > rich:calendar : Ajax request - Error message enhancement - sql.Date > ------------------------------------------------------------------- > > Key: RF-12032 > URL: https://issues.jboss.org/browse/RF-12032 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richface= s-4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. > Reporter: Jean ANDRE > Labels: waiting_on_user > Attachments: rich_calendar_errorMsg_Enhancement.png > > > When a backing-bean have a type of sql.Date which is mapped to a rich:cal= endar, there is an conversion error due to the rich:calendar component uses= util.Date by default. Unfortunately, we do not see any error message at th= e screen when an ajax request is sent and returned back to us. > What we got, and thanks to Firebug, is the text below as an answer from o= ur Ajax request POST. Nothing is rendered at the screen and the method of t= he backing bean is not called. > {code} > > class javax.faces.component.UpdateMo= delException > {code} > Our code looks like this (we remove unecessary field and decoration): > {code} > > > > > value=3D"#{msg['common.command.add.phone']}" > action=3D"#{createClientController.doAddPhone}"> > > > > > > > value=3D"#{phoneBean.effectiveDate}" > popup=3D"true" > showApplyButton=3D"false" > enableManualInput=3D"true" > datePattern=3D"#{msg['client.date.format']}" > inputSize=3D"12" > styleClass=3D"calendar"> > > > > > > > = > {code} > Is is possible to have a message returned back to the UI??? or is there a= way to handle this error properly? > Other information > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The form is inside a dynamic tab - Fragment are also include dynamically = - we use c:if et subView as shown below: > {code} > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2381678543500034885==-- From jira-events at lists.jboss.org Thu Mar 29 16:12:47 2012 Content-Type: multipart/mixed; boundary="===============6230382183025789934==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12040) Multi-form document - command button (submit) does not work after rendering Date: Thu, 29 Mar 2012 16:12:47 -0400 Message-ID: <735371204.41484.1333051967322.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 375257168.7025.1331658768095.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6230382183025789934== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12040?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem closed RF-12040. ------------------------------ Labels: (was: waiting_on_user) Resolution: Rejected Upstream issue = > Multi-form document - command button (submit) does not work after renderi= ng > -------------------------------------------------------------------------= -- > > Key: RF-12040 > URL: https://issues.jboss.org/browse/RF-12040 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - sac-1.3 = - Windows 7 - FireFox 10 - RichFaces 4.2 Final > Reporter: Jean ANDRE > Attachments: NestedWebWithMenu.zip > > > We have one page that contains two forms. The first form contain a menus = bar (ajax switchType) while the second contains a tabPanel (also in ajax sw= itchType). When a user select a menu, we select the corresponding tab that = contains a submit button. Once the tab is selected, the submit button does = not work. We have to click twice for submitting. > # If we move the menu bar inside the second forms, it is working. = > # If we set the menu bar in client switchType, selecting the menu doesn't= do anything. > # If we set the menu bar in server switchType it's working. > As the rendering is well executed, the submit button should works but is = not whatever we set as render=3D"@all, or any valid id". > We have prepared a small application that demonstrates the case. This is = a simple but realistic application. Edit the index.xhtml to play with the m= enu. Let us know if we doing something wrong. > Note also that the JIRA JAVASERVERFACES-2016 was reopened :[JIRA] Reopene= d: (JAVASERVERFACES-2016) Resources not loaded when using a dynamic ui:inlc= lude and rendered via ajax > [ http://java.net/jira/browse/JAVASERVERFACES-2016?page=3Dcom.atlassian.j= ira.plugin.system.issuetabpanels:all-tabpanel ] > {code:title=3DRelevant Facelet markup} > > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:c=3D"http://java.sun.com/jsp/jstl/core" > template=3D"/templates/basePage.xhtml"> > > > > > > > > > > > > > > > > > > > > > > > label=3D"#{msg['menu.item.one.items.management']}" > action=3D"#{desktopController.doActivateTabItems}" > render=3D"desktopTabs" /> > > > > >
    >
    > > > > > > > > switchType=3D"ajax" > headerPosition=3D"top" > activeItem=3D"#{desktopController.activeTab}" > itemChangeListener=3D"#{desktopController.doItemChangeListener}" > immediate=3D"true"> > > > > > #1 > > > > > > > > > > value=3D"#{msg[desktopController.togglePanelLabel]}" > actionListener=3D"#{desktopController.doToggleTabContent}" > render=3D"toggleTabContent"> > >
    >
    > > > > > > > > > > > > >
    >
    > > > > > > > > > styleClass=3D"closeButton" > onclick=3D"closeTab('#{tab.id}');event.stopPropagation();" /> > > > > > > > > > >
    >
    > > > > > > > > > > > > >
    > > > >
    > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6230382183025789934==-- From jira-events at lists.jboss.org Thu Mar 29 16:14:48 2012 Content-Type: multipart/mixed; boundary="===============1043786983859701124==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12063) rich:notifyMessages not displaying error from valueChangeListener Date: Thu, 29 Mar 2012 16:14:48 -0400 Message-ID: <1922261422.41502.1333052088162.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 71281469.18246.1332180647276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1043786983859701124== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12063?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12678570#com= ment-12678570 ] = Brian Leathem edited comment on RF-12063 at 3/29/12 4:13 PM: ------------------------------------------------------------- Clicking into and out of the input should cause the value change listener t= o fire, however no message appears on the screen. Simply adding a commandButton, an= d copying the message generation code from the value change listener into an action= =3D method and clicking the button will cause a notifyMessage to appear on screen. {code} {code} {code:title=3DBean.java} @Named @ViewScoped public class Bean implements Serializable { public void testVcl(ValueChangeEvent event) { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); } public String testAction() { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); return null; } public static FacesMessage getFacesMessage(String msgKey) { FacesMessage message =3D Messages.getMessage("messages", msgKey, null); return message; } {code} {code:title=3DMessages.java} package uk.co.myproj.test; /** * * @author Brendan Healey * copied from Core JSF Geary/Horstmann p249 */ import java.text.MessageFormat; import java.util.Locale; import java.util.MissingResourceException; import java.util.ResourceBundle; import javax.faces.application.Application; import javax.faces.application.FacesMessage; import javax.faces.component.UIViewRoot; import javax.faces.context.FacesContext; public class Messages { public static FacesMessage getMessage(String bundleName, String resourc= eId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); String summary =3D getString(appBundle, bundleName, resourceId, locale, loader, params); if (summary =3D=3D null) { summary =3D "???" + resourceId + "???"; } String detail =3D getString(appBundle, bundleName, resourceId + "_d= etail", locale, loader, params); return new FacesMessage(summary, detail); } public static String getString(String bundle, String resourceId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); return getString(appBundle, bundle, resourceId, locale, loader, par= ams); } public static String getString(String bundle1, String bundle2, String resourceId, Locale locale, ClassLoader loader, Object[] params) { String resource =3D null; ResourceBundle bundle; if (bundle1 !=3D null) { bundle =3D ResourceBundle.getBundle(bundle1, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { bundle =3D ResourceBundle.getBundle(bundle2, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { return null; // no match } if (params =3D=3D null) { return resource; } MessageFormat formatter =3D new MessageFormat(resource, locale); return formatter.format(params); } public static Locale getLocale(FacesContext context) { Locale locale =3D null; UIViewRoot viewRoot =3D context.getViewRoot(); if (viewRoot !=3D null) { locale =3D viewRoot.getLocale(); } if (locale =3D=3D null) { locale =3D Locale.getDefault(); } return locale; } public static ClassLoader getClassLoader() { ClassLoader loader =3D Thread.currentThread().getContextClassLoader= (); if (loader =3D=3D null) { loader =3D ClassLoader.getSystemClassLoader(); } return loader; } } {code} = was (Author: healeyb): Clicking into and out of the input should cause the value change listen= er to fire, however no message appears on the screen. Simply adding a commandButton, an= d copying the message generation code from the value change listener into an action= =3D method and clicking the button will cause a notifyMessage to appear on screen. Bean.java --------- @Named @ViewScoped public class Bean implements Serializable { public void testVcl(ValueChangeEvent event) { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); } public String testAction() { //Log.log("testVcl"); FacesMessage message =3D getFacesMessage("helloText"); message.setSeverity(FacesMessage.SEVERITY_ERROR); FacesContext.getCurrentInstance().addMessage(null, message); return null; } public static FacesMessage getFacesMessage(String msgKey) { FacesMessage message =3D Messages.getMessage("messages", msgKey, null); return message; } Messages.java ------------- package uk.co.myproj.test; /** * * @author Brendan Healey * copied from Core JSF Geary/Horstmann p249 */ import java.text.MessageFormat; import java.util.Locale; import java.util.MissingResourceException; import java.util.ResourceBundle; import javax.faces.application.Application; import javax.faces.application.FacesMessage; import javax.faces.component.UIViewRoot; import javax.faces.context.FacesContext; public class Messages { public static FacesMessage getMessage(String bundleName, String resourc= eId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); String summary =3D getString(appBundle, bundleName, resourceId, locale, loader, params); if (summary =3D=3D null) { summary =3D "???" + resourceId + "???"; } String detail =3D getString(appBundle, bundleName, resourceId + "_d= etail", locale, loader, params); return new FacesMessage(summary, detail); } public static String getString(String bundle, String resourceId, Object[] params) { FacesContext context =3D FacesContext.getCurrentInstance(); Application app =3D context.getApplication(); String appBundle =3D app.getMessageBundle(); Locale locale =3D getLocale(context); ClassLoader loader =3D getClassLoader(); return getString(appBundle, bundle, resourceId, locale, loader, par= ams); } public static String getString(String bundle1, String bundle2, String resourceId, Locale locale, ClassLoader loader, Object[] params) { String resource =3D null; ResourceBundle bundle; if (bundle1 !=3D null) { bundle =3D ResourceBundle.getBundle(bundle1, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { bundle =3D ResourceBundle.getBundle(bundle2, locale, loader); if (bundle !=3D null) { try { resource =3D bundle.getString(resourceId); } catch (MissingResourceException ex) { } } } if (resource =3D=3D null) { return null; // no match } if (params =3D=3D null) { return resource; } MessageFormat formatter =3D new MessageFormat(resource, locale); return formatter.format(params); } public static Locale getLocale(FacesContext context) { Locale locale =3D null; UIViewRoot viewRoot =3D context.getViewRoot(); if (viewRoot !=3D null) { locale =3D viewRoot.getLocale(); } if (locale =3D=3D null) { locale =3D Locale.getDefault(); } return locale; } public static ClassLoader getClassLoader() { ClassLoader loader =3D Thread.currentThread().getContextClassLoader= (); if (loader =3D=3D null) { loader =3D ClassLoader.getSystemClassLoader(); } return loader; } } = > rich:notifyMessages not displaying error from valueChangeListener > ----------------------------------------------------------------- > > Key: RF-12063 > URL: https://issues.jboss.org/browse/RF-12063 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.2.0.Final > Environment: Mojarra 2.1.7, RF 4.2.0.Final, Windows 7, Glassfish = 3.1.2, Chrome browser. > Reporter: Brendan Healey > > I have a global notifyMessages in a template . > I log a global error in the usual way from a value change listener (proce= ss validations > phase): > FacesMessage message =3D getFacesMessage(errKey); > message.setSeverity(FacesMessage.SEVERITY_ERROR); > FacesContext.getCurrentInstance().addMessage(null, message); > but the error never appears. If I have an h:messages on the page which is= ajax > rendered the message appears ok. > Regards, > Brendan. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1043786983859701124==-- From jira-events at lists.jboss.org Thu Mar 29 16:14:49 2012 Content-Type: multipart/mixed; boundary="===============2989242821166559285==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12063) rich:notifyMessages not displaying error from valueChangeListener Date: Thu, 29 Mar 2012 16:14:49 -0400 Message-ID: <1346223673.41516.1333052089710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 71281469.18246.1332180647276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2989242821166559285== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12063?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12063: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, please assess and schedule accordingly = > rich:notifyMessages not displaying error from valueChangeListener > ----------------------------------------------------------------- > > Key: RF-12063 > URL: https://issues.jboss.org/browse/RF-12063 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.2.0.Final > Environment: Mojarra 2.1.7, RF 4.2.0.Final, Windows 7, Glassfish = 3.1.2, Chrome browser. > Reporter: Brendan Healey > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > I have a global notifyMessages in a template . > I log a global error in the usual way from a value change listener (proce= ss validations > phase): > FacesMessage message =3D getFacesMessage(errKey); > message.setSeverity(FacesMessage.SEVERITY_ERROR); > FacesContext.getCurrentInstance().addMessage(null, message); > but the error never appears. If I have an h:messages on the page which is= ajax > rendered the message appears ok. > Regards, > Brendan. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2989242821166559285==-- From jira-events at lists.jboss.org Thu Mar 29 16:18:47 2012 Content-Type: multipart/mixed; boundary="===============4661315492622951079==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12081) Problem with RichEditor RF 4.2.0 Date: Thu, 29 Mar 2012 16:18:47 -0400 Message-ID: <1178087141.41541.1333052327306.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1278339548.27975.1332502007395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4661315492622951079== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12081?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680447#com= ment-12680447 ] = Brian Leathem commented on RF-12081: ------------------------------------ Could you post the facelet file, and the generated html? I suspect you are= including some CSS files/rules that are styling the links of the editor. = > Problem with RichEditor RF 4.2.0 > -------------------------------- > > Key: RF-12081 > URL: https://issues.jboss.org/browse/RF-12081 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: phelen harg > Labels: waiting_on_user > Attachments: Sem t=C3=ADtulo.jpg > > > I'm migrating my Application from RF 3.3.3 to RF 4.2.0. But = now i'm facing a problem with the richEditor. When I load the the component= , all the links in application receive a background like this picture: = > Analizing the code with Firebug, I found the problem in the = CSS of RichEditor. /org.richfaces.resources/javax.faces.resource/org.richfa= ces.ckeditor/skins/richfaces/editor.ecss?db=3DeAHj0yqqAgACGAEl > If I erase the CSS the backgroud disappear. There is some = kind of workaround for this? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4661315492622951079==-- From jira-events at lists.jboss.org Thu Mar 29 16:24:48 2012 Content-Type: multipart/mixed; boundary="===============3151808089239768668==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12084) Richfaces 4.2 when inside dont work and causes 'identifier resolved to null' Date: Thu, 29 Mar 2012 16:24:47 -0400 Message-ID: <986350853.41600.1333052687898.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1382382061.29574.1332701569056.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3151808089239768668== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12084?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12084: ------------------------------- Fix Version/s: 4.3-Tracking Forum Reference: https://community.jboss.org/message/723859, https://co= mmunity.jboss.org/thread/196867 (was: https://community.jboss.org/message/= 723859, https://community.jboss.org/thread/196867) = > Richfaces 4.2 when inside dont work and causes '= identifier resolved to null' > -------------------------------------------------------------------------= ---------------------------- > > Key: RF-12084 > URL: https://issues.jboss.org/browse/RF-12084 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.2.0.Final > Environment: Windows Vista, Firefox 11, Richfaces 4.2 Final, Moja= rra 2.1.7, Tomcat 7.0.26 > Reporter: Ivan Costa > Labels: richfaces > Fix For: 4.3-Tracking > > > a4j:commandLink or a4j:ajax tags inside ui:fragment causes 'identifier re= solved to null', = > but h:commandLink + f:ajax (both from Mojarra) works perfectly fine! > The problem is described here > https://community.jboss.org/message/723859 > and here: > https://community.jboss.org/thread/196867 > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3151808089239768668==-- From jira-events at lists.jboss.org Thu Mar 29 16:26:48 2012 Content-Type: multipart/mixed; boundary="===============6510238311592947136==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12094) Provide a feature to rich:dataTable that reflects the default sort order on a column (according to the JPQL statement that produced the list items) Date: Thu, 29 Mar 2012 16:26:48 -0400 Message-ID: <686654701.41618.1333052808590.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 815335129.33287.1332835127644.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6510238311592947136== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12094?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12094: ------------------------------- Fix Version/s: 4.3-Tracking Forum Reference: https://community.jboss.org/thread/197512 (was: https= ://community.jboss.org/thread/197512) = > Provide a feature to rich:dataTable that reflects the default sort order = on a column (according to the JPQL statement that produced the list items) > -------------------------------------------------------------------------= -------------------------------------------------------------------------- > > Key: RF-12094 > URL: https://issues.jboss.org/browse/RF-12094 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Reporter: Karsten Wutzke > Fix For: 4.3-Tracking > > > A rich:dataTable list is usually sorted by one or several columns accordi= ng to the JPQL or other statement that produced the list. > I would be worthwhile to have the rich:dataTable reflect the default orde= ring state by providing an attribute to rich:column that would set the resp= ective up or down sort arrow instead of the default up-down arrow. By defau= lt, e.g. on page reload, if nothing was remembered by the browser, rich:dat= aTable defaults to the dual up-down arrow for all rich:column's. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6510238311592947136==-- From jira-events at lists.jboss.org Thu Mar 29 16:26:48 2012 Content-Type: multipart/mixed; boundary="===============5265121143385460380==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12094) Provide a feature to rich:dataTable that reflects the default sort order on a column (according to the JPQL statement that produced the list items) Date: Thu, 29 Mar 2012 16:26:48 -0400 Message-ID: <1005111210.41620.1333052808745.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 815335129.33287.1332835127644.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5265121143385460380== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12094?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12094: ------------------------------- Component/s: component-tables Forum Reference: https://community.jboss.org/thread/197512 (was: https= ://community.jboss.org/thread/197512) = > Provide a feature to rich:dataTable that reflects the default sort order = on a column (according to the JPQL statement that produced the list items) > -------------------------------------------------------------------------= -------------------------------------------------------------------------- > > Key: RF-12094 > URL: https://issues.jboss.org/browse/RF-12094 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Reporter: Karsten Wutzke > Fix For: 4.3-Tracking > > > A rich:dataTable list is usually sorted by one or several columns accordi= ng to the JPQL or other statement that produced the list. > I would be worthwhile to have the rich:dataTable reflect the default orde= ring state by providing an attribute to rich:column that would set the resp= ective up or down sort arrow instead of the default up-down arrow. By defau= lt, e.g. on page reload, if nothing was remembered by the browser, rich:dat= aTable defaults to the dual up-down arrow for all rich:column's. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5265121143385460380==-- From jira-events at lists.jboss.org Thu Mar 29 16:26:49 2012 Content-Type: multipart/mixed; boundary="===============5275766316886989145==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12096) Push: there is delay between repeated subscribtion Date: Thu, 29 Mar 2012 16:26:48 -0400 Message-ID: <940911867.41622.1333052808811.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 298994236.33589.1332842927828.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5275766316886989145== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12096?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12096: ------------------------------- Fix Version/s: 4.3-Tracking = > Push: there is delay between repeated subscribtion > -------------------------------------------------- > > Key: RF-12096 > URL: https://issues.jboss.org/browse/RF-12096 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > When you have conditionally rendered {{a4j:push}} component and you disab= le it, > then it stops to receive push events. > Once you enable it, there is delay before it will start to receive events= again. > Sample code for reproduction: > {code:xml} > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xmlns:f=3D"http://java.sun.com/jsf/core" xmlns:a4j=3D"http://richface= s.org/a4j"> > > > > > >



    > > > = > = > > > > = > = > = > > > > > > > = >
    > = > > #{richBean.date} > > = >
    >
    >
    >
    > > {code} > {code:java} > package demo; > import java.util.Date; > import javax.faces.bean.ManagedBean; > import org.richfaces.application.push.MessageException; > import org.richfaces.application.push.TopicKey; > import org.richfaces.application.push.TopicsContext; > @ManagedBean > public class RichBean { > public Date getDate() { > return new Date(); > } > public void push() throws MessageException { > TopicKey topicKey =3D new TopicKey("sampleAddress"); > TopicsContext topicsContext =3D TopicsContext.lookup(); > topicsContext.publish(topicKey, new Date().toString()); > System.out.println("push event"); > } > } > {code} > Steps to reproduce: > 1. open the sample page (the "subscribed" message appears) > 2. click on Push! button (the date is changed) > 3. check the checkbox > 4. click on Push! button (the date is not changed anymore) > 5. uncheck the checkbox (the "subscribed" message appears again) > 6. click on Push! > EXPECTED: the date should be changed > ACTUAL: the date is not changed > If you will wait for some seconds, the Push! button will cause change of = the date, > but in this delay, client can lose data updates (since "subscribed" event= does not show that the client is starting to receive data). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5275766316886989145==-- From jira-events at lists.jboss.org Thu Mar 29 16:28:47 2012 Content-Type: multipart/mixed; boundary="===============0251671164920269286==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12097) Richfaces 4.2.0 invalid css entry for *.rf-insl-tt Date: Thu, 29 Mar 2012 16:28:47 -0400 Message-ID: <772594337.41628.1333052927373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 771471005.33626.1332844067523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0251671164920269286== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12097?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12097: ------------------------------- Fix Version/s: 4.3-Tracking = > Richfaces 4.2.0 invalid css entry for *.rf-insl-tt > -------------------------------------------------- > > Key: RF-12097 > URL: https://issues.jboss.org/browse/RF-12097 > Project: RichFaces > Issue Type: Bug > Components: skinning > Affects Versions: 4.2.0.Final > Environment: Tomcat 6.0.35 > Richfaces 4.2.0 > Windows 7 > Reporter: Stephan Meisinger > Labels: CSS > Fix For: 4.3-Tracking > > > a invalid css syntax for *.rf-insl-tt for PackedCompressed/DEFAULT/packed= /packed.css > *.rf-insl-tt{position:absolute;display:none;padding:2px;border:1px solid = "#E5973E ";background-color:#FAE6B0;} > should be > *.rf-insl-tt{position:absolute;display:none;padding:2px;border:1px solid = #E5973E;background-color:#FAE6B0;} > see http://www.w3.org/TR/CSS1/#border and http://www.w3.org/TR/CSS1/#colo= r-units -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0251671164920269286==-- From jira-events at lists.jboss.org Thu Mar 29 16:30:47 2012 Content-Type: multipart/mixed; boundary="===============8761392462321600525==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12098) PickList doesn't accept comma in string value Date: Thu, 29 Mar 2012 16:30:47 -0400 Message-ID: <1172858391.41631.1333053047387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1104299453.33800.1332847428203.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8761392462321600525== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12098?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12098: ------------------------------- Fix Version/s: 4.3-Tracking = > PickList doesn't accept comma in string value > --------------------------------------------- > > Key: RF-12098 > URL: https://issues.jboss.org/browse/RF-12098 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.2.0.Final > Reporter: Stefan Risto > Fix For: 4.3-Tracking > > > The rich:pickList Component does not handle values containing commas. > I used a converter and in the getAsString - Method a String containing a = comma was returned, such as "You,Me". After selecting this value in the pic= k list the converters getAsObject method is called twice, once for "You" an= d once for "Me". > I would expect to get the same value in getAsObject as the converters get= AsString returned. Maybe the comma should be escaped by the component and/o= r the javascript code. > This Bug seems to be related to RF-6026, but that bug is not targeted for= RF 4.X -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8761392462321600525==-- From jira-events at lists.jboss.org Thu Mar 29 16:32:47 2012 Content-Type: multipart/mixed; boundary="===============8720862725067793508==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12107) Kitchensink archetype - comments additions to the generated pom.xml Date: Thu, 29 Mar 2012 16:32:47 -0400 Message-ID: <998630343.41633.1333053167588.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 713779216.37241.1332940307373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8720862725067793508== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12107?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12107: ------------------------------- Fix Version/s: 4.2.1.Final = > Kitchensink archetype - comments additions to the generated pom.xml > ------------------------------------------------------------------- > > Key: RF-12107 > URL: https://issues.jboss.org/browse/RF-12107 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: app generated by Kitchensink archetype > Reporter: Juraj Huska > Priority: Optional > Fix For: 4.2.1.Final > > > I would like to suggest some comments additions, to increase user's compr= ehension. > - _To the comment above arq-jbossas-managed profile:_ > There should be mentioned that you have to provide path to your JBoss ins= tance, by changing the jbossHome property in arquillian.xml, or we can alte= r the profile to download and unzip JBoss distribution as it is [here|https= ://github.com/richfaces/qa/blob/master/pom.xml#L559]. > - _In the same comment as mentioned above_ > There should be definitely mentioned the version of JBoss AS it works wit= h, or there should be this version defined explicitly, since it does not wo= rk with all AS 7 distributions > - _The comment above arq-jbossas-remote profile_ > There is the same problem with JBoss AS versions as mentioned above. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8720862725067793508==-- From jira-events at lists.jboss.org Thu Mar 29 16:32:48 2012 Content-Type: multipart/mixed; boundary="===============6128231036590169140==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12102) Kitchensink archetype - shutdown of JBoss AS with project generated from this archetype throws error Date: Thu, 29 Mar 2012 16:32:48 -0400 Message-ID: <1588451654.41639.1333053168092.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1394038810.35167.1332868307274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6128231036590169140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12102?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12102: ------------------------------- Fix Version/s: 4.2.1.Final = > Kitchensink archetype - shutdown of JBoss AS with project generated from = this archetype throws error > -------------------------------------------------------------------------= --------------------------- > > Key: RF-12102 > URL: https://issues.jboss.org/browse/RF-12102 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: container: JBoss AS 7.1.1.Final > Reporter: Juraj Huska > Priority: Trivial > Fix For: 4.2.1.Final > > > There is the same error thrown as in RF-11905, when shutting down the ser= ver. > Kitchensink uses his own DS configuration, and it is enough to add propos= ed DB_CLOSE_ON_EXIT=3DFALSE to the connection url, in the file _/src/main/w= ebapp/WEB-INF/kitchensink-quickstart-ds.xml_, in order to workaround the er= ror. > So it will look like: > {code:xml} > jdbc:h2:mem:kitchensink-quickstart;DB_CLOSE_ON_EXIT=3DFAL= SE > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6128231036590169140==-- From jira-events at lists.jboss.org Thu Mar 29 16:32:48 2012 Content-Type: multipart/mixed; boundary="===============4741131088972892799==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12099) Kitchensink archetype - mobile demo - loading the about page causes error on the server side Date: Thu, 29 Mar 2012 16:32:47 -0400 Message-ID: <720537931.41635.1333053167789.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1483697602.34497.1332858348789.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4741131088972892799== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12099?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12099: ------------------------------- Fix Version/s: 4.2.1.Final = > Kitchensink archetype - mobile demo - loading the about page causes error= on the server side > -------------------------------------------------------------------------= ------------------- > > Key: RF-12099 > URL: https://issues.jboss.org/browse/RF-12099 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: mobile demo for project generated by Kitchensink arc= hetype > Reporter: Juraj Huska > Priority: Minor > Fix For: 4.2.1.Final > > > After clicking on the link(the info button - small blue i in white circle= ) which should point to the about page, following error is thrown on the se= rver side: > {code} > 16:15:07,894 SEVERE [org.richfaces.log.Context] (http--0.0.0.0-8080-4) /r= esources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.member.name= }": Target Unreachable, 'member' returned null: javax.el.PropertyNotFoundEx= ception: /resources/components/memberForm.xhtml @19,62 value=3D"#{cc.attrs.= member.name}": Target Unreachable, 'member' returned null > at com.sun.faces.facelets.el.TagValueExpression.getType(TagValueExpressi= on.java:100) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConverte= dValue(HtmlBasicInputRenderer.java:95) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1030) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIInput.validate(UIInput.java:960) [jboss-jsf-a= pi_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIInput.executeValidate(UIInput.java:1233) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIInput.processValidators(UIInput.java:698) [jb= oss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.processValidators(UIComponentBa= se.java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.processValidators(UIComponentBa= se.java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.processValidators(UIComponentBa= se.java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.processValidators(UIComponentBa= se.java:1214) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.processValidators(UIForm.java:253) [jbos= s-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.PartialViewExecuteVisitCallback.visit(PartialVi= ewExecuteVisitCallback.java:55) [richfaces-core-impl-4.3.0-20120302.170417-= 5.jar:4.3.0-SNAPSHOT] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(Ba= seExtendedVisitContext.java:321) [richfaces-core-impl-4.3.0-20120302.170417= -5.jar:4.3.0-SNAPSHOT] > at javax.faces.component.UIForm.visitTree(UIForm.java:381) [jboss-jsf-ap= i_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.executeComponent= s(ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.3.0-20120= 302.170417-5.jar:4.3.0-SNAPSHOT] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialEx= ecutePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-impl-4.= 3.0-20120302.170417-5.jar:4.3.0-SNAPSHOT] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(E= xtendedPartialViewContextImpl.java:196) [richfaces-core-impl-4.3.0-20120302= .170417-5.jar:4.3.0-SNAPSHOT] > at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:11= 70) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValida= tionsPhase.java:76) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7= -jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)= [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > {code} > The about page is loaded successfully, however after next attempts to cli= ck on the same link results in loading blank page. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4741131088972892799==-- From jira-events at lists.jboss.org Thu Mar 29 16:32:48 2012 Content-Type: multipart/mixed; boundary="===============8696376218910933253==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12100) Kitchensink archetype - mobile demo - adding new member causes rendering blank page Date: Thu, 29 Mar 2012 16:32:47 -0400 Message-ID: <1968579288.41637.1333053167944.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2080953888.34709.1332860812065.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8696376218910933253== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12100?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12100: ------------------------------- Fix Version/s: 4.2.1.Final = > Kitchensink archetype - mobile demo - adding new member causes rendering = blank page > -------------------------------------------------------------------------= ---------- > > Key: RF-12100 > URL: https://issues.jboss.org/browse/RF-12100 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: mobile demo for Kitchensink archetype > Reporter: Juraj Huska > Fix For: 4.2.1.Final > > Attachments: blank.png > > > When you add new member, either from mobile or from desktop kitchensink d= emo, *all loaded mobile demos* will be (after retrieving the push from the = server) rendering the blank page. > As blank, I mean just the header of the page, please see the screenshot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8696376218910933253==-- From jira-events at lists.jboss.org Thu Mar 29 16:32:48 2012 Content-Type: multipart/mixed; boundary="===============8146119293454165863==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12101) Kitchensink example - rich:messages does not provide additional info, they are quite misleading Date: Thu, 29 Mar 2012 16:32:48 -0400 Message-ID: <1422511658.41641.1333053168186.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1230939528.35068.1332866267338.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8146119293454165863== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12101?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12101: ------------------------------- Fix Version/s: 4.2.1.Final = > Kitchensink example - rich:messages does not provide additional info, the= y are quite misleading > -------------------------------------------------------------------------= ---------------------- > > Key: RF-12101 > URL: https://issues.jboss.org/browse/RF-12101 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.2.0.Final > Environment: app generated by the kitchensink archetype > browser: Chrome, Firefox, mobile devices browser(iPhone) > Reporter: Juraj Huska > Priority: Optional > Fix For: 4.2.1.Final > > Attachments: IMG_0038.PNG > > > IMHO the rich:messages tag should be removed, since there is already rich= :message generated for every input, and they are not giving additional info= rmation, on the contrary they are misleading. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8146119293454165863==-- From jira-events at lists.jboss.org Thu Mar 29 16:34:47 2012 Content-Type: multipart/mixed; boundary="===============3221294039040361411==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12103) onmouse events dont working on rich:notifyMessage Date: Thu, 29 Mar 2012 16:34:47 -0400 Message-ID: <1949029958.41644.1333053287410.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1986202609.36071.1332916247280.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3221294039040361411== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12103?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12103: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, please assess and schedule accordingly. = > onmouse events dont working on rich:notifyMessage > ------------------------------------------------- > > Key: RF-12103 > URL: https://issues.jboss.org/browse/RF-12103 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Reporter: Antonio Rodriguez > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: notifyMessage, onclick, onmouseover, richfaces4 > > Hi, im using rich:notifyStack and rich:notifyMessage to show erros of req= uired=3Dtrue h:inputText. > All goes OK but i need that onclick event over the notifiyMessage, the cu= rsor go focused on the h:inputText associated with the notifyMessage. I not= iced that the events (onmouseover, onclick, onmouseout...) doesnt work on n= otifyMessages. > However, this events goes OK on rich:message. > Does anybody knows why the mouse events dont work with notifyMessages??? > Thanks -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3221294039040361411==-- From jira-events at lists.jboss.org Thu Mar 29 16:34:47 2012 Content-Type: multipart/mixed; boundary="===============2186196734067052316==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12106) panelToggleListener attribute @for does not work Date: Thu, 29 Mar 2012 16:34:47 -0400 Message-ID: <1341564360.41647.1333053287519.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 581703508.36545.1332924227837.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2186196734067052316== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12106?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680453#com= ment-12680453 ] = Brian Leathem commented on RF-12106: ------------------------------------ What do you see? What do you expect to see? = > panelToggleListener attribute @for does not work > ------------------------------------------------ > > Key: RF-12106 > URL: https://issues.jboss.org/browse/RF-12106 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 11.0 @ Linux x86_64 = > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > > # Deploy Metamer. > # Open http://localhost:8080/metamer/faces/components/richPanelToggleList= ener/RF-12106.xhtml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2186196734067052316==-- From jira-events at lists.jboss.org Thu Mar 29 16:34:47 2012 Content-Type: multipart/mixed; boundary="===============3826002864899159607==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12105) panelToggleListener attribute @listener does not work Date: Thu, 29 Mar 2012 16:34:47 -0400 Message-ID: <1941009891.41646.1333053287478.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1942473592.36521.1332923507950.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3826002864899159607== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12105?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12105: ------------------------------- Fix Version/s: 4.3-Tracking Component/s: component-panels-layout-themes (was: component-misc) = > panelToggleListener attribute @listener does not work > ----------------------------------------------------- > > Key: RF-12105 > URL: https://issues.jboss.org/browse/RF-12105 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 11.0 @ Linux x86_64 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 4.3-Tracking > > > # Deploy Metamer. > # Open http://localhost:8080/metamer/faces/components/richPanelToggleList= ener/collapsiblePanel.xhtml > # Click on chevron to collapse a panel. > # Messages with "* pannelToggleListenerBean panel collapsed" should appea= r in phases list. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3826002864899159607==-- From jira-events at lists.jboss.org Thu Mar 29 16:38:48 2012 Content-Type: multipart/mixed; boundary="===============1061253565912993435==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12108) Components second tab changes are not rendered after performing some ajax action if attribute ajaxRendered="true" inside located on first tab Date: Thu, 29 Mar 2012 16:38:47 -0400 Message-ID: <1420605051.41651.1333053527445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 975271229.37623.1332944389491.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1061253565912993435== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12108?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12108. -------------------------------- Resolution: Done Primefaces does not use the standardized JSF ajax mechanism for submitting = ajax requests, but instead using the jquery ajax mechanism. The two approa= ches are not compatible. Feel free to re-open this issue if you use components based on the standard= ized JSF ajax mechanism. = > Components second tab changes are not rendered after performing some ajax= action if attribute ajaxRendered=3D"true" inside located= on first tab > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= ----------- > > Key: RF-12108 > URL: https://issues.jboss.org/browse/RF-12108 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > seam 3.1 > IE 9 = > Reporter: Artur Mioduszewski > > In case getting 2 tabs (in my case it is primefaces tabs): > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > First tab: > > > > > Second tab (some code with ajax) > Ex. > > > > = > {code} > {code:title=3DRENDERING ON SECOND TAB CORRECTLY WORKS (after clicking lin= k)} > First tab: > > > > > Second tab (some code with ajax) > Ex. > > > > = > {code} > When I change tabs order, problem does not exist. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1061253565912993435==-- From jira-events at lists.jboss.org Thu Mar 29 16:38:48 2012 Content-Type: multipart/mixed; boundary="===============8864421038704352117==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12108) Components second tab changes are not rendered after performing some ajax action if attribute ajaxRendered="true" inside located on first tab Date: Thu, 29 Mar 2012 16:38:47 -0400 Message-ID: <100020479.41655.1333053527646.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 975271229.37623.1332944389491.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8864421038704352117== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12108?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-12108. -------------------------------- Resolution: Rejected = > Components second tab changes are not rendered after performing some ajax= action if attribute ajaxRendered=3D"true" inside located= on first tab > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= ----------- > > Key: RF-12108 > URL: https://issues.jboss.org/browse/RF-12108 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > seam 3.1 > IE 9 = > Reporter: Artur Mioduszewski > > In case getting 2 tabs (in my case it is primefaces tabs): > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > First tab: > > > > > Second tab (some code with ajax) > Ex. > > > > = > {code} > {code:title=3DRENDERING ON SECOND TAB CORRECTLY WORKS (after clicking lin= k)} > First tab: > > > > > Second tab (some code with ajax) > Ex. > > > > = > {code} > When I change tabs order, problem does not exist. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8864421038704352117==-- From jira-events at lists.jboss.org Thu Mar 29 16:38:48 2012 Content-Type: multipart/mixed; boundary="===============8172218155389184862==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12108) Components second tab changes are not rendered after performing some ajax action if attribute ajaxRendered="true" inside located on first tab Date: Thu, 29 Mar 2012 16:38:47 -0400 Message-ID: <982000619.41654.1333053527551.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 975271229.37623.1332944389491.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8172218155389184862== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12108?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-12108: -------------------------------- = > Components second tab changes are not rendered after performing some ajax= action if attribute ajaxRendered=3D"true" inside located= on first tab > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= ----------- > > Key: RF-12108 > URL: https://issues.jboss.org/browse/RF-12108 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Environment: JDK1.6, > JBoss 6.0.Final, > richfaces 4.1.0.Final/4.2.0.Final > seam 3.1 > IE 9 = > Reporter: Artur Mioduszewski > > In case getting 2 tabs (in my case it is primefaces tabs): > {code:title=3DRENDERING ON SECOND TAB NOT WORKS (after clicking link)} > First tab: > > > > > Second tab (some code with ajax) > Ex. > > > > = > {code} > {code:title=3DRENDERING ON SECOND TAB CORRECTLY WORKS (after clicking lin= k)} > First tab: > > > > > Second tab (some code with ajax) > Ex. > > > > = > {code} > When I change tabs order, problem does not exist. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8172218155389184862==-- From jira-events at lists.jboss.org Thu Mar 29 16:40:47 2012 Content-Type: multipart/mixed; boundary="===============8007264693031252189==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12110) [rich:contextMenu] contextmenu doesn't work anymore if an ajax request is fired while contextmenu is visible Date: Thu, 29 Mar 2012 16:40:47 -0400 Message-ID: <1855568664.41660.1333053647384.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2058795180.40029.1333022087624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8007264693031252189== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12110?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12110: ------------------------------- Fix Version/s: 4.3-Tracking Assignee: Brian Leathem Component/s: component-selects = > [rich:contextMenu] contextmenu doesn't work anymore if an ajax request is= fired while contextmenu is visible > -------------------------------------------------------------------------= ----------------------------------- > > Key: RF-12110 > URL: https://issues.jboss.org/browse/RF-12110 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.2.0.Final > Environment: Tomcat 7, myfaces-2.1.6, richfaces-4.2.0.Final and 4= .2.1-SNAPSHOT > Reporter: Rene O > Assignee: Brian Leathem > Fix For: 4.3-Tracking > > > The example shows the problem: > {code:title=3Dexample.xhtml} > > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > = > > JSF Test = > > > Steps to reproduce the issue: >

    > 1. right click to show context menu >
    > 2. wait till context menu hides >
    > 3. click button 'click me' >
    > 4. right click to show context menu >
    > 5. context menu is visible >

    > Now do the following >
    > 1. right click to show context menu >
    > 2. click button 'click me' before context menu hides >
    > 3. right click to show context menu >
    > 4. context menu doesn't work anymore... >

    > > >
    > > right click for context-menu > > > > Test > = > >
    >
    = > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8007264693031252189==-- From jira-events at lists.jboss.org Thu Mar 29 16:40:47 2012 Content-Type: multipart/mixed; boundary="===============6836830803608068428==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12106) panelToggleListener attribute @for does not work Date: Thu, 29 Mar 2012 16:40:47 -0400 Message-ID: <440857993.41665.1333053647599.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 581703508.36545.1332924227837.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6836830803608068428== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12106?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12106: ---------------------------------- Assignee: Ji=C5=99=C3=AD =C5=A0tefek = > panelToggleListener attribute @for does not work > ------------------------------------------------ > > Key: RF-12106 > URL: https://issues.jboss.org/browse/RF-12106 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux > Firefox 11.0 @ Linux x86_64 = > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > > # Deploy Metamer. > # Open http://localhost:8080/metamer/faces/components/richPanelToggleList= ener/RF-12106.xhtml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6836830803608068428==-- From jira-events at lists.jboss.org Thu Mar 29 16:40:47 2012 Content-Type: multipart/mixed; boundary="===============3556799715730101952==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12113) rich:inputNumberSpinner minValue and maxValue being ignored after second request Date: Thu, 29 Mar 2012 16:40:47 -0400 Message-ID: <1397291427.41663.1333053647484.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1286311086.40531.1333034148641.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3556799715730101952== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12113?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12113: ------------------------------- Fix Version/s: 4.3-Tracking = > rich:inputNumberSpinner minValue and maxValue being ignored after second = request > -------------------------------------------------------------------------= ------- > > Key: RF-12113 > URL: https://issues.jboss.org/browse/RF-12113 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Environment: Windows 7 x64, Firefox/Waterfox v10.0.1, Chrome v17.= 0.963.83 m, IE8 64-bit v8.0.7601.17514 > Reporter: Leo Higgins > Fix For: 4.3-Tracking > > > When setting the value of the component to a value either below the speci= fied minValue or above the specified maxValue, the component correctly sets= the value to either the minValue or the maxValue. > On a subsequent request, however, the component does not set the value to= the minValue or the maxValue. This bug exists on all above browsers at the= Richfaces showcase here: > http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dinput= NumberSpinner&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3556799715730101952==-- From jira-events at lists.jboss.org Thu Mar 29 16:51:47 2012 Content-Type: multipart/mixed; boundary="===============8676899563614892350==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Thu, 29 Mar 2012 16:51:47 -0400 Message-ID: <1507496368.41674.1333054307777.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8676899563614892350== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12032?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680456#com= ment-12680456 ] = Jean ANDRE commented on RF-12032: --------------------------------- 1) Yes of course 2) I do not remember - it is an idea - however, there was a h:messages on t= he calendar as we got some message (see screen shot) but no message for the= conversion error. With the workbench, we can easily test the case has I ha= ve add a calendar in one screen and modify the backing bean (controller) fo= r sql.Date type. sql.Date and util.Date are both native standard format to java. Why do not = support them as standard. Moreover, most of the time, we received the data = from the database/ORM and the date is SQL date. What about having something like "auto-boxing" or automatic conversion when= it is feasible for native format? We are not alone for this needs and around. - https://community.jboss.org/thread/10589 - http://stackoverflow.com/questions/7982528/rich-calendar-date-formatting - http://stackoverflow.com/questions/7397096/how-to-check-null-value-for-d= ate-object - http://www.developpez.net/forums/d739236/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ - http://www.developpez.net/forums/d967420/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ = > rich:calendar : Ajax request - Error message enhancement - sql.Date > ------------------------------------------------------------------- > > Key: RF-12032 > URL: https://issues.jboss.org/browse/RF-12032 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richface= s-4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. > Reporter: Jean ANDRE > Labels: waiting_on_user > Attachments: rich_calendar_errorMsg_Enhancement.png > > > When a backing-bean have a type of sql.Date which is mapped to a rich:cal= endar, there is an conversion error due to the rich:calendar component uses= util.Date by default. Unfortunately, we do not see any error message at th= e screen when an ajax request is sent and returned back to us. > What we got, and thanks to Firebug, is the text below as an answer from o= ur Ajax request POST. Nothing is rendered at the screen and the method of t= he backing bean is not called. > {code} > > class javax.faces.component.UpdateMo= delException > {code} > Our code looks like this (we remove unecessary field and decoration): > {code} > > > > > value=3D"#{msg['common.command.add.phone']}" > action=3D"#{createClientController.doAddPhone}"> > > > > > > > value=3D"#{phoneBean.effectiveDate}" > popup=3D"true" > showApplyButton=3D"false" > enableManualInput=3D"true" > datePattern=3D"#{msg['client.date.format']}" > inputSize=3D"12" > styleClass=3D"calendar"> > > > > > > > = > {code} > Is is possible to have a message returned back to the UI??? or is there a= way to handle this error properly? > Other information > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The form is inside a dynamic tab - Fragment are also include dynamically = - we use c:if et subView as shown below: > {code} > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8676899563614892350==-- From jira-events at lists.jboss.org Thu Mar 29 16:53:47 2012 Content-Type: multipart/mixed; boundary="===============5591406164519605506==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Thu, 29 Mar 2012 16:53:47 -0400 Message-ID: <223321497.41679.1333054427685.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5591406164519605506== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12032?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680456#com= ment-12680456 ] = Jean ANDRE edited comment on RF-12032 at 3/29/12 4:52 PM: ---------------------------------------------------------- 1) Yes of course 2) I do not remember - it is an idea - however, there was a h:messages on t= he calendar as we got some message (see screen shot) but no message for the= conversion error. With the workbench, we can easily test the case as I hav= e added a calendar in one screen by default - We just need to modify the ba= cking bean (controller) for sql.Date type and see what is appening. sql.Date and util.Date are both native standard format to java. Why do not = support them as standard. Moreover, most of the time, we received the data = from the database/ORM and the date is SQL date. What about having something like "auto-boxing" or automatic conversion when= it is feasible for native format? We are not alone for this needs and around. - https://community.jboss.org/thread/10589 - http://stackoverflow.com/questions/7982528/rich-calendar-date-formatting - http://stackoverflow.com/questions/7397096/how-to-check-null-value-for-d= ate-object - http://www.developpez.net/forums/d739236/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ - http://www.developpez.net/forums/d967420/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ = was (Author: jorelia64): 1) Yes of course 2) I do not remember - it is an idea - however, there was a h:messages on t= he calendar as we got some message (see screen shot) but no message for the= conversion error. With the workbench, we can easily test the case has I ha= ve add a calendar in one screen and modify the backing bean (controller) fo= r sql.Date type. sql.Date and util.Date are both native standard format to java. Why do not = support them as standard. Moreover, most of the time, we received the data = from the database/ORM and the date is SQL date. What about having something like "auto-boxing" or automatic conversion when= it is feasible for native format? We are not alone for this needs and around. - https://community.jboss.org/thread/10589 - http://stackoverflow.com/questions/7982528/rich-calendar-date-formatting - http://stackoverflow.com/questions/7397096/how-to-check-null-value-for-d= ate-object - http://www.developpez.net/forums/d739236/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ - http://www.developpez.net/forums/d967420/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ = > rich:calendar : Ajax request - Error message enhancement - sql.Date > ------------------------------------------------------------------- > > Key: RF-12032 > URL: https://issues.jboss.org/browse/RF-12032 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richface= s-4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. > Reporter: Jean ANDRE > Labels: waiting_on_user > Attachments: rich_calendar_errorMsg_Enhancement.png > > > When a backing-bean have a type of sql.Date which is mapped to a rich:cal= endar, there is an conversion error due to the rich:calendar component uses= util.Date by default. Unfortunately, we do not see any error message at th= e screen when an ajax request is sent and returned back to us. > What we got, and thanks to Firebug, is the text below as an answer from o= ur Ajax request POST. Nothing is rendered at the screen and the method of t= he backing bean is not called. > {code} > > class javax.faces.component.UpdateMo= delException > {code} > Our code looks like this (we remove unecessary field and decoration): > {code} > > > > > value=3D"#{msg['common.command.add.phone']}" > action=3D"#{createClientController.doAddPhone}"> > > > > > > > value=3D"#{phoneBean.effectiveDate}" > popup=3D"true" > showApplyButton=3D"false" > enableManualInput=3D"true" > datePattern=3D"#{msg['client.date.format']}" > inputSize=3D"12" > styleClass=3D"calendar"> > > > > > > > = > {code} > Is is possible to have a message returned back to the UI??? or is there a= way to handle this error properly? > Other information > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The form is inside a dynamic tab - Fragment are also include dynamically = - we use c:if et subView as shown below: > {code} > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5591406164519605506==-- From jira-events at lists.jboss.org Thu Mar 29 16:53:48 2012 Content-Type: multipart/mixed; boundary="===============0537776283629581400==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12032) rich:calendar : Ajax request - Error message enhancement - sql.Date Date: Thu, 29 Mar 2012 16:53:48 -0400 Message-ID: <1597471984.41686.1333054428041.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1406650855.77949.1331220940774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0537776283629581400== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12032?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680456#com= ment-12680456 ] = Jean ANDRE edited comment on RF-12032 at 3/29/12 4:53 PM: ---------------------------------------------------------- 1) Yes of course 2) I do not remember - it is an idea - however, there was a h:messages on t= he calendar as we got some message (see screen shot) but no message for the= conversion error. With the workbench, we can easily test the case as I hav= e added a calendar in one screen by default - We just need to modify the ba= cking bean (controller) for sql.Date type and see what is appening. sql.Date and util.Date are both native standard format to java. Why do not = support them as standard. Moreover, most of the time, we received the data = from the database/ORM and the date is SQL date. What about having something like "auto-boxing" or automatic conversion when= it is feasible for native format? We are not alone for this need and around. - https://community.jboss.org/thread/10589 - http://stackoverflow.com/questions/7982528/rich-calendar-date-formatting - http://stackoverflow.com/questions/7397096/how-to-check-null-value-for-d= ate-object - http://www.developpez.net/forums/d739236/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ - http://www.developpez.net/forums/d967420/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ = was (Author: jorelia64): 1) Yes of course 2) I do not remember - it is an idea - however, there was a h:messages on t= he calendar as we got some message (see screen shot) but no message for the= conversion error. With the workbench, we can easily test the case as I hav= e added a calendar in one screen by default - We just need to modify the ba= cking bean (controller) for sql.Date type and see what is appening. sql.Date and util.Date are both native standard format to java. Why do not = support them as standard. Moreover, most of the time, we received the data = from the database/ORM and the date is SQL date. What about having something like "auto-boxing" or automatic conversion when= it is feasible for native format? We are not alone for this needs and around. - https://community.jboss.org/thread/10589 - http://stackoverflow.com/questions/7982528/rich-calendar-date-formatting - http://stackoverflow.com/questions/7397096/how-to-check-null-value-for-d= ate-object - http://www.developpez.net/forums/d739236/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ - http://www.developpez.net/forums/d967420/java/developpement-web-java/fra= meworks/jsf/probleme-rich-calendar/ = > rich:calendar : Ajax request - Error message enhancement - sql.Date > ------------------------------------------------------------------- > > Key: RF-12032 > URL: https://issues.jboss.org/browse/RF-12032 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Environment: cssparser-0.9.6 - guava-11.0.1 - hibernate-validator= -4.2.0.Final - JSF/Mojarra 2.1.6 - springframework-3.0.6.RELEASE - richface= s-4.2.0.Final - sac-1.3.jar - Windows 7, WAS 8.0.0.1, Servlet 2.5 - Java 6. > Reporter: Jean ANDRE > Labels: waiting_on_user > Attachments: rich_calendar_errorMsg_Enhancement.png > > > When a backing-bean have a type of sql.Date which is mapped to a rich:cal= endar, there is an conversion error due to the rich:calendar component uses= util.Date by default. Unfortunately, we do not see any error message at th= e screen when an ajax request is sent and returned back to us. > What we got, and thanks to Firebug, is the text below as an answer from o= ur Ajax request POST. Nothing is rendered at the screen and the method of t= he backing bean is not called. > {code} > > class javax.faces.component.UpdateMo= delException > {code} > Our code looks like this (we remove unecessary field and decoration): > {code} > > > > > value=3D"#{msg['common.command.add.phone']}" > action=3D"#{createClientController.doAddPhone}"> > > > > > > > value=3D"#{phoneBean.effectiveDate}" > popup=3D"true" > showApplyButton=3D"false" > enableManualInput=3D"true" > datePattern=3D"#{msg['client.date.format']}" > inputSize=3D"12" > styleClass=3D"calendar"> > > > > > > > = > {code} > Is is possible to have a message returned back to the UI??? or is there a= way to handle this error properly? > Other information > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > The form is inside a dynamic tab - Fragment are also include dynamically = - we use c:if et subView as shown below: > {code} > > > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0537776283629581400==-- From jira-events at lists.jboss.org Thu Mar 29 21:03:47 2012 Content-Type: multipart/mixed; boundary="===============4969693820813102481==" MIME-Version: 1.0 From: Ivan Costa (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12114) Richfaces 4.2 rich:autocomplete don't fire ajax on blur event Date: Thu, 29 Mar 2012 21:03:47 -0400 Message-ID: <1022471400.42032.1333069427412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4969693820813102481== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ivan Costa created RF-12114: ------------------------------- Summary: Richfaces 4.2 rich:autocomplete don't fire ajax on bl= ur event Key: RF-12114 URL: https://issues.jboss.org/browse/RF-12114 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-a4j-core, component-input Affects Versions: 4.2.0.Final Environment: Richfaces 4.2 Final, Mojarra 2.1.7, Tomcat 7.0.26 Reporter: Ivan Costa rich:autocomplete don=C2=B4t call actionListener on blur event -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4969693820813102481==-- From jira-events at lists.jboss.org Fri Mar 30 01:31:47 2012 Content-Type: multipart/mixed; boundary="===============7919119769940502116==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12091) rich:dataScroller scrollListener not documented Date: Fri, 30 Mar 2012 01:31:47 -0400 Message-ID: <782771300.42116.1333085507675.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1487113708.31251.1332772548274.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7919119769940502116== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12091?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12091: ------------------------------- Comment: was deleted (was: Looks like the method: {code} public DataScrollListener[] getScrollListeners() { return (DataScrollListener[]) getFacesListeners(DataScrollListener.clas= s); } {code} is missing the @Attribute annotation. It should be added, with generate=3D= false.) = > rich:dataScroller scrollListener not documented > ----------------------------------------------- > > Key: RF-12091 > URL: https://issues.jboss.org/browse/RF-12091 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.0.Final > Reporter: Dupont Dupont > Assignee: Brian Leathem > Fix For: 4.2.1.CR1 > > > rich:dataScroller has a scrollListener attribute, but it's not documented= (no occurence in component reference or in taglib.xml). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7919119769940502116==-- From jira-events at lists.jboss.org Fri Mar 30 09:35:48 2012 Content-Type: multipart/mixed; boundary="===============6760573054661072070==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-9443) switchable panels: It should be possible to iterate child panels using a4j:repeat component Date: Fri, 30 Mar 2012 09:35:48 -0400 Message-ID: <845949686.43353.1333114548454.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1010028052.19325.1286380239792.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6760573054661072070== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9443?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680621#comm= ent-12680621 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-9443: -------------------------------- This issue has been discussed on team meeting, the minutes are here: 4. Dynamic switchable panels (bleathem, 14:50:46) http://transcripts.jboss.org/meeting/irc.freenode.org/richfaces/2012/richfa= ces.2012-03-20-14.01.html This issue is concurrent request for RF-12029. However this solution allows bigger variability, since you could combine dy= namic and static parts. = > switchable panels: It should be possible to iterate child panels using a4= j:repeat component > -------------------------------------------------------------------------= ------------------ > > Key: RF-9443 > URL: https://issues.jboss.org/browse/RF-9443 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Milestone2 > Reporter: Ilya Shaikovsky > Fix For: 4.Future > > > requirement present there - http://community.jboss.org/wiki/RichFaces4xsw= itchablepanels > Alex, consider this issue to implementation only after all the new compon= ents tasks for M4. If will not fit - postpone to next one as it has workaro= und. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6760573054661072070==-- From jira-events at lists.jboss.org Fri Mar 30 09:35:49 2012 Content-Type: multipart/mixed; boundary="===============5161804017833129544==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12029) AbstractTogglePanel should extend UIRepeat, instead of UIOutput Date: Fri, 30 Mar 2012 09:35:49 -0400 Message-ID: <366336221.43360.1333114549712.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1430073926.75557.1331161056577.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5161804017833129544== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680622#com= ment-12680622 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12029: --------------------------------- This issue has been discussed on team meeting, the minutes are here: 4. Dynamic switchable panels (bleathem, 14:50:46) http://transcripts.jboss.org/meeting/irc.freenode.org/richfaces/2012/richfa= ces.2012-03-20-14.01.html This issue is concurrent request for RF-9443. = > AbstractTogglePanel should extend UIRepeat, instead of UIOutput > --------------------------------------------------------------- > > Key: RF-12029 > URL: https://issues.jboss.org/browse/RF-12029 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Brian Leathem > Assignee: Bernard Labno > > Valid uses exist for dynamically generating rich:tab, rich:togglePanelIte= m, rich:accordionItem. Current techniques for supporting this use case inv= olve using c:forEach, which is a problem since c: tags are processed too ea= rly to nicely support dynamic use cases. > One idea to support this use case, is to have AbstractTogglePanel extend = UIRepeat, instead of UIOutput to better dynamic child components. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5161804017833129544==-- From jira-events at lists.jboss.org Fri Mar 30 09:55:48 2012 Content-Type: multipart/mixed; boundary="===============6947327572934942758==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Fri, 30 Mar 2012 09:55:47 -0400 Message-ID: <1173473290.43487.1333115747929.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6947327572934942758== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680639#com= ment-12680639 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11833: --------------------------------- Filed spec issue: http://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-1= 086 = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6947327572934942758==-- From jira-events at lists.jboss.org Fri Mar 30 09:57:47 2012 Content-Type: multipart/mixed; boundary="===============9181542241187588993==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11833) Label for calendar results in non-valid markup Date: Fri, 30 Mar 2012 09:57:47 -0400 Message-ID: <605340444.43491.1333115867310.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1824573501.21859.1324327990123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9181542241187588993== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11833?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11833. ----------------------------- Resolution: Rejected Rejected as spec issue. = > Label for calendar results in non-valid markup > ---------------------------------------------- > > Key: RF-11833 > URL: https://issues.jboss.org/browse/RF-11833 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > The code in first code snippet results in markup below which is not valid= . The for attribute of the label element must refer to a form control, e.g.= the actual input inside calendar (that with ID dateForm:fromDateInputDate). > {code:xml} > > > {code} > {code:xml} > > > > > ... > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9181542241187588993==-- From jira-events at lists.jboss.org Fri Mar 30 10:07:47 2012 Content-Type: multipart/mixed; boundary="===============1784273443616992466==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12044) Metamer: @preventDefault attribute of rich:hotKey component doesn't work in IE 9 and Google Chrome Date: Fri, 30 Mar 2012 10:07:47 -0400 Message-ID: <458212685.43505.1333116467498.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 283065864.9549.1331739467659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1784273443616992466== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12044?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680642#com= ment-12680642 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12044: --------------------------------- Added page for known limitations: https://community.jboss.org/wiki/RichhotK= ey-PreventDefault-KnownLimitations = > Metamer: @preventDefault attribute of rich:hotKey component doesn't work = in IE 9 and Google Chrome > -------------------------------------------------------------------------= ------------------------- > > Key: RF-12044 > URL: https://issues.jboss.org/browse/RF-12044 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.0.Final > Environment: RichFaces 4.2.1-SNAPSHOT > Metamer 4.2.1-SNAPSHOT > Mojarra 2.1.5-SNAPSHOT > JBoss AS 7.1.0.Final > Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > Chrome 17.0.963.78 @ Linux i686 > =E2=80=A2RichFaces 4.2.1-SNAPSHOT > =E2=80=A2Metamer 4.2.1-SNAPSHOT > =E2=80=A2Mojarra 2.1.5-SNAPSHOT > =E2=80=A2JBoss AS 7.1.0.Final > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_31-b04 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: Chrome, IE9 > > It's working correctly in Firefox 10. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1784273443616992466==-- From jira-events at lists.jboss.org Fri Mar 30 13:07:48 2012 Content-Type: multipart/mixed; boundary="===============7100392949530369625==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12115) Consider a method for attaching RF events via a jQuery selector Date: Fri, 30 Mar 2012 13:07:47 -0400 Message-ID: <157141177.44170.1333127267982.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7100392949530369625== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-12115: ---------------------------------- Summary: Consider a method for attaching RF events via a jQuer= y selector Key: RF-12115 URL: https://issues.jboss.org/browse/RF-12115 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-a4j-core Reporter: Brian Leathem Write now we can attach events either by Id, or by element. We could achie= ve more flexibility by attaching events directly by jQuery selector. Something like rf.Event.bindByJquerySelector (name TBD) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7100392949530369625==-- From jira-events at lists.jboss.org Fri Mar 30 14:17:47 2012 Content-Type: multipart/mixed; boundary="===============2265255225276541853==" MIME-Version: 1.0 From: Adrien Adrien (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12116) RF 4.2 : jquery not generated for function Date: Fri, 30 Mar 2012 14:17:47 -0400 Message-ID: <880788296.44278.1333131467294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2265255225276541853== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Adrien Adrien created RF-12116: ---------------------------------- Summary: RF 4.2 : jquery not generated for function Key: RF-12116 URL: https://issues.jboss.org/browse/RF-12116 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.2.0.Final Environment: JBoss 7.1 /RF4.2 Reporter: Adrien Adrien This code doesn t generate javascript expected Code generated in html page Expected something like : -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2265255225276541853==-- From jira-events at lists.jboss.org Fri Mar 30 17:07:47 2012 Content-Type: multipart/mixed; boundary="===============2492499847558934685==" MIME-Version: 1.0 From: phelen harg (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12081) Problem with RichEditor RF 4.2.0 Date: Fri, 30 Mar 2012 17:07:47 -0400 Message-ID: <2071596362.44471.1333141667485.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1278339548.27975.1332502007395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2492499847558934685== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12081?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] phelen harg updated RF-12081: ----------------------------- Attachment: page.xhtml Page.rar = > Problem with RichEditor RF 4.2.0 > -------------------------------- > > Key: RF-12081 > URL: https://issues.jboss.org/browse/RF-12081 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: phelen harg > Labels: waiting_on_user > Attachments: Page.rar, page.xhtml, Sem t=C3=ADtulo.jpg > > > I'm migrating my Application from RF 3.3.3 to RF 4.2.0. But = now i'm facing a problem with the richEditor. When I load the the component= , all the links in application receive a background like this picture: = > Analizing the code with Firebug, I found the problem in the = CSS of RichEditor. /org.richfaces.resources/javax.faces.resource/org.richfa= ces.ckeditor/skins/richfaces/editor.ecss?db=3DeAHj0yqqAgACGAEl > If I erase the CSS the backgroud disappear. There is some = kind of workaround for this? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2492499847558934685==-- From jira-events at lists.jboss.org Fri Mar 30 17:09:47 2012 Content-Type: multipart/mixed; boundary="===============5108410249403661319==" MIME-Version: 1.0 From: phelen harg (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12081) Problem with RichEditor RF 4.2.0 Date: Fri, 30 Mar 2012 17:09:47 -0400 Message-ID: <2142502826.44474.1333141787341.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1278339548.27975.1332502007395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5108410249403661319== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12081?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12680742#com= ment-12680742 ] = phelen harg commented on RF-12081: ---------------------------------- I've attach the page.xhtml and the page and css in the page.rar = > Problem with RichEditor RF 4.2.0 > -------------------------------- > > Key: RF-12081 > URL: https://issues.jboss.org/browse/RF-12081 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.0.Final > Reporter: phelen harg > Labels: waiting_on_user > Attachments: Page.rar, page.xhtml, Sem t=C3=ADtulo.jpg > > > I'm migrating my Application from RF 3.3.3 to RF 4.2.0. But = now i'm facing a problem with the richEditor. When I load the the component= , all the links in application receive a background like this picture: = > Analizing the code with Firebug, I found the problem in the = CSS of RichEditor. /org.richfaces.resources/javax.faces.resource/org.richfa= ces.ckeditor/skins/richfaces/editor.ecss?db=3DeAHj0yqqAgACGAEl > If I erase the CSS the backgroud disappear. There is some = kind of workaround for this? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5108410249403661319==-- From jira-events at lists.jboss.org Fri Mar 30 17:32:47 2012 Content-Type: multipart/mixed; boundary="===============3123439404682472931==" MIME-Version: 1.0 From: Ivan Costa (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12117) No showcase at http://showcase.richfaces.org/ - "welcome to Grails" salute Date: Fri, 30 Mar 2012 17:32:47 -0400 Message-ID: <1870074657.44485.1333143167282.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3123439404682472931== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ivan Costa created RF-12117: ------------------------------- Summary: No showcase at http://showcase.richfaces.org/ - "wel= come to Grails" salute Key: RF-12117 URL: https://issues.jboss.org/browse/RF-12117 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.2.0.Final Reporter: Ivan Costa Priority: Blocker Since yesterday showcase at url http://showcase.richfaces.org/ shows a "Wel= come to Grails" page. No showcase at all. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3123439404682472931==-- From jira-events at lists.jboss.org Fri Mar 30 22:43:47 2012 Content-Type: multipart/mixed; boundary="===============5382731696839468634==" MIME-Version: 1.0 From: Ivan Costa (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12117) No showcase at http://showcase.richfaces.org/ - "welcome to Grails" salute Date: Fri, 30 Mar 2012 22:43:47 -0400 Message-ID: <761924912.44608.1333161827429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1870074657.44485.1333143167282.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5382731696839468634== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12117?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ivan Costa closed RF-12117. --------------------------- Resolution: Done It seems ok now. = > No showcase at http://showcase.richfaces.org/ - "welcome to Grails" salu= te > -------------------------------------------------------------------------= -- > > Key: RF-12117 > URL: https://issues.jboss.org/browse/RF-12117 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.2.0.Final > Reporter: Ivan Costa > Priority: Blocker > > Since yesterday showcase at url http://showcase.richfaces.org/ shows a "W= elcome to Grails" page. No showcase at all. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5382731696839468634==--