From jira-events at lists.jboss.org Mon Jan 2 06:01:12 2012 Content-Type: multipart/mixed; boundary="===============8807047144205622023==" MIME-Version: 1.0 From: Milo van der Zee (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11803) render of 'c:' and 'fn:' is one click behind Date: Mon, 02 Jan 2012 06:01:12 -0500 Message-ID: <1365041986.34456.1325502072551.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1412990328.81640.1323338620636.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8807047144205622023== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11803?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653320#com= ment-12653320 ] = Milo van der Zee commented on RF-11803: --------------------------------------- Myfaces: https://issues.apache.org/jira/browse/MYFACES-3436 = > render of 'c:' and 'fn:' is one click behind > -------------------------------------------- > > Key: RF-11803 > URL: https://issues.jboss.org/browse/RF-11803 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: MyFaces 2.1.5, Tomcat 7.0.22, 4.1.0-20111204 from sh= owcase > Reporter: Milo van der Zee > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: render, waiting_on_user > > 'c:' and 'fn:' is rendered differently from previous versions. > When clicking the inc and dec buttons in the example you can see that the= field contents are updates each click but the number of fields is not (com= ma at the end when pressing 'dec'. Pressing 'render' then fixes the output. > When using a function to render it works fine. Even though the function d= oes not do much. > MAG, > Milo > {code:title=3D"testje4.xhtml"} > > xmlns=3D"http://www.w3.org/1999/xhtml" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:c=3D"http://java.sun.com/jsp/jstl/core" > > > > > > > > = > > Counter: #{testBean.counter}
>
> = >
> > > > > > > #{status+1}: '#{field}', '#{fields}'
>
>
>
> = > Direct render: > > >
> With function to render: = > > >
> Manual render: > >
>
> > {code} > {code:title=3D"testBean.java"} > package com.test; > import java.util.Arrays; > import java.util.List; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > @ManagedBean > @SessionScoped > public class TestBean { > private int counter =3D 5; > public String getFieldsString() { > StringBuilder builder =3D new StringBuilder(); > boolean firstField =3D true; > for (int i =3D 0; i < counter; i++) { > if (!firstField) builder.append(','); > firstField =3D false; > char[] fill =3D new char[i + 1]; > Arrays.fill(fill, Character.forDigit(counter, 10)); > String fieldName =3D new String(fill); > builder.append(fieldName); > } > return builder.toString(); > } > public List getFieldsList() { > String string =3D getFieldsString(); > List list =3D Arrays.asList(string.split(",")); > return list; > } > public void decCounter() { > counter--; > if (counter < 1) counter =3D 1; > } > public void incCounter() { > counter++; > if (counter > 9) counter =3D 9; > } > public int getCounter() { > return counter; > } > public void setCounter(int counter) { > this.counter =3D counter; > } > } > {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 = --===============8807047144205622023==-- From jira-events at lists.jboss.org Mon Jan 2 07:37:09 2012 Content-Type: multipart/mixed; boundary="===============3036530026436733911==" MIME-Version: 1.0 From: Pavol Pitonak (Assigned) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11814) a4j:commandLink in tabPanel disabled if switchtype = ajax Date: Mon, 02 Jan 2012 07:37:09 -0500 Message-ID: <1500282964.34590.1325507829387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 796306910.9115.1323859989475.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3036530026436733911== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11814?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11814: ---------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) = > a4j:commandLink in tabPanel disabled if switchtype =3D ajax > --------------------------------------------------------- > > Key: RF-11814 > URL: https://issues.jboss.org/browse/RF-11814 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core, component-panels-layout-themes > Affects Versions: 4.1.0.CR2 > Environment: Win 7 64 Bit, Tomcat 7.0.23, Mojarra 2.1.3 > Reporter: Friedhelm Kuehn > Assignee: J=C3=A1n Jamrich > > In the following constellation (=3Dextract from real page) the a4j:comman= dlink action method = > is correctly triggered on clicking when tabPanels switchType =3D "client"= but not when switchType =3D "ajax" > {code} > > > = > > ..... > > > > > > > Logging out, please wait ! > > > {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 = --===============3036530026436733911==-- From jira-events at lists.jboss.org Mon Jan 2 07:45:09 2012 Content-Type: multipart/mixed; boundary="===============1272276833580723767==" MIME-Version: 1.0 From: Pavol Pitonak (Assigned) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11825) rich:fileUpload - File selected for upload is duplicated in IE 8 when placed in composite component Date: Mon, 02 Jan 2012 07:45:09 -0500 Message-ID: <1623840396.34600.1325508309769.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 723368030.20345.1324296789427.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1272276833580723767== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11825?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11825: ---------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) = > rich:fileUpload - File selected for upload is duplicated in IE 8 when pla= ced in composite component > -------------------------------------------------------------------------= -------------------------- > > Key: RF-11825 > URL: https://issues.jboss.org/browse/RF-11825 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Environment: Apache Tomcat 6.0 > Java 1.6.0_24 > Mojarra 2.1.2 = > Reporter: Pavel Hofr=C3=ADk > Assignee: J=C3=A1n Jamrich > Labels: composite_component, fileUpload, richfaces > > When rich:fileUpload is part of composite component, and this component i= s placed in page, than when file is selected from system dialog, it is adde= d twice in list of files. > This fault occurs in IE 8. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1272276833580723767==-- From jira-events at lists.jboss.org Mon Jan 2 08:00:10 2012 Content-Type: multipart/mixed; boundary="===============4928473949627545420==" MIME-Version: 1.0 From: Pavol Pitonak (Assigned) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11850) RF 4.1.0.Final: Problem using columnResize with more than one extendedDataTable on the same page. Date: Mon, 02 Jan 2012 08:00:09 -0500 Message-ID: <130165323.34635.1325509209848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1719236551.29235.1324550769802.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4928473949627545420== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11850?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11850: ---------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) = > RF 4.1.0.Final: Problem using columnResize with more than one extendedDat= aTable on the same page. > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11850 > URL: https://issues.jboss.org/browse/RF-11850 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Environment: Windows 7 x64 or arch linux x86 > JBoss 7.0.1 Final or Glassfish 3.1 > Reporter: Christian Peter > Assignee: J=C3=A1n Jamrich > Priority: Minor > > Hello, > I've encountered some problems using richfaces extendedDataTables in Rich= Face 4.1.0.Final > Here is the facelet: > {code:title=3Dfacelet} > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > = > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > = > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > {code} = > = > Resizing the columns on the first table works perfectly, but if someone t= ries to resize the second tables' columns as well, I've got NullPointer exc= eptions like: > {code:title=3Dstacktrace} > java.lang.NullPointerException > at org.richfaces.renderkit.SortingFilteringRowsRenderer.updateAtt= ribute(SortingFilteringRowsRenderer.java:135) [richfaces-components-ui-4.1.= 0.Final.jar: > at org.richfaces.renderkit.ExtendedDataTableRenderer.updateWidthO= fColumns(ExtendedDataTableRenderer.java:825) [richfaces-components-ui-4.1.0= .Final.jar:] > at org.richfaces.renderkit.ExtendedDataTableRenderer.doDecode(Ext= endedDataTableRenderer.java:808) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:= 80) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponentBase.decode(UIComponentBase.j= ava:787) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.component.UIDataAdaptor.processDecodes(UIDataAda= ptor.java:819) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.context.PartialViewExecuteVisitCallback.visit(Pa= rtialViewExecuteVisitCallback.java:53) [richfaces-core-impl-4.1.0.Final.jar= :] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCall= back(BaseExtendedVisitContext.java:321) [richfaces-core-impl-4.1.0.Final.ja= r:] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.= java:1319) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIForm.visitTree(UIForm.java:344) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.context.ExtendedPartialViewContextImpl.executeCo= mponents(ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.1.= 0.Final.jar: > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtialExecutePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-= impl-4.1.0.F > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtial(ExtendedPartialViewContextImpl.java:196) [richfaces-core-impl-4.1.0.F= inal.jar:] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.jav= a:931) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyR= equestValuesPhase.java:78) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHO= T] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-imp= l-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.ja= va:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > 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.internalDoFilt= er(ApplicationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(= ConversationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-2= 6 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > {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 = --===============4928473949627545420==-- From jira-events at lists.jboss.org Mon Jan 2 08:00:10 2012 Content-Type: multipart/mixed; boundary="===============5230424549834564002==" MIME-Version: 1.0 From: Pavol Pitonak (Assigned) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11846) rich:validator ignores @NotEmpty Date: Mon, 02 Jan 2012 08:00:09 -0500 Message-ID: <1225603833.34632.1325509209734.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 651588956.26878.1324469409370.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5230424549834564002== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11846?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11846: ---------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) = > rich:validator ignores @NotEmpty > -------------------------------- > > Key: RF-11846 > URL: https://issues.jboss.org/browse/RF-11846 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Final > Environment: Maven 3, Tomcat 6.0.x, Ubuntu 11.10 x64, Glassfish j= sf 2.x implementation, Hibernate validator 4.1.0.Final > Reporter: Mercer Traieste > Assignee: J=C3=A1n Jamrich > > I want to have [client-side validation|http://richfaces-showcase.appspot.= com/richfaces/component-sample.jsf?demo=3DclientValidation&sample=3Djsr303&= skin=3DblueSky] using rich:validator in Richfaces 4.1, but @NotEmpty is ign= ored. = > {code:xml} = > > > > > > {code} = > {code:java} > import org.hibernate.validator.constraints.NotEmpty; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > import java.io.Serializable; > @ManagedBean > @SessionScoped > public class RichBean implements Serializable { > private static final long serialVersionUID =3D -2403138958014741653L; > @NotEmpty > private String firstName; > public String getFirstName() { > return firstName; > } > public void setFirstName(String firstName) { > this.firstName =3D firstName; > } > } > {code} > @Email, another specific Hibernate validator 4.1 annotation works 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 = --===============5230424549834564002==-- From jira-events at lists.jboss.org Mon Jan 2 10:12:10 2012 Content-Type: multipart/mixed; boundary="===============7271750138340229072==" MIME-Version: 1.0 From: Marek Novotny (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11615) Upgrade to JBoss Parent version 7 Date: Mon, 02 Jan 2012 10:12:10 -0500 Message-ID: <79357.34915.1325517130212.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714858172.39799.1320059745985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7271750138340229072== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11615?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653352#com= ment-12653352 ] = Marek Novotny commented on RF-11615: ------------------------------------ Please upgrade to JBoss Parent 8, which JBoss AS 7.1 uses. = > Upgrade to JBoss Parent version 7 > --------------------------------- > > Key: RF-11615 > URL: https://issues.jboss.org/browse/RF-11615 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Milestone4 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2-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 = --===============7271750138340229072==-- From jira-events at lists.jboss.org Mon Jan 2 10:16:10 2012 Content-Type: multipart/mixed; boundary="===============0225771503648103345==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11615) Upgrade to JBoss Parent version 8 Date: Mon, 02 Jan 2012 10:16:09 -0500 Message-ID: <1198325749.34965.1325517369757.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714858172.39799.1320059745985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0225771503648103345== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11615?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11615: ---------------------------- Summary: Upgrade to JBoss Parent version 8 (was: Upgrade to JBos= s Parent version 7) Assignee: Brian Leathem Fix Version/s: (was: 4.2-Tracking) Brian, please review for addition to {{4.1.1}}. = > Upgrade to JBoss Parent version 8 > --------------------------------- > > Key: RF-11615 > URL: https://issues.jboss.org/browse/RF-11615 > Project: RichFaces > Issue Type: Component Upgrade > 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: Brian Leathem > Priority: Minor > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0225771503648103345==-- From jira-events at lists.jboss.org Mon Jan 2 10:18:10 2012 Content-Type: multipart/mixed; boundary="===============9048884805455509446==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Issue_Comment_Edited=29_=28JIRA=29?= =?utf-8?q?_=3Cjira-events_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11615) Upgrade to JBoss Parent version 8 Date: Mon, 02 Jan 2012 10:18:10 -0500 Message-ID: <211682005.34989.1325517490554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714858172.39799.1320059745985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9048884805455509446== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11615?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653354#com= ment-12653354 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11615 at 1/2/12 10:17 AM: ---------------------------------------------------------- Brian, please review for addition to {{4.1.1}}. Diff 7~8: https://github.com/jboss/jboss-parent-pom/compare/7...8 = was (Author: lfryc): Brian, please review for addition to {{4.1.1}}. = > Upgrade to JBoss Parent version 8 > --------------------------------- > > Key: RF-11615 > URL: https://issues.jboss.org/browse/RF-11615 > Project: RichFaces > Issue Type: Component Upgrade > 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: Brian Leathem > Priority: Minor > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9048884805455509446==-- From jira-events at lists.jboss.org Mon Jan 2 10:46:10 2012 Content-Type: multipart/mixed; boundary="===============0173545221363590539==" MIME-Version: 1.0 From: Pavol Pitonak (Closed) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11813) Drop down menu generates non-valid HTML Date: Mon, 02 Jan 2012 10:46:09 -0500 Message-ID: <1973760510.35067.1325519169969.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 35971641.7524.1323808689819.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0173545221363590539== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11813?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-11813. ------------------------------ = > Drop down menu generates non-valid HTML > --------------------------------------- > > Key: RF-11813 > URL: https://issues.jboss.org/browse/RF-11813 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.CR2 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.1.1.Final > > > The following code snippet generates non-valid XHTML (it contains a div i= nside span): > {code:xml} > > {code} > {code:xml} >
> >
>
> Chart > >
> {code} > Menu items with icon are 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 --===============0173545221363590539==-- From jira-events at lists.jboss.org Mon Jan 2 11:15:10 2012 Content-Type: multipart/mixed; boundary="===============4332325807275104272==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11666) Manage dependencies across whole framework Date: Mon, 02 Jan 2012 11:15:09 -0500 Message-ID: <189518901.35089.1325520909988.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1076602405.71397.1320851805815.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4332325807275104272== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11666?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653364#com= ment-12653364 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11666: --------------------------------- After review with Marek, we have decided for further changes: #. remove {{${version.richfaces}}} from {{richfaces-root-parent}} #. remove all other {{${version.richfaces}}} occurences #. do not import {{richfaces-bom}} in examples which relies on {{richfaces-= root-parent}} = > Manage dependencies across whole framework > ------------------------------------------ > > Key: RF-11666 > URL: https://issues.jboss.org/browse/RF-11666 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Marek Novotny > Fix For: 4.1.1.Final, 4.2-Tracking > > > (Issue originally requested by Marek Novotny) > There are lot of dependencies with versions managed on low-level POMs, e.= g.: > Search across project has found following (approximately, includes false = positives): > {code} > ./checkstyle/pom.xml > ./shade-transformers/pom.xml > ./core/impl/pom.xml > ./core/api/pom.xml > ./build/dist/pom.xml > ./dev-examples/dnd-demo/pom.xml > ./dev-examples/input-demo/pom.xml > ./dev-examples/iteration-demo/pom.xml > ./dev-examples/output-demo/pom.xml > ./dev-examples/parent/pom.xml > ./dev-examples/irc-client/pom.xml > ./dev-examples/push-demo/pom.xml > ./components/output/ui/pom.xml > ./components/dnd/ui/pom.xml > ./components/dnd/api/pom.xml > ./components/validator/ui/pom.xml > ./components/dist/static-resources/pom.xml > ./components/dist/richfaces-components-ui/pom.xml > ./components/input/ui/pom.xml > ./components/parent/pom.xml > ./components/pom.xml > ./showcase/pom.xml > ./archetype-simpleapp/src/main/resources/archetype-resources/pom.xml > ./archetype-simpleapp/pom.xml > ./cdk/maven-javascript-plugin/pom.xml > ./cdk/maven-cdk-plugin/pom.xml > ./cdk/generator/pom.xml > {code} > For {{jsf-test}}: > {code} > ./jsf-test/jsf-mockito/pom.xml > ./jsf-test/stage/pom.xml > ./jsf-test/mock/pom.xml > ./jsf-test/maven-mockgenerator-plugin/pom.xml > ./jsf-test/jsf-test-htmlunit/pom.xml > ./jsf-test/scriptunit/pom.xml > ./jsf-test/jetty/pom.xml > {code} > It would be beneficial having one place managing these dependencies. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4332325807275104272==-- From jira-events at lists.jboss.org Mon Jan 2 11:54:09 2012 Content-Type: multipart/mixed; boundary="===============1834130553896321934==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Assigned=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11666) Manage dependencies across whole framework Date: Mon, 02 Jan 2012 11:54:09 -0500 Message-ID: <847307740.35148.1325523249668.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1076602405.71397.1320851805815.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1834130553896321934== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11666?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11666: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Marek Novotny) = > Manage dependencies across whole framework > ------------------------------------------ > > Key: RF-11666 > URL: https://issues.jboss.org/browse/RF-11666 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final, 4.2-Tracking > > > (Issue originally requested by Marek Novotny) > There are lot of dependencies with versions managed on low-level POMs, e.= g.: > Search across project has found following (approximately, includes false = positives): > {code} > ./checkstyle/pom.xml > ./shade-transformers/pom.xml > ./core/impl/pom.xml > ./core/api/pom.xml > ./build/dist/pom.xml > ./dev-examples/dnd-demo/pom.xml > ./dev-examples/input-demo/pom.xml > ./dev-examples/iteration-demo/pom.xml > ./dev-examples/output-demo/pom.xml > ./dev-examples/parent/pom.xml > ./dev-examples/irc-client/pom.xml > ./dev-examples/push-demo/pom.xml > ./components/output/ui/pom.xml > ./components/dnd/ui/pom.xml > ./components/dnd/api/pom.xml > ./components/validator/ui/pom.xml > ./components/dist/static-resources/pom.xml > ./components/dist/richfaces-components-ui/pom.xml > ./components/input/ui/pom.xml > ./components/parent/pom.xml > ./components/pom.xml > ./showcase/pom.xml > ./archetype-simpleapp/src/main/resources/archetype-resources/pom.xml > ./archetype-simpleapp/pom.xml > ./cdk/maven-javascript-plugin/pom.xml > ./cdk/maven-cdk-plugin/pom.xml > ./cdk/generator/pom.xml > {code} > For {{jsf-test}}: > {code} > ./jsf-test/jsf-mockito/pom.xml > ./jsf-test/stage/pom.xml > ./jsf-test/mock/pom.xml > ./jsf-test/maven-mockgenerator-plugin/pom.xml > ./jsf-test/jsf-test-htmlunit/pom.xml > ./jsf-test/scriptunit/pom.xml > ./jsf-test/jetty/pom.xml > {code} > It would be beneficial having one place managing these dependencies. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1834130553896321934==-- From jira-events at lists.jboss.org Mon Jan 2 23:13:09 2012 Content-Type: multipart/mixed; boundary="===============2078885884248786833==" MIME-Version: 1.0 From: Dave Chen (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11859) Many script/css added when not needed Date: Mon, 02 Jan 2012 23:13:09 -0500 Message-ID: <872670898.35681.1325563989373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2078885884248786833== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Many script/css added when not needed ------------------------------------- Key: RF-11859 URL: https://issues.jboss.org/browse/RF-11859 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Affects Versions: 3.3.3.Final Environment: JBoss 5.1 Reporter: Dave Chen Richfaces filter always adds many scripts/css even when a page does not nee= d them, causing slow page loading for website, and not search engine friend= ly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2078885884248786833==-- From jira-events at lists.jboss.org Tue Jan 3 04:45:09 2012 Content-Type: multipart/mixed; boundary="===============4988640497645954834==" MIME-Version: 1.0 From: Pavol Pitonak (Closed) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11830) Toolbar: attribute width is always generated Date: Tue, 03 Jan 2012 04:45:09 -0500 Message-ID: <1348098187.35862.1325583909607.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 19764319.21785.1324325349860.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4988640497645954834== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11830?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-11830. ------------------------------ = > Toolbar: attribute width is always generated > -------------------------------------------- > > Key: RF-11830 > URL: https://issues.jboss.org/browse/RF-11830 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.1.1.Final > > > Toolbar generates width attribute even if width is set in CSS. > {code:xml} > > > > > {code} > The code above generates the following markup (width is set twice): > {code:xml} > > ... >
> {code} > Only CSS should be used. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4988640497645954834==-- From jira-events at lists.jboss.org Tue Jan 3 04:47:09 2012 Content-Type: multipart/mixed; boundary="===============2845743024669026804==" MIME-Version: 1.0 From: Pavol Pitonak (Closed) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11829) Toolbar: cellspacing and cellpadding should be implemented using CSS Date: Tue, 03 Jan 2012 04:47:09 -0500 Message-ID: <813417665.35864.1325584029493.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1368421696.21763.1324324870064.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2845743024669026804== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11829?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-11829. ------------------------------ = > Toolbar: cellspacing and cellpadding should be implemented using CSS > -------------------------------------------------------------------- > > Key: RF-11829 > URL: https://issues.jboss.org/browse/RF-11829 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.1.1.Final > > > Replace attributes cellpadding and cellspacing with rich:toolbar with CSS= (border-collapse: collapse). Cellspacing and cellpadding are not valid in = HTML5. > For example, see RichFaces Showcase: > http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3DtoolB= ar&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 --===============2845743024669026804==-- From jira-events at lists.jboss.org Tue Jan 3 04:49:09 2012 Content-Type: multipart/mixed; boundary="===============1341660982943341906==" MIME-Version: 1.0 From: Pavol Pitonak (Closed) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11832) Toolbar: attribute border should be replaced with CSS Date: Tue, 03 Jan 2012 04:49:09 -0500 Message-ID: <440772808.35868.1325584149541.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1851411769.21834.1324327389425.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1341660982943341906== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11832?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-11832. ------------------------------ = > Toolbar: attribute border should be replaced with CSS > ----------------------------------------------------- > > Key: RF-11832 > URL: https://issues.jboss.org/browse/RF-11832 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.1.1.Final > > > Toolbar generates border=3D"0" in top table element. Instead, CSS propert= y *border: none;* should be set in following classes: > * rf-tb-itm > * rf-tb-sep > * rf-tb-emp -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1341660982943341906==-- From jira-events at lists.jboss.org Tue Jan 3 04:49:09 2012 Content-Type: multipart/mixed; boundary="===============5093939181686672508==" MIME-Version: 1.0 From: Pavol Pitonak (Closed) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11831) Toolbar: col elements should use CSS for width Date: Tue, 03 Jan 2012 04:49:09 -0500 Message-ID: <1432520721.35869.1325584149640.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1706606323.21791.1324325949521.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5093939181686672508== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11831?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-11831. ------------------------------ = > Toolbar: col elements should use CSS for width > ---------------------------------------------- > > Key: RF-11831 > URL: https://issues.jboss.org/browse/RF-11831 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Trivial > Labels: needs-qe > Fix For: 4.1.1.Final > > > Toolbar generates elements with attribute "width" which should be r= eplaced with CSS. Attribute width is obsolete in HTML5. > {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 --===============5093939181686672508==-- From jira-events at lists.jboss.org Tue Jan 3 06:09:09 2012 Content-Type: multipart/mixed; boundary="===============8407889024076267360==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11666) Manage dependencies across whole framework Date: Tue, 03 Jan 2012 06:09:09 -0500 Message-ID: <1275782964.36035.1325588949790.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1076602405.71397.1320851805815.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8407889024076267360== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11666?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11666: ---------------------------- Fix Version/s: (was: 4.2-Tracking) Priority: Critical (was: Major) = > Manage dependencies across whole framework > ------------------------------------------ > > Key: RF-11666 > URL: https://issues.jboss.org/browse/RF-11666 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.1.Final > > > (Issue originally requested by Marek Novotny) > There are lot of dependencies with versions managed on low-level POMs, e.= g.: > Search across project has found following (approximately, includes false = positives): > {code} > ./checkstyle/pom.xml > ./shade-transformers/pom.xml > ./core/impl/pom.xml > ./core/api/pom.xml > ./build/dist/pom.xml > ./dev-examples/dnd-demo/pom.xml > ./dev-examples/input-demo/pom.xml > ./dev-examples/iteration-demo/pom.xml > ./dev-examples/output-demo/pom.xml > ./dev-examples/parent/pom.xml > ./dev-examples/irc-client/pom.xml > ./dev-examples/push-demo/pom.xml > ./components/output/ui/pom.xml > ./components/dnd/ui/pom.xml > ./components/dnd/api/pom.xml > ./components/validator/ui/pom.xml > ./components/dist/static-resources/pom.xml > ./components/dist/richfaces-components-ui/pom.xml > ./components/input/ui/pom.xml > ./components/parent/pom.xml > ./components/pom.xml > ./showcase/pom.xml > ./archetype-simpleapp/src/main/resources/archetype-resources/pom.xml > ./archetype-simpleapp/pom.xml > ./cdk/maven-javascript-plugin/pom.xml > ./cdk/maven-cdk-plugin/pom.xml > ./cdk/generator/pom.xml > {code} > For {{jsf-test}}: > {code} > ./jsf-test/jsf-mockito/pom.xml > ./jsf-test/stage/pom.xml > ./jsf-test/mock/pom.xml > ./jsf-test/maven-mockgenerator-plugin/pom.xml > ./jsf-test/jsf-test-htmlunit/pom.xml > ./jsf-test/scriptunit/pom.xml > ./jsf-test/jetty/pom.xml > {code} > It would be beneficial having one place managing these dependencies. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8407889024076267360==-- From jira-events at lists.jboss.org Tue Jan 3 06:11:11 2012 Content-Type: multipart/mixed; boundary="===============6606978331895638499==" MIME-Version: 1.0 From: Pavol Pitonak (Assigned) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10197) Right click menu - rich:contextMenu - should be ported from RF 3 Date: Tue, 03 Jan 2012 06:11:11 -0500 Message-ID: <701955715.36058.1325589071442.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1371525318.9293.1294869109676.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6606978331895638499== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10197?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-10197: ---------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) = > Right click menu - rich:contextMenu - should be ported from RF 3 > ---------------------------------------------------------------- > > Key: RF-10197 > URL: https://issues.jboss.org/browse/RF-10197 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.0.0.Milestone5 > Environment: Windows > Reporter: Devinder Singh > Assignee: J=C3=A1n Jamrich > Priority: Blocker > Labels: sandbox > Fix For: 4.1.1.Final > > > rich:contextMenu is available in 3.x release but not yet supported in 4.0= . = > As it enables right click menus on JSF components, it's a very useful fea= ture that can be used in wide variety of applications = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6606978331895638499==-- From jira-events at lists.jboss.org Tue Jan 3 06:50:09 2012 Content-Type: multipart/mixed; boundary="===============5899763627217542771==" MIME-Version: 1.0 From: Pavol Pitonak (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11860) Data table: The scope attribute on the td element is obsolete Date: Tue, 03 Jan 2012 06:50:09 -0500 Message-ID: <207304981.36098.1325591409412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5899763627217542771== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Data table: The scope attribute on the td element is obsolete ------------------------------------------------------------- Key: RF-11860 URL: https://issues.jboss.org/browse/RF-11860 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: compatibility, component-tables Affects Versions: 4.1.0.Final Environment: RichFaces 4.1.1-SNAPSHOT Metamer 4.1.1-SNAPSHOT r.23118 Mojarra 2.1.5 JBoss AS 7.1.0.CR1 OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux Chrome 16.0.912.63 @ Linux i686 Reporter: Pavol Pitonak The column footer is rendered as in following code snippet (can be reproduc= ed in Metamer http://localhost:8080/metamer/faces/components/richDataTable/= facets.xhtml): {code:xml} {code} Attribute *scope* on element td is obsolete in HTML5 and should be set on t= h element instead. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5899763627217542771==-- From jira-events at lists.jboss.org Tue Jan 3 07:33:10 2012 Content-Type: multipart/mixed; boundary="===============8470534805401496797==" MIME-Version: 1.0 From: RH Bugzilla Integration (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11544) Unify JSF API dependencies usage + introduce JBoss-specific profile Date: Tue, 03 Jan 2012 07:33:10 -0500 Message-ID: <688623924.36222.1325593990186.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 802301686.33181.1318582636150.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8470534805401496797== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11544?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653477#com= ment-12653477 ] = RH Bugzilla Integration commented on RF-11544: ---------------------------------------------- Karel Piwko changed the Status of [bug 746177|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D746177] from ON_QA to VERIFIED = > Unify JSF API dependencies usage + introduce JBoss-specific profile > ------------------------------------------------------------------- > > Key: RF-11544 > URL: https://issues.jboss.org/browse/RF-11544 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Milestone2 > Reporter: Karel Piwko > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone4 > > > Description of problem: > RichFaces bom contains com.sun.faces for jsf-api definition. = > Version-Release number of selected component (if applicable): > 4.1.0-20110910-M2-redhat-1 > How reproducible: > Always. > Steps to Reproduce: > 1. Import org.richfaces:richfaces-bom > Actual results: > There is com.sun.faces:jsf-api and com.sun.faces:jsf-impl > Expected results: > There should be javax.faces:jsf-api and com.sun.faces:jsf-impl -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8470534805401496797==-- From jira-events at lists.jboss.org Tue Jan 3 09:05:10 2012 Content-Type: multipart/mixed; boundary="===============8475169784551093788==" MIME-Version: 1.0 From: Peter B (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11861) richfaces 4.1.Final showcase: Non-resolvable parent POM: Could not find artifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final Date: Tue, 03 Jan 2012 09:05:09 -0500 Message-ID: <1704236441.36501.1325599509914.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8475169784551093788== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable richfaces 4.1.Final showcase: Non-resolvable parent POM: Could not find art= ifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final ---------------------------------------------------------------------------= --------------------------------------------------------- Key: RF-11861 URL: https://issues.jboss.org/browse/RF-11861 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Peter B richfaces showcase for Richfaces 4.1 Final doesn't build. Problem is that: org.richfaces richfaces-root-parent 4.1.0.Final is not in central maven repository. Console output: [INFO] Scanning for projects... Downloading: http://repo1.maven.org/maven2/org/richfaces/richfaces-root-par= ent/4.1.0.Final/richfaces-root-parent-4.1.0.F inal.pom [ERROR] The build could not read 1 project -> [Help 1] [ERROR] [ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Final= (D:\tmp\richfaces-showcase-77c6701\pom.xml) has 1 error [ERROR] Non-resolvable parent POM: Could not find artifact org.richface= s:richfaces-root-parent:pom:4.1.0.Final in ce ntral (http://repo1.maven.org/maven2) and 'parent.relativePath' points at w= rong local POM @ line 8, column 13 -> [Help 2 ] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e= switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, pleas= e read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBu= ildingException [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/Unresolva= bleModelException -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8475169784551093788==-- From jira-events at lists.jboss.org Tue Jan 3 09:40:09 2012 Content-Type: multipart/mixed; boundary="===============2149152293684820614==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11666) Manage dependencies across whole framework Date: Tue, 03 Jan 2012 09:40:09 -0500 Message-ID: <1880821888.36622.1325601609816.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1076602405.71397.1320851805815.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2149152293684820614== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11666?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11666. ----------------------------- Resolution: Done Changes has been integrated to {{develop}}. = > Manage dependencies across whole framework > ------------------------------------------ > > Key: RF-11666 > URL: https://issues.jboss.org/browse/RF-11666 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.1.Final > > > (Issue originally requested by Marek Novotny) > There are lot of dependencies with versions managed on low-level POMs, e.= g.: > Search across project has found following (approximately, includes false = positives): > {code} > ./checkstyle/pom.xml > ./shade-transformers/pom.xml > ./core/impl/pom.xml > ./core/api/pom.xml > ./build/dist/pom.xml > ./dev-examples/dnd-demo/pom.xml > ./dev-examples/input-demo/pom.xml > ./dev-examples/iteration-demo/pom.xml > ./dev-examples/output-demo/pom.xml > ./dev-examples/parent/pom.xml > ./dev-examples/irc-client/pom.xml > ./dev-examples/push-demo/pom.xml > ./components/output/ui/pom.xml > ./components/dnd/ui/pom.xml > ./components/dnd/api/pom.xml > ./components/validator/ui/pom.xml > ./components/dist/static-resources/pom.xml > ./components/dist/richfaces-components-ui/pom.xml > ./components/input/ui/pom.xml > ./components/parent/pom.xml > ./components/pom.xml > ./showcase/pom.xml > ./archetype-simpleapp/src/main/resources/archetype-resources/pom.xml > ./archetype-simpleapp/pom.xml > ./cdk/maven-javascript-plugin/pom.xml > ./cdk/maven-cdk-plugin/pom.xml > ./cdk/generator/pom.xml > {code} > For {{jsf-test}}: > {code} > ./jsf-test/jsf-mockito/pom.xml > ./jsf-test/stage/pom.xml > ./jsf-test/mock/pom.xml > ./jsf-test/maven-mockgenerator-plugin/pom.xml > ./jsf-test/jsf-test-htmlunit/pom.xml > ./jsf-test/scriptunit/pom.xml > ./jsf-test/jetty/pom.xml > {code} > It would be beneficial having one place managing these dependencies. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2149152293684820614==-- From jira-events at lists.jboss.org Tue Jan 3 09:40:11 2012 Content-Type: multipart/mixed; boundary="===============4219500384906525482==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11760) Remove parent section from richfaces-bom Date: Tue, 03 Jan 2012 09:40:10 -0500 Message-ID: <346071380.36636.1325601610969.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 873400509.55474.1322668960858.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4219500384906525482== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11760?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11760. ----------------------------- Resolution: Done = > Remove parent section from richfaces-bom > ---------------------------------------- > > Key: RF-11760 > URL: https://issues.jboss.org/browse/RF-11760 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Karel Piwko > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 4.1.1.Final > > > Having element in the BOM file is fundamentally wrong. > If user imports dependencyManagement of the BOM file, it imports even the= dependencies from its parent and upper ancestors. Since the ancestor is jb= oss-parent, it includes virtually the whole world. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4219500384906525482==-- From jira-events at lists.jboss.org Tue Jan 3 09:42:10 2012 Content-Type: multipart/mixed; boundary="===============2302785526306197793==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11788) Update build version of MyFaces to 2.1.5 Date: Tue, 03 Jan 2012 09:42:10 -0500 Message-ID: <1088576509.36653.1325601730615.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2142901077.70509.1323104320664.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2302785526306197793== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11788?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11788. ----------------------------- Resolution: Done = > Update build version of MyFaces to 2.1.5 > ----------------------------------------- > > Key: RF-11788 > URL: https://issues.jboss.org/browse/RF-11788 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: myfaces > Fix For: 4.1.1.Final > > > In {{richfaces-bom}}, we are using {{2.1.1}}, but documented version is {= {2.1.4}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2302785526306197793==-- From jira-events at lists.jboss.org Tue Jan 3 09:42:10 2012 Content-Type: multipart/mixed; boundary="===============3235258409849403154==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11791) Upgrade build version of JSF RI to 2.1.5 Date: Tue, 03 Jan 2012 09:42:09 -0500 Message-ID: <2059633012.36640.1325601729964.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1733474985.72661.1323163180651.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3235258409849403154== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11791?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11791. ----------------------------- Resolution: Done = > Upgrade build version of JSF RI to 2.1.5 > ---------------------------------------- > > Key: RF-11791 > URL: https://issues.jboss.org/browse/RF-11791 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > The {{2.1.5}} fixes the security issue: > [includeViewParameters re-evaluates param/model values as EL expressions|= http://java.net/jira/browse/JAVASERVERFACES-2247] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3235258409849403154==-- From jira-events at lists.jboss.org Tue Jan 3 09:51:10 2012 Content-Type: multipart/mixed; boundary="===============0737888132628779858==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11835) Remove repositories and pluginRepositories sections from richfaces-parent Date: Tue, 03 Jan 2012 09:51:10 -0500 Message-ID: <1263989600.36686.1325602270040.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1310408444.24263.1324385949362.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0737888132628779858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11835?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11835. ----------------------------- Resolution: Done Framework has been upgraded to {{richfaces-parent:12-SNAPSHOT}}, which does= not contain these sections anymore. = > Remove repositories and pluginRepositories sections from richfaces-parent > ------------------------------------------------------------------------- > > Key: RF-11835 > URL: https://issues.jboss.org/browse/RF-11835 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, clean-up > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > Since we are uploading richfaces to Maven Central, we don't want to inclu= de project specific repositories in build. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0737888132628779858==-- From jira-events at lists.jboss.org Tue Jan 3 09:51:10 2012 Content-Type: multipart/mixed; boundary="===============7431978956117112344==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11826) Parent: upgrade maven-plugin-plugin to 2.9 and setup project to use richfaces-parent:12-SNAPSHOT Date: Tue, 03 Jan 2012 09:51:10 -0500 Message-ID: <497719097.36688.1325602270118.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1306404369.21376.1324313889478.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7431978956117112344== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11826?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11826. ----------------------------- Resolution: Done = > Parent: upgrade maven-plugin-plugin to 2.9 and setup project to use richf= aces-parent:12-SNAPSHOT > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11826 > URL: https://issues.jboss.org/browse/RF-11826 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.1.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > Issue with plugin dep version on {{jboss-parent}} side (JBBUILD-709) lead= into local update [2]. > we should upgrade it in {{richfaces-parent}} before JBoss Parent will be = released. > [1] https://github.com/richfaces/cdk/commit/642ec7a81075aec334d6692cc6077= f69bce2572d#L0R104 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7431978956117112344==-- From jira-events at lists.jboss.org Tue Jan 3 09:53:10 2012 Content-Type: multipart/mixed; boundary="===============7841761851223413491==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11836) Replace ${project.version} definitions in the poms with actual version Date: Tue, 03 Jan 2012 09:53:10 -0500 Message-ID: <843853492.36721.1325602390438.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 150403957.24272.1324386369523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7841761851223413491== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11836?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653525#com= ment-12653525 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11836: --------------------------------- >From the message from Maven Central guys, we it appeared we should not use= ${project.version} at all, but the project which should be affected are no= t listed, we would need to investigate more what variables exactly should not be used. = > Replace ${project.version} definitions in the poms with actual version > ---------------------------------------------------------------------- > > Key: RF-11836 > URL: https://issues.jboss.org/browse/RF-11836 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > This is requirement for uploading to Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7841761851223413491==-- From jira-events at lists.jboss.org Tue Jan 3 10:02:09 2012 Content-Type: multipart/mixed; boundary="===============5652174201061688123==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Closed=29_=28JIRA=29_=3Cjira-event?= =?utf-8?q?s_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11767) Archetype: cannot build generated project because of missing JSF impl Date: Tue, 03 Jan 2012 10:02:09 -0500 Message-ID: <366436014.36761.1325602929889.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 210769580.60461.1322740300710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5652174201061688123== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11767?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D closed RF-11767. --------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix Version/s: (was: 4.1.1.Final) Resolution: Rejected Rejected as there are no changes necessary in archetype. = > Archetype: cannot build generated project because of missing JSF impl > --------------------------------------------------------------------- > > Key: RF-11767 > URL: https://issues.jboss.org/browse/RF-11767 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > It's not possible to build a project generated using richfaces-archetype-= simpleapp with enterprise=3Dtrue because of missing JSF implementation arti= fact. > RichFaces BOM contains following version but EAP repository contains 2.1.= 3-b02-redhat-0-todo. > {code:xml} > > com.sun.faces > jsf-impl > 2.1.3-b02-jbossorg-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 = --===============5652174201061688123==-- From jira-events at lists.jboss.org Tue Jan 3 10:04:09 2012 Content-Type: multipart/mixed; boundary="===============8622228574666002132==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Assigned=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11839) Hot key doesn't work when focus in on editor Date: Tue, 03 Jan 2012 10:04:09 -0500 Message-ID: <2143284697.36768.1325603049677.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 334225743.24536.1324390329689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8622228574666002132== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11839?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11839: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Hot key doesn't work when focus in on editor > -------------------------------------------- > > Key: RF-11839 > URL: https://issues.jboss.org/browse/RF-11839 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux x86_64, Firefox 8.0 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/editor.xhtml > # press Ctrl+X (to focus on editor) > # press Alt+X (to blur from editor) > result: > * when Ctrl+X is pressed, focus is in editor > * when Alt+X is pressed, nothing happens (editor should no longer be focu= sed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8622228574666002132==-- From jira-events at lists.jboss.org Tue Jan 3 10:04:09 2012 Content-Type: multipart/mixed; boundary="===============7960401450350861189==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Assigned=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11808) Archetypes : remove the generation of *-source jars plumbing Date: Tue, 03 Jan 2012 10:04:09 -0500 Message-ID: <879082206.36770.1325603049806.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1095649657.3045.1323708909608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7960401450350861189== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11808?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11808: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Archetypes : remove the generation of *-source jars plumbing > ------------------------------------------------------------ > > Key: RF-11808 > URL: https://issues.jboss.org/browse/RF-11808 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.1.0.CR2 > Reporter: Fred Bricon > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.1.1.Final > > > The RF archetypes have some configuration to create *-source jars. Since = the sources are already packaged in the actual archetype, this seems unnece= ssary, clutters the pom.xml and adds extra overhead to maintain the maven-a= ssembly-plugin configuration. > Unless there's a good reason to keep that boilerplate, my suggestion is t= o stop generating the *-source packages and clean up the pom.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 = --===============7960401450350861189==-- From jira-events at lists.jboss.org Tue Jan 3 10:04:09 2012 Content-Type: multipart/mixed; boundary="===============4338083001208669896==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Assigned=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11816) Notify stack: names of CSS classes do not follow naming conventions Date: Tue, 03 Jan 2012 10:04:09 -0500 Message-ID: <328678491.36765.1325603049557.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1667763817.10485.1323880569406.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4338083001208669896== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11816?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11816: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Notify stack: names of CSS classes do not follow naming conventions > ------------------------------------------------------------------- > > Key: RF-11816 > URL: https://issues.jboss.org/browse/RF-11816 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.1.1.Final > > > Notify stack has 4 CSS classes that do not follow naming conventions: > * rf-ntf-pos-topLeft > * rf-ntf-pos-topRight > * rf-ntf-pos-bottomLeft > * rf-ntf-pos-bottomRight > Compare with similar classes of popup panel: > * rf-pp-hndlr-tl > * rf-pp-hndlr-tr > * rf-pp-hndlr-bl > * rf-pp-hndlr-br -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4338083001208669896==-- From jira-events at lists.jboss.org Tue Jan 3 10:08:09 2012 Content-Type: multipart/mixed; boundary="===============7904223741952725628==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11824) rich:hotKey - add option to prevent default event handling Date: Tue, 03 Jan 2012 10:08:09 -0500 Message-ID: <1453263451.36787.1325603289481.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2043524135.17961.1324056189409.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7904223741952725628== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11824?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11824: ---------------------------- Fix Version/s: 4.1.1.Final = > rich:hotKey - add option to prevent default event handling > ---------------------------------------------------------- > > Key: RF-11824 > URL: https://issues.jboss.org/browse/RF-11824 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.1.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.1.Final > > > Some hot-keys are triggering default event handling ({{ctrl+a}}, {{page-u= p}}, etc.), > we may try to prevent this behavior, however it is not as simple as {{eve= nt.preventDefault()}} or {{return false;}}. > *_Please vote on issue if you would like to having this issue 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 = --===============7904223741952725628==-- From jira-events at lists.jboss.org Tue Jan 3 10:10:10 2012 Content-Type: multipart/mixed; boundary="===============6575288206544374680==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11471) Upgrade to latest version of Atmosphere Date: Tue, 03 Jan 2012 10:10:09 -0500 Message-ID: <1018205292.36790.1325603409964.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6575288206544374680== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11471: ---------------------------- Summary: Upgrade to latest version of Atmosphere (was: Upgrade to Atmo= sphere 0.8.0-RC3) = > Upgrade to latest version of Atmosphere > --------------------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2-Tracking > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6575288206544374680==-- From jira-events at lists.jboss.org Tue Jan 3 10:22:11 2012 Content-Type: multipart/mixed; boundary="===============8549694901103121672==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11803) render of 'c:' and 'fn:' is one click behind Date: Tue, 03 Jan 2012 10:22:11 -0500 Message-ID: <88319743.36825.1325604131900.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1412990328.81640.1323338620636.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8549694901103121672== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11803?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653533#com= ment-12653533 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11803: --------------------------------- Thanks Milo, in respect to records, I'm rejecting this issue as upstream is= sue. = > render of 'c:' and 'fn:' is one click behind > -------------------------------------------- > > Key: RF-11803 > URL: https://issues.jboss.org/browse/RF-11803 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: MyFaces 2.1.5, Tomcat 7.0.22, 4.1.0-20111204 from sh= owcase > Reporter: Milo van der Zee > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: render > > 'c:' and 'fn:' is rendered differently from previous versions. > When clicking the inc and dec buttons in the example you can see that the= field contents are updates each click but the number of fields is not (com= ma at the end when pressing 'dec'. Pressing 'render' then fixes the output. > When using a function to render it works fine. Even though the function d= oes not do much. > MAG, > Milo > {code:title=3D"testje4.xhtml"} > > xmlns=3D"http://www.w3.org/1999/xhtml" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:c=3D"http://java.sun.com/jsp/jstl/core" > > > > > > > > = > > Counter: #{testBean.counter}
>
> = >
> > > > > > > #{status+1}: '#{field}', '#{fields}'
>
>
>
> = > Direct render: > > >
> With function to render: = > > >
> Manual render: > >
>
> > {code} > {code:title=3D"testBean.java"} > package com.test; > import java.util.Arrays; > import java.util.List; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > @ManagedBean > @SessionScoped > public class TestBean { > private int counter =3D 5; > public String getFieldsString() { > StringBuilder builder =3D new StringBuilder(); > boolean firstField =3D true; > for (int i =3D 0; i < counter; i++) { > if (!firstField) builder.append(','); > firstField =3D false; > char[] fill =3D new char[i + 1]; > Arrays.fill(fill, Character.forDigit(counter, 10)); > String fieldName =3D new String(fill); > builder.append(fieldName); > } > return builder.toString(); > } > public List getFieldsList() { > String string =3D getFieldsString(); > List list =3D Arrays.asList(string.split(",")); > return list; > } > public void decCounter() { > counter--; > if (counter < 1) counter =3D 1; > } > public void incCounter() { > counter++; > if (counter > 9) counter =3D 9; > } > public int getCounter() { > return counter; > } > public void setCounter(int counter) { > this.counter =3D counter; > } > } > {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 = --===============8549694901103121672==-- From jira-events at lists.jboss.org Tue Jan 3 10:22:12 2012 Content-Type: multipart/mixed; boundary="===============1609922003544247566==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11803) render of 'c:' and 'fn:' is one click behind Date: Tue, 03 Jan 2012 10:22:12 -0500 Message-ID: <2116376161.36829.1325604132106.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1412990328.81640.1323338620636.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1609922003544247566== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11803?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11803. ----------------------------- Resolution: Rejected = > render of 'c:' and 'fn:' is one click behind > -------------------------------------------- > > Key: RF-11803 > URL: https://issues.jboss.org/browse/RF-11803 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: MyFaces 2.1.5, Tomcat 7.0.22, 4.1.0-20111204 from sh= owcase > Reporter: Milo van der Zee > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: render > > 'c:' and 'fn:' is rendered differently from previous versions. > When clicking the inc and dec buttons in the example you can see that the= field contents are updates each click but the number of fields is not (com= ma at the end when pressing 'dec'. Pressing 'render' then fixes the output. > When using a function to render it works fine. Even though the function d= oes not do much. > MAG, > Milo > {code:title=3D"testje4.xhtml"} > > xmlns=3D"http://www.w3.org/1999/xhtml" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:fn=3D"http://java.sun.com/jsp/jstl/functions" > xmlns:c=3D"http://java.sun.com/jsp/jstl/core" > > > > > > > > = > > Counter: #{testBean.counter}
>
> = >
> > > > > > > #{status+1}: '#{field}', '#{fields}'
>
>
>
> = > Direct render: > > >
> With function to render: = > > >
> Manual render: > >
>
> > {code} > {code:title=3D"testBean.java"} > package com.test; > import java.util.Arrays; > import java.util.List; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > @ManagedBean > @SessionScoped > public class TestBean { > private int counter =3D 5; > public String getFieldsString() { > StringBuilder builder =3D new StringBuilder(); > boolean firstField =3D true; > for (int i =3D 0; i < counter; i++) { > if (!firstField) builder.append(','); > firstField =3D false; > char[] fill =3D new char[i + 1]; > Arrays.fill(fill, Character.forDigit(counter, 10)); > String fieldName =3D new String(fill); > builder.append(fieldName); > } > return builder.toString(); > } > public List getFieldsList() { > String string =3D getFieldsString(); > List list =3D Arrays.asList(string.split(",")); > return list; > } > public void decCounter() { > counter--; > if (counter < 1) counter =3D 1; > } > public void incCounter() { > counter++; > if (counter > 9) counter =3D 9; > } > public int getCounter() { > return counter; > } > public void setCounter(int counter) { > this.counter =3D counter; > } > } > {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 = --===============1609922003544247566==-- From jira-events at lists.jboss.org Tue Jan 3 10:22:12 2012 Content-Type: multipart/mixed; boundary="===============8240743747794199860==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11840) Hot key: arrow keys do not work in pick/ordering list when hot key is on page Date: Tue, 03 Jan 2012 10:22:12 -0500 Message-ID: <781775710.36837.1325604132455.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1746550578.24557.1324390689563.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8240743747794199860== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11840?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11840: ---------------------------- Fix Version/s: 4.1.1.Final = > Hot key: arrow keys do not work in pick/ordering list when hot key is on = page > -------------------------------------------------------------------------= ---- > > Key: RF-11840 > URL: https://issues.jboss.org/browse/RF-11840 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3-b02 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/pickList.xhtml > # click into pick list to select third item (Phoenix, Arizona) > # press arrow down > result: > * the following item in pick list should be selected (Little Rock, Arkans= as) but browser scrolls the page instead > * when rich:hotKey is removed from page, arrows down/up start working aga= in > * there is the same problem with *ordering 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 = --===============8240743747794199860==-- From jira-events at lists.jboss.org Tue Jan 3 10:25:09 2012 Content-Type: multipart/mixed; boundary="===============7352750649813731543==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11837) Hot key: type attribute doesn't work when set to keypress Date: Tue, 03 Jan 2012 10:25:09 -0500 Message-ID: <1957290938.36841.1325604309566.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1275549371.24421.1324389250026.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7352750649813731543== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11837?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653535#com= ment-12653535 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11837: --------------------------------- @type attribute are going to be reimplemented in scope of RF-11851. Let's reject this one once implemented. = > Hot key: type attribute doesn't work when set to keypress > --------------------------------------------------------- > > Key: RF-11837 > URL: https://issues.jboss.org/browse/RF-11837 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/simple.xhtml > # press Ctrl+X = > # set attribute type=3Dkeypress > # press Ctrl+X > result: > * first action is executed, second 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 = --===============7352750649813731543==-- From jira-events at lists.jboss.org Tue Jan 3 10:25:09 2012 Content-Type: multipart/mixed; boundary="===============5376730600119661390==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11837) Hot key: type attribute doesn't work when set to keypress Date: Tue, 03 Jan 2012 10:25:09 -0500 Message-ID: <253000606.36843.1325604309828.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1275549371.24421.1324389250026.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5376730600119661390== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11837?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11837: ---------------------------- Fix Version/s: 4.1.1.Final = > Hot key: type attribute doesn't work when set to keypress > --------------------------------------------------------- > > Key: RF-11837 > URL: https://issues.jboss.org/browse/RF-11837 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/simple.xhtml > # press Ctrl+X = > # set attribute type=3Dkeypress > # press Ctrl+X > result: > * first action is executed, second 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 = --===============5376730600119661390==-- From jira-events at lists.jboss.org Tue Jan 3 10:27:09 2012 Content-Type: multipart/mixed; boundary="===============1802867597874366812==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11851) rich:hotKey - add support for onkeypress, onkeydown and onkeyup Date: Tue, 03 Jan 2012 10:27:09 -0500 Message-ID: <471153882.36846.1325604429391.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2116883574.29436.1324557550117.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1802867597874366812== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11851?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653536#com= ment-12653536 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11851: --------------------------------- Reject RF-11837 once this issue will be solved. = > rich:hotKey - add support for onkeypress, onkeydown and onkeyup > --------------------------------------------------------------- > > Key: RF-11851 > URL: https://issues.jboss.org/browse/RF-11851 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.1.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.1.Final > > > The binding will be done only for such types which have defined some hand= ler. > This will mean removing {{@type}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1802867597874366812==-- From jira-events at lists.jboss.org Tue Jan 3 10:41:09 2012 Content-Type: multipart/mixed; boundary="===============0186108723276968689==" MIME-Version: 1.0 From: Pavol Pitonak (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11862) BOM cannot be build Date: Tue, 03 Jan 2012 10:41:09 -0500 Message-ID: <1844936912.36863.1325605269564.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0186108723276968689== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable BOM cannot be build ------------------- Key: RF-11862 URL: https://issues.jboss.org/browse/RF-11862 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: build/distribution Affects Versions: 4.1.0.Final Reporter: Pavol Pitonak Priority: Blocker RichFaces BOM cannot be build (https://hudson.qa.jboss.com/hudson/view/RF-4= .0/job/richfaces-4.1-build/84/console). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0186108723276968689==-- From jira-events at lists.jboss.org Tue Jan 3 13:47:09 2012 Content-Type: multipart/mixed; boundary="===============6931644725421801109==" MIME-Version: 1.0 From: Brian Leathem (Resolved) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11856) Restore IE7 Support (dropped in RF 4.1.0.Final) Date: Tue, 03 Jan 2012 13:47:09 -0500 Message-ID: <1681843144.37632.1325616429395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1285828427.30856.1324626849381.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6931644725421801109== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11856?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11856. -------------------------------- Assignee: Brian Leathem Resolution: Won't Fix We've removed IE 7 from the list of supported browsers, as it's no longer a= focus for the project moving forward. If you experience any specific issu= es with IE 7, please file jira issues, and we can assess them on a case-by-= case basis. = > Restore IE7 Support (dropped in RF 4.1.0.Final) > ----------------------------------------------- > > Key: RF-11856 > URL: https://issues.jboss.org/browse/RF-11856 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Dupont Dupont > Assignee: Brian Leathem > > IE 7 support was dropped in RF 4.1 > Links : > * http://community.jboss.org/wiki/PrioritizedRichFacesBrowsersCompatibil= ityMatrix > * http://docs.jboss.org/richfaces/latest_4_1_X/Developer_Guide/en-US/htm= l/chap-Developer_Guide-RichFaces_overview.html#sect-Component_Reference-Ric= hFaces_overview-Client_requirements > = > IE 7 usage is 6.7% (from http://www.w3counter.com/globalstats.php) - RF 4= .1 isn't usable for us as of now for internet purposes. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6931644725421801109==-- From jira-events at lists.jboss.org Wed Jan 4 04:10:17 2012 Content-Type: multipart/mixed; boundary="===============3702995797050162750==" MIME-Version: 1.0 From: Lutz Ulrich (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11777) PopupPanelBaseRenderer is missing ResourceDependency on jquery.js Date: Wed, 04 Jan 2012 04:10:17 -0500 Message-ID: <926298812.38695.1325668217718.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 931847243.65657.1322832580703.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3702995797050162750== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11777?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653715#com= ment-12653715 ] = Lutz Ulrich commented on RF-11777: ---------------------------------- Sorry, in our case, the problem resulted from using PrimeFaces along with RichFace= s. PrimeFaces has a special HeadRenderer (for HTML ) which only interpre= ts resources which end with '.js' as script resources. Thus, RichFaces special script resources 'ajax.reslib' and 'base-component.= reslib' are not treated as script resources and the related resource UIComp= onents are probably not rendered at all. = > PopupPanelBaseRenderer is missing ResourceDependency on jquery.js > ----------------------------------------------------------------- > > Key: RF-11777 > URL: https://issues.jboss.org/browse/RF-11777 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: Java7, Tomcat 7.0.22, Mojarra 2.1.2 > Reporter: Lutz Ulrich > Assignee: Brian Leathem > Priority: Minor > Original Estimate: 5 minutes > Remaining Estimate: 5 minutes > > PopupPanelBaseRenderer is missing ResourceDependency on jquery.js and may= be other script library files. > If the page does not contain any components which declare to require jque= ry.js or if such components are located after popupPanel, the missing jQuer= y library causes script errors and the popupPanel 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 =20 --===============3702995797050162750==-- From jira-events at lists.jboss.org Wed Jan 4 04:12:10 2012 Content-Type: multipart/mixed; boundary="===============2683739287905444735==" MIME-Version: 1.0 From: Juraj Huska (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11827) showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT Date: Wed, 04 Jan 2012 04:12:10 -0500 Message-ID: <1742441236.38700.1325668330686.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 945549203.21383.1324314009775.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2683739287905444735== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11827?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653716#com= ment-12653716 ] = Juraj Huska commented on RF-11827: ---------------------------------- The affect by was wrong, sorry, the version from title is the one where the= issue occurs. = > showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT > -------------------------------------------------------------------- > > Key: RF-11827 > URL: https://issues.jboss.org/browse/RF-11827 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Affects Versions: 4.1.1.Final > Environment: richfaces showcase 4.1.1-SNAPSHOT > all containers > all brosers > Reporter: Juraj Huska > Assignee: Juraj Huska > > Demos for rich:autocomplete do not work, *whole functionality of autocomp= lete is broken somehow*. = > It is noticeable on *all containers* and on *all browsers*. = > It works fine on 4.1.0-SNAPSHOT showcase wars. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2683739287905444735==-- From jira-events at lists.jboss.org Wed Jan 4 04:12:11 2012 Content-Type: multipart/mixed; boundary="===============8052999768774064755==" MIME-Version: 1.0 From: Juraj Huska (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11827) showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT Date: Wed, 04 Jan 2012 04:12:11 -0500 Message-ID: <864858531.38703.1325668331270.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 945549203.21383.1324314009775.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8052999768774064755== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11827?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11827: ----------------------------- Assignee: (was: Juraj Huska) Affects Version/s: 4.1.1.Final (was: 4.1.0.Final) = > showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT > -------------------------------------------------------------------- > > Key: RF-11827 > URL: https://issues.jboss.org/browse/RF-11827 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Affects Versions: 4.1.1.Final > Environment: richfaces showcase 4.1.1-SNAPSHOT > all containers > all brosers > Reporter: Juraj Huska > > Demos for rich:autocomplete do not work, *whole functionality of autocomp= lete is broken somehow*. = > It is noticeable on *all containers* and on *all browsers*. = > It works fine on 4.1.0-SNAPSHOT showcase wars. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8052999768774064755==-- From jira-events at lists.jboss.org Wed Jan 4 04:36:11 2012 Content-Type: multipart/mixed; boundary="===============6301907772477986592==" MIME-Version: 1.0 From: Lutz Ulrich (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11144) Add the possibility to configure which jquery version RF will use. Date: Wed, 04 Jan 2012 04:36:11 -0500 Message-ID: <416810072.38759.1325669771036.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1736166369.80509.1311615563710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6301907772477986592== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11144?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653718#com= ment-12653718 ] = Lutz Ulrich commented on RF-11144: ---------------------------------- I'm using PrimeFaces along with RichFaces, too, and have the same problem. In order to avoid such conflicts, RichFaces' jquery.js (and all jquery.js f= iles of other JSF libraries) should contain a test which checks if jquery h= as already been initialized. = That is, check for example, if the variables window.$ or window.jquery are = already defined. A workaround is to 'override' RichFaces' version of jquery.js. RichFaces jquery.js is integrated into the HTML document via: It is loaded from richfaces-core-impl-.jar/META-INF/resources/jque= ry.js . If the web app's folder resources/ contains a file with the same name, that= resource file will be loaded instead of the one in richfaces-core-impl-.jar, because files in the web app's resources folder have a higher p= riority than files in JARs. One can copy RichFaces jquery.js from richfaces-core-impl-.jar int= o the web app's resources/ folder. In that copy, one can add additional cod= e which checks if jquery has already been initialized: (function( window, undefined ) { // THE TEST: if (!window.$) { // ... window.jQuery =3D window.$ =3D jQuery; } // end test if window.$ = })(window); = = > Add the possibility to configure which jquery version RF will use. > ------------------------------------------------------------------ > > Key: RF-11144 > URL: https://issues.jboss.org/browse/RF-11144 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: compatibility, third-party > Reporter: Jos=C3=A9 Freitas > Labels: integration, jquery, primefaces > Fix For: 4.Future > > > This feature would be awesome cause it could easy integration with others= components suites like primefaces. > if we could say to richfaces where it could find its jquery reference, w= e could config it to use jquery from primefaces for example. > > avoiding jquery double loading and conflicts between libs. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6301907772477986592==-- From jira-events at lists.jboss.org Wed Jan 4 05:27:10 2012 Content-Type: multipart/mixed; boundary="===============3583391249714487356==" MIME-Version: 1.0 From: Juraj Huska (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11863) showcase - rich:hotKey - mistake in demo description Date: Wed, 04 Jan 2012 05:27:10 -0500 Message-ID: <1960056587.38881.1325672830689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3583391249714487356== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable showcase - rich:hotKey - mistake in demo description ---------------------------------------------------- Key: RF-11863 URL: https://issues.jboss.org/browse/RF-11863 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc, examples, showcase Affects Versions: 4.1.1.Final Environment: showcase 4.1.1-SNAPSHOT Reporter: Juraj Huska Priority: Trivial In the text description is said: ??Press Home or End buttons in order to mo= ve all items between lists.?? However, for this action (moving all items), the 'ctrl+right' and 'ctrl+lef= t' shortcuts are bound. The demo description should be updated according to current bindings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3583391249714487356==-- From jira-events at lists.jboss.org Wed Jan 4 05:29:09 2012 Content-Type: multipart/mixed; boundary="===============8389333460053030022==" MIME-Version: 1.0 From: Juraj Huska (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11863) showcase - rich:hotKey - mistake in demo description Date: Wed, 04 Jan 2012 05:29:09 -0500 Message-ID: <1005233890.38884.1325672949733.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1960056587.38881.1325672830689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8389333460053030022== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11863?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11863: ----------------------------- Description: = In the demo description is said: ??Press Home or End buttons in order to mo= ve all items between lists.?? However, for this action (moving all items), the 'ctrl+right' and 'ctrl+lef= t' shortcuts are bound. The demo description should be updated according to current bindings. was: In the text description is said: ??Press Home or End buttons in order to mo= ve all items between lists.?? However, for this action (moving all items), the 'ctrl+right' and 'ctrl+lef= t' shortcuts are bound. The demo description should be updated according to current bindings. = > showcase - rich:hotKey - mistake in demo description > ---------------------------------------------------- > > Key: RF-11863 > URL: https://issues.jboss.org/browse/RF-11863 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, examples, showcase > Affects Versions: 4.1.1.Final > Environment: showcase 4.1.1-SNAPSHOT > Reporter: Juraj Huska > Priority: Trivial > > In the demo description is said: ??Press Home or End buttons in order to = move all items between lists.?? > However, for this action (moving all items), the 'ctrl+right' and 'ctrl+l= eft' shortcuts are bound. > The demo description should be updated according to current bindings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8389333460053030022==-- From jira-events at lists.jboss.org Wed Jan 4 22:21:09 2012 Content-Type: multipart/mixed; boundary="===============8980490748311958082==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11827) showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT Date: Wed, 04 Jan 2012 22:21:09 -0500 Message-ID: <23703375.41098.1325733669361.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 945549203.21383.1324314009775.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8980490748311958082== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11827?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11827: ------------------------------- Fix Version/s: 4.1.1.Final Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Affects Version/s: (was: 4.1.1.Final) Errors in the javascript console show a problem with the hotkey jquery func= tionality (in packed.js). Possibly a resource ordering issue? = > showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT > -------------------------------------------------------------------- > > Key: RF-11827 > URL: https://issues.jboss.org/browse/RF-11827 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Environment: richfaces showcase 4.1.1-SNAPSHOT > all containers > all brosers > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > Demos for rich:autocomplete do not work, *whole functionality of autocomp= lete is broken somehow*. = > It is noticeable on *all containers* and on *all browsers*. = > It works fine on 4.1.0-SNAPSHOT showcase wars. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8980490748311958082==-- From jira-events at lists.jboss.org Wed Jan 4 22:23:09 2012 Content-Type: multipart/mixed; boundary="===============6464056564110139180==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11859) Many script/css added when not needed Date: Wed, 04 Jan 2012 22:23:09 -0500 Message-ID: <1771055944.41105.1325733789636.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 872670898.35681.1325563989373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6464056564110139180== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11859?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11859: ------------------------------- Fix Version/s: 3.Future Forum Reference: http://community.jboss.org/message/643264#643264 (was= : http://community.jboss.org/message/643264#643264) = > Many script/css added when not needed > ------------------------------------- > > Key: RF-11859 > URL: https://issues.jboss.org/browse/RF-11859 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Environment: JBoss 5.1 > Reporter: Dave Chen > Fix For: 3.Future > > > Richfaces filter always adds many scripts/css even when a page does not n= eed them, causing slow page loading for website, and not search engine frie= ndly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6464056564110139180==-- From jira-events at lists.jboss.org Wed Jan 4 22:23:09 2012 Content-Type: multipart/mixed; boundary="===============4006911981486981980==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11858) Upgrade to Guava 10.0 (or even 11.0) as provided by JBossAS 7.1.CR1b Date: Wed, 04 Jan 2012 22:23:09 -0500 Message-ID: <67026348.41101.1325733789471.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1099871218.32163.1324892709514.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4006911981486981980== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11858?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11858: ------------------------------- Fix Version/s: 4.1-Tracking Priority: Critical (was: Major) Assignee: Brian Leathem Marking as critical, as this must be done early in the dev process if it is= to be included in 4.1.1.Final = > Upgrade to Guava 10.0 (or even 11.0) as provided by JBossAS 7.1.CR1b > -------------------------------------------------------------------- > > Key: RF-11858 > URL: https://issues.jboss.org/browse/RF-11858 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Reporter: Juergen Zimmermann > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.1.1.Final > > > JBossAS 7.1.CR1b is using Guava 10.0. To prohibit compatibility issues I'= d appreciate if you'd also upgrade to 10.0 (or even 11.0). Please see http:= //repo1.maven.org/maven2/com/google/guava/guava/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4006911981486981980==-- From jira-events at lists.jboss.org Wed Jan 4 22:23:09 2012 Content-Type: multipart/mixed; boundary="===============8944021075949561787==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11858) Upgrade to Guava 10.0 (or even 11.0) as provided by JBossAS 7.1.CR1b Date: Wed, 04 Jan 2012 22:23:09 -0500 Message-ID: <1738285248.41103.1325733789560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1099871218.32163.1324892709514.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8944021075949561787== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11858?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11858: ------------------------------- Fix Version/s: 4.1.1.Final (was: 4.1-Tracking) = > Upgrade to Guava 10.0 (or even 11.0) as provided by JBossAS 7.1.CR1b > -------------------------------------------------------------------- > > Key: RF-11858 > URL: https://issues.jboss.org/browse/RF-11858 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Reporter: Juergen Zimmermann > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.1.1.Final > > > JBossAS 7.1.CR1b is using Guava 10.0. To prohibit compatibility issues I'= d appreciate if you'd also upgrade to 10.0 (or even 11.0). Please see http:= //repo1.maven.org/maven2/com/google/guava/guava/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8944021075949561787==-- From jira-events at lists.jboss.org Wed Jan 4 22:25:45 2012 Content-Type: multipart/mixed; boundary="===============1910319610378579297==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11860) Data table: The scope attribute on the td element is obsolete Date: Wed, 04 Jan 2012 22:25:44 -0500 Message-ID: <1090331936.41372.1325733944903.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 207304981.36098.1325591409412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1910319610378579297== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11860?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11860: ------------------------------- Fix Version/s: 4.1.1.Final Priority: Minor (was: Major) Assignee: Brian Leathem = > Data table: The scope attribute on the td element is obsolete > ------------------------------------------------------------- > > Key: RF-11860 > URL: https://issues.jboss.org/browse/RF-11860 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-tables > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT r.23118 > Mojarra 2.1.5 > JBoss AS 7.1.0.CR1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.1.1.Final > > > The column footer is rendered as in following code snippet (can be reprod= uced in Metamer http://localhost:8080/metamer/faces/components/richDataTabl= e/facets.xhtml): > {code:xml} >
> > > > > > > > > {code} > Attribute *scope* on element td is obsolete in HTML5 and should be set on= th element instead. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1910319610378579297==-- From jira-events at lists.jboss.org Wed Jan 4 22:25:45 2012 Content-Type: multipart/mixed; boundary="===============5028151551433108518==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11861) richfaces 4.1.Final showcase: Non-resolvable parent POM: Could not find artifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final Date: Wed, 04 Jan 2012 22:25:44 -0500 Message-ID: <992088357.41374.1325733944967.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1704236441.36501.1325599509914.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5028151551433108518== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11861?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11861: ------------------------------- Description: = richfaces showcase for Richfaces 4.1 Final doesn't build. Problem is that: {code} org.richfaces richfaces-root-parent 4.1.0.Final {code} is not in central maven repository. Console output: {code} [INFO] Scanning for projects... Downloading: http://repo1.maven.org/maven2/org/richfaces/richfaces-root-par= ent/4.1.0.Final/richfaces-root-parent-4.1.0.F inal.pom [ERROR] The build could not read 1 project -> [Help 1] [ERROR] [ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Final= (D:\tmp\richfaces-showcase-77c6701\pom.xml) has 1 error [ERROR] Non-resolvable parent POM: Could not find artifact org.richface= s:richfaces-root-parent:pom:4.1.0.Final in ce ntral (http://repo1.maven.org/maven2) and 'parent.relativePath' points at w= rong local POM @ line 8, column 13 -> [Help 2 ] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e= switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, pleas= e read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBu= ildingException [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/Unresolva= bleModelException {code} was: richfaces showcase for Richfaces 4.1 Final doesn't build. Problem is that: org.richfaces richfaces-root-parent 4.1.0.Final is not in central maven repository. Console output: [INFO] Scanning for projects... Downloading: http://repo1.maven.org/maven2/org/richfaces/richfaces-root-par= ent/4.1.0.Final/richfaces-root-parent-4.1.0.F inal.pom [ERROR] The build could not read 1 project -> [Help 1] [ERROR] [ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Final= (D:\tmp\richfaces-showcase-77c6701\pom.xml) has 1 error [ERROR] Non-resolvable parent POM: Could not find artifact org.richface= s:richfaces-root-parent:pom:4.1.0.Final in ce ntral (http://repo1.maven.org/maven2) and 'parent.relativePath' points at w= rong local POM @ line 8, column 13 -> [Help 2 ] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e= switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, pleas= e read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBu= ildingException [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/Unresolva= bleModelException Workaround Description: = One of the possible workarounds is to add relevant jboss repository to pom.= xml file, I added following to make it running: {code} jboss-public-repository-group https://repository.jboss.org/nexus/content/groups/public-jboss/ default true never = {code} But I believe it should work out of the box for anyone willing to build sho= wcase =3D> should be part of pom.xml as default, or it should be mentioned = in the readme file as a prerequisite. was: One of the possible workarounds is to add relevant jboss repository to pom.= xml file, I added following to make it running: jboss-public-repository-group https://repository.jboss.org/nexus/content/groups/public-jboss/ default true never = But I believe it should work out of the box for anyone willing to build sho= wcase =3D> should be part of pom.xml as default, or it should be mentioned = in the readme file as a prerequisite. = > richfaces 4.1.Final showcase: Non-resolvable parent POM: Could not find a= rtifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final > -------------------------------------------------------------------------= ----------------------------------------------------------- > > Key: RF-11861 > URL: https://issues.jboss.org/browse/RF-11861 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Peter B > Labels: richfaces > > richfaces showcase for Richfaces 4.1 Final doesn't build. > Problem is that: > {code} > org.richfaces > richfaces-root-parent > 4.1.0.Final > {code} > is not in central maven repository. > Console output: > {code} > [INFO] Scanning for projects... > Downloading: http://repo1.maven.org/maven2/org/richfaces/richfaces-root-p= arent/4.1.0.Final/richfaces-root-parent-4.1.0.F > inal.pom > [ERROR] The build could not read 1 project -> [Help 1] > [ERROR] > [ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Fin= al (D:\tmp\richfaces-showcase-77c6701\pom.xml) > has 1 error > [ERROR] Non-resolvable parent POM: Could not find artifact org.richfa= ces:richfaces-root-parent:pom:4.1.0.Final in ce > ntral (http://repo1.maven.org/maven2) and 'parent.relativePath' points at= wrong local POM @ line 8, column 13 -> [Help 2 > ] > [ERROR] > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/Project= BuildingException > [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/Unresol= vableModelException > {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 --===============5028151551433108518==-- From jira-events at lists.jboss.org Wed Jan 4 22:27:10 2012 Content-Type: multipart/mixed; boundary="===============3273985625533165382==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11862) BOM cannot be build Date: Wed, 04 Jan 2012 22:27:10 -0500 Message-ID: <730801843.41385.1325734030121.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1844936912.36863.1325605269564.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3273985625533165382== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11862?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11862: ------------------------------- Fix Version/s: 4.1.1.Final Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Indeed a blocker, probably introduced with the recent BOM/parent cleanup. = > BOM cannot be build > ------------------- > > Key: RF-11862 > URL: https://issues.jboss.org/browse/RF-11862 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 4.1.1.Final > > > RichFaces BOM cannot be build (https://hudson.qa.jboss.com/hudson/view/RF= -4.0/job/richfaces-4.1-build/84/console). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3273985625533165382==-- From jira-events at lists.jboss.org Wed Jan 4 22:29:09 2012 Content-Type: multipart/mixed; boundary="===============0991987985399032096==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11863) showcase - rich:hotKey - mistake in demo description Date: Wed, 04 Jan 2012 22:29:09 -0500 Message-ID: <1158439907.41388.1325734149381.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1960056587.38881.1325672830689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0991987985399032096== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11863?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11863: ------------------------------- Fix Version/s: 4.1.1.Final Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > showcase - rich:hotKey - mistake in demo description > ---------------------------------------------------- > > Key: RF-11863 > URL: https://issues.jboss.org/browse/RF-11863 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, examples, showcase > Affects Versions: 4.1.1.Final > Environment: showcase 4.1.1-SNAPSHOT > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.1.1.Final > > > In the demo description is said: ??Press Home or End buttons in order to = move all items between lists.?? > However, for this action (moving all items), the 'ctrl+right' and 'ctrl+l= eft' shortcuts are bound. > The demo description should be updated according to current bindings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0991987985399032096==-- From jira-events at lists.jboss.org Thu Jan 5 04:32:09 2012 Content-Type: multipart/mixed; boundary="===============8404674697772971368==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11862) BOM cannot be build Date: Thu, 05 Jan 2012 04:32:09 -0500 Message-ID: <339871588.41968.1325755929422.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1844936912.36863.1325605269564.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8404674697772971368== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11862?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12653988#com= ment-12653988 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11862: --------------------------------- Fixed in https://github.com/richfaces/build/commit/fc302d8c4a616dafb67c53d8d5b9fcc52= 1e65d55 = > BOM cannot be build > ------------------- > > Key: RF-11862 > URL: https://issues.jboss.org/browse/RF-11862 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > > RichFaces BOM cannot be build (https://hudson.qa.jboss.com/hudson/view/RF= -4.0/job/richfaces-4.1-build/84/console). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8404674697772971368==-- From jira-events at lists.jboss.org Thu Jan 5 04:32:09 2012 Content-Type: multipart/mixed; boundary="===============0004781499393930072==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11862) BOM cannot be build Date: Thu, 05 Jan 2012 04:32:09 -0500 Message-ID: <1111016990.41970.1325755929546.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1844936912.36863.1325605269564.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0004781499393930072== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11862?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11862. ----------------------------- Fix Version/s: (was: 4.1.1.Final) Resolution: Duplicate Issue = > BOM cannot be build > ------------------- > > Key: RF-11862 > URL: https://issues.jboss.org/browse/RF-11862 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > > RichFaces BOM cannot be build (https://hudson.qa.jboss.com/hudson/view/RF= -4.0/job/richfaces-4.1-build/84/console). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0004781499393930072==-- From jira-events at lists.jboss.org Thu Jan 5 09:06:10 2012 Content-Type: multipart/mixed; boundary="===============3485874718219711277==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Assigned=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11836) Replace ${project.version} definitions in the poms with actual version Date: Thu, 05 Jan 2012 09:06:09 -0500 Message-ID: <941005960.42908.1325772369962.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 150403957.24272.1324386369523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3485874718219711277== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11836?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11836: ------------------------------- Assignee: Brian Leathem (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Replace ${project.version} definitions in the poms with actual version > ---------------------------------------------------------------------- > > Key: RF-11836 > URL: https://issues.jboss.org/browse/RF-11836 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 4.1.1.Final > > > This is requirement for uploading to Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3485874718219711277==-- From jira-events at lists.jboss.org Thu Jan 5 09:08:10 2012 Content-Type: multipart/mixed; boundary="===============3467711402100096281==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11836) Replace ${project.version} definitions in the poms with actual version Date: Thu, 05 Jan 2012 09:08:09 -0500 Message-ID: <2106668050.42911.1325772489873.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 150403957.24272.1324386369523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3467711402100096281== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11836?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654044#com= ment-12654044 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11836: --------------------------------- It needs to be determined if we are able to sync only 4.1.x artifacts with = Maven Central. = > Replace ${project.version} definitions in the poms with actual version > ---------------------------------------------------------------------- > > Key: RF-11836 > URL: https://issues.jboss.org/browse/RF-11836 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 4.1.1.Final > > > This is requirement for uploading to Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3467711402100096281==-- From jira-events at lists.jboss.org Thu Jan 5 10:44:09 2012 Content-Type: multipart/mixed; boundary="===============6372110664837942546==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11858) Upgrade to Guava 10.0 (or even 11.0) as provided by JBossAS 7.1.CR1b Date: Thu, 05 Jan 2012 10:44:09 -0500 Message-ID: <1124803210.43296.1325778249545.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1099871218.32163.1324892709514.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6372110664837942546== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11858?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11858. ----------------------------- Fix Version/s: (was: 4.1.1.Final) Resolution: Duplicate Issue Guava already upgraded in RF-11666. = > Upgrade to Guava 10.0 (or even 11.0) as provided by JBossAS 7.1.CR1b > -------------------------------------------------------------------- > > Key: RF-11858 > URL: https://issues.jboss.org/browse/RF-11858 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Reporter: Juergen Zimmermann > Assignee: Brian Leathem > Priority: Critical > > JBossAS 7.1.CR1b is using Guava 10.0. To prohibit compatibility issues I'= d appreciate if you'd also upgrade to 10.0 (or even 11.0). Please see http:= //repo1.maven.org/maven2/com/google/guava/guava/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6372110664837942546==-- From jira-events at lists.jboss.org Thu Jan 5 10:48:10 2012 Content-Type: multipart/mixed; boundary="===============1301417484697631262==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11615) Upgrade to JBoss Parent version 8 Date: Thu, 05 Jan 2012 10:48:10 -0500 Message-ID: <264922394.43301.1325778490121.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714858172.39799.1320059745985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1301417484697631262== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11615?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11615: ---------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Brian Leathem) Fix Version/s: 4.1.1.Final = > Upgrade to JBoss Parent version 8 > --------------------------------- > > Key: RF-11615 > URL: https://issues.jboss.org/browse/RF-11615 > Project: RichFaces > Issue Type: Component Upgrade > 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 > Priority: Minor > Fix For: 4.1.1.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 = --===============1301417484697631262==-- From jira-events at lists.jboss.org Thu Jan 5 12:27:09 2012 Content-Type: multipart/mixed; boundary="===============2988064800976370041==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11657) Better integration with JBossAS 7.1 Date: Thu, 05 Jan 2012 12:27:09 -0500 Message-ID: <1170260844.43602.1325784429561.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1860495351.67654.1320759705458.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2988064800976370041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11657?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11657: ------------------------------- Fix Version/s: 4.1.1.Final (was: 4.2-Tracking) Priority: Trivial (was: Major) Assignee: Brian Leathem = > Better integration with JBossAS 7.1 > ----------------------------------- > > Key: RF-11657 > URL: https://issues.jboss.org/browse/RF-11657 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution, compatibility > Affects Versions: 4.1.0.Milestone4 > Reporter: Juergen Zimmermann > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.1.1.Final > > > JBossAS 7.1 contains Google Guava 10.0.x (in addition to sac-1.3.jar and = cssparser-0.9.5.jar). Guava can be reused in RichFaces instead of doubling = it in WEB-INF/lib. The solution is pretty simple: > In richfaces-core-impl-VERSION.jar the file META-INF/MANIFEST.MF already = contains the line "Dependencies: ...". This line has to be extended by just= ",com.google.guava" as follows: > Dependencies: org.w3c.css.sac,net.sourceforge.cssparser,com.google.guava > That's all and from now on RichFaces doesn't require the distribution of = Google Guava in WEB-INF/lib when the platform is JBossAS 7.1. Please see al= so https://issues.jboss.org/browse/AS7-1809. > Be aware that there is no blank after the comma between net.sourceforge.c= ssparser and com.google.guava. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2988064800976370041==-- From jira-events at lists.jboss.org Thu Jan 5 14:26:10 2012 Content-Type: multipart/mixed; boundary="===============4726954409430733499==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11810) Fix the richfaces-components-ui build to do not overwrite assemblied JAR Date: Thu, 05 Jan 2012 14:26:09 -0500 Message-ID: <2009312638.43799.1325791569836.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1133407192.4657.1323764289624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4726954409430733499== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11810?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11810: ---------------------------- Complexity: Low = > Fix the richfaces-components-ui build to do not overwrite assemblied JAR > ------------------------------------------------------------------------ > > Key: RF-11810 > URL: https://issues.jboss.org/browse/RF-11810 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Marek Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > (Issue reported by Lukas Fryc) > Marek Novotny (manaRH) has recently reported that sometimes RF build fail= s for him since {{richfaces-components-ui}} module is generating JAR using = {{maven-assembly-plugin}} which has the same name as the standard {{maven-j= ar-plugin}} artifact would be called. > This may lead into potential clash for bad timings, especially when these= plugins are ran on the same lifecycle phase. > The symptoms are failing applications (and functional tests) which are no= t able to use any UI implementation classes. > We should either: > # change lifecycle mapping of plugins > # modify {{maven-jar-plugin}} settings > {code:title=3DLog from Hudson console http://hudson.qa.jboss.com/hudson/j= ob/richfaces-4.1-all-jboss/62/console} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces Examples Aggregator 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ examples-aggr= egator --- > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-java-version) @ exa= mples-aggregator --- > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven-version) @ ex= amples-aggregator --- > [INFO] = > [INFO] --- maven-source-plugin:2.1.2:jar-no-fork (attach-sources) @ examp= les-aggregator --- > projectSucceeded org.richfaces.examples:examples-aggregator:4.1.0-SNAPSHOT > [JENKINS] Archiving /mnt/hudson_workspace/workspace/richfaces-4.1-all-jbo= ss/dev-examples/pom.xml to /qa/hudson_master/hudson_home/hudson_workspace/j= obs/richfaces-4.1-all-jboss/modules/org.richfaces.examples$examples-aggrega= tor/builds/2011-12-09_06-01-08/archive/org.richfaces.examples/examples-aggr= egator/4.1.0-SNAPSHOT/examples-aggregator-4.1.0-SNAPSHOT.pom > [INFO] = = > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces Showcase 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ richfaces-sho= wcase --- > [INFO] Deleting /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/s= howcase/target > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-java-version) @ ric= hfaces-showcase --- > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven-version) @ ri= chfaces-showcase --- > [INFO] = > [INFO] --- maven-checkstyle-plugin:2.5:check (richfaces-checkstyle-report= ) @ richfaces-showcase --- > [INFO] = > [INFO] [debug] execute contextualize > [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ ric= hfaces-showcase --- > [INFO] Using 'UTF-8' encoding to copy filtered resources. > [INFO] Copying 9 resources > [INFO] Copying 0 resource > [INFO] = > [INFO] --- maven-compiler-plugin:2.3.1:compile (default-compile) @ richfa= ces-showcase --- > [INFO] Compiling 97 source files to /mnt/hudson_workspace/workspace/richf= aces-4.1-all-jboss/showcase/target/classes > [INFO] ------------------------------------------------------------- > [ERROR] COMPILATION ERROR : = > [INFO] ------------------------------------------------------------- > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModelItem.java:[3,2= 6] cannot find symbol > symbol : class CalendarDataModelItem > location: package org.richfaces.model > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModelItem.java:[5,4= 2] cannot find symbol > symbol: class CalendarDataModelItem > public class CalendarModelItem implements CalendarDataModelItem { > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tree/TreeBean.java:[36,30] cannot find sym= bol > symbol : class UITree > location: package org.richfaces.component > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tables/ExtTableSelectionBean.java:[13,30] = cannot find symbol > symbol : class UIExtendedDataTable > location: package org.richfaces.component > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[10,26] = cannot find symbol > symbol : class CalendarDataModel > location: package org.richfaces.model > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[11,26] = cannot find symbol > symbol : class CalendarDataModelItem > location: package org.richfaces.model > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[15,38] = cannot find symbol > symbol: class CalendarDataModel > public class CalendarModel implements CalendarDataModel { > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[28,11] = cannot find symbol > symbol : class CalendarDataModelItem > location: class org.richfaces.demo.calendar.model.CalendarModel > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tree/TreeBean.java:[72,8] cannot find symb= ol > symbol : class UITree > location: class org.richfaces.demo.tree.TreeBean > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tree/TreeBean.java:[72,23] cannot find sym= bol > symbol : class UITree > location: class org.richfaces.demo.tree.TreeBean > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tables/ExtTableSelectionBean.java:[26,8] c= annot find symbol > symbol : class UIExtendedDataTable > location: class org.richfaces.demo.tables.ExtTableSelectionBean > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tables/ExtTableSelectionBean.java:[26,41] = cannot find symbol > symbol : class UIExtendedDataTable > location: class org.richfaces.demo.tables.ExtTableSelectionBean > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[29,8] c= annot find symbol > symbol : class CalendarDataModelItem > location: class org.richfaces.demo.calendar.model.CalendarModel > [INFO] 13 errors = > [INFO] ------------------------------------------------------------- > mojoFailed org.apache.maven.plugins:maven-compiler-plugin:2.3.1(default-c= ompile) > projectFailed org.richfaces.examples:richfaces-showcase:4.1.0-SNAPSHOT > [JENKINS] Archiving /mnt/hudson_workspace/workspace/richfaces-4.1-all-jbo= ss/showcase/pom.xml to /qa/hudson_master/hudson_home/hudson_workspace/jobs/= richfaces-4.1-all-jboss/modules/org.richfaces.examples$richfaces-showcase/b= uilds/2011-12-09_06-01-09/archive/org.richfaces.examples/richfaces-showcase= /4.1.0-SNAPSHOT/richfaces-showcase-4.1.0-SNAPSHOT.pom > sessionEnded > [INFO] ------------------------------------------------------------------= ------ > [INFO] Reactor Summary: > [INFO] = > [INFO] RichFaces BOM ..................................... SUCCESS [5.347= s] > [INFO] RichFaces Root Parent ............................. SUCCESS [3.868= s] > [INFO] RichFaces Core Parent ............................. SUCCESS [0.434= s] > [INFO] RichFaces Core API ................................ SUCCESS [55.65= 8s] > [INFO] RichFaces Core Implementation ..................... SUCCESS [5:34.= 292s] > [INFO] RichFaces Core Aggregator ......................... SUCCESS [0.269= s] > [INFO] RichFaces CDK Parent .............................. SUCCESS [0.423= s] > [INFO] RichFaces CDK Commons ............................. SUCCESS [14.72= 4s] > [INFO] RichFaces CDK Annotations ......................... SUCCESS [13.30= 8s] > [INFO] RichFaces CDK Attributes .......................... SUCCESS [16.92= 9s] > [INFO] RichFaces CDK XInclude Transformer ................ SUCCESS [24.69= 9s] > [INFO] RichFaces CDK Generator ........................... SUCCESS [2:09.= 707s] > [INFO] RichFaces CDK Generator Maven Plugin .............. SUCCESS [26.48= 5s] > [INFO] RichFaces CDK Resources Maven Plugin .............. SUCCESS [32.53= 0s] > [INFO] RichFaces CDK Distribution ........................ SUCCESS [29.94= 6s] > [INFO] RichFaces CDK Aggregator .......................... SUCCESS [0.244= s] > [INFO] RichFaces UI Components Parent .................... SUCCESS [1.515= s] > [INFO] RichFaces UI Components: Common API ............... SUCCESS [20.30= 4s] > [INFO] RichFaces UI Components: Common UI ................ SUCCESS [1:07.= 241s] > [INFO] RichFaces UI Components: Common Aggregator ........ SUCCESS [0.417= s] > [INFO] RichFaces UI Components: Core API ................. SUCCESS [10.94= 2s] > [INFO] RichFaces UI Components: Core UI .................. SUCCESS [2:25.= 334s] > [INFO] RichFaces UI Components: Core Aggregator .......... SUCCESS [0.368= s] > [INFO] RichFaces UI Components: Iteration API ............ SUCCESS [18.22= 2s] > [INFO] RichFaces UI Components: Iteration UI ............. SUCCESS [3:02.= 748s] > [INFO] RichFaces UI Components: Iteration Aggregator ..... SUCCESS [0.401= s] > [INFO] RichFaces UI Components: Miscellanous UI .......... SUCCESS [33.77= 6s] > [INFO] RichFaces UI Components: Miscellanous Aggregator .. SUCCESS [0.366= s] > [INFO] RichFaces UI Components: Output API ............... SUCCESS [14.14= 0s] > [INFO] RichFaces UI Components: Output UI ................ SUCCESS [3:05.= 517s] > [INFO] RichFaces UI Components: Output Aggregator ........ SUCCESS [0.390= s] > [INFO] RichFaces UI Components: Input API ................ SUCCESS [13.37= 4s] > [INFO] RichFaces UI Components: Input UI ................. SUCCESS [4:40.= 374s] > [INFO] RichFaces UI Components: Input Aggregator ......... SUCCESS [0.371= s] > [INFO] RichFaces UI Components: Drag-n-Drop API .......... SUCCESS [12.12= 6s] > [INFO] RichFaces UI Components: Drag-n-Drop UI ........... SUCCESS [30.14= 5s] > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.406= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.71= 0s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [2:46.= 216s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.372= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [23.60= 4s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [1:47.= 298s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:01.= 812s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.369= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.269= s] > [INFO] RichFaces Archetypes Simple Application ........... SUCCESS [7.277= s] > [INFO] RichFaces Archetypes Component .................... SUCCESS [3.212= s] > [INFO] RichFaces Archetypes Component Short .............. SUCCESS [1.981= s] > [INFO] RichFaces Archetypes Components Aggregator ........ SUCCESS [2.562= s] > [INFO] RichFaces Archetypes GAE Application .............. SUCCESS [2.730= s] > [INFO] RichFaces Archetypes Aggregator ................... SUCCESS [0.264= s] > [INFO] RichFaces Examples Parent ......................... SUCCESS [0.411= s] > [INFO] RichFaces Examples Template ....................... SUCCESS [15.60= 3s] > [INFO] RichFaces Examples Core ........................... SUCCESS [16.37= 4s] > [INFO] RichFaces Examples Miscellanous ................... SUCCESS [12.22= 1s] > [INFO] RichFaces Examples Outputs ........................ SUCCESS [14.60= 3s] > [INFO] RichFaces Examples Inputs ......................... SUCCESS [19.79= 1s] > [INFO] RichFaces Examples Repeater ....................... SUCCESS [26.96= 4s] > [INFO] RichFaces Examples Iteration ...................... SUCCESS [30.28= 5s] > [INFO] RichFaces Examples Push ........................... SUCCESS [18.21= 5s] > [INFO] RichFaces Examples Validators ..................... SUCCESS [19.45= 2s] > [INFO] RichFaces Examples DND ............................ SUCCESS [13.33= 7s] > [INFO] RichFaces Examples Richfaces IRC Client Application SUCCESS [14.6= 30s] > [INFO] RichFaces Examples Aggregator ..................... SUCCESS [0.241= s] > [INFO] RichFaces Showcase ................................ FAILURE [12.10= 9s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 41:12.509s > [INFO] Finished at: Fri Dec 09 06:42:33 EST 2011 > [INFO] Final Memory: 312M/708M > [INFO] ------------------------------------------------------------------= ------ > maven builder waiting > mavenExecutionResult exceptions not empty > org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute= goal org.apache.maven.plugins:maven-compiler-plugin:2.3.1:compile (default= -compile) on project richfaces-showcase: Compilation failure > at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor= .java:213) > at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor= .java:153) > at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor= .java:145) > at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje= ct(LifecycleModuleBuilder.java:84) > at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje= ct(LifecycleModuleBuilder.java:59) > at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBu= ild(LifecycleStarter.java:183) > at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(Lifecycl= eStarter.java:161) > at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319) > at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156) > at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.j= ava:79) > 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.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Laun= cher.java:329) > at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.jav= a:239) > at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:146) > at hudson.maven.Maven3Builder.call(Maven3Builder.java:127) > at hudson.maven.Maven3Builder.call(Maven3Builder.java:74) > at hudson.remoting.UserRequest.perform(UserRequest.java:114) > at hudson.remoting.UserRequest.perform(UserRequest.java:48) > at hudson.remoting.Request$2.run(Request.java:270) > 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:660) > Caused by: org.apache.maven.plugin.CompilationFailureException: Compilati= on failure > at org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompiler= Mojo.java:656) > at org.apache.maven.plugin.CompilerMojo.execute(CompilerMojo.java:128) > at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default= BuildPluginManager.java:101) > at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor= .java:209) > ... 27 more > channel stopped > Email was triggered for: Failure > Sending email for trigger: Failure > ERROR: Ignore Problem expanding maven opts macros org.jenkinsci.plugins.t= okenmacro.TokenMacro > Sending email to: richfaces-builds(a)lists.jboss.org > Finished: FAILURE > {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 = --===============4726954409430733499==-- From jira-events at lists.jboss.org Thu Jan 5 14:57:10 2012 Content-Type: multipart/mixed; boundary="===============8069567801091814599==" MIME-Version: 1.0 From: Jean ANDRE (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11855) error@malformedXML on inputText files - Ajax Validation on event change - RichFaces 4.1 Final Date: Thu, 05 Jan 2012 14:57:09 -0500 Message-ID: <153728527.43845.1325793429495.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26805713.30230.1324582930232.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8069567801091814599== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11855?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-11855: ---------------------------- Workaround Description: If you use the tag f:ajax instead of tag a4j:aj= ax, it works much better, however, this way seems not working with calendar= (needs more investigations on it). Workaround: Workaround Exists Description: = We got a error(a)malformedXML message when we want to apply an ajax validat= ion on imput text. The field is include inside a tab in mode "server" - What ever the mode, we= getting the error. Tab content is built by including some xhtml. See attac= hment. {code} < event=3D"change" bypassUpdates=3D"true" execute=3D"@this" render=3D"= @this" /> {code} was: We got a error(a)malformedXML message when we want to apply an ajax validat= ion on imput text. The field is include inside a tab in mode "server" - What ever the mode, we= getting the error. Tab content is built by including some xhtml. See attac= hment. {code} {code} Steps to Reproduce: Well, difficult to reproduce by a simple exampl= e - See attachment, that give you an idea of the page structure and complex= ity. (was: Well, difficult to reproduce as is - See attachment.) = > error(a)malformedXML on inputText files - Ajax Validation on event change= - RichFaces 4.1 Final = > -------------------------------------------------------------------------= --------------------- > > Key: RF-11855 > URL: https://issues.jboss.org/browse/RF-11855 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Websphere 8.0.0.1 - RAD 8.0.0.4 - JSF Mojorra 2.1.4 = - Spring 3.0.6 Final - Hibernate Validator 4.2. - Java 6 > Reporter: Jean ANDRE > Labels: INPUT, MALFORMED, UI, XML, waiting_on_user > Attachments: createClient1.xhtml, CreateClientController1.java, e= rror(a)malformedXML-ScreenShot-1.jpg, error(a)malformedXML.debug.txt, error= (a)malformedXML.viewSource.html, index.xhtml > > > We got a error(a)malformedXML message when we want to apply an ajax valid= ation on imput text. > The field is include inside a tab in mode "server" - What ever the mode, = we getting the error. Tab content is built by including some xhtml. See att= achment. > {code} > > 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:c=3D"http://java.sun.com/jsp/jstl/core" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > > > > < event=3D"change" bypassUpdates=3D"true" execute=3D"@this" render= =3D"@this" /> > > > > > > > {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 --===============8069567801091814599==-- From jira-events at lists.jboss.org Thu Jan 5 14:59:10 2012 Content-Type: multipart/mixed; boundary="===============2259425914736821049==" MIME-Version: 1.0 From: Jean ANDRE (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11855) error@malformedXML on inputText files - Ajax Validation on event change - RichFaces 4.1 Final Date: Thu, 05 Jan 2012 14:59:09 -0500 Message-ID: <1144567512.43863.1325793549771.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26805713.30230.1324582930232.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2259425914736821049== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11855?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-11855: ---------------------------- Workaround Description: If you use the tag *f:ajax* instead of tag *a4j= :ajax*, it works much better, however, this way seems not working with cale= ndar (needs more investigations on it). (was: If you use the tag f:ajax in= stead of tag a4j:ajax, it works much better, however, this way seems not wo= rking with calendar (needs more investigations on it).) Description: = We got a error(a)malformedXML message when we want to apply an ajax validat= ion on imput text. The field is include inside a tab in mode "server" - What ever the mode, we= getting the error. Tab content is built by including some xhtml. See attac= hment. {code} {code} was: We got a error(a)malformedXML message when we want to apply an ajax validat= ion on imput text. The field is include inside a tab in mode "server" - What ever the mode, we= getting the error. Tab content is built by including some xhtml. See attac= hment. {code} < event=3D"change" bypassUpdates=3D"true" execute=3D"@this" render=3D"= @this" /> {code} = > error(a)malformedXML on inputText files - Ajax Validation on event change= - RichFaces 4.1 Final = > -------------------------------------------------------------------------= --------------------- > > Key: RF-11855 > URL: https://issues.jboss.org/browse/RF-11855 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Websphere 8.0.0.1 - RAD 8.0.0.4 - JSF Mojorra 2.1.4 = - Spring 3.0.6 Final - Hibernate Validator 4.2. - Java 6 > Reporter: Jean ANDRE > Labels: INPUT, MALFORMED, UI, XML, waiting_on_user > Attachments: createClient1.xhtml, CreateClientController1.java, e= rror(a)malformedXML-ScreenShot-1.jpg, error(a)malformedXML.debug.txt, error= (a)malformedXML.viewSource.html, index.xhtml > > > We got a error(a)malformedXML message when we want to apply an ajax valid= ation on imput text. > The field is include inside a tab in mode "server" - What ever the mode, = we getting the error. Tab content is built by including some xhtml. See att= achment. > {code} > > 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:c=3D"http://java.sun.com/jsp/jstl/core" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > > > > > > > > > > > {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 --===============2259425914736821049==-- From jira-events at lists.jboss.org Thu Jan 5 16:36:12 2012 Content-Type: multipart/mixed; boundary="===============9072432252218550213==" MIME-Version: 1.0 From: Jean ANDRE (Issue Comment Edited) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11764) Problems with packed resources Date: Thu, 05 Jan 2012 16:36:12 -0500 Message-ID: <777785947.44082.1325799372656.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531552132.56496.1322674962554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9072432252218550213== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11764?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12650475#com= ment-12650475 ] = Jean ANDRE edited comment on RF-11764 at 1/5/12 4:34 PM: --------------------------------------------------------- Well, do you prefer having a ear file to be deployed because unfortunately = this is the best sample I can give you - It is a standalone application, no= db access, no back-end, only pure GUI. The given file is a perfect example= how a page can be complex by having multiple includes and nested tabs. Mos= t of the bugs reported are related to resource and tabs can be reproduced e= asily by playing with the application. The complexity of the page is a part= of the problem and making it more simple might not reproduce the bug. If y= ou have any difficulty to run the application, let me know - AspectJ can be= disable by removing aspectJ classes - AspectJ is solely used for logging p= urpose. Libraries needed are : - RichFaces 4.1.0 et dependency - hibernate-validator-4.2.0.Final.jar - org.springframework.asm-3.0.6.RELEASE.jar - org.springframework.beans-3.0.6.RELEASE.jar - org.springframework.context-3.0.6.RELEASE.jar - org.springframework.core-3.0.6.RELEASE.jar - org.springframework.expression-3.0.6.RELEASE.jar - org.springframework.web-3.0.6.RELEASE.jar - slf4j-api-1.6.1.jar - slf4j-log4j12-1.6.1.jar - JSF Mojorra 2.1.4 Please, take the time to setup the application and I will assist you to pin= point the bugs for : - RF-11764 = - RF-11763 = - RF-11750 - RF-11730 = - RF-10989 = - RF-11694 - RF-11427 = - RF-11054 - RF-11669 - RF-11855 = Then... by setting the application, there is a lot to win as you will easil= y reproduce those bugs... = was (Author: jorelia64): Well, do you prefer having a ear file to be deployed because unfortunat= ely this is the best sample I can give you - It is a standalone application= , no db access, no back-end, only pure GUI. The given file is a perfect exa= mple how a page can be complex by having multiple includes and nested tabs.= Most of the bugs reported are related to resource and tabs can be reproduc= ed easily by playing with the application. The complexity of the page is a = part of the problem and making it more simple might not reproduce the bug. = If you have any difficulty to run the application, let me know - AspectJ ca= n be disable by removing aspectJ classes - AspectJ is solely used for loggi= ng purpose. Libraries needed are : - RichFaces 4.1.0 et dependency - hibernate-validator-4.2.0.Final.jar - org.springframework.asm-3.0.6.RELEASE.jar - org.springframework.beans-3.0.6.RELEASE.jar - org.springframework.context-3.0.6.RELEASE.jar - org.springframework.core-3.0.6.RELEASE.jar - org.springframework.expression-3.0.6.RELEASE.jar - org.springframework.web-3.0.6.RELEASE.jar - slf4j-api-1.6.1.jar - slf4j-log4j12-1.6.1.jar - JSF Mojorra 2.1.4 Please, take the time to setup the application and I will assist you to pin= point the bugs for : - RF-11764 = - RF-11763 = - RF-11750 - RF-11730 = - RF-10989 = - RF-11694 - RF-11427 = - RF-11054 - RF-11669 Then... by setting the application, there is a lot to win as you will easil= y reproduce those bugs... = > Problems with packed resources > ------------------------------ > > Key: RF-11764 > URL: https://issues.jboss.org/browse/RF-11764 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Reporter: Jean ANDRE > Labels: material-sent > > *Follow up RF-11694.* > We tested the solution by updating the web.xml. We put following code : > {code} > > org.richfaces.resourceMapping.enabled > true > > > org.richfaces.resourceMapping.packedStages > All = > > {code} > The workaround does not work well because it triggers many javacript erre= ur - User Interface seem to be frozen, hanged. > Here are the errors catch under firebug / Mozilla > {code} > jsf is not defined > [Stopper sur une erreur] }(jQuery,RichFaces,jsf));;(function(C,B,D){B.bla= nkFunction=3Dfunction(){}; > packed.js (ligne 3040) > RichFaces.ui is undefined > [Stopper sur une erreur] > {code} > My style left is applied but the header is one level lower and has rf-edt= -hdr-c-cnt style which will always make it center -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4801238013371729462==-- From jira-events at lists.jboss.org Tue Jan 24 09:43:18 2012 Content-Type: multipart/mixed; boundary="===============3630483150004192829==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11588) HeaderClass is ignored on ExtendedDataTable column Date: Tue, 24 Jan 2012 09:43:18 -0500 Message-ID: <1208593971.19216.1327416198461.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1427004328.27237.1319584545776.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3630483150004192829== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11588?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11588: ------------------------------- Fix Version/s: 4.2.0.CR1 (was: 4.Future) Priority: Trivial (was: Minor) Assignee: Brian Leathem = > HeaderClass is ignored on ExtendedDataTable column > -------------------------------------------------- > > Key: RF-11588 > URL: https://issues.jboss.org/browse/RF-11588 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Reporter: Cody Lerum > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.0.CR1 > > > When a header class is defined on a rich:column inside an rich:extendedDa= taTable it is ignored > Assume > {code} > > Foo > > > {code} > What is rendered is > {code} > > {code} > My style left is applied but the header is one level lower and has rf-edt= -hdr-c-cnt style which will always make it center -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3630483150004192829==-- From jira-events at lists.jboss.org Tue Jan 24 14:24:18 2012 Content-Type: multipart/mixed; boundary="===============6496193388044912639==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11588) HeaderClass is ignored on ExtendedDataTable column Date: Tue, 24 Jan 2012 14:24:18 -0500 Message-ID: <1162394222.19828.1327433058250.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1427004328.27237.1319584545776.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6496193388044912639== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11588?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661516#com= ment-12661516 ] = Brian Leathem commented on RF-11588: ------------------------------------ Looking into the code, it's convoluted and not as trivial to change as I wo= uld have expected. Would you find it acceptable to repeat the custom css class on the interior= div? It would mean the css class would show up twice, which is unfortunat= e, but would result in your style being applied as expected. = > HeaderClass is ignored on ExtendedDataTable column > -------------------------------------------------- > > Key: RF-11588 > URL: https://issues.jboss.org/browse/RF-11588 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Reporter: Cody Lerum > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.0.CR1 > > > When a header class is defined on a rich:column inside an rich:extendedDa= taTable it is ignored > Assume > {code} > > Foo > > > {code} > What is rendered is > {code} > > {code} > My style left is applied but the header is one level lower and has rf-edt= -hdr-c-cnt style which will always make it center -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6496193388044912639==-- From jira-events at lists.jboss.org Tue Jan 24 15:12:18 2012 Content-Type: multipart/mixed; boundary="===============5438500489425307397==" MIME-Version: 1.0 From: Cody Lerum (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11588) HeaderClass is ignored on ExtendedDataTable column Date: Tue, 24 Jan 2012 15:12:18 -0500 Message-ID: <1676737296.19902.1327435938290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1427004328.27237.1319584545776.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5438500489425307397== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11588?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661527#com= ment-12661527 ] = Cody Lerum commented on RF-11588: --------------------------------- That works for me with maybe a long term JIRA to look at improving impl = > HeaderClass is ignored on ExtendedDataTable column > -------------------------------------------------- > > Key: RF-11588 > URL: https://issues.jboss.org/browse/RF-11588 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Reporter: Cody Lerum > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.0.CR1 > > > When a header class is defined on a rich:column inside an rich:extendedDa= taTable it is ignored > Assume > {code} > > Foo > > > {code} > What is rendered is > {code} > > {code} > My style left is applied but the header is one level lower and has rf-edt= -hdr-c-cnt style which will always make it center -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5438500489425307397==-- From jira-events at lists.jboss.org Tue Jan 24 15:43:18 2012 Content-Type: multipart/mixed; boundary="===============4501471169904439857==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11850) RF 4.1.0.Final: Problem using columnResize with more than one extendedDataTable on the same page. Date: Tue, 24 Jan 2012 15:43:18 -0500 Message-ID: <1508661572.19931.1327437798554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1719236551.29235.1324550769802.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4501471169904439857== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11850?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11850. -------------------------------- Resolution: Done Initialized the newWidths property of the EDT js initializer. = > RF 4.1.0.Final: Problem using columnResize with more than one extendedDat= aTable on the same page. > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11850 > URL: https://issues.jboss.org/browse/RF-11850 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Environment: Windows 7 x64 or arch linux x86 > JBoss 7.0.1 Final or Glassfish 3.1 > Reporter: Christian Peter > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.0.CR1 > > > Hello, > I've encountered some problems using richfaces extendedDataTables in Rich= Face 4.1.0.Final > Here is the facelet: > {code:title=3Dfacelet} > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > = > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > = > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > {code} = > = > Resizing the columns on the first table works perfectly, but if someone t= ries to resize the second tables' columns as well, I've got NullPointer exc= eptions like: > {code:title=3Dstacktrace} > java.lang.NullPointerException > at org.richfaces.renderkit.SortingFilteringRowsRenderer.updateAtt= ribute(SortingFilteringRowsRenderer.java:135) [richfaces-components-ui-4.1.= 0.Final.jar: > at org.richfaces.renderkit.ExtendedDataTableRenderer.updateWidthO= fColumns(ExtendedDataTableRenderer.java:825) [richfaces-components-ui-4.1.0= .Final.jar:] > at org.richfaces.renderkit.ExtendedDataTableRenderer.doDecode(Ext= endedDataTableRenderer.java:808) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:= 80) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponentBase.decode(UIComponentBase.j= ava:787) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.component.UIDataAdaptor.processDecodes(UIDataAda= ptor.java:819) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.context.PartialViewExecuteVisitCallback.visit(Pa= rtialViewExecuteVisitCallback.java:53) [richfaces-core-impl-4.1.0.Final.jar= :] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCall= back(BaseExtendedVisitContext.java:321) [richfaces-core-impl-4.1.0.Final.ja= r:] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.= java:1319) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIForm.visitTree(UIForm.java:344) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.context.ExtendedPartialViewContextImpl.executeCo= mponents(ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.1.= 0.Final.jar: > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtialExecutePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-= impl-4.1.0.F > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtial(ExtendedPartialViewContextImpl.java:196) [richfaces-core-impl-4.1.0.F= inal.jar:] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.jav= a:931) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyR= equestValuesPhase.java:78) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHO= T] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-imp= l-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.ja= va:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > 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.internalDoFilt= er(ApplicationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(= ConversationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-2= 6 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > {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 --===============4501471169904439857==-- From jira-events at lists.jboss.org Tue Jan 24 16:37:18 2012 Content-Type: multipart/mixed; boundary="===============5290066078659423355==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11860) Data table: The scope attribute on the td element is obsolete Date: Tue, 24 Jan 2012 16:37:18 -0500 Message-ID: <1642129572.20047.1327441038316.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 207304981.36098.1325591409412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5290066078659423355== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11860?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11860. -------------------------------- Resolution: Done It seems __ renders with __ renders with= __ to render with _ > > > > > > > > > {code} > Attribute *scope* on element td is obsolete in HTML5 and should be set on= th element instead. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5290066078659423355==-- From jira-events at lists.jboss.org Tue Jan 24 17:04:18 2012 Content-Type: multipart/mixed; boundary="===============6326087249854213460==" MIME-Version: 1.0 From: Tom Giberius (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11916) extendedDataTable partial update => extend the functionality with INSERT and DELETE row where scroll position does not go up. Date: Tue, 24 Jan 2012 17:04:18 -0500 Message-ID: <1922325197.20094.1327442658256.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6326087249854213460== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Tom Giberius created RF-11916: --------------------------------- Summary: extendedDataTable partial update =3D> extend the func= tionality with INSERT and DELETE row where scroll position does not go up. Key: RF-11916 URL: https://issues.jboss.org/browse/RF-11916 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Reporter: Tom Giberius Situation: 1) extendDataTable with a verticall ScrollBar 2) Insert or delete record by insert/delete in myBean and by a re-render of= the table. 3) The re-render causes a full rebuild of the table in the DOM and the effe= ct is that the scrollbar goes up to the beginning.In fact this makes a scro= llable extendedDataTable not useful for inserting/deleting records. = Partial Table Render for extendedDataTable is available in RF 4.1 with a co= nstruction like: render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" This works fine for already available rows and indeed it is an UPDATE. Also @body, @header and @footer are available for partial table update. I would like to hava a kind of partitial table INSERT and UPDATE where not = the whole table is "re-draw" by only the record(s) are INSERTED or DELETED = and where the scroll position for the user visually stays the same. It could look like: render=3D"myTable(a)insert(myBean.Row) render=3D"myTable(a)delete(myBean.RowKey) If you have questions I will gladly elaborate on 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 --===============6326087249854213460==-- From jira-events at lists.jboss.org Tue Jan 24 17:06:18 2012 Content-Type: multipart/mixed; boundary="===============1991103836578713836==" MIME-Version: 1.0 From: Tom Giberius (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11916) extendedDataTable partial update => extend the functionality with INSERT and DELETE row where scroll position does not go up. Date: Tue, 24 Jan 2012 17:06:18 -0500 Message-ID: <1025803995.20105.1327442778763.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1922325197.20094.1327442658256.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1991103836578713836== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11916?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Tom Giberius updated RF-11916: ------------------------------ Description: = Situation: 1) extendDataTable with a verticall ScrollBar 2) Insert or delete record by insert/delete in myBean and by a re-render of= the table. 3) The re-render causes a full rebuild of the table in the DOM and the effe= ct is that the scrollbar goes up to the beginning.In fact this makes a scro= llable extendedDataTable not useful for inserting/deleting records. = Partial Table Render for extendedDataTable is available in RF 4.1 with a co= nstruction like: render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" This works fine for already available rows and indeed it is an UPDATE. Also @body, @header and @footer are available for partial table update. I would like to have a kind of partitial table INSERT and UPDATE where not = the whole table is "re-draw", only the record(s) are INSERTED or DELETED an= d where the scroll position for the user visually stays the same. Maintaini= ng the scroll position is the reason for this request, a user should be abl= e to insert/delete rows any where in a scrollalbe table larger then the tab= le height. It could look like: render=3D"myTable(a)insert(myBean.Row) render=3D"myTable(a)delete(myBean.RowKey) If you have questions I will gladly elaborate on above. was: Situation: 1) extendDataTable with a verticall ScrollBar 2) Insert or delete record by insert/delete in myBean and by a re-render of= the table. 3) The re-render causes a full rebuild of the table in the DOM and the effe= ct is that the scrollbar goes up to the beginning.In fact this makes a scro= llable extendedDataTable not useful for inserting/deleting records. = Partial Table Render for extendedDataTable is available in RF 4.1 with a co= nstruction like: render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" This works fine for already available rows and indeed it is an UPDATE. Also @body, @header and @footer are available for partial table update. I would like to hava a kind of partitial table INSERT and UPDATE where not = the whole table is "re-draw" by only the record(s) are INSERTED or DELETED = and where the scroll position for the user visually stays the same. It could look like: render=3D"myTable(a)insert(myBean.Row) render=3D"myTable(a)delete(myBean.RowKey) If you have questions I will gladly elaborate on above. = > extendedDataTable partial update =3D> extend the functionality with INSER= T and DELETE row where scroll position does not go up. > -------------------------------------------------------------------------= ---------------------------------------------------- > > Key: RF-11916 > URL: https://issues.jboss.org/browse/RF-11916 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Tom Giberius > > Situation: > 1) extendDataTable with a verticall ScrollBar > 2) Insert or delete record by insert/delete in myBean and by a re-render = of the table. > 3) The re-render causes a full rebuild of the table in the DOM and the ef= fect is that the scrollbar goes up to the beginning.In fact this makes a sc= rollable extendedDataTable not useful for inserting/deleting records. = > Partial Table Render for extendedDataTable is available in RF 4.1 with a = construction like: > render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" > This works fine for already available rows and indeed it is an UPDATE. > Also @body, @header and @footer are available for partial table update. > I would like to have a kind of partitial table INSERT and UPDATE where no= t the whole table is "re-draw", only the record(s) are INSERTED or DELETED = and where the scroll position for the user visually stays the same. Maintai= ning the scroll position is the reason for this request, a user should be a= ble to insert/delete rows any where in a scrollalbe table larger then the t= able height. > It could look like: > render=3D"myTable(a)insert(myBean.Row) > render=3D"myTable(a)delete(myBean.RowKey) > If you have questions I will gladly elaborate on 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 --===============1991103836578713836==-- From jira-events at lists.jboss.org Tue Jan 24 17:08:18 2012 Content-Type: multipart/mixed; boundary="===============5864936973900282932==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11765) Datatable footer cell doesn't use all columns (wrong colspan generated) Date: Tue, 24 Jan 2012 17:08:18 -0500 Message-ID: <1554635782.20108.1327442898718.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 249178125.59139.1322705200743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5864936973900282932== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11765?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11765. -------------------------------- Fix Version/s: (was: 4.2.0.CR1) Resolution: Won't Fix On analysing the provided code sample I've concluded that the current behav= iour is correct. Consider the state while trying to count the number of co= lumns while rendering the footer: While rendering the footer, no row is active, hence rowNbr cannot return 0 = (that would imply the 0th row is active). It counts the number of rendered= columns to determine what to use for the colspan - if a column is not rend= ered, it should not be included in the count. Hence the appropriate solution is indeed to alter the render logic of the c= olumn, so that it is counted while rendering the footer. = > Datatable footer cell doesn't use all columns (wrong colspan generated) > ----------------------------------------------------------------------- > > Key: RF-11765 > URL: https://issues.jboss.org/browse/RF-11765 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.CR1 > Reporter: Karsten Wutzke > Assignee: Brian Leathem > Labels: colspan, dataTable, footer > > When specifying a datatable's header with rich:columnGroup and a rich:col= umn in the tbody that has rendered=3D"#{rowKeyNbr eq 0}" the wrong colspan = for the table footer cell is generated. > For more details, code, and images please see the forum thread: > http://community.jboss.org/message/639211 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5864936973900282932==-- From jira-events at lists.jboss.org Tue Jan 24 17:20:18 2012 Content-Type: multipart/mixed; boundary="===============5853623572000348966==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11901) Review the "new" label on showcase compnents Date: Tue, 24 Jan 2012 17:20:18 -0500 Message-ID: <596357424.20135.1327443618199.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1378292109.9479.1326930259921.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5853623572000348966== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11901?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11901. -------------------------------- Resolution: Done = > Review the "new" label on showcase compnents > -------------------------------------------- > > Key: RF-11901 > URL: https://issues.jboss.org/browse/RF-11901 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: showcase > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.0.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 --===============5853623572000348966==-- From jira-events at lists.jboss.org Tue Jan 24 17:24:18 2012 Content-Type: multipart/mixed; boundary="===============0839906465852099485==" MIME-Version: 1.0 From: Tom Giberius (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11916) extendedDataTable partial update => extend the functionality with INSERT and DELETE row where scroll position does not go up. Date: Tue, 24 Jan 2012 17:24:18 -0500 Message-ID: <673533044.20140.1327443858384.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1922325197.20094.1327442658256.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0839906465852099485== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11916?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Tom Giberius updated RF-11916: ------------------------------ Description: = Situation: 1) extendDataTable with a verticall ScrollBar 2) Insert or delete record by insert/delete in myBean and by a re-render of= the table. 3) The re-render causes a full rebuild of the table in the DOM and the effe= ct is that the scrollbar goes up to the beginning.In fact this makes a scro= llable extendedDataTable not useful for inserting/deleting records. = Partial Table Render for extendedDataTable is available in RF 4.1 with a co= nstruction like: render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" This works fine for already available rows and indeed it is an UPDATE. Also @body, @header and @footer are available for partial table update. I would like to have a kind of partitial table INSERT and UPDATE where not = the whole table is "re-draw", only the record(s) are INSERTED or DELETED an= d where the scroll position for the user visually stays the same. Maintaini= ng the scroll position is the reason for this request, a user should be abl= e to insert/delete rows any where in a scrollalbe table larger then the tab= le height. It could look like: render=3D"myTable(a)insert(myBean.Row) render=3D"myTable(a)delete(myBean.RowKey) Also take care of the "selected" row: * For deletes the RowKey is passed, so no problem * For inserts one could consider: - Pass RowKey as parameter and insert before/after the given RowKey - Use the current "selected record" E.g.current selected record: * No record - then insert in first position * A record selected - insert after selected records The inserted record is anyway the new "selected row" Also with a delete you should consider what the "selected record" should be= if a selected record is deleted. I use the selected record (single selection mode) in insert/delete. For tha= t I made some changes to the JavaScript of the extendenDataTable. If you have questions I will gladly elaborate on above. was: Situation: 1) extendDataTable with a verticall ScrollBar 2) Insert or delete record by insert/delete in myBean and by a re-render of= the table. 3) The re-render causes a full rebuild of the table in the DOM and the effe= ct is that the scrollbar goes up to the beginning.In fact this makes a scro= llable extendedDataTable not useful for inserting/deleting records. = Partial Table Render for extendedDataTable is available in RF 4.1 with a co= nstruction like: render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" This works fine for already available rows and indeed it is an UPDATE. Also @body, @header and @footer are available for partial table update. I would like to have a kind of partitial table INSERT and UPDATE where not = the whole table is "re-draw", only the record(s) are INSERTED or DELETED an= d where the scroll position for the user visually stays the same. Maintaini= ng the scroll position is the reason for this request, a user should be abl= e to insert/delete rows any where in a scrollalbe table larger then the tab= le height. It could look like: render=3D"myTable(a)insert(myBean.Row) render=3D"myTable(a)delete(myBean.RowKey) If you have questions I will gladly elaborate on above. = > extendedDataTable partial update =3D> extend the functionality with INSER= T and DELETE row where scroll position does not go up. > -------------------------------------------------------------------------= ---------------------------------------------------- > > Key: RF-11916 > URL: https://issues.jboss.org/browse/RF-11916 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Tom Giberius > > Situation: > 1) extendDataTable with a verticall ScrollBar > 2) Insert or delete record by insert/delete in myBean and by a re-render = of the table. > 3) The re-render causes a full rebuild of the table in the DOM and the ef= fect is that the scrollbar goes up to the beginning.In fact this makes a sc= rollable extendedDataTable not useful for inserting/deleting records. = > Partial Table Render for extendedDataTable is available in RF 4.1 with a = construction like: > render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" > This works fine for already available rows and indeed it is an UPDATE. > Also @body, @header and @footer are available for partial table update. > I would like to have a kind of partitial table INSERT and UPDATE where no= t the whole table is "re-draw", only the record(s) are INSERTED or DELETED = and where the scroll position for the user visually stays the same. Maintai= ning the scroll position is the reason for this request, a user should be a= ble to insert/delete rows any where in a scrollalbe table larger then the t= able height. > It could look like: > render=3D"myTable(a)insert(myBean.Row) > render=3D"myTable(a)delete(myBean.RowKey) > Also take care of the "selected" row: > * For deletes the RowKey is passed, so no problem > * For inserts one could consider: > - Pass RowKey as parameter and insert before/after the given RowKey > - Use the current "selected record" > E.g.current selected record: > * No record - then insert in first position > * A record selected - insert after selected records > The inserted record is anyway the new "selected row" > Also with a delete you should consider what the "selected record" should = be if a selected record is deleted. > I use the selected record (single selection mode) in insert/delete. For t= hat I made some changes to the JavaScript of the extendenDataTable. > If you have questions I will gladly elaborate on 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 --===============0839906465852099485==-- From jira-events at lists.jboss.org Tue Jan 24 18:06:19 2012 Content-Type: multipart/mixed; boundary="===============2108670305426951979==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11917) Multiselect in pickList broken Date: Tue, 24 Jan 2012 18:06:19 -0500 Message-ID: <813271807.20245.1327446379393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 225210152.20244.1327446379363.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2108670305426951979== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11917?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661576#com= ment-12661576 ] = Brian Leathem commented on RF-11917: ------------------------------------ The event.metakey semantics were changed in jQuery 1.7 (see: http://bugs.jq= uery.com/ticket/10666). = > Multiselect in pickList broken > ------------------------------ > > Key: RF-11917 > URL: https://issues.jboss.org/browse/RF-11917 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.0.CR1 > > > Holding down the ctrl key while selecting values in the pickList no longe= r slects multiple values. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2108670305426951979==-- From jira-events at lists.jboss.org Tue Jan 24 18:06:19 2012 Content-Type: multipart/mixed; boundary="===============6720637337872779449==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11917) Multiselect in pickList broken Date: Tue, 24 Jan 2012 18:06:19 -0500 Message-ID: <225210152.20244.1327446379363.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6720637337872779449== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11917: ---------------------------------- Summary: Multiselect in pickList broken Key: RF-11917 URL: https://issues.jboss.org/browse/RF-11917 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Reporter: Brian Leathem Assignee: Brian Leathem Priority: Critical Fix For: 4.2.0.CR1 Holding down the ctrl key while selecting values in the pickList no longer = slects multiple values. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6720637337872779449==-- From jira-events at lists.jboss.org Tue Jan 24 18:12:18 2012 Content-Type: multipart/mixed; boundary="===============0947613997347456050==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11917) Multiselect in pickList broken Date: Tue, 24 Jan 2012 18:12:18 -0500 Message-ID: <706992412.20246.1327446738207.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 225210152.20244.1327446379363.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0947613997347456050== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11917?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11917. -------------------------------- Resolution: Done Replaced e.metaKey usage with e.metaKey || e.ctrlKey = > Multiselect in pickList broken > ------------------------------ > > Key: RF-11917 > URL: https://issues.jboss.org/browse/RF-11917 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.2.0.CR1 > > > Holding down the ctrl key while selecting values in the pickList no longe= r slects multiple values. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0947613997347456050==-- From jira-events at lists.jboss.org Tue Jan 24 18:41:18 2012 Content-Type: multipart/mixed; boundary="===============6666432374221362957==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11834) [RF4.1.final] rich:picklist don't support @RequestScope Date: Tue, 24 Jan 2012 18:41:18 -0500 Message-ID: <904412264.20345.1327448478766.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 823611390.23103.1324374549401.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6666432374221362957== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11834?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11834. -------------------------------- Fix Version/s: (was: 4.2.0.CR1) Resolution: Cannot Reproduce Bug Works for me, see the pickList dev-example: https://github.com/richfaces/dev-examples/blob/develop/input-demo/src/main/= webapp/examples/pickList.xhtml Note: you must implement the equals method for the model object used with t= he pickList. = > [RF4.1.final] rich:picklist don't support @RequestScope > ------------------------------------------------------- > > Key: RF-11834 > URL: https://issues.jboss.org/browse/RF-11834 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.1.0.Final > Environment: JBoss 7 / RF4.1.final jdk 1.6_u27 > Reporter: Adrien Adrien > Assignee: Brian Leathem > Labels: picklist, scope > > picklist don't works if backbean is @requestScope. > (it worked in RF 3.3.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 --===============6666432374221362957==-- From jira-events at lists.jboss.org Tue Jan 24 18:45:19 2012 Content-Type: multipart/mixed; boundary="===============5846566954105909420==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11657) Better integration with JBossAS 7.1 Date: Tue, 24 Jan 2012 18:45:18 -0500 Message-ID: <1649398193.20356.1327448718881.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1860495351.67654.1320759705458.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5846566954105909420== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11657?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11657. -------------------------------- Resolution: Done Added com.google.com to the manifest.mf Dependencies property = > Better integration with JBossAS 7.1 > ----------------------------------- > > Key: RF-11657 > URL: https://issues.jboss.org/browse/RF-11657 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution, compatibility > Affects Versions: 4.1.0.Milestone4 > Reporter: Juergen Zimmermann > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.0.CR1 > > > JBossAS 7.1 contains Google Guava 10.0.x (in addition to sac-1.3.jar and = cssparser-0.9.5.jar). Guava can be reused in RichFaces instead of doubling = it in WEB-INF/lib. The solution is pretty simple: > In richfaces-core-impl-VERSION.jar the file META-INF/MANIFEST.MF already = contains the line "Dependencies: ...". This line has to be extended by just= ",com.google.guava" as follows: > Dependencies: org.w3c.css.sac,net.sourceforge.cssparser,com.google.guava > That's all and from now on RichFaces doesn't require the distribution of = Google Guava in WEB-INF/lib when the platform is JBossAS 7.1. Please see al= so https://issues.jboss.org/browse/AS7-1809. > Be aware that there is no blank after the comma between net.sourceforge.c= ssparser and com.google.guava. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5846566954105909420==-- From jira-events at lists.jboss.org Tue Jan 24 18:49:18 2012 Content-Type: multipart/mixed; boundary="===============2274330275194670053==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11918) Create a showcase profile for JBoss AS 7.1 Date: Tue, 24 Jan 2012 18:49:18 -0500 Message-ID: <718645631.20368.1327448958455.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2274330275194670053== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11918: ---------------------------------- Summary: Create a showcase profile for JBoss AS 7.1 Key: RF-11918 URL: https://issues.jboss.org/browse/RF-11918 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: showcase Reporter: Brian Leathem Fix For: 4.2.0.CR1 With RF-11657, the deployment bundle for JBoss AS 7.1 should have the googl= e guava library excluded. Create a new debployment bundle for the showcase, excluding the google guav= a library. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2274330275194670053==-- From jira-events at lists.jboss.org Wed Jan 25 00:30:18 2012 Content-Type: multipart/mixed; boundary="===============8759121546615620441==" MIME-Version: 1.0 From: Friedhelm Kuehn (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11814) a4j:commandLink in tabPanel disabled if switchtype = ajax Date: Wed, 25 Jan 2012 00:30:18 -0500 Message-ID: <334210394.20721.1327469418493.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 796306910.9115.1323859989475.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8759121546615620441== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11814?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661634#com= ment-12661634 ] = Friedhelm Kuehn commented on RF-11814: -------------------------------------- OK for me. Thanks. = > a4j:commandLink in tabPanel disabled if switchtype =3D ajax > --------------------------------------------------------- > > Key: RF-11814 > URL: https://issues.jboss.org/browse/RF-11814 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core, component-panels-layout-themes > Affects Versions: 4.1.0.CR2 > Environment: Win 7 64 Bit, Tomcat 7.0.23, Mojarra 2.1.3 > Reporter: Friedhelm Kuehn > Assignee: Brian Leathem > > In the following constellation (=3Dextract from real page) the a4j:comman= dlink action method = > is correctly triggered on clicking when tabPanels switchType =3D "client"= but not when switchType =3D "ajax" > {code} > > > = > > ..... > > > > > > > Logging out, please wait ! > > > {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 --===============8759121546615620441==-- From jira-events at lists.jboss.org Wed Jan 25 00:40:18 2012 Content-Type: multipart/mixed; boundary="===============5250847895498719307==" 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: Wed, 25 Jan 2012 00:40:18 -0500 Message-ID: <808717311.20751.1327470018639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5250847895498719307== 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=3D12661640#com= ment-12661640 ] = Friedhelm Kuehn commented on RF-11884: -------------------------------------- Yes I have tried compatibility mode - but since this problems are also pres= ent in IE8, I was not surprised that this did not change anything - ? I attach two PDF-documents with - (For first two problems) detailed documentation = - Detailed documentation of my software configuration and Problem Analysis with hardcopies of everything I think could be helpful. Since - even with my browsers - the Richfaces Showcase from your server doe= s work, I think there might be something wrong in the Tomcat-Area. I checke= d this multiple times and did not find anything. So I inserted hardcopy of = the Tomcat configuration for you also. I would like to check the exact configuration of your ShowCase-Server to se= e if it makes a difference. - Can you please give it to me ? Thanks for your help. = > 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 > Labels: waiting_on_user > Attachments: Richfaces_4.1_Problems.pdf, Richfaces_4.1_Problems_K= onfiguration.pdf > > > 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 --===============5250847895498719307==-- From jira-events at lists.jboss.org Wed Jan 25 00:40:18 2012 Content-Type: multipart/mixed; boundary="===============0854902324306394493==" 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: Wed, 25 Jan 2012 00:40:18 -0500 Message-ID: <148935831.20748.1327470018404.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0854902324306394493== 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 updated RF-11884: --------------------------------- Attachment: Richfaces_4.1_Problems_Konfiguration.pdf Richfaces_4.1_Problems.pdf = > 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 > Labels: waiting_on_user > Attachments: Richfaces_4.1_Problems.pdf, Richfaces_4.1_Problems_K= onfiguration.pdf > > > 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 --===============0854902324306394493==-- From jira-events at lists.jboss.org Wed Jan 25 04:21:20 2012 Content-Type: multipart/mixed; boundary="===============6282116248498402629==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Wed, 25 Jan 2012 04:21:20 -0500 Message-ID: <388823878.21155.1327483280301.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6282116248498402629== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11875: ---------------------------------- Assignee: Jan Papousek (was: Pavol Pitonak) = > rich:extendedDataTable in ajax loading mode, crashes when dataset length = changes between requests > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11875 > URL: https://issues.jboss.org/browse/RF-11875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2.0, Tomcat 6.0.29 > Reporter: Dmitry Volkov > Assignee: Jan Papousek > > rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes w= hen dataset length changes between requests. > It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6282116248498402629==-- From jira-events at lists.jboss.org Wed Jan 25 04:25:21 2012 Content-Type: multipart/mixed; boundary="===============4679380015041351019==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11874) rich:extendedDataTable keyboard navigation fails in IE8 Date: Wed, 25 Jan 2012 04:25:19 -0500 Message-ID: <1056494046.21172.1327483519880.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1410319121.2645.1326369141473.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4679380015041351019== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11874?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11874: ---------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) = > rich:extendedDataTable keyboard navigation fails in IE8 > ------------------------------------------------------- > > Key: RF-11874 > URL: https://issues.jboss.org/browse/RF-11874 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2 > Internet Explorer version 8.0.7601.17514 > Reporter: Dmitry Volkov > Assignee: J=C3=A1n Jamrich > > Continous keyboard navigation fails in IE8 when ajax loading(clientRows= =3D"..") used. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4679380015041351019==-- From jira-events at lists.jboss.org Wed Jan 25 04:25:21 2012 Content-Type: multipart/mixed; boundary="===============1577630755035002078==" MIME-Version: 1.0 From: Pavol Pitonak (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, 25 Jan 2012 04:25:20 -0500 Message-ID: <1814239631.21176.1327483520524.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1599733089.80179.1323286480699.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1577630755035002078== 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 ] Pavol Pitonak reassigned RF-11801: ---------------------------------- Assignee: Jan Papousek (was: Pavol Pitonak) = > 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 --===============1577630755035002078==-- From jira-events at lists.jboss.org Wed Jan 25 05:20:18 2012 Content-Type: multipart/mixed; boundary="===============4845469738282938221==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11919) showcase - names of some samples do not follow camel case naming convention Date: Wed, 25 Jan 2012 05:20:18 -0500 Message-ID: <1840945137.21442.1327486818320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4845469738282938221== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-11919: -------------------------------- Summary: showcase - names of some samples do not follow camel = case naming convention Key: RF-11919 URL: https://issues.jboss.org/browse/RF-11919 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Reporter: Juraj Huska There are some samples in showcase which do not follow camel case naming co= nvention. First of all it is inconsistent with other sample names and secon= dly it makes some problems with showcase tests, since I am using method for= loading the appropriate page according to the test class name, which shoul= d be obviously named using camel case. Can you please rename following samp= les ? component demo - sample ######################## a4j:status - viewusage, referencedusage a4j:outputPanel - Auto update for h:messages 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 --===============4845469738282938221==-- From jira-events at lists.jboss.org Wed Jan 25 05:40:18 2012 Content-Type: multipart/mixed; boundary="===============2317803531369301367==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11916) extendedDataTable partial update => extend the functionality with INSERT and DELETE row where scroll position does not go up. Date: Wed, 25 Jan 2012 05:40:18 -0500 Message-ID: <1817772789.21471.1327488018350.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1922325197.20094.1327442658256.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2317803531369301367== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11916?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-11916: -------------------------------------- Forum Reference: https://community.jboss.org/message/516078#516078 = > extendedDataTable partial update =3D> extend the functionality with INSER= T and DELETE row where scroll position does not go up. > -------------------------------------------------------------------------= ---------------------------------------------------- > > Key: RF-11916 > URL: https://issues.jboss.org/browse/RF-11916 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Tom Giberius > > Situation: > 1) extendDataTable with a verticall ScrollBar > 2) Insert or delete record by insert/delete in myBean and by a re-render = of the table. > 3) The re-render causes a full rebuild of the table in the DOM and the ef= fect is that the scrollbar goes up to the beginning.In fact this makes a sc= rollable extendedDataTable not useful for inserting/deleting records. = > Partial Table Render for extendedDataTable is available in RF 4.1 with a = construction like: > render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" > This works fine for already available rows and indeed it is an UPDATE. > Also @body, @header and @footer are available for partial table update. > I would like to have a kind of partitial table INSERT and UPDATE where no= t the whole table is "re-draw", only the record(s) are INSERTED or DELETED = and where the scroll position for the user visually stays the same. Maintai= ning the scroll position is the reason for this request, a user should be a= ble to insert/delete rows any where in a scrollalbe table larger then the t= able height. > It could look like: > render=3D"myTable(a)insert(myBean.Row) > render=3D"myTable(a)delete(myBean.RowKey) > Also take care of the "selected" row: > * For deletes the RowKey is passed, so no problem > * For inserts one could consider: > - Pass RowKey as parameter and insert before/after the given RowKey > - Use the current "selected record" > E.g.current selected record: > * No record - then insert in first position > * A record selected - insert after selected records > The inserted record is anyway the new "selected row" > Also with a delete you should consider what the "selected record" should = be if a selected record is deleted. > I use the selected record (single selection mode) in insert/delete. For t= hat I made some changes to the JavaScript of the extendenDataTable. > If you have questions I will gladly elaborate on 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 --===============2317803531369301367==-- From jira-events at lists.jboss.org Wed Jan 25 07:13:52 2012 Content-Type: multipart/mixed; boundary="===============8685203234026339282==" 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-11891) Simple bug in org.richfaces.resource.Xcss2EcssConverter Date: Wed, 25 Jan 2012 07:13:50 -0500 Message-ID: <134488457.175.1327493630344.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 815303006.6467.1326841279163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8685203234026339282== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11891?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661825#com= ment-12661825 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11891: --------------------------------- Xcss2EcssConverter is not used across project, it's obvious the accidental = change was used for debugging purposes. The first command line argument ({{args[1]}}) will be taken as the filename. = > Simple bug in org.richfaces.resource.Xcss2EcssConverter > ------------------------------------------------------- > > Key: RF-11891 > URL: https://issues.jboss.org/browse/RF-11891 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Environment: Any > Reporter: Dmytro Batishchev > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.2.0.CR1 > > > Simple bug in org.richfaces.resource.Xcss2EcssConverter classfile in main= class, please, comment out or delete next line: = > {quote} > _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/jav= a/org/ajax4jsf/cache/extended.xcss"_ > {quote} > PS: Sorry for my English. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8685203234026339282==-- From jira-events at lists.jboss.org Wed Jan 25 07:17:51 2012 Content-Type: multipart/mixed; boundary="===============7094624768028953230==" 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-11891) Simple bug in org.richfaces.resource.Xcss2EcssConverter Date: Wed, 25 Jan 2012 07:17:50 -0500 Message-ID: <1043488941.196.1327493870566.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 815303006.6467.1326841279163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7094624768028953230== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11891?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661825#com= ment-12661825 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11891 at 1/25/12 7:16 AM: ---------------------------------------------------------- Xcss2EcssConverter is not used across project, it's obvious the accidental = change was used for debugging purposes. The first command line argument ({{args[0]}}) will be taken as the filename. = was (Author: lfryc): Xcss2EcssConverter is not used across project, it's obvious the acciden= tal change was used for debugging purposes. The first command line argument ({{args[1]}}) will be taken as the filename. = > Simple bug in org.richfaces.resource.Xcss2EcssConverter > ------------------------------------------------------- > > Key: RF-11891 > URL: https://issues.jboss.org/browse/RF-11891 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Environment: Any > Reporter: Dmytro Batishchev > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.2.0.CR1 > > > Simple bug in org.richfaces.resource.Xcss2EcssConverter classfile in main= class, please, comment out or delete next line: = > {quote} > _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/jav= a/org/ajax4jsf/cache/extended.xcss"_ > {quote} > PS: Sorry for my English. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7094624768028953230==-- From jira-events at lists.jboss.org Wed Jan 25 07:20:50 2012 Content-Type: multipart/mixed; boundary="===============0709722274609293183==" 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-11891) Simple bug in org.richfaces.resource.Xcss2EcssConverter Date: Wed, 25 Jan 2012 07:20:48 -0500 Message-ID: <798317651.200.1327494048407.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 815303006.6467.1326841279163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0709722274609293183== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11891?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11891. ----------------------------- Resolution: Done = > Simple bug in org.richfaces.resource.Xcss2EcssConverter > ------------------------------------------------------- > > Key: RF-11891 > URL: https://issues.jboss.org/browse/RF-11891 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Environment: Any > Reporter: Dmytro Batishchev > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.2.0.CR1 > > > Simple bug in org.richfaces.resource.Xcss2EcssConverter classfile in main= class, please, comment out or delete next line: = > {quote} > _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/jav= a/org/ajax4jsf/cache/extended.xcss"_ > {quote} > PS: Sorry for my English. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0709722274609293183==-- From jira-events at lists.jboss.org Wed Jan 25 07:59:48 2012 Content-Type: multipart/mixed; boundary="===============5953919827517713272==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Wed, 25 Jan 2012 07:59:48 -0500 Message-ID: <181702573.420.1327496388479.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5953919827517713272== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-11875: ------------------------------ Attachment: richfaces-showcase-jbas7.war = > rich:extendedDataTable in ajax loading mode, crashes when dataset length = changes between requests > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11875 > URL: https://issues.jboss.org/browse/RF-11875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2.0, Tomcat 6.0.29 > Reporter: Dmitry Volkov > Assignee: Jan Papousek > Attachments: richfaces-showcase-jbas7.war > > > rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes w= hen dataset length changes between requests. > It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5953919827517713272==-- From jira-events at lists.jboss.org Wed Jan 25 08:05:48 2012 Content-Type: multipart/mixed; boundary="===============4136908173538917136==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Wed, 25 Jan 2012 08:05:48 -0500 Message-ID: <1580432456.455.1327496748599.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4136908173538917136== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-11875: ------------------------------ Steps to Reproduce: = I have used "/richfaces/component-sample.jsf?demo=3DextendedDataTable" page= in RF Showcase to reproduce the problem. = 1. Add the following code in "simpleTable-sample.xhtml" in h:form tag: {code:xml} {code} 2.Open this page "/richfaces/component-sample.jsf?demo=3DextendedDataTable"= in browser. 3.Check "Turn ajax loading on/off" checkbox. 4.Click "removeFirst" button. 5.Scroll table content to the end. 6.Scroll table content to begin. Table is not refreshed and following exception is logged: = {noformat} java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.LinkedList.entry(LinkedList.java:365) at java.util.LinkedList.remove(LinkedList.java:357) at org.richfaces.renderkit.ExtendedDataTableRenderer$2.process(ExtendedDat= aTableRenderer.java:520) at org.ajax4jsf.model.SequenceDataModel.walk(SequenceDataModel.java:65) at org.richfaces.component.UIDataTableBase.walk(UIDataTableBase.java:261) at org.richfaces.renderkit.ExtendedDataTableRenderer.encodeMetaComponent(E= xtendedDataTableRenderer.java:512) at org.richfaces.component.UIDataTableBase.encodeMetaComponent(UIDataTable= Base.java:295) at org.richfaces.component.AbstractExtendedDataTable.encodeMetaComponent(A= bstractExtendedDataTable.java:109) at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallbac= k.visit(ExtendedPartialViewContextImpl.java:493) at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(Base= ExtendedVisitContext.java:321) at org.richfaces.context.ExtendedVisitContext.invokeMetaComponentVisitCall= back(ExtendedVisitContext.java:68) at org.richfaces.component.AbstractExtendedDataTable.visitDataChildren(Abs= tractExtendedDataTable.java:122) at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:1357) at javax.faces.component.UIForm.visitTree(UIForm.java:266) at javax.faces.component.UIComponent.visitTree(UIComponent.java:797) at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:99= 2) at javax.faces.component.UIComponent.visitTree(UIComponent.java:797) at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:99= 2) at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRend= erPhase(ExtendedPartialViewContextImpl.java:272) at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(Ext= endedPartialViewContextImpl.java:194) at javax.faces.context.PartialViewContextWrapper.processPartial(PartialVie= wContextWrapper.java:88) at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:389) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:617) ... {noformat} ---- *You can download and deploy already updated richfaces-showcase-jbas7.war f= rom attachments on JBoss AS 7 (source codes are available on GitHub:* https= ://github.com/papousek/showcase/tree/RF-11875 *) instead of updating showca= se on your own*. was: I have used "/richfaces/component-sample.jsf?demo=3DextendedDataTable" page= in RF Showcase to reproduce the problem. = 1. Add the following code in "simpleTable-sample.xhtml" in h:form tag: {code:xml} {code} 2.Open this page "/richfaces/component-sample.jsf?demo=3DextendedDataTable"= in browser. 3.Check "Turn ajax loading on/off" checkbox. 4.Click "removeFirst" button. 5.Scroll table content to the end. 6.Scroll table content to begin. Table is not refreshed and following exception is logged: = {noformat} java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.LinkedList.entry(LinkedList.java:365) at java.util.LinkedList.remove(LinkedList.java:357) at org.richfaces.renderkit.ExtendedDataTableRenderer$2.process(ExtendedDat= aTableRenderer.java:520) at org.ajax4jsf.model.SequenceDataModel.walk(SequenceDataModel.java:65) at org.richfaces.component.UIDataTableBase.walk(UIDataTableBase.java:261) at org.richfaces.renderkit.ExtendedDataTableRenderer.encodeMetaComponent(E= xtendedDataTableRenderer.java:512) at org.richfaces.component.UIDataTableBase.encodeMetaComponent(UIDataTable= Base.java:295) at org.richfaces.component.AbstractExtendedDataTable.encodeMetaComponent(A= bstractExtendedDataTable.java:109) at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallbac= k.visit(ExtendedPartialViewContextImpl.java:493) at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(Base= ExtendedVisitContext.java:321) at org.richfaces.context.ExtendedVisitContext.invokeMetaComponentVisitCall= back(ExtendedVisitContext.java:68) at org.richfaces.component.AbstractExtendedDataTable.visitDataChildren(Abs= tractExtendedDataTable.java:122) at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:1357) at javax.faces.component.UIForm.visitTree(UIForm.java:266) at javax.faces.component.UIComponent.visitTree(UIComponent.java:797) at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:99= 2) at javax.faces.component.UIComponent.visitTree(UIComponent.java:797) at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:99= 2) at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRend= erPhase(ExtendedPartialViewContextImpl.java:272) at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(Ext= endedPartialViewContextImpl.java:194) at javax.faces.context.PartialViewContextWrapper.processPartial(PartialVie= wContextWrapper.java:88) at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:389) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:617) ... {noformat} = > rich:extendedDataTable in ajax loading mode, crashes when dataset length = changes between requests > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11875 > URL: https://issues.jboss.org/browse/RF-11875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2.0, Tomcat 6.0.29 > Reporter: Dmitry Volkov > Assignee: Jan Papousek > Attachments: richfaces-showcase-jbas7.war > > > rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes w= hen dataset length changes between requests. > It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4136908173538917136==-- From jira-events at lists.jboss.org Wed Jan 25 08:15:49 2012 Content-Type: multipart/mixed; boundary="===============4324907212073751605==" 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-11920) for_each_module.sh: allow to execute paralelly Date: Wed, 25 Jan 2012 08:15:49 -0500 Message-ID: <1798100927.539.1327497349613.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4324907212073751605== 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-11920: ------------------------------- Summary: for_each_module.sh: allow to execute paralelly Key: RF-11920 URL: https://issues.jboss.org/browse/RF-11920 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: build/distribution Affects Versions: 4.1.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D It would increase work turnaround when {{for_each_module.sh}} script could = execute in parallel, preferably giving results in fix order of modules. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4324907212073751605==-- From jira-events at lists.jboss.org Wed Jan 25 08:17:53 2012 Content-Type: multipart/mixed; boundary="===============1861554594026721663==" 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-11920) for_each_module.sh: allow to execute paralelly Date: Wed, 25 Jan 2012 08:17:52 -0500 Message-ID: <1612763539.594.1327497472464.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1798100927.539.1327497349613.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1861554594026721663== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11920?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11920: ---------------------------- Description: = Currently, {{for_each_module.sh}} runs commands in sequence, which makes significant delays in work when triggering commands which takes= time to proceed (like fetch from the server). It would increase work turnaround when {{for_each_module.sh}} script could = execute in parallel, preferably giving results in fix order of modules. was: It would increase work turnaround when {{for_each_module.sh}} script could = execute in parallel, preferably giving results in fix order of modules. = > for_each_module.sh: allow to execute paralelly > ---------------------------------------------- > > Key: RF-11920 > URL: https://issues.jboss.org/browse/RF-11920 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: build > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > Currently, {{for_each_module.sh}} runs commands in sequence, > which makes significant delays in work when triggering commands which tak= es time to proceed (like fetch from the server). > It would increase work turnaround when {{for_each_module.sh}} script coul= d execute in parallel, > preferably giving results in fix order of modules. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1861554594026721663==-- From jira-events at lists.jboss.org Wed Jan 25 08:38:50 2012 Content-Type: multipart/mixed; boundary="===============7513741666540929192==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Wed, 25 Jan 2012 08:38:49 -0500 Message-ID: <12942332.658.1327498729123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7513741666540929192== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek reassigned RF-11875: --------------------------------- Assignee: Brian Leathem (was: Jan Papousek) Confirmed. I've attached WAR file and updated description. = > rich:extendedDataTable in ajax loading mode, crashes when dataset length = changes between requests > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11875 > URL: https://issues.jboss.org/browse/RF-11875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2.0, Tomcat 6.0.29 > Reporter: Dmitry Volkov > Assignee: Brian Leathem > Attachments: richfaces-showcase-jbas7.war > > > rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes w= hen dataset length changes between requests. > It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7513741666540929192==-- From jira-events at lists.jboss.org Wed Jan 25 08:38:50 2012 Content-Type: multipart/mixed; boundary="===============8630748401124746098==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Wed, 25 Jan 2012 08:38:49 -0500 Message-ID: <849914154.663.1327498729470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8630748401124746098== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-11875: ------------------------------ Environment: JSF-RI 2.0, Tomcat 6.0.29 / JBoss AS 7.0.2.Final (was: JS= F-RI 2.0, Tomcat 6.0.29) = > rich:extendedDataTable in ajax loading mode, crashes when dataset length = changes between requests > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11875 > URL: https://issues.jboss.org/browse/RF-11875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2.0, Tomcat 6.0.29 / JBoss AS 7.0.2.Final > Reporter: Dmitry Volkov > Assignee: Brian Leathem > Attachments: richfaces-showcase-jbas7.war > > > rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes w= hen dataset length changes between requests. > It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8630748401124746098==-- From jira-events at lists.jboss.org Wed Jan 25 08:40:48 2012 Content-Type: multipart/mixed; boundary="===============2066378348812962257==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11919) showcase - names of some samples do not follow camel case naming convention Date: Wed, 25 Jan 2012 08:40:48 -0500 Message-ID: <1627191777.667.1327498848458.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1840945137.21442.1327486818320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2066378348812962257== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11919?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11919: ----------------------------- Environment: showcase app Priority: Trivial (was: Major) Component/s: qe showcase = > showcase - names of some samples do not follow camel case naming conventi= on > -------------------------------------------------------------------------= -- > > Key: RF-11919 > URL: https://issues.jboss.org/browse/RF-11919 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: qe, showcase > Environment: showcase app > Reporter: Juraj Huska > Priority: Trivial > > There are some samples in showcase which do not follow camel case naming = convention. First of all it is inconsistent with other sample names and sec= ondly it makes some problems with showcase tests, since I am using method f= or loading the appropriate page according to the test class name, which sho= uld be obviously named using camel case. Can you please rename following sa= mples ? > component demo - sample > ######################## > a4j:status - viewusage, referencedusage > a4j:outputPanel - Auto update for h:messages 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 --===============2066378348812962257==-- From jira-events at lists.jboss.org Wed Jan 25 09:10:50 2012 Content-Type: multipart/mixed; boundary="===============3020094109433979657==" MIME-Version: 1.0 From: Jan Papousek (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, 25 Jan 2012 09:10:48 -0500 Message-ID: <1035892220.732.1327500648683.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1599733089.80179.1323286480699.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3020094109433979657== 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.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661869#com= ment-12661869 ] = Jan Papousek commented on RF-11801: ----------------------------------- Giovanni, could you provide simplified maven project which can be used for = reproducing this bug? = > 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 --===============3020094109433979657==-- From jira-events at lists.jboss.org Wed Jan 25 12:27:48 2012 Content-Type: multipart/mixed; boundary="===============3237011943397946624==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11855) error@malformedXML on inputText files - Ajax Validation on event change - RichFaces 4.1 Final Date: Wed, 25 Jan 2012 12:27:48 -0500 Message-ID: <1683182724.1505.1327512468591.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26805713.30230.1324582930232.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3237011943397946624== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11855?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE reopened RF-11855: ----------------------------- Come on guys, do not miss the opportunity to solve a such bug - The fact is= when we use f:ajax tag, it is working but when we use richfaces tag is not= - What does it mean...? - The bug can be easily reproduced, just edit the = createClient xhtml and replace the f:ajax tab by yours. RichFaces is your p= roduct and the ideal conditions does not really exist...as "complexity" is = probably part of the problem. Sincerely. = > error(a)malformedXML on inputText files - Ajax Validation on event change= - RichFaces 4.1 Final = > -------------------------------------------------------------------------= --------------------- > > Key: RF-11855 > URL: https://issues.jboss.org/browse/RF-11855 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Websphere 8.0.0.1 - RAD 8.0.0.4 - JSF Mojorra 2.1.4 = - Spring 3.0.6 Final - Hibernate Validator 4.2. - Java 6 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: INPUT, MALFORMED, UI, XML > Attachments: createClient1.xhtml, CreateClientController1.java, e= rror(a)malformedXML-ScreenShot-1.jpg, error(a)malformedXML.debug.txt, error= (a)malformedXML.viewSource.html, index.xhtml > > > We got a error(a)malformedXML message when we want to apply an ajax valid= ation on imput text. > The field is include inside a tab in mode "server" - What ever the mode, = we getting the error. Tab content is built by including some xhtml. See att= achment. > {code} > > 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:c=3D"http://java.sun.com/jsp/jstl/core" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > > > > > > > > > > > {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 --===============3237011943397946624==-- From jira-events at lists.jboss.org Wed Jan 25 12:47:48 2012 Content-Type: multipart/mixed; boundary="===============3493116142309769583==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11921) Update the release-notes Date: Wed, 25 Jan 2012 12:47:48 -0500 Message-ID: <432501842.1527.1327513668309.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3493116142309769583== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11921: ---------------------------------- Summary: Update the release-notes Key: RF-11921 URL: https://issues.jboss.org/browse/RF-11921 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: build/distribution Reporter: Brian Leathem Assignee: Brian Leathem Priority: Blocker Fix For: 4.2.0.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 --===============3493116142309769583==-- From jira-events at lists.jboss.org Wed Jan 25 12:57:49 2012 Content-Type: multipart/mixed; boundary="===============1494494767527330985==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11908) rich:datascroller not scrolling rich:dataGrid Date: Wed, 25 Jan 2012 12:57:48 -0500 Message-ID: <991052350.1571.1327514268904.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 938472980.13390.1327071498619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1494494767527330985== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11908?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11908: ------------------------------- Comment: was deleted (was: QE, please confirm) = > rich:datascroller not scrolling rich:dataGrid > --------------------------------------------- > > Key: RF-11908 > URL: https://issues.jboss.org/browse/RF-11908 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 3.3.3.Final > Environment: Windows OS in JBoss 5.1 > Reporter: Todd Gould > Assignee: Pavol Pitonak > > The rich:dataScroller does not work with the rich:dataGrid component. Th= e datascroller represents the proper number of pages for the data in the da= taGrid. However, when I select any of the datascroller controlls, the ajax= request processes (as witnessed via the associated status), but the dataGr= id remains on the first page. Nothing seems to be able to make it progress= to another page. No ajax or other errors are generated and all appears to= function well except that the datGrid does not scroll. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1494494767527330985==-- From jira-events at lists.jboss.org Wed Jan 25 12:57:49 2012 Content-Type: multipart/mixed; boundary="===============4163670911636002206==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11908) rich:datascroller not scrolling rich:dataGrid Date: Wed, 25 Jan 2012 12:57:48 -0500 Message-ID: <635314472.1573.1327514268964.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 938472980.13390.1327071498619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4163670911636002206== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11908?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11908: ---------------------------------- Assignee: (was: Pavol Pitonak) = > rich:datascroller not scrolling rich:dataGrid > --------------------------------------------- > > Key: RF-11908 > URL: https://issues.jboss.org/browse/RF-11908 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 3.3.3.Final > Environment: Windows OS in JBoss 5.1 > Reporter: Todd Gould > > The rich:dataScroller does not work with the rich:dataGrid component. Th= e datascroller represents the proper number of pages for the data in the da= taGrid. However, when I select any of the datascroller controlls, the ajax= request processes (as witnessed via the associated status), but the dataGr= id remains on the first page. Nothing seems to be able to make it progress= to another page. No ajax or other errors are generated and all appears to= function well except that the datGrid does not scroll. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4163670911636002206==-- From jira-events at lists.jboss.org Wed Jan 25 12:59:48 2012 Content-Type: multipart/mixed; boundary="===============6732840025470308966==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11908) rich:datascroller not scrolling rich:dataGrid Date: Wed, 25 Jan 2012 12:59:48 -0500 Message-ID: <1955656038.1580.1327514388523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 938472980.13390.1327071498619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6732840025470308966== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11908?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11908: ------------------------------- Fix Version/s: 3.Future Forum Reference: https://community.jboss.org/message/647269#647269 (wa= s: https://community.jboss.org/message/647269#647269) = > rich:datascroller not scrolling rich:dataGrid > --------------------------------------------- > > Key: RF-11908 > URL: https://issues.jboss.org/browse/RF-11908 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 3.3.3.Final > Environment: Windows OS in JBoss 5.1 > Reporter: Todd Gould > Fix For: 3.Future > > > The rich:dataScroller does not work with the rich:dataGrid component. Th= e datascroller represents the proper number of pages for the data in the da= taGrid. However, when I select any of the datascroller controlls, the ajax= request processes (as witnessed via the associated status), but the dataGr= id remains on the first page. Nothing seems to be able to make it progress= to another page. No ajax or other errors are generated and all appears to= function well except that the datGrid does not scroll. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6732840025470308966==-- From jira-events at lists.jboss.org Wed Jan 25 13:03:49 2012 Content-Type: multipart/mixed; boundary="===============0015821752778763140==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11915) MenuGroup with all items disabled or no items causes JS error Date: Wed, 25 Jan 2012 13:03:49 -0500 Message-ID: <926560686.1586.1327514629047.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2107920490.18850.1327404678300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0015821752778763140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11915?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11915: ------------------------------- Description: = Submenu (r:menuGroup) containing only disabled items or no items, causes a = JavaScript error when it is supposed to get hidden (moving cursor to the ne= xt item in the parent menu). In Firefox 9: {quote} parentMenu is undefined menu-base.js, line 126 {quote} In MSIE 7: {quote} 'nodeType' is null or not an object richfaces.js, line 43 {quote} It's the same error only reported from the different level of the call stac= k. was: Submenu (r:menuGroup) containing only disabled items or no items, causes a = JavaScript error when it is supposed to get hidden (moving cursor to the ne= xt item in the parent menu). In Firefox 9: parentMenu is undefined menu-base.js, line 126 In MSIE 7: 'nodeType' is null or not an object richfaces.js, line 43 It's the same error only reported from the different level of the call stac= k. Steps to Reproduce: = Test case {also works with "Disabled item" removed): {code} {code} # open the menu "Menu test case" # move the cursor down by the items # after leaving "Submenu with disabled items" and moving to "Last item", th= e error appears. was: Test case {also works with "Disabled item" removed): - open the menu "Menu test case" - move the cursor down by the items - after leaving "Submenu with disabled items" and moving to "Last item", th= e error appears. = > MenuGroup with all items disabled or no items causes JS error > ------------------------------------------------------------- > > Key: RF-11915 > URL: https://issues.jboss.org/browse/RF-11915 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Environment: Tomcat 6.0.26, MyFaces 2.1.13, RichFaces > Reporter: J=C3=A1n Hala=C5=A1a > > Submenu (r:menuGroup) containing only disabled items or no items, causes = a JavaScript error when it is supposed to get hidden (moving cursor to the = next item in the parent menu). > In Firefox 9: > {quote} > parentMenu is undefined > menu-base.js, line 126 > {quote} > In MSIE 7: > {quote} > 'nodeType' is null or not an object > richfaces.js, line 43 > {quote} > It's the same error only reported from the different level of the call st= ack. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0015821752778763140==-- From jira-events at lists.jboss.org Wed Jan 25 14:29:48 2012 Content-Type: multipart/mixed; boundary="===============3106797982300583584==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11915) MenuGroup with all items disabled or no items causes JS error Date: Wed, 25 Jan 2012 14:29:48 -0500 Message-ID: <1043479941.1818.1327519788839.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2107920490.18850.1327404678300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3106797982300583584== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11915?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11915: ---------------------------------- Assignee: Pavol Pitonak QE, please verify. = > MenuGroup with all items disabled or no items causes JS error > ------------------------------------------------------------- > > Key: RF-11915 > URL: https://issues.jboss.org/browse/RF-11915 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Environment: Tomcat 6.0.26, MyFaces 2.1.13, RichFaces > Reporter: J=C3=A1n Hala=C5=A1a > Assignee: Pavol Pitonak > > Submenu (r:menuGroup) containing only disabled items or no items, causes = a JavaScript error when it is supposed to get hidden (moving cursor to the = next item in the parent menu). > In Firefox 9: > {quote} > parentMenu is undefined > menu-base.js, line 126 > {quote} > In MSIE 7: > {quote} > 'nodeType' is null or not an object > richfaces.js, line 43 > {quote} > It's the same error only reported from the different level of the call st= ack. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3106797982300583584==-- From jira-events at lists.jboss.org Wed Jan 25 14:31:48 2012 Content-Type: multipart/mixed; boundary="===============2751081076174995327==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11916) extendedDataTable partial update => extend the functionality with INSERT and DELETE row where scroll position does not go up. Date: Wed, 25 Jan 2012 14:31:48 -0500 Message-ID: <1619555150.1848.1327519908574.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1922325197.20094.1327442658256.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2751081076174995327== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11916?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11916: ------------------------------- Fix Version/s: 4.Future Component/s: component-tables Forum Reference: https://community.jboss.org/message/516078#516078 (wa= s: https://community.jboss.org/message/516078#516078) Thanks for taking the time to file a feature request. We'll evaluate this = in the near future when we assess all the EDT feature requests. = > extendedDataTable partial update =3D> extend the functionality with INSER= T and DELETE row where scroll position does not go up. > -------------------------------------------------------------------------= ---------------------------------------------------- > > Key: RF-11916 > URL: https://issues.jboss.org/browse/RF-11916 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Reporter: Tom Giberius > Fix For: 4.Future > > > Situation: > 1) extendDataTable with a verticall ScrollBar > 2) Insert or delete record by insert/delete in myBean and by a re-render = of the table. > 3) The re-render causes a full rebuild of the table in the DOM and the ef= fect is that the scrollbar goes up to the beginning.In fact this makes a sc= rollable extendedDataTable not useful for inserting/deleting records. = > Partial Table Render for extendedDataTable is available in RF 4.1 with a = construction like: > render=3D"myTable(a)rows(myBean.listOfUpdateRows):myColumn" > This works fine for already available rows and indeed it is an UPDATE. > Also @body, @header and @footer are available for partial table update. > I would like to have a kind of partitial table INSERT and UPDATE where no= t the whole table is "re-draw", only the record(s) are INSERTED or DELETED = and where the scroll position for the user visually stays the same. Maintai= ning the scroll position is the reason for this request, a user should be a= ble to insert/delete rows any where in a scrollalbe table larger then the t= able height. > It could look like: > render=3D"myTable(a)insert(myBean.Row) > render=3D"myTable(a)delete(myBean.RowKey) > Also take care of the "selected" row: > * For deletes the RowKey is passed, so no problem > * For inserts one could consider: > - Pass RowKey as parameter and insert before/after the given RowKey > - Use the current "selected record" > E.g.current selected record: > * No record - then insert in first position > * A record selected - insert after selected records > The inserted record is anyway the new "selected row" > Also with a delete you should consider what the "selected record" should = be if a selected record is deleted. > I use the selected record (single selection mode) in insert/delete. For t= hat I made some changes to the JavaScript of the extendenDataTable. > If you have questions I will gladly elaborate on 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 --===============2751081076174995327==-- From jira-events at lists.jboss.org Wed Jan 25 14:33:48 2012 Content-Type: multipart/mixed; boundary="===============9126728114294333778==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11919) showcase - names of some samples do not follow camel case naming convention Date: Wed, 25 Jan 2012 14:33:48 -0500 Message-ID: <850246606.1851.1327520028535.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1840945137.21442.1327486818320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9126728114294333778== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11919?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11919: ------------------------------- Assignee: Brian Leathem Fix Version/s: 4.2.0.CR1 = > showcase - names of some samples do not follow camel case naming conventi= on > -------------------------------------------------------------------------= -- > > Key: RF-11919 > URL: https://issues.jboss.org/browse/RF-11919 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: qe, showcase > Environment: showcase app > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.0.CR1 > > > There are some samples in showcase which do not follow camel case naming = convention. First of all it is inconsistent with other sample names and sec= ondly it makes some problems with showcase tests, since I am using method f= or loading the appropriate page according to the test class name, which sho= uld be obviously named using camel case. Can you please rename following sa= mples ? > component demo - sample > ######################## > a4j:status - viewusage, referencedusage > a4j:outputPanel - Auto update for h:messages 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 --===============9126728114294333778==-- From jira-events at lists.jboss.org Wed Jan 25 14:35:48 2012 Content-Type: multipart/mixed; boundary="===============7992960112915401461==" MIME-Version: 1.0 From: Brian Leathem (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: Wed, 25 Jan 2012 14:35:48 -0500 Message-ID: <615088529.1856.1327520148357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7992960112915401461== 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 ] Brian Leathem reassigned RF-11905: ---------------------------------- Assignee: Juraj Huska Good job finding the upstream issue! It indicates the problem has been fix= ed in JBoss AS 7.1, would you please verify that this has been fixed for th= e showcase? = > 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: Juraj Huska > Priority: Minor > > 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 =20 --===============7992960112915401461==-- From jira-events at lists.jboss.org Wed Jan 25 16:46:48 2012 Content-Type: multipart/mixed; boundary="===============4536701549708138597==" MIME-Version: 1.0 From: Jesper Vrelits (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11656) Nested collapsibleSubTable always expanded Date: Wed, 25 Jan 2012 16:46:48 -0500 Message-ID: <983334762.1975.1327528008664.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 481335575.67197.1320749685382.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4536701549708138597== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11656?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662025#com= ment-12662025 ] = Jesper Vrelits commented on RF-11656: ------------------------------------- Any hope this will get fixed. It is a QE verified Major bug. = I have a hard time understanding there is not more focus on fixing bugs, in= this case a verified bug. = > Nested collapsibleSubTable always expanded > ------------------------------------------ > > Key: RF-11656 > URL: https://issues.jboss.org/browse/RF-11656 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.1.0.Milestone3 > Reporter: Jesper Vrelits > Assignee: Brian Leathem > Fix For: 4.3-Tracking > > > When I use nested collapsibleSubTable the nested collapsibleSubTable is a= lways expanded. > Even if I put expended=3D"#{false}" it is also expanded. > My facelet looks like this: > {code} > id=3D"envtoggle" expandMode=3D"= ajax" expanded=3D"#{environment.expanded}"> > > > > > > > > > > > > > > var=3D"logicalinstance" id=3D"lo= gicaltoggle" expandMode=3D"ajax" > expanded=3D"#{group.expande= d}"> > > > > > > > > > {code} > Group.expanded seems to be updated correctly, so it seems the Renderer do= es not use this. A guess is that it uses the parent collapsibleSubTable exp= anded value, because they seem synchronized. My guess it the Renderer code = does not work with nested collapsible sub tables. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4536701549708138597==-- From jira-events at lists.jboss.org Wed Jan 25 16:48:48 2012 Content-Type: multipart/mixed; boundary="===============8830664003024869132==" MIME-Version: 1.0 From: Jesper Vrelits (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10925) ELResolver #{bean.property[value]} and graphValidator causes exception Date: Wed, 25 Jan 2012 16:48:48 -0500 Message-ID: <857955669.1980.1327528128684.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 744570596.28727.1302796653333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8830664003024869132== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10925?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jesper Vrelits closed RF-10925. ------------------------------- Fix Version/s: (was: 4.Future) Resolution: Out of Date = > ELResolver #{bean.property[value]} and graphValidator causes exception > ---------------------------------------------------------------------- > > Key: RF-10925 > URL: https://issues.jboss.org/browse/RF-10925 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators, regression > Affects Versions: 4.0.0.Final > Environment: Mojarra 2.0.4 + Tomcat 7 and Weblogic 10.3.4 > Reporter: Jesper Vrelits > > Not able to resolve property in bean when as #{bean.property[value]} when= wrapped in graphValidator. > Veryified on Tomcat 7 and Weblogic 10.3.4. > If graphValidator is removed it works. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8830664003024869132==-- From jira-events at lists.jboss.org Wed Jan 25 17:22:48 2012 Content-Type: multipart/mixed; boundary="===============3955916899007050259==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11879) Add examle of usage of a4j:actionListener into RF showcase Date: Wed, 25 Jan 2012 17:22:48 -0500 Message-ID: <2053365943.2035.1327530168383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 43091471.3804.1326385042424.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3955916899007050259== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11879?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11879: ---------------------------------- Assignee: Brian Leathem = > Add examle of usage of a4j:actionListener into RF showcase > ---------------------------------------------------------- > > Key: RF-11879 > URL: https://issues.jboss.org/browse/RF-11879 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Reporter: Marek Novotny > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.0.CR1 > > > a4j:actionListener is not presented in showcase example -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3955916899007050259==-- From jira-events at lists.jboss.org Wed Jan 25 19:29:49 2012 Content-Type: multipart/mixed; boundary="===============4300090205536913292==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11922) Nesting an a4j:actionListener in a composite component results in a java.io.NotSerializableException Date: Wed, 25 Jan 2012 19:29:49 -0500 Message-ID: <340783677.2125.1327537789610.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4300090205536913292== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11922: ---------------------------------- Summary: Nesting an a4j:actionListener in a composite componen= t results in a java.io.NotSerializableException Key: RF-11922 URL: https://issues.jboss.org/browse/RF-11922 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-a4j-core Affects Versions: 4.1.0.Final Reporter: Brian Leathem Fix For: 4.Future In the code samples below, an a4j:actionListener is nested in a composite c= omponent. This results in a java.io.NotSerializableException (stack trace = below). {code:title=3DactionComposite.xhtml} {code} {code:title=3DactionListener.xhtml} {code} {code:title=3DStacktrace} Caused by: java.io.NotSerializableException: org.richfaces.view.facelets.ht= ml.ActionListenerHandler at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1164) [= :1.6.0_26] at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [:1= .6.0_26] at java.util.ArrayList.writeObject(ArrayList.java:570) [:1.6.0_26] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_26] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) [:1.6.0_26] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) [:1.6.0_26] at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)= [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1= 518) [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1483= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [:1= .6.0_26] at java.util.ArrayList.writeObject(ArrayList.java:570) [:1.6.0_26] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_26] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) [:1.6.0_26] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) [:1.6.0_26] at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)= [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1346) [:1= .6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1154) [= :1.6.0_26] at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1346) [:1= .6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1154) [= :1.6.0_26] at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [:1= .6.0_26] at java.util.HashMap.writeObject(HashMap.java:1001) [:1.6.0_26] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_26] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) [:1.6.0_26] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) [:1.6.0_26] at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)= [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [:1= .6.0_26] at com.sun.faces.renderkit.ClientSideStateHelper.doWriteState(ClientSideSt= ateHelper.java:325) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.ClientSideStateHelper.writeState(ClientSideStat= eHelper.java:169) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.ResponseStateManagerImpl.getViewState(ResponseS= tateManagerImpl.java:135) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] ... 28 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 --===============4300090205536913292==-- From jira-events at lists.jboss.org Wed Jan 25 19:31:48 2012 Content-Type: multipart/mixed; boundary="===============7127788799688643914==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11922) Nesting an a4j:actionListener in a composite component results in a java.io.NotSerializableException Date: Wed, 25 Jan 2012 19:31:48 -0500 Message-ID: <600170514.2126.1327537908379.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 340783677.2125.1327537789610.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7127788799688643914== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11922?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662047#com= ment-12662047 ] = Brian Leathem commented on RF-11922: ------------------------------------ As an experiment, I added the Serializable interface to _org.richfaces.view= .facelets.html.ActionListenerHandler_, this resulted in the stacktrace: {code} Caused by: java.io.NotSerializableException: com.sun.faces.facelets.tag.Tag= AttributeImpl at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1164) [= :1.6.0_26] at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1= 518) [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1483= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [:1= .6.0_26] at java.util.ArrayList.writeObject(ArrayList.java:570) [:1.6.0_26] at sun.reflect.GeneratedMethodAccessor47.invoke(Unknown Source) [:1.6.0_26] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) [:1.6.0_26] at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)= [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1= 518) [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1483= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [:1= .6.0_26] at java.util.ArrayList.writeObject(ArrayList.java:570) [:1.6.0_26] at sun.reflect.GeneratedMethodAccessor47.invoke(Unknown Source) [:1.6.0_26] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) [:1.6.0_26] at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)= [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1346) [:1= .6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1154) [= :1.6.0_26] at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1346) [:1= .6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1154) [= :1.6.0_26] at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [:1= .6.0_26] at java.util.HashMap.writeObject(HashMap.java:1001) [:1.6.0_26] at sun.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) [:1.6.0_26] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) [:1.6.0_26] at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)= [:1.6.0_26] at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469= ) [:1.6.0_26] at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:= 1400) [:1.6.0_26] at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158) [= :1.6.0_26] at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [:1= .6.0_26] at com.sun.faces.renderkit.ClientSideStateHelper.doWriteState(ClientSideSt= ateHelper.java:325) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.ClientSideStateHelper.writeState(ClientSideStat= eHelper.java:169) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.ResponseStateManagerImpl.getViewState(ResponseS= tateManagerImpl.java:135) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] ... 28 more {code} = > Nesting an a4j:actionListener in a composite component results in a java.= io.NotSerializableException > -------------------------------------------------------------------------= --------------------------- > > Key: RF-11922 > URL: https://issues.jboss.org/browse/RF-11922 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.1.0.Final > Reporter: Brian Leathem > Fix For: 4.Future > > > In the code samples below, an a4j:actionListener is nested in a composite= component. This results in a java.io.NotSerializableException (stack trac= e below). > {code:title=3DactionComposite.xhtml} > > > > > > > > > > > > > > {code} > {code:title=3DactionListener.xhtml} > > > > > > > > > {code} > {code:title=3DStacktrace} > Caused by: java.io.NotSerializableException: org.richfaces.view.facelets.= html.ActionListenerHandler > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1164)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [= :1.6.0_26] > at java.util.ArrayList.writeObject(ArrayList.java:570) [:1.6.0_26] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 6] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_26] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_26] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] > at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:94= 5) [:1.6.0_26] > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 69) [:1.6.0_26] > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)= [:1.6.0_26] > at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java= :1518) [:1.6.0_26] > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 83) [:1.6.0_26] > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [= :1.6.0_26] > at java.util.ArrayList.writeObject(ArrayList.java:570) [:1.6.0_26] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 6] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_26] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_26] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] > at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:94= 5) [:1.6.0_26] > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 69) [:1.6.0_26] > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1346) [= :1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1154)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1346) [= :1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1154)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [= :1.6.0_26] > at java.util.HashMap.writeObject(HashMap.java:1001) [:1.6.0_26] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 6] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_26] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_26] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] > at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:94= 5) [:1.6.0_26] > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 69) [:1.6.0_26] > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [= :1.6.0_26] > at com.sun.faces.renderkit.ClientSideStateHelper.doWriteState(ClientSide= StateHelper.java:325) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.renderkit.ClientSideStateHelper.writeState(ClientSideSt= ateHelper.java:169) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.renderkit.ResponseStateManagerImpl.getViewState(Respons= eStateManagerImpl.java:135) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSH= OT] > ... 28 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 --===============7127788799688643914==-- From jira-events at lists.jboss.org Thu Jan 26 06:12:49 2012 Content-Type: multipart/mixed; boundary="===============3096000641759755436==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11088) rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value Date: Thu, 26 Jan 2012 06:12:49 -0500 Message-ID: <1565251019.2770.1327576369470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2012979835.24177.1309246043698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3096000641759755436== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11088?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662120#com= ment-12662120 ] = Justin Wyer commented on RF-11088: ---------------------------------- An update to this issue, my changes no longer merged with upstream due to a= large refactoring of the java script by Brian in august https://github.com= /richfaces/components/commit/e28ee48a22b0aced146cb547f50f32d357f6912b = > rich:select modify manualInput behavior to avoid single item scoped item = list popup when editing value > -------------------------------------------------------------------------= ----------------------------- > > Key: RF-11088 > URL: https://issues.jboss.org/browse/RF-11088 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1 > Reporter: Justin Wyer > Assignee: Justin Wyer > Labels: rich:select > Fix For: 4.3-Tracking > > > rich:select has usability issues when using enableManualInput=3D"true" th= is will address the issues discussed in the forum post. My current idea is = to attempt to display the full item list and auto highlight the input's val= ue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3096000641759755436==-- From jira-events at lists.jboss.org Thu Jan 26 07:45:48 2012 Content-Type: multipart/mixed; boundary="===============0787609519469963706==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11915) MenuGroup with all items disabled or no items causes JS error Date: Thu, 26 Jan 2012 07:45:48 -0500 Message-ID: <980613746.2977.1327581948647.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2107920490.18850.1327404678300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0787609519469963706== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11915?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11915: ---------------------------------- Assignee: Brian Leathem (was: Pavol Pitonak) Reproduced in following environment: {quote} RichFaces 4.2.0-SNAPSHOT Metamer 4.2.0-SNAPSHOT Mojarra 2.1.5 JBoss AS 7.1.0.CR1 OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux Firefox 9.0.1 @ Linux x86_64 {quote} = > MenuGroup with all items disabled or no items causes JS error > ------------------------------------------------------------- > > Key: RF-11915 > URL: https://issues.jboss.org/browse/RF-11915 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Environment: Tomcat 6.0.26, MyFaces 2.1.13, RichFaces > Reporter: J=C3=A1n Hala=C5=A1a > Assignee: Brian Leathem > > Submenu (r:menuGroup) containing only disabled items or no items, causes = a JavaScript error when it is supposed to get hidden (moving cursor to the = next item in the parent menu). > In Firefox 9: > {quote} > parentMenu is undefined > menu-base.js, line 126 > {quote} > In MSIE 7: > {quote} > 'nodeType' is null or not an object > richfaces.js, line 43 > {quote} > It's the same error only reported from the different level of the call st= ack. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0787609519469963706==-- From jira-events at lists.jboss.org Thu Jan 26 07:45:48 2012 Content-Type: multipart/mixed; boundary="===============8679452410874110643==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11915) MenuGroup with all items disabled or no items causes JS error Date: Thu, 26 Jan 2012 07:45:48 -0500 Message-ID: <265923527.2980.1327581948783.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2107920490.18850.1327404678300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8679452410874110643== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11915?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662141#com= ment-12662141 ] = Pavol Pitonak edited comment on RF-11915 at 1/26/12 7:45 AM: ------------------------------------------------------------- Reproduced in following environment: {quote} RichFaces 4.2.0-SNAPSHOT Metamer 4.2.0-SNAPSHOT Mojarra 2.1.5 JBoss AS 7.1.0.CR1 OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux Firefox 9.0.1 @ Linux x86_64, Chrome 16.0.912.75 @ Linux x86_64 {quote} = was (Author: ppitonak): Reproduced in following environment: {quote} RichFaces 4.2.0-SNAPSHOT Metamer 4.2.0-SNAPSHOT Mojarra 2.1.5 JBoss AS 7.1.0.CR1 OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux Firefox 9.0.1 @ Linux x86_64 {quote} = > MenuGroup with all items disabled or no items causes JS error > ------------------------------------------------------------- > > Key: RF-11915 > URL: https://issues.jboss.org/browse/RF-11915 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Environment: Tomcat 6.0.26, MyFaces 2.1.13, RichFaces > Reporter: J=C3=A1n Hala=C5=A1a > Assignee: Brian Leathem > > Submenu (r:menuGroup) containing only disabled items or no items, causes = a JavaScript error when it is supposed to get hidden (moving cursor to the = next item in the parent menu). > In Firefox 9: > {quote} > parentMenu is undefined > menu-base.js, line 126 > {quote} > In MSIE 7: > {quote} > 'nodeType' is null or not an object > richfaces.js, line 43 > {quote} > It's the same error only reported from the different level of the call st= ack. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8679452410874110643==-- From jira-events at lists.jboss.org Thu Jan 26 09:45:01 2012 Content-Type: multipart/mixed; boundary="===============0563414715435972442==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Thu, 26 Jan 2012 09:44:48 -0500 Message-ID: <117465284.3295.1327589088607.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0563414715435972442== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662182#com= ment-12662182 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11909: --------------------------------- Following **configuration names was renamed** (with backward compatible opt= ion to use old param names): {{org.richfaces.*resourceMapping*.enabled}} -> {{org.richfaces.*resourceLoa= ding.optimization*.enabled}} {{org.richfaces.resourceMapping.compressedStages}} -> {{org.richfaces.resou= rceLoading.optimization.compression.stages}} {{org.richfaces.resourceMapping.packedStages}} -> {{org.richfaces.resourceL= oading.optimization.packaging.stages}} Following *configuration params stay same*: {{org.richfaces.resourceMapping.mappingFile}} {{org.richfaces.resourceMapping.location}} However it is not necessary to set {{org.richfaces.resourceMapping.enabled}= } in order to define custom mappings files. For defining *custom mapping files*, user needs just to either: * create {{META-INF/richfaces/static-resource-mappings.properties}} mapping= file on classpath * create custom file on classpath and configure it's name to {{org.richface= s.resourceMapping.mappingFile}} Configurations from mapping files will be applied in *following order* (the= last one will take precedence), it gives user chance to redefine mappings: * resource loading optimization ({{org.richfaces.resourceMapping.enabled}}) * {{META-INF/richfaces/static-resource-mappings.properties}} * custom files in {{org.richfaces.resourceMapping.mappingFile}} = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces. > Use case: > * user wants to use resource mapping for several purposes > ** using RichFaces pre-generated resources in {{richfaces-components-ui.j= ar/META-INF/resources/org.richfaces.staticResources//...}} > ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} usi= ng e.g. {{my.war/resources/patched-jsf.js}} > ---- > With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.lo= cation}} is by default referring to root of packed resources: > {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.re= sources/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imp= lementationVersion}/%Features%/#{resourceLocation} = > {code} > and mapping file looks like: > {code} > jquery.js=3Djquery.js > {code} > When you want to reuse RichFaces mappings, you [need to copy mapping file= from {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest= _4_X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html= #d0e1692] and extend it by custom properties. > and additionally you need to place custom resources to directory called s= pecifically for RF, like: > {code} > my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompresse= d/patched-jsf.js > {code} > Other options: > * change all mappings in {{custom-mappings.properties}} at own > * copy all resources from {{richfaces-component-ui.jar}} to own location > ---- > For simplification, I suggest default resource mapping location root be > {code} > #{facesContext.externalContext.requestContextPath}/org.richfaces.resource= s/javax.faces.resource/#{resourceLocation} > {code} > so it would refer to JSF resources root ({{my.war/resources}} or {{some.j= ar/META-INF/resources}}) by default. > Then, we would force {{richfaces-components-ui.jar}} to define mappings w= hich points from JSF resources root, e.g.: > {code} > jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jqu= ery.js > {code} > ---- > Additionally, Brian suggested support for multiple {{mapping.properties}}= files, so their content will be merged. > It means user won't be forced to copy&paste RichFaces mapping configurati= on from {{richfaces-components-ui.jar}}. > ---- > Finally, the only thing user would need to define is: > {code:XML|title=3Dweb.xml} > > org.richfaces.resourceMapping.mappingFile > META-INF/custom-mapping.properties > > {code} > {code:title=3DMETA-INF/custom-mapping.properties} > javax.faces:jsf.js=3Dpatched-jsf.js > {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 = --===============0563414715435972442==-- From jira-events at lists.jboss.org Thu Jan 26 09:45:01 2012 Content-Type: multipart/mixed; boundary="===============1448381242771018702==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Thu, 26 Jan 2012 09:44:48 -0500 Message-ID: <108313886.3300.1327589088786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1448381242771018702== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662182#com= ment-12662182 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11909 at 1/26/12 9:44 AM: ---------------------------------------------------------- Following **configuration names was renamed** (with backward compatible opt= ion to use old param names): {{org.richfaces.*resourceMapping*.enabled}} -> {{org.richfaces.*resourceLoa= ding.optimization*.enabled}} {{org.richfaces.resourceMapping.compressedStages}} -> {{org.richfaces.resou= rceLoading.optimization.compression.stages}} {{org.richfaces.resourceMapping.packedStages}} -> {{org.richfaces.resourceL= oading.optimization.packaging.stages}} Following *configuration params stay same*: {{org.richfaces.resourceMapping.mappingFile}} {{org.richfaces.resourceMapping.location}} However it is not necessary to set {{org.richfaces.resourceMapping.enabled}= } in order to define custom mappings files. For defining *custom mapping files*, user needs just to either: * create {{META-INF/richfaces/static-resource-mappings.properties}} mapping= file on classpath * create custom file on classpath and configure it's name in {{org.richface= s.resourceMapping.mappingFile}} (comma separated list of files) Configurations from mapping files will be applied in *following order* (the= last one will take precedence), it gives user chance to redefine mappings: * resource loading optimization ({{org.richfaces.resourceMapping.enabled}}) * {{META-INF/richfaces/static-resource-mappings.properties}} * custom files in {{org.richfaces.resourceMapping.mappingFile}} = was (Author: lfryc): Following **configuration names was renamed** (with backward compatible= option to use old param names): {{org.richfaces.*resourceMapping*.enabled}} -> {{org.richfaces.*resourceLoa= ding.optimization*.enabled}} {{org.richfaces.resourceMapping.compressedStages}} -> {{org.richfaces.resou= rceLoading.optimization.compression.stages}} {{org.richfaces.resourceMapping.packedStages}} -> {{org.richfaces.resourceL= oading.optimization.packaging.stages}} Following *configuration params stay same*: {{org.richfaces.resourceMapping.mappingFile}} {{org.richfaces.resourceMapping.location}} However it is not necessary to set {{org.richfaces.resourceMapping.enabled}= } in order to define custom mappings files. For defining *custom mapping files*, user needs just to either: * create {{META-INF/richfaces/static-resource-mappings.properties}} mapping= file on classpath * create custom file on classpath and configure it's name to {{org.richface= s.resourceMapping.mappingFile}} Configurations from mapping files will be applied in *following order* (the= last one will take precedence), it gives user chance to redefine mappings: * resource loading optimization ({{org.richfaces.resourceMapping.enabled}}) * {{META-INF/richfaces/static-resource-mappings.properties}} * custom files in {{org.richfaces.resourceMapping.mappingFile}} = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces. > Use case: > * user wants to use resource mapping for several purposes > ** using RichFaces pre-generated resources in {{richfaces-components-ui.j= ar/META-INF/resources/org.richfaces.staticResources//...}} > ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} usi= ng e.g. {{my.war/resources/patched-jsf.js}} > ---- > With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.lo= cation}} is by default referring to root of packed resources: > {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.re= sources/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imp= lementationVersion}/%Features%/#{resourceLocation} = > {code} > and mapping file looks like: > {code} > jquery.js=3Djquery.js > {code} > When you want to reuse RichFaces mappings, you [need to copy mapping file= from {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest= _4_X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html= #d0e1692] and extend it by custom properties. > and additionally you need to place custom resources to directory called s= pecifically for RF, like: > {code} > my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompresse= d/patched-jsf.js > {code} > Other options: > * change all mappings in {{custom-mappings.properties}} at own > * copy all resources from {{richfaces-component-ui.jar}} to own location > ---- > For simplification, I suggest default resource mapping location root be > {code} > #{facesContext.externalContext.requestContextPath}/org.richfaces.resource= s/javax.faces.resource/#{resourceLocation} > {code} > so it would refer to JSF resources root ({{my.war/resources}} or {{some.j= ar/META-INF/resources}}) by default. > Then, we would force {{richfaces-components-ui.jar}} to define mappings w= hich points from JSF resources root, e.g.: > {code} > jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jqu= ery.js > {code} > ---- > Additionally, Brian suggested support for multiple {{mapping.properties}}= files, so their content will be merged. > It means user won't be forced to copy&paste RichFaces mapping configurati= on from {{richfaces-components-ui.jar}}. > ---- > Finally, the only thing user would need to define is: > {code:XML|title=3Dweb.xml} > > org.richfaces.resourceMapping.mappingFile > META-INF/custom-mapping.properties > > {code} > {code:title=3DMETA-INF/custom-mapping.properties} > javax.faces:jsf.js=3Dpatched-jsf.js > {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 = --===============1448381242771018702==-- From jira-events at lists.jboss.org Thu Jan 26 10:59:49 2012 Content-Type: multipart/mixed; boundary="===============0696997405943522671==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11923) rich:contextMenu - option to render context menu under mouse focus Date: Thu, 26 Jan 2012 10:59:49 -0500 Message-ID: <1041095407.3568.1327593589409.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0696997405943522671== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-11923: -------------------------------- Summary: rich:contextMenu - option to render context menu unde= r mouse focus Key: RF-11923 URL: https://issues.jboss.org/browse/RF-11923 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: base functionality , component, component-menu, showc= ase Affects Versions: 4.1.0.Final Reporter: Juraj Huska Priority: Optional It would be nice IMHO to have an option to render context menu right under = the mouse focus, like it is for example done in GNOME environment. So when = user triggers context menu, then he will not need to move his mouse to sele= ct first option, but it will be enough just to click to have selected first= option, since that option will be rendered under mouse focus. Nice use case for this is for example demo for rich:context menu from showc= ase, where only one menu item is in context menu, and takes some time to mo= ve the mouse on that option. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0696997405943522671==-- From jira-events at lists.jboss.org Thu Jan 26 11:15:49 2012 Content-Type: multipart/mixed; boundary="===============7351346499034417962==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11924) showcase - rich:context - tree ContextMenu - header of popup should be bigger Date: Thu, 26 Jan 2012 11:15:48 -0500 Message-ID: <259195289.3587.1327594548872.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7351346499034417962== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-11924: -------------------------------- Summary: showcase - rich:context - tree ContextMenu - header o= f popup should be bigger Key: RF-11924 URL: https://issues.jboss.org/browse/RF-11924 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu, component-output, component-panels-la= yout-themes, showcase, skinning Affects Versions: 4.1.0.Final Environment: showcase app - 4.2.0-SNAPSHOT all browsers Reporter: Juraj Huska Priority: Trivial Attachments: contextMenuPopup.png The header of popup invoked from contextMenu in demos for rich:contextMenu,= sample tree contextMenu is in some cases too small, and the cross for hidi= ng the popup overlap with the header label. It is when the body of the popup is small in width. For example it is so wh= en user select node USA, then the header of popup adapts the size of body, = and the problem is there. Please see the screenshot for further reference. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7351346499034417962==-- From jira-events at lists.jboss.org Thu Jan 26 11:15:49 2012 Content-Type: multipart/mixed; boundary="===============6505786141771547545==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11924) showcase - rich:context - tree ContextMenu - header of popup should be bigger Date: Thu, 26 Jan 2012 11:15:49 -0500 Message-ID: <286321125.3590.1327594549031.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 259195289.3587.1327594548872.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6505786141771547545== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11924?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11924: ----------------------------- Attachment: contextMenuPopup.png = > showcase - rich:context - tree ContextMenu - header of popup should be bi= gger > -------------------------------------------------------------------------= ---- > > Key: RF-11924 > URL: https://issues.jboss.org/browse/RF-11924 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-output, component-panels-l= ayout-themes, showcase, skinning > Affects Versions: 4.1.0.Final > Environment: showcase app - 4.2.0-SNAPSHOT > all browsers > Reporter: Juraj Huska > Priority: Trivial > Attachments: contextMenuPopup.png > > > The header of popup invoked from contextMenu in demos for rich:contextMen= u, sample tree contextMenu is in some cases too small, and the cross for hi= ding the popup overlap with the header label. > It is when the body of the popup is small in width. For example it is so = when user select node USA, then the header of popup adapts the size of body= , and the problem is there. Please see the screenshot for further reference. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6505786141771547545==-- From jira-events at lists.jboss.org Thu Jan 26 11:17:48 2012 Content-Type: multipart/mixed; boundary="===============4413236137401069778==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11924) showcase - rich:context - tree ContextMenu - header of popup should be bigger Date: Thu, 26 Jan 2012 11:17:48 -0500 Message-ID: <1060483094.3595.1327594668788.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 259195289.3587.1327594548872.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4413236137401069778== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11924?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11924: ----------------------------- Description: = *The header of the popup* invoked from contextMenu *in demos for rich:conte= xtMenu*, sample tree contextMenu *is* in some cases *too small*, and then t= he cross for hiding the popup overlap with the header label. It is when the body of the popup is small in width. For example it is so wh= en user select node USA, then the *header of popup adapts the size of body*= , and the problem is there. Please see the *screenshot* for further referen= ce. So the header should have set fixed width. was: *The header of the popup* invoked from contextMenu *in demos for rich:conte= xtMenu*, sample tree contextMenu *is* in some cases *too small*, and then t= he cross for hiding the popup overlap with the header label. It is when the body of the popup is small in width. For example it is so wh= en user select node USA, then the *header of popup adapts the size of body*= , and the problem is there. Please see the screenshot for further reference. = > showcase - rich:context - tree ContextMenu - header of popup should be bi= gger > -------------------------------------------------------------------------= ---- > > Key: RF-11924 > URL: https://issues.jboss.org/browse/RF-11924 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-output, component-panels-l= ayout-themes, showcase, skinning > Affects Versions: 4.1.0.Final > Environment: showcase app - 4.2.0-SNAPSHOT > all browsers > Reporter: Juraj Huska > Priority: Trivial > Attachments: contextMenuPopup.png > > > *The header of the popup* invoked from contextMenu *in demos for rich:con= textMenu*, sample tree contextMenu *is* in some cases *too small*, and then= the cross for hiding the popup overlap with the header label. > It is when the body of the popup is small in width. For example it is so = when user select node USA, then the *header of popup adapts the size of bod= y*, and the problem is there. Please see the *screenshot* for further refer= ence. > So the header should have set fixed width. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4413236137401069778==-- From jira-events at lists.jboss.org Thu Jan 26 11:17:48 2012 Content-Type: multipart/mixed; boundary="===============4275289768304894570==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11924) showcase - rich:context - tree ContextMenu - header of popup should be bigger Date: Thu, 26 Jan 2012 11:17:48 -0500 Message-ID: <13500651.3593.1327594668467.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 259195289.3587.1327594548872.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4275289768304894570== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11924?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11924: ----------------------------- Description: = *The header of the popup* invoked from contextMenu *in demos for rich:conte= xtMenu*, sample tree contextMenu *is* in some cases *too small*, and then t= he cross for hiding the popup overlap with the header label. It is when the body of the popup is small in width. For example it is so wh= en user select node USA, then the *header of popup adapts the size of body*= , and the problem is there. Please see the screenshot for further reference. was: The header of popup invoked from contextMenu in demos for rich:contextMenu,= sample tree contextMenu is in some cases too small, and the cross for hidi= ng the popup overlap with the header label. It is when the body of the popup is small in width. For example it is so wh= en user select node USA, then the header of popup adapts the size of body, = and the problem is there. Please see the screenshot for further reference. = > showcase - rich:context - tree ContextMenu - header of popup should be bi= gger > -------------------------------------------------------------------------= ---- > > Key: RF-11924 > URL: https://issues.jboss.org/browse/RF-11924 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, component-output, component-panels-l= ayout-themes, showcase, skinning > Affects Versions: 4.1.0.Final > Environment: showcase app - 4.2.0-SNAPSHOT > all browsers > Reporter: Juraj Huska > Priority: Trivial > Attachments: contextMenuPopup.png > > > *The header of the popup* invoked from contextMenu *in demos for rich:con= textMenu*, sample tree contextMenu *is* in some cases *too small*, and then= the cross for hiding the popup overlap with the header label. > It is when the body of the popup is small in width. For example it is so = when user select node USA, then the *header of popup adapts the size of bod= y*, and the problem is there. Please see the screenshot for further referen= ce. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4275289768304894570==-- From jira-events at lists.jboss.org Thu Jan 26 12:50:49 2012 Content-Type: multipart/mixed; boundary="===============7666788073517060973==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11922) Nesting an a4j:actionListener in a composite component results in a java.io.NotSerializableException Date: Thu, 26 Jan 2012 12:50:48 -0500 Message-ID: <2035205747.3841.1327600248396.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 340783677.2125.1327537789610.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7666788073517060973== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11922?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11922: ------------------------------- Environment: JBoss AS 7.0.2, mojarra 2.1 = > Nesting an a4j:actionListener in a composite component results in a java.= io.NotSerializableException > -------------------------------------------------------------------------= --------------------------- > > Key: RF-11922 > URL: https://issues.jboss.org/browse/RF-11922 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.1.0.Final > Environment: JBoss AS 7.0.2, mojarra 2.1 > Reporter: Brian Leathem > Fix For: 4.Future > > > In the code samples below, an a4j:actionListener is nested in a composite= component. This results in a java.io.NotSerializableException (stack trac= e below). > {code:title=3DactionComposite.xhtml} > > > > > > > > > > > > > > {code} > {code:title=3DactionListener.xhtml} > > > > > > > > > {code} > {code:title=3DStacktrace} > Caused by: java.io.NotSerializableException: org.richfaces.view.facelets.= html.ActionListenerHandler > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1164)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [= :1.6.0_26] > at java.util.ArrayList.writeObject(ArrayList.java:570) [:1.6.0_26] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 6] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_26] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_26] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] > at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:94= 5) [:1.6.0_26] > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 69) [:1.6.0_26] > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)= [:1.6.0_26] > at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java= :1518) [:1.6.0_26] > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 83) [:1.6.0_26] > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [= :1.6.0_26] > at java.util.ArrayList.writeObject(ArrayList.java:570) [:1.6.0_26] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 6] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_26] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_26] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] > at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:94= 5) [:1.6.0_26] > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 69) [:1.6.0_26] > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1346) [= :1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1154)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1346) [= :1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1154)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [= :1.6.0_26] > at java.util.HashMap.writeObject(HashMap.java:1001) [:1.6.0_26] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_2= 6] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:39) [:1.6.0_26] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:25) [:1.6.0_26] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_26] > at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:94= 5) [:1.6.0_26] > at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:14= 69) [:1.6.0_26] > at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav= a:1400) [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)= [:1.6.0_26] > at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330) [= :1.6.0_26] > at com.sun.faces.renderkit.ClientSideStateHelper.doWriteState(ClientSide= StateHelper.java:325) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.renderkit.ClientSideStateHelper.writeState(ClientSideSt= ateHelper.java:169) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.renderkit.ResponseStateManagerImpl.getViewState(Respons= eStateManagerImpl.java:135) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSH= OT] > ... 28 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 --===============7666788073517060973==-- From jira-events at lists.jboss.org Thu Jan 26 12:59:48 2012 Content-Type: multipart/mixed; boundary="===============8870592865824966813==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11883) Support dynamic attachment of the contextMenu Date: Thu, 26 Jan 2012 12:59:48 -0500 Message-ID: <1432233508.3858.1327600788465.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 80244479.55517.1326480261257.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8870592865824966813== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11883?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11883. -------------------------------- Fix Version/s: 4.2.0.CR1 (was: 4.2-Tracking) Resolution: Done = > Support dynamic attachment of the contextMenu > --------------------------------------------- > > Key: RF-11883 > URL: https://issues.jboss.org/browse/RF-11883 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > Support creating a single instance of the contextMenu that can be attache= d to any component without creating a new contextMenu 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 --===============8870592865824966813==-- From jira-events at lists.jboss.org Thu Jan 26 13:09:48 2012 Content-Type: multipart/mixed; boundary="===============6277319927112684862==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Thu, 26 Jan 2012 13:09:48 -0500 Message-ID: <1645343929.3868.1327601388664.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6277319927112684862== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662182#com= ment-12662182 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11909 at 1/26/12 1:09 PM: ---------------------------------------------------------- Following *configuration names was renamed* (with backward compatible optio= n to use old param names): {{org.richfaces.*resourceMapping*.enabled}} -> {{org.richfaces.*resourceOpt= imization*.enabled}} {{org.richfaces.resourceMapping.compressedStages}} -> {{org.richfaces.resou= rceOptimization.compressionStages}} {{org.richfaces.resourceMapping.packedStages}} -> {{org.richfaces.resourceO= ptimization.packagingStages}} Following *configuration params stay same*: {{org.richfaces.resourceMapping.mappingFile}} {{org.richfaces.resourceMapping.location}} However it is not necessary to set {{org.richfaces.resourceMapping.enabled}= } in order to define custom mappings files. For defining *custom mapping files*, user needs just to either: * create {{META-INF/richfaces/static-resource-mappings.properties}} mapping= file on classpath * create custom file on classpath and configure it's name in {{org.richface= s.resourceMapping.mappingFile}} (comma separated list of files) Configurations from mapping files will be applied in *following order* (the= last one will take precedence), it gives user chance to redefine mappings: * resource loading optimization ({{org.richfaces.resourceMapping.enabled}}) * {{META-INF/richfaces/static-resource-mappings.properties}} * custom files in {{org.richfaces.resourceMapping.mappingFile}} = was (Author: lfryc): Following **configuration names was renamed** (with backward compatible= option to use old param names): {{org.richfaces.*resourceMapping*.enabled}} -> {{org.richfaces.*resourceLoa= ding.optimization*.enabled}} {{org.richfaces.resourceMapping.compressedStages}} -> {{org.richfaces.resou= rceLoading.optimization.compression.stages}} {{org.richfaces.resourceMapping.packedStages}} -> {{org.richfaces.resourceL= oading.optimization.packaging.stages}} Following *configuration params stay same*: {{org.richfaces.resourceMapping.mappingFile}} {{org.richfaces.resourceMapping.location}} However it is not necessary to set {{org.richfaces.resourceMapping.enabled}= } in order to define custom mappings files. For defining *custom mapping files*, user needs just to either: * create {{META-INF/richfaces/static-resource-mappings.properties}} mapping= file on classpath * create custom file on classpath and configure it's name in {{org.richface= s.resourceMapping.mappingFile}} (comma separated list of files) Configurations from mapping files will be applied in *following order* (the= last one will take precedence), it gives user chance to redefine mappings: * resource loading optimization ({{org.richfaces.resourceMapping.enabled}}) * {{META-INF/richfaces/static-resource-mappings.properties}} * custom files in {{org.richfaces.resourceMapping.mappingFile}} = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces. > Use case: > * user wants to use resource mapping for several purposes > ** using RichFaces pre-generated resources in {{richfaces-components-ui.j= ar/META-INF/resources/org.richfaces.staticResources//...}} > ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} usi= ng e.g. {{my.war/resources/patched-jsf.js}} > ---- > With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.lo= cation}} is by default referring to root of packed resources: > {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.re= sources/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imp= lementationVersion}/%Features%/#{resourceLocation} = > {code} > and mapping file looks like: > {code} > jquery.js=3Djquery.js > {code} > When you want to reuse RichFaces mappings, you [need to copy mapping file= from {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest= _4_X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html= #d0e1692] and extend it by custom properties. > and additionally you need to place custom resources to directory called s= pecifically for RF, like: > {code} > my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompresse= d/patched-jsf.js > {code} > Other options: > * change all mappings in {{custom-mappings.properties}} at own > * copy all resources from {{richfaces-component-ui.jar}} to own location > ---- > For simplification, I suggest default resource mapping location root be > {code} > #{facesContext.externalContext.requestContextPath}/org.richfaces.resource= s/javax.faces.resource/#{resourceLocation} > {code} > so it would refer to JSF resources root ({{my.war/resources}} or {{some.j= ar/META-INF/resources}}) by default. > Then, we would force {{richfaces-components-ui.jar}} to define mappings w= hich points from JSF resources root, e.g.: > {code} > jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jqu= ery.js > {code} > ---- > Additionally, Brian suggested support for multiple {{mapping.properties}}= files, so their content will be merged. > It means user won't be forced to copy&paste RichFaces mapping configurati= on from {{richfaces-components-ui.jar}}. > ---- > Finally, the only thing user would need to define is: > {code:XML|title=3Dweb.xml} > > org.richfaces.resourceMapping.mappingFile > META-INF/custom-mapping.properties > > {code} > {code:title=3DMETA-INF/custom-mapping.properties} > javax.faces:jsf.js=3Dpatched-jsf.js > {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 = --===============6277319927112684862==-- From jira-events at lists.jboss.org Thu Jan 26 13:09:49 2012 Content-Type: multipart/mixed; boundary="===============5471070906244098365==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Thu, 26 Jan 2012 13:09:49 -0500 Message-ID: <549414178.3873.1327601389886.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5471070906244098365== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11909. ----------------------------- Resolution: Done = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces. > Use case: > * user wants to use resource mapping for several purposes > ** using RichFaces pre-generated resources in {{richfaces-components-ui.j= ar/META-INF/resources/org.richfaces.staticResources//...}} > ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} usi= ng e.g. {{my.war/resources/patched-jsf.js}} > ---- > With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.lo= cation}} is by default referring to root of packed resources: > {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.re= sources/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imp= lementationVersion}/%Features%/#{resourceLocation} = > {code} > and mapping file looks like: > {code} > jquery.js=3Djquery.js > {code} > When you want to reuse RichFaces mappings, you [need to copy mapping file= from {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest= _4_X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html= #d0e1692] and extend it by custom properties. > and additionally you need to place custom resources to directory called s= pecifically for RF, like: > {code} > my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompresse= d/patched-jsf.js > {code} > Other options: > * change all mappings in {{custom-mappings.properties}} at own > * copy all resources from {{richfaces-component-ui.jar}} to own location > ---- > For simplification, I suggest default resource mapping location root be > {code} > #{facesContext.externalContext.requestContextPath}/org.richfaces.resource= s/javax.faces.resource/#{resourceLocation} > {code} > so it would refer to JSF resources root ({{my.war/resources}} or {{some.j= ar/META-INF/resources}}) by default. > Then, we would force {{richfaces-components-ui.jar}} to define mappings w= hich points from JSF resources root, e.g.: > {code} > jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jqu= ery.js > {code} > ---- > Additionally, Brian suggested support for multiple {{mapping.properties}}= files, so their content will be merged. > It means user won't be forced to copy&paste RichFaces mapping configurati= on from {{richfaces-components-ui.jar}}. > ---- > Finally, the only thing user would need to define is: > {code:XML|title=3Dweb.xml} > > org.richfaces.resourceMapping.mappingFile > META-INF/custom-mapping.properties > > {code} > {code:title=3DMETA-INF/custom-mapping.properties} > javax.faces:jsf.js=3Dpatched-jsf.js > {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 = --===============5471070906244098365==-- From jira-events at lists.jboss.org Thu Jan 26 15:09:48 2012 Content-Type: multipart/mixed; boundary="===============3417174234563697556==" 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-11890) ResourceServlet does not set HTTP headers for caching Date: Thu, 26 Jan 2012 15:09:48 -0500 Message-ID: <384273869.4169.1327608588548.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 896407184.2481.1326733518446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3417174234563697556== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11890?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662285#com= ment-12662285 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11890: --------------------------------- Even though headers are not set for resources server by ResourceServlet, caching works on browser side out of the box, verified on RichFaces Showcase hosting http://showcase.richfaces.org/ = > ResourceServlet does not set HTTP headers for caching > ----------------------------------------------------- > > Key: RF-11890 > URL: https://issues.jboss.org/browse/RF-11890 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > {quote} > All RichFaces resources served by Faces Servlet have headers set appropri= ately for caching. > (You can check it by removing your Filter and turning resourceMapping=3Df= alse). > = > I assume you have problems with ResourceServlet where resources does not = go through RichFaces ResourceHandler, so headers are set as for any other J= SF resource - which means (AFAIK) no caching at all. > {quote} > This assumption needs to be verified before implementing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3417174234563697556==-- From jira-events at lists.jboss.org Thu Jan 26 15:09:48 2012 Content-Type: multipart/mixed; boundary="===============2748758446343220760==" 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-11890) ResourceServlet does not set HTTP headers for caching Date: Thu, 26 Jan 2012 15:09:48 -0500 Message-ID: <1794069512.4170.1327608588582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 896407184.2481.1326733518446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2748758446343220760== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11890?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11890: ------------------------------- Assignee: (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > ResourceServlet does not set HTTP headers for caching > ----------------------------------------------------- > > Key: RF-11890 > URL: https://issues.jboss.org/browse/RF-11890 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > {quote} > All RichFaces resources served by Faces Servlet have headers set appropri= ately for caching. > (You can check it by removing your Filter and turning resourceMapping=3Df= alse). > = > I assume you have problems with ResourceServlet where resources does not = go through RichFaces ResourceHandler, so headers are set as for any other J= SF resource - which means (AFAIK) no caching at all. > {quote} > This assumption needs to be verified before implementing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2748758446343220760==-- From jira-events at lists.jboss.org Thu Jan 26 15:09:49 2012 Content-Type: multipart/mixed; boundary="===============7757324707428753453==" 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-11890) ResourceServlet does not set HTTP headers for caching Date: Thu, 26 Jan 2012 15:09:48 -0500 Message-ID: <1541710495.4173.1327608588693.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 896407184.2481.1326733518446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7757324707428753453== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11890?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11890: ---------------------------- Comment: was deleted (was: Check also that regular RichFaces resources have headers setup proper= ly when resource mapping is off.) = > ResourceServlet does not set HTTP headers for caching > ----------------------------------------------------- > > Key: RF-11890 > URL: https://issues.jboss.org/browse/RF-11890 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > {quote} > All RichFaces resources served by Faces Servlet have headers set appropri= ately for caching. > (You can check it by removing your Filter and turning resourceMapping=3Df= alse). > = > I assume you have problems with ResourceServlet where resources does not = go through RichFaces ResourceHandler, so headers are set as for any other J= SF resource - which means (AFAIK) no caching at all. > {quote} > This assumption needs to be verified before implementing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7757324707428753453==-- From jira-events at lists.jboss.org Thu Jan 26 16:56:48 2012 Content-Type: multipart/mixed; boundary="===============8547455879437375991==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Thu, 26 Jan 2012 16:56:48 -0500 Message-ID: <1251116912.4337.1327615008389.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8547455879437375991== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11875: ------------------------------- Fix Version/s: 4.3-Tracking Assignee: (was: Brian Leathem) = > rich:extendedDataTable in ajax loading mode, crashes when dataset length = changes between requests > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11875 > URL: https://issues.jboss.org/browse/RF-11875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2.0, Tomcat 6.0.29 / JBoss AS 7.0.2.Final > Reporter: Dmitry Volkov > Fix For: 4.3-Tracking > > Attachments: richfaces-showcase-jbas7.war > > > rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes w= hen dataset length changes between requests. > It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8547455879437375991==-- From jira-events at lists.jboss.org Thu Jan 26 18:47:48 2012 Content-Type: multipart/mixed; boundary="===============1669109811341229657==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11879) Add examle of usage of a4j:actionListener into RF showcase Date: Thu, 26 Jan 2012 18:47:48 -0500 Message-ID: <1774317855.4448.1327621668445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 43091471.3804.1326385042424.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1669109811341229657== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11879?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11879. -------------------------------- Resolution: Done Added an actionListener example to the showcase = > Add examle of usage of a4j:actionListener into RF showcase > ---------------------------------------------------------- > > Key: RF-11879 > URL: https://issues.jboss.org/browse/RF-11879 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Reporter: Marek Novotny > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.0.CR1 > > > a4j:actionListener is not presented in showcase example -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1669109811341229657==-- From jira-events at lists.jboss.org Thu Jan 26 19:12:48 2012 Content-Type: multipart/mixed; boundary="===============1199980574546497314==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11588) HeaderClass is ignored on ExtendedDataTable column Date: Thu, 26 Jan 2012 19:12:48 -0500 Message-ID: <965077799.4475.1327623168591.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1427004328.27237.1319584545776.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1199980574546497314== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11588?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11588. -------------------------------- Resolution: Done Funny how somethings are more clear when you look at them the next day. = I've resolved this issue by moving the headerClass cssClass down one level = in the rendered html, allowing it to fully override the pre-packaged classe= s. = > HeaderClass is ignored on ExtendedDataTable column > -------------------------------------------------- > > Key: RF-11588 > URL: https://issues.jboss.org/browse/RF-11588 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Reporter: Cody Lerum > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.0.CR1 > > > When a header class is defined on a rich:column inside an rich:extendedDa= taTable it is ignored > Assume > {code} > > Foo > > > {code} > What is rendered is > {code} > > {code} > My style left is applied but the header is one level lower and has rf-edt= -hdr-c-cnt style which will always make it center -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1199980574546497314==-- From jira-events at lists.jboss.org Thu Jan 26 19:19:48 2012 Content-Type: multipart/mixed; boundary="===============0191773929665792760==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11919) showcase - names of some samples do not follow camel case naming convention Date: Thu, 26 Jan 2012 19:19:48 -0500 Message-ID: <1751951958.4482.1327623588404.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1840945137.21442.1327486818320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0191773929665792760== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11919?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11919. -------------------------------- Resolution: Done = > showcase - names of some samples do not follow camel case naming conventi= on > -------------------------------------------------------------------------= -- > > Key: RF-11919 > URL: https://issues.jboss.org/browse/RF-11919 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: qe, showcase > Environment: showcase app > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.2.0.CR1 > > > There are some samples in showcase which do not follow camel case naming = convention. First of all it is inconsistent with other sample names and sec= ondly it makes some problems with showcase tests, since I am using method f= or loading the appropriate page according to the test class name, which sho= uld be obviously named using camel case. Can you please rename following sa= mples ? > component demo - sample > ######################## > a4j:status - viewusage, referencedusage > a4j:outputPanel - Auto update for h:messages 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 --===============0191773929665792760==-- From jira-events at lists.jboss.org Fri Jan 27 06:53:50 2012 Content-Type: multipart/mixed; boundary="===============1877029573922683961==" 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-11533) Notify and IE 8: can't close a message Date: Fri, 27 Jan 2012 06:53:50 -0500 Message-ID: <229955176.5131.1327665230222.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1754239113.29618.1318507637333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1877029573922683961== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11533?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662397#com= ment-12662397 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11533: --------------------------------- Difference between Showcase and validator-demo was {{default-grid-reset.css= }} which contained definition = {code} div { margin: 0 }; {code} by trying to minimize the effect, I have configured: {code} div.rf-ntf-sum { margin: 0 }; {code} and it now works great in IE8. = > Notify and IE 8: can't close a message > -------------------------------------- > > Key: RF-11533 > URL: https://issues.jboss.org/browse/RF-11533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.1.0.Milestone3 > Environment: =E2=80=A2RichFaces 4.1.0.20111011-M3 r.68406156c3d64= 7eee75816d4bd6a29a66b0b5a2f > =E2=80=A2Metamer 4.1.0.20111011-M3 r.22776 > =E2=80=A2Mojarra 2.1.3-SNAPSHOT > =E2=80=A2Apache Tomcat 7.0.22 > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_27-b07 @ Windows Server 20= 08 > =E2=80=A2Internet Explorer 8.0 @ Win32 = > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Notify messages can't be closed in IE 8. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1877029573922683961==-- From jira-events at lists.jboss.org Fri Jan 27 06:55:49 2012 Content-Type: multipart/mixed; boundary="===============8050018216884019439==" 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-11533) Notify and IE 8: can't close a message Date: Fri, 27 Jan 2012 06:55:48 -0500 Message-ID: <1672512078.5135.1327665348725.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1754239113.29618.1318507637333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8050018216884019439== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11533?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11533. ----------------------------- Resolution: Done = > Notify and IE 8: can't close a message > -------------------------------------- > > Key: RF-11533 > URL: https://issues.jboss.org/browse/RF-11533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.1.0.Milestone3 > Environment: =E2=80=A2RichFaces 4.1.0.20111011-M3 r.68406156c3d64= 7eee75816d4bd6a29a66b0b5a2f > =E2=80=A2Metamer 4.1.0.20111011-M3 r.22776 > =E2=80=A2Mojarra 2.1.3-SNAPSHOT > =E2=80=A2Apache Tomcat 7.0.22 > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_27-b07 @ Windows Server 20= 08 > =E2=80=A2Internet Explorer 8.0 @ Win32 = > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Notify messages can't be closed in IE 8. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8050018216884019439==-- From jira-events at lists.jboss.org Fri Jan 27 06:57:48 2012 Content-Type: multipart/mixed; boundary="===============0641971374653847696==" 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-11533) Notify and IE 8: can't close a message Date: Fri, 27 Jan 2012 06:57:48 -0500 Message-ID: <36662549.5143.1327665468644.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1754239113.29618.1318507637333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0641971374653847696== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11533?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662397#com= ment-12662397 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11533 at 1/27/12 6:56 AM: ---------------------------------------------------------- I tried to find difference between Showcase and {{validator-demo}}. It was {{default-grid-reset.css}} from {{validator-demo}} which contained d= efinition = {code} div { margin: 0 }; {code} by trying to minimize the effect, I have configured: {code} div.rf-ntf-sum { margin: 0 }; {code} and it now works great in IE8. = was (Author: lfryc): Difference between Showcase and validator-demo was {{default-grid-reset= .css}} which contained definition = {code} div { margin: 0 }; {code} by trying to minimize the effect, I have configured: {code} div.rf-ntf-sum { margin: 0 }; {code} and it now works great in IE8. = > Notify and IE 8: can't close a message > -------------------------------------- > > Key: RF-11533 > URL: https://issues.jboss.org/browse/RF-11533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.1.0.Milestone3 > Environment: =E2=80=A2RichFaces 4.1.0.20111011-M3 r.68406156c3d64= 7eee75816d4bd6a29a66b0b5a2f > =E2=80=A2Metamer 4.1.0.20111011-M3 r.22776 > =E2=80=A2Mojarra 2.1.3-SNAPSHOT > =E2=80=A2Apache Tomcat 7.0.22 > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_27-b07 @ Windows Server 20= 08 > =E2=80=A2Internet Explorer 8.0 @ Win32 = > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Notify messages can't be closed in IE 8. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0641971374653847696==-- From jira-events at lists.jboss.org Fri Jan 27 07:05:49 2012 Content-Type: multipart/mixed; boundary="===============6565469593069735584==" 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: Fri, 27 Jan 2012 07:05:49 -0500 Message-ID: <1904423781.5165.1327665949237.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6565469593069735584== 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=3D12662401#com= ment-12662401 ] = Juraj Huska commented on RF-11905: ---------------------------------- I have successfully tried what was described in the AS7-2045 as workaround,= with positive effects. So the problem can be solved in these ways: *1.* use proposed workaround, which means alter default datasource configur= ation of JBoss AS 7, which means to add to documentation, that this error i= s thrown if it is not set.... *2.* do not use datasource for connecting to database but use proper settin= g of connection, and then the workaround can be applied to showcase configu= ration instead of container one *3.* change hibernate.hbm2ddl.auto from create-drop to only create, which t= akes care of that exception, since it will not try to drop database schema = after shutting down of AS, but instead will create new schema in each deploy Personally, I like the most the option 3. = > 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: Juraj Huska > Priority: Minor > > 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 =20 --===============6565469593069735584==-- From jira-events at lists.jboss.org Fri Jan 27 07:07:48 2012 Content-Type: multipart/mixed; boundary="===============4754277500851865805==" 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: Fri, 27 Jan 2012 07:07:48 -0500 Message-ID: <143449697.5170.1327666068672.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4754277500851865805== 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 updated RF-11905: ----------------------------- Assignee: (was: Juraj Huska) = > 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 > Priority: Minor > > 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 =20 --===============4754277500851865805==-- From jira-events at lists.jboss.org Fri Jan 27 07:09:49 2012 Content-Type: multipart/mixed; boundary="===============1407583182650179465==" 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-11888) Resource Servlet can't handle query string appended to resource url Date: Fri, 27 Jan 2012 07:09:49 -0500 Message-ID: <849767741.5179.1327666189353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1407583182650179465== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662404#com= ment-12662404 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11888: --------------------------------- You certainly don't need to append version suffix for RichFaces pre-generat= ed resources, but for other resources served by ResourceServlet, you might want to. We are limiting what query parameters can be appended to ResourceServlet ma= naged requests since there are security implications when user could append= whatever query param (like {{ln=3D*}}). However I'm open to discuss addition of some safe attributes like {{v=3D*}} which would enable us to use versions with custom resources served by Resou= rceServlet (refered to as "resource mapping" feature). = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. > This is essential to cause a browser to issue a request to the server if = a static > resource is held in a browser cache and is not expired, but you've upgrad= ed the > richfaces version. You have to have a way to invalidate the cache, and I'= m not > seeing how this can be done in a sensible way. You can set the Cache-Cont= rol > no-cache header, but I'd need to do this in a way that says "I've just up= graded > richfaces, so don't use the cache, issue a request to the server for the = resource, > but cache the result and use this until the next time". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1407583182650179465==-- From jira-events at lists.jboss.org Fri Jan 27 07:09:49 2012 Content-Type: multipart/mixed; boundary="===============4425498925338733319==" 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-11888) Resource Servlet can't handle query string appended to resource url Date: Fri, 27 Jan 2012 07:09:49 -0500 Message-ID: <324160234.5182.1327666189496.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4425498925338733319== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11888: ------------------------------- Assignee: (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > Priority: Critical > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. > This is essential to cause a browser to issue a request to the server if = a static > resource is held in a browser cache and is not expired, but you've upgrad= ed the > richfaces version. You have to have a way to invalidate the cache, and I'= m not > seeing how this can be done in a sensible way. You can set the Cache-Cont= rol > no-cache header, but I'd need to do this in a way that says "I've just up= graded > richfaces, so don't use the cache, issue a request to the server for the = resource, > but cache the result and use this until the next time". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4425498925338733319==-- From jira-events at lists.jboss.org Fri Jan 27 07:31:48 2012 Content-Type: multipart/mixed; boundary="===============1968096900710688503==" 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-11867) showcase - rich:hotKey - pressing of home or end key causes moving of whole page instead of just selected/removing all cities on FF 3.6.x Date: Fri, 27 Jan 2012 07:31:48 -0500 Message-ID: <1824809347.5217.1327667508804.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1258943306.48046.1326104829526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1968096900710688503== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11867?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11867: ------------------------------- Assignee: Juraj Huska (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Juraj, I have tried with FF {{3.6.21}} on {{Ubuntu}} and it works fine. Could you please check that you have tried that with latest Showcase {{4.2.= 0-SNAPSHOT}}? = > showcase - rich:hotKey - pressing of home or end key causes moving of who= le page instead of just selected/removing all cities on FF 3.6.x > -------------------------------------------------------------------------= ---------------------------------------------------------------- > > Key: RF-11867 > URL: https://issues.jboss.org/browse/RF-11867 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.2.0.CR1 > Environment: container: Tomcat 7.0.20, JBoss AS 6.0.0.Final > browser: Firefox 3.6.24 > Reporter: Juraj Huska > Assignee: Juraj Huska > Priority: Minor > > The current binding for selecting/removing all cities in the demo for ric= h:hotKey are 'home' and 'end' buttons respectively. > It works as expected on Chrome and Firefox 8, however it is not working a= s expected on *Firefox 3.6.x*. > *Pressing of 'home' of 'end' button (city is selected, so the pickList ha= s user focus) causes moving of the whole page, like the pickList has no foc= us. The cities are added/removed too, but with the side effect of the page = moving, which indeed looks a little ugly.* > The workaround can be to use other keys. = > What I would really appreciate is to bind some key to the switching betwe= en the two panels. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1968096900710688503==-- From jira-events at lists.jboss.org Fri Jan 27 07:33:49 2012 Content-Type: multipart/mixed; boundary="===============5114394889414998882==" 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-11868) showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3.6.x Date: Fri, 27 Jan 2012 07:33:49 -0500 Message-ID: <2042214785.5221.1327667629840.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 992167140.48074.1326105790453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5114394889414998882== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11868?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662409#com= ment-12662409 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11868: --------------------------------- Since this warning is outside of our code and the warnings are shown only i= n Error Console or in developer tools, I suggest to do not fix it. = > showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3= .6.x > -------------------------------------------------------------------------= ---- > > Key: RF-11868 > URL: https://issues.jboss.org/browse/RF-11868 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.2.0.CR1 > Environment: container: all > browser: Firefox 3.6.x > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > Using of bound hot keys in the demo for rich:hotKey generates on Firefox = 3.6.x a warning: > {code} > The 'charCode' property of a keydown event should not be used. The value = is meaningless. > {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 = --===============5114394889414998882==-- From jira-events at lists.jboss.org Fri Jan 27 07:33:50 2012 Content-Type: multipart/mixed; boundary="===============7511657710575707586==" 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-11868) showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3.6.x Date: Fri, 27 Jan 2012 07:33:50 -0500 Message-ID: <880480107.5224.1327667630018.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 992167140.48074.1326105790453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7511657710575707586== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11868?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11868. ----------------------------- Resolution: Won't Fix Please reopen if required. = > showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3= .6.x > -------------------------------------------------------------------------= ---- > > Key: RF-11868 > URL: https://issues.jboss.org/browse/RF-11868 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.2.0.CR1 > Environment: container: all > browser: Firefox 3.6.x > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > Using of bound hot keys in the demo for rich:hotKey generates on Firefox = 3.6.x a warning: > {code} > The 'charCode' property of a keydown event should not be used. The value = is meaningless. > {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 = --===============7511657710575707586==-- From jira-events at lists.jboss.org Fri Jan 27 07:33:52 2012 Content-Type: multipart/mixed; boundary="===============3338446091064374111==" MIME-Version: 1.0 From: Martin Dames (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-3566) Can't use messages with fileUpload Date: Fri, 27 Jan 2012 07:33:52 -0500 Message-ID: <120844144.5248.1327667632723.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 14991295.1211962969325.JavaMail.jira@cloud.prod.atl2.jboss.com --===============3338446091064374111== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-3566?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662411#comm= ent-12662411 ] = Martin Dames commented on RF-3566: ---------------------------------- My workaround for the negative case is to throw an exception in upload list= ener. Negative case could be the violation of total upload size if file is = too big. This will force an "upload.transferError" and messages will be dis= played. But I have no workaround for the positive case. = > Can't use messages with fileUpload > ---------------------------------- > > Key: RF-3566 > URL: https://issues.jboss.org/browse/RF-3566 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 3.2.1 > Reporter: Ilya Shaikovsky > Assignee: Konstantin Mishin > Fix For: 4.0.0.Milestone5 > > > http://www.jboss.com/index.html?module=3Dbb&op=3Dviewtopic&p=3D4153840#41= 53840 > Using his code in demosite listener I'm getting next behaviour. > "Transfer error occuried" error in file upload status. > But rich:messages which added to the page doesn't show anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3338446091064374111==-- From jira-events at lists.jboss.org Fri Jan 27 07:35:50 2012 Content-Type: multipart/mixed; boundary="===============1857251632190484192==" MIME-Version: 1.0 From: Martin Dames (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-3566) Can't use messages with fileUpload Date: Fri, 27 Jan 2012 07:35:50 -0500 Message-ID: <1936149605.5276.1327667750619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 14991295.1211962969325.JavaMail.jira@cloud.prod.atl2.jboss.com --===============1857251632190484192== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-3566?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662411#comm= ent-12662411 ] = Martin Dames edited comment on RF-3566 at 1/27/12 7:33 AM: ----------------------------------------------------------- My workaround for the negative case is to throw an exception in upload list= ener. Negative case could be the violation of total upload size if file is = too big. This will force an "upload.transferError" and messages will be dis= played. But I have no workaround for the positive case. (Richfaces 3.3.3) = was (Author: specialagent): My workaround for the negative case is to throw an exception in upload = listener. Negative case could be the violation of total upload size if file= is too big. This will force an "upload.transferError" and messages will be= displayed. But I have no workaround for the positive case. = > Can't use messages with fileUpload > ---------------------------------- > > Key: RF-3566 > URL: https://issues.jboss.org/browse/RF-3566 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 3.2.1 > Reporter: Ilya Shaikovsky > Assignee: Konstantin Mishin > Fix For: 4.0.0.Milestone5 > > > http://www.jboss.com/index.html?module=3Dbb&op=3Dviewtopic&p=3D4153840#41= 53840 > Using his code in demosite listener I'm getting next behaviour. > "Transfer error occuried" error in file upload status. > But rich:messages which added to the page doesn't show anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1857251632190484192==-- From jira-events at lists.jboss.org Fri Jan 27 07:49:48 2012 Content-Type: multipart/mixed; boundary="===============4298159937356325957==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11867) showcase - rich:hotKey - pressing of home or end key causes moving of whole page instead of just selected/removing all cities on FF 3.6.x Date: Fri, 27 Jan 2012 07:49:48 -0500 Message-ID: <1696594036.5289.1327668588527.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1258943306.48046.1326104829526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4298159937356325957== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11867?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662413#com= ment-12662413 ] = Juraj Huska commented on RF-11867: ---------------------------------- I have tried it again, with current snapshots on {{Firefox 3.6.25}} and I c= an not reproduce it again. = > showcase - rich:hotKey - pressing of home or end key causes moving of who= le page instead of just selected/removing all cities on FF 3.6.x > -------------------------------------------------------------------------= ---------------------------------------------------------------- > > Key: RF-11867 > URL: https://issues.jboss.org/browse/RF-11867 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.2.0.CR1 > Environment: container: Tomcat 7.0.20, JBoss AS 6.0.0.Final > browser: Firefox 3.6.24 > Reporter: Juraj Huska > Assignee: Juraj Huska > Priority: Minor > > The current binding for selecting/removing all cities in the demo for ric= h:hotKey are 'home' and 'end' buttons respectively. > It works as expected on Chrome and Firefox 8, however it is not working a= s expected on *Firefox 3.6.x*. > *Pressing of 'home' of 'end' button (city is selected, so the pickList ha= s user focus) causes moving of the whole page, like the pickList has no foc= us. The cities are added/removed too, but with the side effect of the page = moving, which indeed looks a little ugly.* > The workaround can be to use other keys. = > What I would really appreciate is to bind some key to the switching betwe= en the two panels. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4298159937356325957==-- From jira-events at lists.jboss.org Fri Jan 27 07:53:48 2012 Content-Type: multipart/mixed; boundary="===============0291749476526744594==" 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-11867) showcase - rich:hotKey - pressing of home or end key causes moving of whole page instead of just selected/removing all cities on FF 3.6.x Date: Fri, 27 Jan 2012 07:53:48 -0500 Message-ID: <1795793877.5298.1327668828428.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1258943306.48046.1326104829526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0291749476526744594== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11867?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11867. ----------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Juraj Huska) Resolution: Cannot Reproduce Bug = > showcase - rich:hotKey - pressing of home or end key causes moving of who= le page instead of just selected/removing all cities on FF 3.6.x > -------------------------------------------------------------------------= ---------------------------------------------------------------- > > Key: RF-11867 > URL: https://issues.jboss.org/browse/RF-11867 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.2.0.CR1 > Environment: container: Tomcat 7.0.20, JBoss AS 6.0.0.Final > browser: Firefox 3.6.24 > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > The current binding for selecting/removing all cities in the demo for ric= h:hotKey are 'home' and 'end' buttons respectively. > It works as expected on Chrome and Firefox 8, however it is not working a= s expected on *Firefox 3.6.x*. > *Pressing of 'home' of 'end' button (city is selected, so the pickList ha= s user focus) causes moving of the whole page, like the pickList has no foc= us. The cities are added/removed too, but with the side effect of the page = moving, which indeed looks a little ugly.* > The workaround can be to use other keys. = > What I would really appreciate is to bind some key to the switching betwe= en the two panels. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0291749476526744594==-- From jira-events at lists.jboss.org Fri Jan 27 07:53:48 2012 Content-Type: multipart/mixed; boundary="===============6412518996667807715==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11867) showcase - rich:hotKey - pressing of home or end key causes moving of whole page instead of just selected/removing all cities on FF 3.6.x Date: Fri, 27 Jan 2012 07:53:48 -0500 Message-ID: <115289764.5300.1327668828493.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1258943306.48046.1326104829526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6412518996667807715== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11867?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11867. ---------------------------- = > showcase - rich:hotKey - pressing of home or end key causes moving of who= le page instead of just selected/removing all cities on FF 3.6.x > -------------------------------------------------------------------------= ---------------------------------------------------------------- > > Key: RF-11867 > URL: https://issues.jboss.org/browse/RF-11867 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.2.0.CR1 > Environment: container: Tomcat 7.0.20, JBoss AS 6.0.0.Final > browser: Firefox 3.6.24 > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > The current binding for selecting/removing all cities in the demo for ric= h:hotKey are 'home' and 'end' buttons respectively. > It works as expected on Chrome and Firefox 8, however it is not working a= s expected on *Firefox 3.6.x*. > *Pressing of 'home' of 'end' button (city is selected, so the pickList ha= s user focus) causes moving of the whole page, like the pickList has no foc= us. The cities are added/removed too, but with the side effect of the page = moving, which indeed looks a little ugly.* > The workaround can be to use other keys. = > What I would really appreciate is to bind some key to the switching betwe= en the two panels. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6412518996667807715==-- From jira-events at lists.jboss.org Fri Jan 27 10:33:49 2012 Content-Type: multipart/mixed; boundary="===============1153310367661456703==" 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-11925) PushHandlerFilter - release SessionManager reference at destroy Date: Fri, 27 Jan 2012 10:33:49 -0500 Message-ID: <755697460.5872.1327678429352.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1153310367661456703== 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-11925: ------------------------------- Summary: PushHandlerFilter - release SessionManager reference = at destroy Key: RF-11925 URL: https://issues.jboss.org/browse/RF-11925 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: core Affects Versions: 4.2.0.CR1 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.0.CR1 >From review: https://source.jboss.org/cru/REV-RF-12#c186 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1153310367661456703==-- From jira-events at lists.jboss.org Fri Jan 27 10:33:50 2012 Content-Type: multipart/mixed; boundary="===============8117325049782530474==" 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-11925) PushHandlerFilter - release SessionManager reference at destroy Date: Fri, 27 Jan 2012 10:33:49 -0500 Message-ID: <2106614221.5874.1327678429867.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 755697460.5872.1327678429352.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8117325049782530474== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11925?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11925: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > PushHandlerFilter - release SessionManager reference at destroy > --------------------------------------------------------------- > > Key: RF-11925 > URL: https://issues.jboss.org/browse/RF-11925 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > From review: > https://source.jboss.org/cru/REV-RF-12#c186 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8117325049782530474==-- From jira-events at lists.jboss.org Fri Jan 27 11:02:48 2012 Content-Type: multipart/mixed; boundary="===============6509989174718360213==" 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-11925) PushHandlerFilter - release SessionManager reference at destroy Date: Fri, 27 Jan 2012 11:02:48 -0500 Message-ID: <475897319.5899.1327680168538.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 755697460.5872.1327678429352.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6509989174718360213== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11925?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11925. ----------------------------- Resolution: Done = > PushHandlerFilter - release SessionManager reference at destroy > --------------------------------------------------------------- > > Key: RF-11925 > URL: https://issues.jboss.org/browse/RF-11925 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > From review: > https://source.jboss.org/cru/REV-RF-12#c186 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6509989174718360213==-- From jira-events at lists.jboss.org Fri Jan 27 12:17:49 2012 Content-Type: multipart/mixed; boundary="===============1447855355996010677==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11838) Warning in Chrome console for pages with ajax Date: Fri, 27 Jan 2012 12:17:49 -0500 Message-ID: <982875866.6040.1327684669210.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 836209596.24520.1324389969366.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1447855355996010677== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11838?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662465#com= ment-12662465 ] = Brian Leathem commented on RF-11838: ------------------------------------ In richfaces-queue.js, we copy the event (otherwise IE fails) on [Line 129|= https://github.com/richfaces/core/blob/develop/impl/src/main/resources/META= -INF/resources/richfaces-queue.js#L129]: {code:title=3Drichfaces-queue.js|Line 129} this.event =3D $.extend({}, event); {code} Since layerX and layerY are still properties of the Webkit event (they have= not *yet* been removed), we are copying them in our event copy. The acces= s to the event properties triggers the error. On solution is to remove the properties from the event prior to copying the= event, as investigated quite thoroughly by the jsperf team: http://jsperf.com/removing-event-props/2 = > Warning in Chrome console for pages with ajax > --------------------------------------------- > > Key: RF-11838 > URL: https://issues.jboss.org/browse/RF-11838 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 4.1.0.Final > Environment: Google Chrome 16.0.912.63 > Reporter: Pavol Pitonak > Fix For: 4.2.0.CR1 > > > # open Showcase in Chrome http://showcase.richfaces.org/richfaces/compone= nt-sample.jsf?demo=3Dajax&skin=3DblueSky > # open browser console > # type "xxx" into input > result: > The following warning is displayed in browser console 6 times (twice for = each Ajax request). Seems to be Chrome-specific and seems not to influence = functionality of any component. > {quote} > event.layerX and event.layerY are broken and deprecated in WebKit. They w= ill be removed from the engine in the near future. > {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 =20 --===============1447855355996010677==-- From jira-events at lists.jboss.org Fri Jan 27 12:26:48 2012 Content-Type: multipart/mixed; boundary="===============4412755466790194951==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11926) Unit tests failures in core module Date: Fri, 27 Jan 2012 12:26:48 -0500 Message-ID: <1481588008.6051.1327685208437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4412755466790194951== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-11926: ---------------------------------- Summary: Unit tests failures in core module Key: RF-11926 URL: https://issues.jboss.org/browse/RF-11926 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: tests - unit Environment: RichFaces 4.2.0-SNAPSHOT Reporter: Pavol Pitonak Jenkins build for core module finished with 26 failures in unit tests. http://hudson.qa.jboss.com/hudson/view/RF-4.0/job/richfaces-4.2-core/227/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4412755466790194951==-- From jira-events at lists.jboss.org Fri Jan 27 12:28:49 2012 Content-Type: multipart/mixed; boundary="===============3768819941761796548==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11926) Unit tests failures in core module Date: Fri, 27 Jan 2012 12:28:48 -0500 Message-ID: <1595535102.6062.1327685328934.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1481588008.6051.1327685208437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3768819941761796548== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11926?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11926: ------------------------------- Fix Version/s: 4.2.0.CR1 Priority: Blocker (was: Major) Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D >From the hudson log, I see: {quote} [ERROR] 'dependencies.dependency.version' for org.jboss.test-jsf:jsf-mockit= o:jar is missing. @ line 133, column 21 [ERROR] 'dependencies.dependency.version' for org.mockito:mockito-all:jar i= s missing. @ line 138, column 21 {quote} Looks like this is just a simple matter of defining the mockito dependency = versions. = > Unit tests failures in core module > ---------------------------------- > > Key: RF-11926 > URL: https://issues.jboss.org/browse/RF-11926 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: tests - unit > Environment: RichFaces 4.2.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 4.2.0.CR1 > > > Jenkins build for core module finished with 26 failures in unit tests. > http://hudson.qa.jboss.com/hudson/view/RF-4.0/job/richfaces-4.2-core/227/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3768819941761796548==-- From jira-events at lists.jboss.org Fri Jan 27 15:44:48 2012 Content-Type: multipart/mixed; boundary="===============7152258069578955790==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11838) Warning in Chrome console for pages with ajax Date: Fri, 27 Jan 2012 15:44:48 -0500 Message-ID: <1782385950.6393.1327697088442.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 836209596.24520.1324389969366.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7152258069578955790== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11838?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11838. -------------------------------- Assignee: Brian Leathem Resolution: Done Removed the layerX and layerY events = > Warning in Chrome console for pages with ajax > --------------------------------------------- > > Key: RF-11838 > URL: https://issues.jboss.org/browse/RF-11838 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 4.1.0.Final > Environment: Google Chrome 16.0.912.63 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > # open Showcase in Chrome http://showcase.richfaces.org/richfaces/compone= nt-sample.jsf?demo=3Dajax&skin=3DblueSky > # open browser console > # type "xxx" into input > result: > The following warning is displayed in browser console 6 times (twice for = each Ajax request). Seems to be Chrome-specific and seems not to influence = functionality of any component. > {quote} > event.layerX and event.layerY are broken and deprecated in WebKit. They w= ill be removed from the engine in the near future. > {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 =20 --===============7152258069578955790==-- From jira-events at lists.jboss.org Fri Jan 27 17:25:49 2012 Content-Type: multipart/mixed; boundary="===============4796131526775756244==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11918) Create a showcase profile for JBoss AS 7.1 Date: Fri, 27 Jan 2012 17:25:48 -0500 Message-ID: <1016142827.6511.1327703148956.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 718645631.20368.1327448958455.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4796131526775756244== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11918?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11918. -------------------------------- Assignee: Brian Leathem Resolution: Done = > Create a showcase profile for JBoss AS 7.1 > ------------------------------------------ > > Key: RF-11918 > URL: https://issues.jboss.org/browse/RF-11918 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: showcase > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > With RF-11657, the deployment bundle for JBoss AS 7.1 should have the goo= gle guava library excluded. > Create a new debployment bundle for the showcase, excluding the google gu= ava library. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4796131526775756244==-- From jira-events at lists.jboss.org Fri Jan 27 17:36:48 2012 Content-Type: multipart/mixed; boundary="===============7040401065834654287==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11927) RichFaces polling is broken Date: Fri, 27 Jan 2012 17:36:48 -0500 Message-ID: <4359831.6528.1327703808393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7040401065834654287== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11927: ---------------------------------- Summary: RichFaces polling is broken Key: RF-11927 URL: https://issues.jboss.org/browse/RF-11927 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-push/poll Reporter: Brian Leathem Priority: Blocker Fix For: 4.2.0.CR1 I noticed today that RichFaces polling in the showcase is broken. The page: http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpoll does not update. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7040401065834654287==-- From jira-events at lists.jboss.org Fri Jan 27 17:38:48 2012 Content-Type: multipart/mixed; boundary="===============9039437173186127456==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11927) RichFaces polling is broken Date: Fri, 27 Jan 2012 17:38:48 -0500 Message-ID: <608683520.6533.1327703928453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 4359831.6528.1327703808393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9039437173186127456== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11927?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662524#com= ment-12662524 ] = Brian Leathem commented on RF-11927: ------------------------------------ I downloaded a SNAPSHOT from nexus (richfaces-showcase-4.2.0-20120127.17174= 5-21-jbas7.war), and polling works. So the breakage was introduced sometim= e since: 2012-01-27 17:17:45 (CET?) = > RichFaces polling is broken > --------------------------- > > Key: RF-11927 > URL: https://issues.jboss.org/browse/RF-11927 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Brian Leathem > Priority: Blocker > Fix For: 4.2.0.CR1 > > > I noticed today that RichFaces polling in the showcase is broken. The pa= ge: > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpoll > does not update. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9039437173186127456==-- From jira-events at lists.jboss.org Fri Jan 27 17:53:49 2012 Content-Type: multipart/mixed; boundary="===============2493564587113728905==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Fri, 27 Jan 2012 17:53:49 -0500 Message-ID: <663140018.6558.1327704829462.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2493564587113728905== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-11773: -------------------------------- Re-opening to remove fixVersion = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2493564587113728905==-- From jira-events at lists.jboss.org Fri Jan 27 17:53:49 2012 Content-Type: multipart/mixed; boundary="===============2398337880269255350==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Fri, 27 Jan 2012 17:53:49 -0500 Message-ID: <959283915.6564.1327704829782.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2398337880269255350== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem closed RF-11773. ------------------------------ = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2398337880269255350==-- From jira-events at lists.jboss.org Fri Jan 27 17:53:49 2012 Content-Type: multipart/mixed; boundary="===============1937973282516151941==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Fri, 27 Jan 2012 17:53:49 -0500 Message-ID: <795311074.6562.1327704829649.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1937973282516151941== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11773. -------------------------------- Fix Version/s: (was: 4.2.0.CR1) Resolution: Cannot Reproduce Bug = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1937973282516151941==-- From jira-events at lists.jboss.org Fri Jan 27 17:53:50 2012 Content-Type: multipart/mixed; boundary="===============5719339319489676152==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11772) showcase - a4j:attachQueue - ajax request from mobile device generates WARNING on the server log Date: Fri, 27 Jan 2012 17:53:50 -0500 Message-ID: <164215332.6571.1327704830433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 942002739.61843.1322757520977.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5719339319489676152== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11772?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11772: ------------------------------- Fix Version/s: (was: 4.2.0.CR1) = > showcase - a4j:attachQueue - ajax request from mobile device generates WA= RNING on the server log > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11772 > URL: https://issues.jboss.org/browse/RF-11772 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core, mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: richfaces showcase 4.1.CR2 > container: JBoss AS 7.1.0.Beta1, JBoss AS 6.0.0.Final > mobile device: iPad1, Motorola Xoom, iPhone4 > Reporter: Juraj Huska > Assignee: Wesley Hales > Priority: Minor > > In demo for a4j:attachQueue, when typing to input, the *generated ajax re= quests cause warning logged on the container console*: > {code} > 17:29:40,118 WARNING [org.richfaces.log.Components] (http--0.0.0.0-8080-5= ) Queue with name 'j_idt9' has already been registered > {code} > The *functionality remains fine*, and this is noticeable *only on mobile = devices*. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5719339319489676152==-- From jira-events at lists.jboss.org Fri Jan 27 17:53:50 2012 Content-Type: multipart/mixed; boundary="===============0526951146694628102==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11774) mobile showcase - rich:tree - touch event on particular part of tree causes selecting of whole tree component Date: Fri, 27 Jan 2012 17:53:50 -0500 Message-ID: <1309587764.6569.1327704830309.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 468905842.65339.1322827900636.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0526951146694628102== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11774?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11774: ------------------------------- Fix Version/s: (was: 4.2.0.CR1) = > mobile showcase - rich:tree - touch event on particular part of tree caus= es selecting of whole tree component > -------------------------------------------------------------------------= ------------------------------------ > > Key: RF-11774 > URL: https://issues.jboss.org/browse/RF-11774 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tree, mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: app: mobile richfaces-showcase > container: JBoss AS 7.1.0.Beta1 > device: Motorola Xoom > Reporter: Juraj Huska > Assignee: Wesley Hales > Priority: Minor > > When I *touch particular part of the tree component*, e.g. sign for expan= ding the node, then *the whole tree component is selected* till the node is= not expanded. = > It *looks* quite *disturbing*, such a blinking. = > This behavior is also noticeable on iPad1, however it is not so disruptiv= e as in Android device, since the color of selecting the whole tree is diff= erent. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0526951146694628102==-- From jira-events at lists.jboss.org Fri Jan 27 18:02:48 2012 Content-Type: multipart/mixed; boundary="===============8972171020293991360==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11921) Update the release-notes Date: Fri, 27 Jan 2012 18:02:48 -0500 Message-ID: <1242244530.6589.1327705368349.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 432501842.1527.1327513668309.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8972171020293991360== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11921?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11921. -------------------------------- Resolution: Done = > Update the release-notes > ------------------------ > > Key: RF-11921 > URL: https://issues.jboss.org/browse/RF-11921 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Blocker > Fix For: 4.2.0.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 --===============8972171020293991360==-- From jira-events at lists.jboss.org Fri Jan 27 18:18:48 2012 Content-Type: multipart/mixed; boundary="===============0328087224848438886==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11927) RichFaces polling is broken Date: Fri, 27 Jan 2012 18:18:48 -0500 Message-ID: <337490997.6599.1327706328335.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 4359831.6528.1327703808393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0328087224848438886== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11927?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662536#com= ment-12662536 ] = Brian Leathem commented on RF-11927: ------------------------------------ Rolling back cdk, components, core and showcase to the commit before RF-119= 09, and polling works. I'll step through successive commits (grouped by is= sue number) to see if I can isolate when this breaks. = > RichFaces polling is broken > --------------------------- > > Key: RF-11927 > URL: https://issues.jboss.org/browse/RF-11927 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Brian Leathem > Priority: Blocker > Fix For: 4.2.0.CR1 > > > I noticed today that RichFaces polling in the showcase is broken. The pa= ge: > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpoll > does not update. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0328087224848438886==-- From jira-events at lists.jboss.org Fri Jan 27 18:25:48 2012 Content-Type: multipart/mixed; boundary="===============0948648696082088051==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11927) RichFaces polling is broken Date: Fri, 27 Jan 2012 18:25:48 -0500 Message-ID: <446930564.6608.1327706748613.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 4359831.6528.1327703808393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0948648696082088051== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11927?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662537#com= ment-12662537 ] = Brian Leathem commented on RF-11927: ------------------------------------ This still works after rolling all the modules to the last commit of RF-119= 09. I'll continue stepping through commits to isolate when this broke. = > RichFaces polling is broken > --------------------------- > > Key: RF-11927 > URL: https://issues.jboss.org/browse/RF-11927 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Brian Leathem > Priority: Blocker > Fix For: 4.2.0.CR1 > > > I noticed today that RichFaces polling in the showcase is broken. The pa= ge: > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpoll > does not update. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0948648696082088051==-- From jira-events at lists.jboss.org Fri Jan 27 18:53:48 2012 Content-Type: multipart/mixed; boundary="===============9186160510687822000==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11927) RichFaces polling is broken Date: Fri, 27 Jan 2012 18:53:48 -0500 Message-ID: <1896579101.6612.1327708428387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 4359831.6528.1327703808393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9186160510687822000== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11927?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11927: ---------------------------------- Assignee: Brian Leathem = > RichFaces polling is broken > --------------------------- > > Key: RF-11927 > URL: https://issues.jboss.org/browse/RF-11927 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Blocker > Fix For: 4.2.0.CR1 > > > I noticed today that RichFaces polling in the showcase is broken. The pa= ge: > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpoll > does not update. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9186160510687822000==-- From jira-events at lists.jboss.org Fri Jan 27 18:53:48 2012 Content-Type: multipart/mixed; boundary="===============9217342774128028576==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11927) RichFaces polling is broken Date: Fri, 27 Jan 2012 18:53:48 -0500 Message-ID: <57152018.6611.1327708428332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 4359831.6528.1327703808393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9217342774128028576== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11927?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662538#com= ment-12662538 ] = Brian Leathem commented on RF-11927: ------------------------------------ This appears to have broken with commit 4b8c00721a0a46398eca10de1e49cc27e38= 74f50, the fix for RF-11838 = > RichFaces polling is broken > --------------------------- > > Key: RF-11927 > URL: https://issues.jboss.org/browse/RF-11927 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Brian Leathem > Priority: Blocker > Fix For: 4.2.0.CR1 > > > I noticed today that RichFaces polling in the showcase is broken. The pa= ge: > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpoll > does not update. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9217342774128028576==-- From jira-events at lists.jboss.org Fri Jan 27 22:05:48 2012 Content-Type: multipart/mixed; boundary="===============8301145739191999213==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11927) RichFaces polling is broken Date: Fri, 27 Jan 2012 22:05:48 -0500 Message-ID: <44085453.6708.1327719948325.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 4359831.6528.1327703808393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8301145739191999213== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11927?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11927. -------------------------------- Resolution: Done Added an undefined check for event in the fix for RF-11838 = > RichFaces polling is broken > --------------------------- > > Key: RF-11927 > URL: https://issues.jboss.org/browse/RF-11927 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Blocker > Fix For: 4.2.0.CR1 > > > I noticed today that RichFaces polling in the showcase is broken. The pa= ge: > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpoll > does not update. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8301145739191999213==-- From jira-events at lists.jboss.org Sun Jan 29 16:44:48 2012 Content-Type: multipart/mixed; boundary="===============8853432347320073874==" 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-11926) Unit tests failures in core module Date: Sun, 29 Jan 2012 16:44:48 -0500 Message-ID: <655348379.7249.1327873488400.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1481588008.6051.1327685208437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8853432347320073874== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11926?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11926. ----------------------------- Fix Version/s: (was: 4.2.0.CR1) Resolution: Rejected The issue of CI builds. Once I have tied to released versions of {{jsf-test}}, build passed fine. = > Unit tests failures in core module > ---------------------------------- > > Key: RF-11926 > URL: https://issues.jboss.org/browse/RF-11926 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: tests - unit > Environment: RichFaces 4.2.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > > Jenkins build for core module finished with 26 failures in unit tests. > http://hudson.qa.jboss.com/hudson/view/RF-4.0/job/richfaces-4.2-core/227/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8853432347320073874==-- From jira-events at lists.jboss.org Mon Jan 30 11:35:49 2012 Content-Type: multipart/mixed; boundary="===============8686759891952491701==" 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-11904) rich:contextMenu @mode doesn't affect request type Date: Mon, 30 Jan 2012 11:35:48 -0500 Message-ID: <797102823.8825.1327941348735.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1470389961.10951.1326984078257.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8686759891952491701== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11904?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich resolved RF-11904. ------------------------------ Resolution: Cannot Reproduce Bug Seems it is fixed. Ftest updated accordingly. = > rich:contextMenu @mode doesn't affect request type > -------------------------------------------------- > > Key: RF-11904 > URL: https://issues.jboss.org/browse/RF-11904 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Environment: RichFaces 4.2.0-SNAPSHOT > Metamer 4.1.1-SNAPSHOT r.${buildNumber} > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 10.0 @ Linux i686 > ----- > Richfaces component module built after merge to develop branch > Reporter: J=C3=A1n Jamrich > Assignee: J=C3=A1n Jamrich > > Since contextMenu should be similar to dropDownMenu, I'm missing behavior= controlled by @mode in contextMenu like dropDownMenu. > In dropDownMenu @mode=3Dajax causes just one request performed when click= menu item. No request for @mode=3Dclient and only for @mode=3Dserver multi= ple requests (first POST request for page where dropDownMenu triggered requ= est and then multiple GET requests for all associated (referenced) resource= s such as CSS, JS... > But not for contextMenu. @mode set to client neither ajax doesn't change = request type, always is full page refresh performed when click on contextMe= nu item. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8686759891952491701==-- From jira-events at lists.jboss.org Mon Jan 30 13:32:48 2012 Content-Type: multipart/mixed; boundary="===============2976405064374398879==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11926) Unit tests failures in core module Date: Mon, 30 Jan 2012 13:32:48 -0500 Message-ID: <137607204.9115.1327948368356.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1481588008.6051.1327685208437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2976405064374398879== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11926?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662839#com= ment-12662839 ] = Brian Leathem commented on RF-11926: ------------------------------------ Curious - why was this issue marked as "Rejected", rather than done? = > Unit tests failures in core module > ---------------------------------- > > Key: RF-11926 > URL: https://issues.jboss.org/browse/RF-11926 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: tests - unit > Environment: RichFaces 4.2.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > > Jenkins build for core module finished with 26 failures in unit tests. > http://hudson.qa.jboss.com/hudson/view/RF-4.0/job/richfaces-4.2-core/227/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2976405064374398879==-- From jira-events at lists.jboss.org Mon Jan 30 19:05:48 2012 Content-Type: multipart/mixed; boundary="===============8555050523015082589==" 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: Mon, 30 Jan 2012 19:05:48 -0500 Message-ID: <668982599.9574.1327968348686.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8555050523015082589== 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=3D12662908#com= ment-12662908 ] = Friedhelm Kuehn commented on RF-11884: -------------------------------------- Hi Brian, I don't see anything moving here - what does 'waiting_on_user' me= an ? Did you notice that I added documents with additional Information ? We are getting into troubles here, having to deliver our software soon - wo= rking with IE8 also. Regards, Friedhelm = > 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 > Labels: waiting_on_user > Attachments: Richfaces_4.1_Problems.pdf, Richfaces_4.1_Problems_K= onfiguration.pdf > > > 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 --===============8555050523015082589==-- From jira-events at lists.jboss.org Tue Jan 31 03:26:51 2012 Content-Type: multipart/mixed; boundary="===============4952879284639508149==" MIME-Version: 1.0 From: kevin 2 (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11017) rich:extendedDataTable: Problems with resizing and ordering of columns with Firefox 4 Date: Tue, 31 Jan 2012 03:26:51 -0500 Message-ID: <1535590303.10044.1327998411360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2053110360.33219.1306595820932.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4952879284639508149== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11017?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662953#com= ment-12662953 ] = kevin 2 commented on RF-11017: ------------------------------ Hi, I still have this issue on Firefox 3.6, and IE 7,8 with RF4.1 Final! Is it really resolved ? = > rich:extendedDataTable: Problems with resizing and ordering of columns wi= th Firefox 4 > -------------------------------------------------------------------------= ------------ > > Key: RF-11017 > URL: https://issues.jboss.org/browse/RF-11017 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-tables > Affects Versions: 4.1.0.Milestone1 > Environment: Tomcat6 and 7, Java 6, MyFaces 2.1.0-SNAPSHOT (28.05= .2011), RichFaces 4.1.0-SNAPSHOT (28.05.2011) > Reporter: Rene O > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: jsf2testcase.war > > > To reproduce the two issues, i have append a testcase: > Issue 1 (ordering): > 1. call http://localhost:8080/jsf2testcase/tableTest.jsf > 2. try to change the order of the columns (e.g. A,B,C -> B,A,C) > 3. after that, the scrollbar of the table disappears > Note, that this issue appears with Firefox 4.0.1, but not with IE8 > Issue 2 (resizing): > 1. call http://localhost:8080/jsf2testcase/tableTestB.jsf > 2. click button to show table B > 3. try to resize the column width of table B > 4. resizing doesn't work in table B, but if you try to resize the column = width of table A, it will work. So it must be a bug. > Note, that this issue appears with Firefox 4.0.1, but not with 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 = --===============4952879284639508149==-- From jira-events at lists.jboss.org Tue Jan 31 04:10:54 2012 Content-Type: multipart/mixed; boundary="===============1899868117830223383==" 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-11926) Unit tests failures in core module Date: Tue, 31 Jan 2012 04:10:51 -0500 Message-ID: <285994008.10114.1328001051591.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1481588008.6051.1327685208437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1899868117830223383== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11926?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662961#com= ment-12662961 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11926: --------------------------------- I haven't did anything special for resolving this issue. It was solved by RFPL-1989 process. = > Unit tests failures in core module > ---------------------------------- > > Key: RF-11926 > URL: https://issues.jboss.org/browse/RF-11926 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: tests - unit > Environment: RichFaces 4.2.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > > Jenkins build for core module finished with 26 failures in unit tests. > http://hudson.qa.jboss.com/hudson/view/RF-4.0/job/richfaces-4.2-core/227/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1899868117830223383==-- From jira-events at lists.jboss.org Tue Jan 31 04:12:50 2012 Content-Type: multipart/mixed; boundary="===============5275196169870951821==" 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-11926) Unit tests failures in core module Date: Tue, 31 Jan 2012 04:12:48 -0500 Message-ID: <803887831.10117.1328001168969.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1481588008.6051.1327685208437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5275196169870951821== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11926?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662961#com= ment-12662961 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11926 at 1/31/12 4:12 AM: ---------------------------------------------------------- I haven't did anything special for resolving this issue. It was solved by RFPL-1989 process. Actually, tests weren't failing and no changes were done in code to allow t= hem pass, the cause was wrong timing/ordering of SNAPSHOT builds. = was (Author: lfryc): I haven't did anything special for resolving this issue. It was solved by RFPL-1989 process. = > Unit tests failures in core module > ---------------------------------- > > Key: RF-11926 > URL: https://issues.jboss.org/browse/RF-11926 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: tests - unit > Environment: RichFaces 4.2.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > > Jenkins build for core module finished with 26 failures in unit tests. > http://hudson.qa.jboss.com/hudson/view/RF-4.0/job/richfaces-4.2-core/227/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5275196169870951821==-- From jira-events at lists.jboss.org Tue Jan 31 04:19:50 2012 Content-Type: multipart/mixed; boundary="===============5518646481719813845==" 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-11017) rich:extendedDataTable: Problems with resizing and ordering of columns with Firefox 4 Date: Tue, 31 Jan 2012 04:19:49 -0500 Message-ID: <1654878903.10124.1328001589888.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2053110360.33219.1306595820932.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5518646481719813845== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11017?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-11017: ----------------------------- Assignee: Pavol Pitonak (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Hi Kevin, I have reopened this issue to check issues. Pavol, could you please try EDT on listed browsers? = > rich:extendedDataTable: Problems with resizing and ordering of columns wi= th Firefox 4 > -------------------------------------------------------------------------= ------------ > > Key: RF-11017 > URL: https://issues.jboss.org/browse/RF-11017 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-tables > Affects Versions: 4.1.0.Milestone1 > Environment: Tomcat6 and 7, Java 6, MyFaces 2.1.0-SNAPSHOT (28.05= .2011), RichFaces 4.1.0-SNAPSHOT (28.05.2011) > Reporter: Rene O > Assignee: Pavol Pitonak > Attachments: jsf2testcase.war > > > To reproduce the two issues, i have append a testcase: > Issue 1 (ordering): > 1. call http://localhost:8080/jsf2testcase/tableTest.jsf > 2. try to change the order of the columns (e.g. A,B,C -> B,A,C) > 3. after that, the scrollbar of the table disappears > Note, that this issue appears with Firefox 4.0.1, but not with IE8 > Issue 2 (resizing): > 1. call http://localhost:8080/jsf2testcase/tableTestB.jsf > 2. click button to show table B > 3. try to resize the column width of table B > 4. resizing doesn't work in table B, but if you try to resize the column = width of table A, it will work. So it must be a bug. > Note, that this issue appears with Firefox 4.0.1, but not with 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 = --===============5518646481719813845==-- From jira-events at lists.jboss.org Tue Jan 31 05:27:48 2012 Content-Type: multipart/mixed; boundary="===============3068228597014647678==" MIME-Version: 1.0 From: kevin 2 (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11017) rich:extendedDataTable: Problems with resizing and ordering of columns with Firefox 4 Date: Tue, 31 Jan 2012 05:27:48 -0500 Message-ID: <291550033.10208.1328005668727.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2053110360.33219.1306595820932.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3068228597014647678== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11017?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12662972#com= ment-12662972 ] = kevin 2 commented on RF-11017: ------------------------------ For information, I use Packed and Compressed ressources in my application. = > rich:extendedDataTable: Problems with resizing and ordering of columns wi= th Firefox 4 > -------------------------------------------------------------------------= ------------ > > Key: RF-11017 > URL: https://issues.jboss.org/browse/RF-11017 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-tables > Affects Versions: 4.1.0.Milestone1 > Environment: Tomcat6 and 7, Java 6, MyFaces 2.1.0-SNAPSHOT (28.05= .2011), RichFaces 4.1.0-SNAPSHOT (28.05.2011) > Reporter: Rene O > Assignee: Pavol Pitonak > Attachments: jsf2testcase.war > > > To reproduce the two issues, i have append a testcase: > Issue 1 (ordering): > 1. call http://localhost:8080/jsf2testcase/tableTest.jsf > 2. try to change the order of the columns (e.g. A,B,C -> B,A,C) > 3. after that, the scrollbar of the table disappears > Note, that this issue appears with Firefox 4.0.1, but not with IE8 > Issue 2 (resizing): > 1. call http://localhost:8080/jsf2testcase/tableTestB.jsf > 2. click button to show table B > 3. try to resize the column width of table B > 4. resizing doesn't work in table B, but if you try to resize the column = width of table A, it will work. So it must be a bug. > Note, that this issue appears with Firefox 4.0.1, but not with 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 --===============3068228597014647678==-- From jira-events at lists.jboss.org Tue Jan 31 11:15:51 2012 Content-Type: multipart/mixed; boundary="===============3389661212030133887==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11915) MenuGroup with all items disabled or no items causes JS error Date: Tue, 31 Jan 2012 11:15:50 -0500 Message-ID: <2070853.11534.1328026550995.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2107920490.18850.1327404678300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3389661212030133887== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11915?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11915: ------------------------------- Fix Version/s: 4.3-Tracking = > MenuGroup with all items disabled or no items causes JS error > ------------------------------------------------------------- > > Key: RF-11915 > URL: https://issues.jboss.org/browse/RF-11915 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Environment: Tomcat 6.0.26, MyFaces 2.1.13, RichFaces > Reporter: J=C3=A1n Hala=C5=A1a > Assignee: Brian Leathem > Fix For: 4.3-Tracking > > > Submenu (r:menuGroup) containing only disabled items or no items, causes = a JavaScript error when it is supposed to get hidden (moving cursor to the = next item in the parent menu). > In Firefox 9: > {quote} > parentMenu is undefined > menu-base.js, line 126 > {quote} > In MSIE 7: > {quote} > 'nodeType' is null or not an object > richfaces.js, line 43 > {quote} > It's the same error only reported from the different level of the call st= ack. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3389661212030133887==-- From jira-events at lists.jboss.org Tue Jan 31 11:35:48 2012 Content-Type: multipart/mixed; boundary="===============0607695128402493354==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11888) Resource Servlet can't handle query string appended to resource url Date: Tue, 31 Jan 2012 11:35:48 -0500 Message-ID: <1979463481.11674.1328027748595.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0607695128402493354== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12663108#com= ment-12663108 ] = Brian Leathem commented on RF-11888: ------------------------------------ Brendan, there are two paths forward: # close this ticket as the RichFaces version in thi URL is sufficient for y= our use case # add a version (v) attribute to the list of attributes pared by the Resour= ceServlet Since you opened this ticket, can you indicate which direction you would pr= efer it to proceed? = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > Priority: Critical > Labels: waiting_on_user > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. > This is essential to cause a browser to issue a request to the server if = a static > resource is held in a browser cache and is not expired, but you've upgrad= ed the > richfaces version. You have to have a way to invalidate the cache, and I'= m not > seeing how this can be done in a sensible way. You can set the Cache-Cont= rol > no-cache header, but I'd need to do this in a way that says "I've just up= graded > richfaces, so don't use the cache, issue a request to the server for the = resource, > but cache the result and use this until the next time". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0607695128402493354==-- From jira-events at lists.jboss.org Tue Jan 31 11:37:49 2012 Content-Type: multipart/mixed; boundary="===============3369037927566129541==" MIME-Version: 1.0 From: Brian Leathem (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: Tue, 31 Jan 2012 11:37:48 -0500 Message-ID: <1937720914.11687.1328027868738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3369037927566129541== 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 ] Brian Leathem reassigned RF-11905: ---------------------------------- Assignee: Juraj Huska Juraj, so are you saying this is still a problem with JBoss AS 7.1? I thou= ght from the linked AS7 issue that it had been resolved with AS 7.1. = > 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: Juraj Huska > Priority: Minor > > 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 =20 --===============3369037927566129541==-- From jira-events at lists.jboss.org Tue Jan 31 11:37:49 2012 Content-Type: multipart/mixed; boundary="===============1528097291893093672==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11890) ResourceServlet does not set HTTP headers for caching Date: Tue, 31 Jan 2012 11:37:48 -0500 Message-ID: <1106050137.11678.1328027868457.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 896407184.2481.1326733518446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1528097291893093672== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11890?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11890: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Forum Reference: https://community.jboss.org/message/646969#646969 (wa= s: https://community.jboss.org/message/646969#646969) Lukas, I thought we discussed this issue, and found it to be the result of = a local setting in your browser? = > ResourceServlet does not set HTTP headers for caching > ----------------------------------------------------- > > Key: RF-11890 > URL: https://issues.jboss.org/browse/RF-11890 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > {quote} > All RichFaces resources served by Faces Servlet have headers set appropri= ately for caching. > (You can check it by removing your Filter and turning resourceMapping=3Df= alse). > = > I assume you have problems with ResourceServlet where resources does not = go through RichFaces ResourceHandler, so headers are set as for any other J= SF resource - which means (AFAIK) no caching at all. > {quote} > This assumption needs to be verified before implementing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1528097291893093672==-- From jira-events at lists.jboss.org Tue Jan 31 11:47:48 2012 Content-Type: multipart/mixed; boundary="===============0067592135472952922==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11923) rich:contextMenu - option to render context menu under mouse focus Date: Tue, 31 Jan 2012 11:47:48 -0500 Message-ID: <381491693.11734.1328028468834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1041095407.3568.1327593589409.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0067592135472952922== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11923?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11923: ------------------------------- Fix Version/s: 4.3-Tracking Component/s: (was: component) (was: base functionality ) (was: showcase) Rather than make this the default bahaviour (which I think will annoy those= expecting the traditional windows behaviour for contextMenus), we could ad= d an offsetX and offsetY attribute to the contextMenu, to control the initi= al menu placement. = > rich:contextMenu - option to render context menu under mouse focus > ------------------------------------------------------------------ > > Key: RF-11923 > URL: https://issues.jboss.org/browse/RF-11923 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Final > Reporter: Juraj Huska > Priority: Optional > Fix For: 4.3-Tracking > > > It would be nice IMHO to have an option to render context menu right unde= r the mouse focus, like it is for example done in GNOME environment. So whe= n user triggers context menu, then he will not need to move his mouse to se= lect first option, but it will be enough just to click to have selected fir= st option, since that option will be rendered under mouse focus. > Nice use case for this is for example demo for rich:context menu from sho= wcase, where only one menu item is in context menu, and takes some time to = move the mouse on that option. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0067592135472952922==-- From jira-events at lists.jboss.org Tue Jan 31 11:47:49 2012 Content-Type: multipart/mixed; boundary="===============4748588607226535689==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11924) showcase - rich:context - tree ContextMenu - header of popup should be bigger Date: Tue, 31 Jan 2012 11:47:48 -0500 Message-ID: <28966757.11736.1328028468936.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 259195289.3587.1327594548872.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4748588607226535689== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11924?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11924: ------------------------------- Fix Version/s: 4.3-Tracking Assignee: Brian Leathem Component/s: (was: component-output) (was: component-panels-layout-themes) (was: skinning) = > showcase - rich:context - tree ContextMenu - header of popup should be bi= gger > -------------------------------------------------------------------------= ---- > > Key: RF-11924 > URL: https://issues.jboss.org/browse/RF-11924 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, showcase > Affects Versions: 4.1.0.Final > Environment: showcase app - 4.2.0-SNAPSHOT > all browsers > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.3-Tracking > > Attachments: contextMenuPopup.png > > > *The header of the popup* invoked from contextMenu *in demos for rich:con= textMenu*, sample tree contextMenu *is* in some cases *too small*, and then= the cross for hiding the popup overlap with the header label. > It is when the body of the popup is small in width. For example it is so = when user select node USA, then the *header of popup adapts the size of bod= y*, and the problem is there. Please see the *screenshot* for further refer= ence. > So the header should have set fixed width. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4748588607226535689==-- From jira-events at lists.jboss.org Tue Jan 31 12:00:49 2012 Content-Type: multipart/mixed; boundary="===============4022280399652066537==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11928) showcase - client side validation demos - not rendered due to incompatible guava library Date: Tue, 31 Jan 2012 12:00:49 -0500 Message-ID: <481007270.11771.1328029249101.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4022280399652066537== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-11928: -------------------------------- Summary: showcase - client side validation demos - not rendere= d due to incompatible guava library Key: RF-11928 URL: https://issues.jboss.org/browse/RF-11928 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: compatibility, component-validators, core, showcase Affects Versions: 4.2.0.CR1 Environment: container: JBoss AS 7.0.2.Final browsers: all Reporter: Juraj Huska Accessing demos for client side validation in showcase, causes throwing an = error and not rendering the components at all. *Error:* {code} 16:13:19,788 INFO [javax.enterprise.resource.webcontainer.jsf.context] (ht= tp-localhost.localdomain-127.0.0.1-8080-1) Exception when handling error tr= ying to reset the response.: java.lang.NoSuchMethodError: com.google.common= .collect.ImmutableSet.copyOf(Ljava/util/Collection;)Lcom/google/common/coll= ect/ImmutableSet; at org.richfaces.renderkit.html.ClientOnlyScript.(ClientOnlyScrip= t.java:35) [richfaces-components-ui-4.2.0.CR1.jar:] at org.richfaces.renderkit.html.ClientValidatorRenderer.createValidator= Script(ClientValidatorRenderer.java:184) [richfaces-components-ui-4.2.0.CR1= .jar:] at org.richfaces.renderkit.html.ClientValidatorRenderer.createValidator= Script(ClientValidatorRenderer.java:154) [richfaces-components-ui-4.2.0.CR1= .jar:] at org.richfaces.renderkit.html.ClientValidatorRenderer.buildAndStoreVa= lidatorScript(ClientValidatorRenderer.java:125) [richfaces-components-ui-4.= 2.0.CR1.jar:] at org.richfaces.renderkit.html.ClientValidatorRenderer.getScript(Clien= tValidatorRenderer.java:60) [richfaces-components-ui-4.2.0.CR1.jar:] at javax.faces.component.behavior.ClientBehaviorBase.getScript(ClientBe= haviorBase.java:103) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at org.richfaces.component.behavior.ClientValidatorImpl.getScript(Clien= tValidatorImpl.java:91) [richfaces-components-ui-4.2.0.CR1.jar:] at com.sun.faces.renderkit.RenderKitUtils.getSingleBehaviorHandler(Rend= erKitUtils.java:1607) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.RenderKitUtils.renderHandler(RenderKitUtils.= java:1700) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.RenderKitUtils.renderOnchange(RenderKitUtils= .java:388) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.html_basic.TextRenderer.getEndTextToRender(T= extRenderer.java:134) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeEnd(HtmlB= asicRenderer.java:170) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java= :875) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive= (HtmlBasicRenderer.java:312) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPS= HOT] at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRender= er.java:185) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridR= enderer.java:129) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase= .java:845) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1756) [= jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at org.richfaces.renderkit.RendererBase.renderChildren(RendererBase.jav= a:276) [richfaces-components-ui-4.2.0.CR1.jar:] at org.richfaces.renderkit.html.PanelRenderer.encodeEnd(PanelRenderer.j= ava:181) [richfaces-components-ui-4.2.0.CR1.jar:] at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java= :875) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1763) [= jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase= .java:845) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1756) [= jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1759) [= jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1759) [= jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderVie= w(FaceletViewHandlingStrategy.java:401) [jsf-impl-2.1.3-b02-jbossorg-2.jar:= 2.1.3-SNAPSHOT] at com.sun.faces.application.view.MultiViewHandler.renderView(MultiView= Handler.java:131) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWra= pper.java:288) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWra= pper.java:288) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePh= ase.java:121) [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.render(LifecycleImpl.java:139)= [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.render(Pers= istenceLifecycle.java:66) [classes:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jbos= s-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(App= licationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(Application= FilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conver= sationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:0= 2] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(App= licationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(Application= FilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapper= Valve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardContextValve.invoke(StandardContext= Valve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Sec= urityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.= Final] at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-w= eb-7.0.2.Final.jar:7.0.2.Final] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEm= CloserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.= java:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.= java:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVa= lve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.ja= va:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.jav= a:877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proc= ess(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:9= 52) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} The demos works fine on JBoss AS 7.1.0.CR1b. The thing is that the showcase deployment on *JBoss AS 7.0.2.Final* uses *g= uava-r6* shipped with container, and deployment on *JBoss AS 7.1.0.CR1b use= s shipped guava-10.0.1.* So it should be set in jboss-deployment-structure.xml that application is b= ringing it own guava. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4022280399652066537==-- From jira-events at lists.jboss.org Tue Jan 31 12:16:48 2012 Content-Type: multipart/mixed; boundary="===============7087060215933482379==" 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: Tue, 31 Jan 2012 12:16:48 -0500 Message-ID: <1693882071.11789.1328030208600.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7087060215933482379== 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=3D12663119#com= ment-12663119 ] = Juraj Huska commented on RF-11905: ---------------------------------- Sorry for not including this essential info but it does not work without wo= rkaround event on JBoss AS 7.1.0.CR1b. = I am trying to ask Jozef Hartinger, how he solved this issue. = > 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: Juraj Huska > Priority: Minor > > 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 =20 --===============7087060215933482379==-- From jira-events at lists.jboss.org Tue Jan 31 13:35:48 2012 Content-Type: multipart/mixed; boundary="===============4682419380089868857==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11929) showcase - a4j:actionListener - move commandButtons from panelGrid to make it look better Date: Tue, 31 Jan 2012 13:35:48 -0500 Message-ID: <1893744032.11917.1328034948546.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4682419380089868857== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-11929: -------------------------------- Summary: showcase - a4j:actionListener - move commandButtons f= rom panelGrid to make it look better Key: RF-11929 URL: https://issues.jboss.org/browse/RF-11929 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component-a4j-core, showcase Affects Versions: 4.2.0.CR1 Environment: all containers all browsers Reporter: Juraj Huska Priority: Trivial In demo for a4j:actionListener there are commandButtons included in the pan= elGrid together with panel which they generate. Invoking listener by type(middle command button) causes that the rendered p= anel is enlarged, and since the buttons are in the same panelGrid they are = moved too, which looks weird. IMHO their should be moved from that panelGrid to be independent on the wid= th of generated message. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4682419380089868857==-- From jira-events at lists.jboss.org Tue Jan 31 13:40:48 2012 Content-Type: multipart/mixed; boundary="===============0216412085329879589==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11930) showcase - a4j:actionListener - typo in demo description Date: Tue, 31 Jan 2012 13:40:48 -0500 Message-ID: <1104931443.11919.1328035248356.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0216412085329879589== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-11930: -------------------------------- Summary: showcase - a4j:actionListener - typo in demo descript= ion Key: RF-11930 URL: https://issues.jboss.org/browse/RF-11930 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-a4j-core, showcase Affects Versions: 4.2.0.CR1 Environment: all containers all browsers Reporter: Juraj Huska Priority: Minor In the demo for a4j:actionListener there is a typo in demo description. It = is in the description to second way of attaching of actionListener. ??2. By listerner class, using the type attribute.?? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0216412085329879589==-- From jira-events at lists.jboss.org Tue Jan 31 16:31:49 2012 Content-Type: multipart/mixed; boundary="===============8603546956979151039==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11931) The generated VDL doc should include a column displaying the default value of an attribute Date: Tue, 31 Jan 2012 16:31:48 -0500 Message-ID: <155690999.12218.1328045508320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8603546956979151039== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11931: ---------------------------------- Summary: The generated VDL doc should include a column display= ing the default value of an attribute Key: RF-11931 URL: https://issues.jboss.org/browse/RF-11931 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: cdk, doc Reporter: 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 --===============8603546956979151039==-- From jira-events at lists.jboss.org Tue Jan 31 16:33:48 2012 Content-Type: multipart/mixed; boundary="===============7985946973884200240==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11931) The generated VDL doc should include a column displaying the default value of an attribute Date: Tue, 31 Jan 2012 16:33:48 -0500 Message-ID: <129091588.12220.1328045628383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 155690999.12218.1328045508320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7985946973884200240== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11931?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11931: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix Version/s: 4.2.0.Final Lukas, assigning to you for your feedback on the idea. = > The generated VDL doc should include a column displaying the default valu= e of an attribute > -------------------------------------------------------------------------= ----------------- > > Key: RF-11931 > URL: https://issues.jboss.org/browse/RF-11931 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: cdk, doc > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.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 = --===============7985946973884200240==--
State Footer Capital Footer
Footer
> State Footer > > Capital Footer<= /span> >
> Footer >
> index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur] RichFaces.ui.Menu(...":"MenuForm:mainToolBar"} )= ; > index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 85) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > {code} > more over there is many CSS errors/warning > {code} > L'utilisation de getAttributeNodeNS() est obsol=C3=A8te. Utilisez getAttr= ibuteNS() =C3=A0 la place. > Une fin de valeur =C3=A9tait attendue, mais =C2=AB "#E5973E " =C2=BB a = =C3=A9t=C3=A9 trouv=C3=A9. Erreur d'analyse de la valeur pour =C2=AB border= =C2=BB. D=C3=A9claration abandonn=C3=A9e. > *.rf-insl-tt{position:absolute;display..."#E5973E ";background-color:#FAE= 6B0;} > packed.css (ligne 108) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-fu-inp{filter:alpha(opacity=3D0);fo...y:0;position:absolute;right:0;= top:0;} > packed.css (ligne 158) > Propri=C3=A9t=C3=A9 =C2=AB text-color =C2=BB inconnue. D=C3=A9claration a= bandonn=C3=A9e. > *.rf-fu-itm-st{display:none;margin-top...000;background-color:#fff;paddin= g:0;} > packed.css (ligne 164) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-tab-cnt{border:1px solid #C4C0B9;...opacity:.1;filter:alpha(opacity= =3D10);} > packed.css (ligne 184) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shade{position:fixed;width:100...opacity:.5;filter:alpha(opacity= =3D50);} > packed.css (ligne 185) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shdw{background-color:#000;opa...6px;left:6px;bottom:-6px;z-index= :-1;} > packed.css (ligne 186) > Propri=C3=A9t=C3=A9 =C2=AB repeat-x =C2=BB inconnue. D=C3=A9claration aba= ndonn=C3=A9e. > *.rf-pp-hdr{background:url(../org.rich...g-left:10px;cursor:move;padding:= 2px;} > packed.css (ligne 188) > Erreur d'analyse de la valeur pour =C2=AB font-size =C2=BB. D=C3=A9clarat= ion abandonn=C3=A9e. > *.rf-cal-sp-inp{border:0;padding:0 0 0...Arial,Verdana,sans-serif;width:1= 8px;} > packed.css (ligne 354) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-shdw{background:#FFF;opacity:.5;filter:alpha(opacity=3D50);} > packed.css (ligne 369) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-layout-shdw{background-c...opacity:.3;filter:alpha(opacity= =3D30);} = > {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 = --===============9072432252218550213==-- From jira-events at lists.jboss.org Thu Jan 5 23:00:09 2012 Content-Type: multipart/mixed; boundary="===============2363354734125040551==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11805) a4j:queue onerror doesn't seem to work Date: Thu, 05 Jan 2012 23:00:09 -0500 Message-ID: <452026625.44481.1325822409466.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1117998666.86597.1323452020759.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2363354734125040551== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11805?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11805: ------------------------------- Labels: waiting_on_user (was: ) Assignee: (was: Brian Leathem) Forum Reference: http://community.jboss.org/message/634654#634654 (was= : http://community.jboss.org/message/634654#634654) Brendan, can you try clicking on the button a second time, to see if the ex= pected behavior is then achieved? This would confirm that it is indeed rel= ated to RF-9118. = > a4j:queue onerror doesn't seem to work > -------------------------------------- > > Key: RF-11805 > URL: https://issues.jboss.org/browse/RF-11805 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR2 > Reporter: Brendan Healey > Labels: waiting_on_user > > I was just testing some 'global' ajax error handling code. I put an > outside a form, then forced an ajax error like this: > = > > > > = > public void forceAjaxError(AjaxBehaviorEvent event) { > getResponse().setStatus(501); > } > = > public HttpServletResponse getResponse() { > return (HttpServletResponse) FacesContext.getCurrentInstance().ge= tExternalContext().getResponse(); > } > = > so I click into and out of the input, the ajax POST request completes wit= h a 501 status but no alert is shown. > I just tried it with a4j:status and this does pick up 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 --===============2363354734125040551==-- From jira-events at lists.jboss.org Thu Jan 5 23:02:09 2012 Content-Type: multipart/mixed; boundary="===============8690751753894397093==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11828) showcase - rich:inplaceInput - entering value does not work Date: Thu, 05 Jan 2012 23:02:09 -0500 Message-ID: <1405179926.44483.1325822529368.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 727507047.21455.1324316289442.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8690751753894397093== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11828?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11828: ------------------------------- Fix Version/s: 4.1.1.Final Assignee: (was: Brian Leathem) Possibly related to other component breakages in the showcase when the hotk= ey was introduced. = > showcase - rich:inplaceInput - entering value does not work > ----------------------------------------------------------- > > Key: RF-11828 > URL: https://issues.jboss.org/browse/RF-11828 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Affects Versions: 4.1.0.Final > Environment: richfaces-showcase 4.1.1-SNAPSHOT > all containers > all browsers > Reporter: Juraj Huska > Priority: Minor > Fix For: 4.1.1.Final > > > *Submitting* the value of rich:inplaceInput does not work *by pressing th= e enter key* as it should. = > When I *click outside* of the component then the value of *input is edite= d correctly*. = > This issue is occurring from 4.1.1-SNAPSHOT showcase version. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8690751753894397093==-- From jira-events at lists.jboss.org Fri Jan 6 05:40:10 2012 Content-Type: multipart/mixed; boundary="===============8358012907748597007==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11851) rich:hotKey - add support for onkeypress, onkeydown and onkeyup Date: Fri, 06 Jan 2012 05:40:09 -0500 Message-ID: <1300250042.44849.1325846409481.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2116883574.29436.1324557550117.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8358012907748597007== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11851?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11851. ----------------------------- Resolution: Done = > rich:hotKey - add support for onkeypress, onkeydown and onkeyup > --------------------------------------------------------------- > > Key: RF-11851 > URL: https://issues.jboss.org/browse/RF-11851 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.1.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Labels: needs-qe > Fix For: 4.1.1.Final > > > The binding will be done only for such types which have defined some hand= ler. > This will mean removing {{@type}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8358012907748597007==-- From jira-events at lists.jboss.org Fri Jan 6 06:02:10 2012 Content-Type: multipart/mixed; boundary="===============5225244551034355297==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11837) Hot key: onkeypress attribute doesn't work with special keys Date: Fri, 06 Jan 2012 06:02:09 -0500 Message-ID: <1691511377.44870.1325847729489.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1275549371.24421.1324389250026.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5225244551034355297== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11837?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11837: ---------------------------- Summary: Hot key: onkeypress attribute doesn't work with special keys = (was: Hot key: type attribute doesn't work when set to keypress) = > Hot key: onkeypress attribute doesn't work with special keys > ------------------------------------------------------------ > > Key: RF-11837 > URL: https://issues.jboss.org/browse/RF-11837 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/simple.xhtml > # press Ctrl+X = > # set attribute type=3Dkeypress > # press Ctrl+X > result: > * first action is executed, second 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 = --===============5225244551034355297==-- From jira-events at lists.jboss.org Fri Jan 6 06:08:13 2012 Content-Type: multipart/mixed; boundary="===============4763478972815248521==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11837) Hot key: onkeypress attribute doesn't work with special keys Date: Fri, 06 Jan 2012 06:08:09 -0500 Message-ID: <739790552.44874.1325848089559.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1275549371.24421.1324389250026.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4763478972815248521== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11837?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654248#com= ment-12654248 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11837: --------------------------------- Problem is with {{jquery.hotkeys.js}} plugin which does not observe {{keypr= ess}} event when special key is hold ([there is issue managed outside of up= stream|https://github.com/tzuryby/jquery.hotkeys/issues/7]). I'm not suggesting to go more deeply, since plugin itself is not addressing= this issue. We should either * *document that special keys can't be used* with {{keypress}} * or rather *remove this attribute at all* ** it can be replaced with {{keyup}} = > Hot key: onkeypress attribute doesn't work with special keys > ------------------------------------------------------------ > > Key: RF-11837 > URL: https://issues.jboss.org/browse/RF-11837 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/simple.xhtml > # press Ctrl+X = > # set attribute type=3Dkeypress > # press Ctrl+X > result: > * first action is executed, second 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 = --===============4763478972815248521==-- From jira-events at lists.jboss.org Fri Jan 6 06:19:10 2012 Content-Type: multipart/mixed; boundary="===============1822009496240227560==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11839) Hot key doesn't work when focus in on editor Date: Fri, 06 Jan 2012 06:19:10 -0500 Message-ID: <199455277.44894.1325848750021.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 334225743.24536.1324390329689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1822009496240227560== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11839?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654251#com= ment-12654251 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11839: --------------------------------- We would need to go step deeper and when {{hotKey}} is bound to editor, it = would be necessary to register this event in {{iframe}} used by editor. This is not as easy as it seems because {{selector}} can generically point = to the browser that we are not able to detect at server-side and furthermor= e, jQuery would be necessary to load into that {{iframe}}. {{Editor}} itself has support for hotkeys (using keystroke plugin), then in= tegration could be managed using [{{Editor}}'s API|http://docs.cksource.com= /ckeditor_api/symbols/src/plugins_keystrokes_plugin.js.html]. = > Hot key doesn't work when focus in on editor > -------------------------------------------- > > Key: RF-11839 > URL: https://issues.jboss.org/browse/RF-11839 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux x86_64, Firefox 8.0 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/editor.xhtml > # press Ctrl+X (to focus on editor) > # press Alt+X (to blur from editor) > result: > * when Ctrl+X is pressed, focus is in editor > * when Alt+X is pressed, nothing happens (editor should no longer be focu= sed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1822009496240227560==-- From jira-events at lists.jboss.org Fri Jan 6 06:21:09 2012 Content-Type: multipart/mixed; boundary="===============0165537855327588664==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11839) Hot key doesn't work when focus in on editor Date: Fri, 06 Jan 2012 06:21:09 -0500 Message-ID: <1739280549.44900.1325848869622.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 334225743.24536.1324390329689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0165537855327588664== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11839?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11839: ---------------------------- Workaround Description: Use CKEditor's [keyStroke handler|http://docs.c= ksource.com/ckeditor_api/symbols/CKEDITOR.keystrokeHandler.html] to handle = key events when editor focus. Workaround: Workaround Exists = > Hot key doesn't work when focus in on editor > -------------------------------------------- > > Key: RF-11839 > URL: https://issues.jboss.org/browse/RF-11839 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux x86_64, Firefox 8.0 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/editor.xhtml > # press Ctrl+X (to focus on editor) > # press Alt+X (to blur from editor) > result: > * when Ctrl+X is pressed, focus is in editor > * when Alt+X is pressed, nothing happens (editor should no longer be focu= sed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0165537855327588664==-- From jira-events at lists.jboss.org Fri Jan 6 06:23:10 2012 Content-Type: multipart/mixed; boundary="===============8731535315208563100==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11839) Hot key doesn't work when focus in on editor Date: Fri, 06 Jan 2012 06:23:10 -0500 Message-ID: <2009166673.44917.1325848990733.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 334225743.24536.1324390329689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8731535315208563100== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11839?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11839. ----------------------------- Fix Version/s: (was: 4.1.1.Final) Resolution: Rejected I'm rejecting this issue since proposed solutions are too complex and singl= e-purpose, and furthermore workaround for the issue exists. Limitation will be documented in scope of RFPL-1955. = > Hot key doesn't work when focus in on editor > -------------------------------------------- > > Key: RF-11839 > URL: https://issues.jboss.org/browse/RF-11839 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux x86_64, Firefox 8.0 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/editor.xhtml > # press Ctrl+X (to focus on editor) > # press Alt+X (to blur from editor) > result: > * when Ctrl+X is pressed, focus is in editor > * when Alt+X is pressed, nothing happens (editor should no longer be focu= sed) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8731535315208563100==-- From jira-events at lists.jboss.org Fri Jan 6 07:55:10 2012 Content-Type: multipart/mixed; boundary="===============8649430563857450393==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11824) rich:hotKey - add option to prevent default event handling Date: Fri, 06 Jan 2012 07:55:10 -0500 Message-ID: <1957515992.45397.1325854510475.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2043524135.17961.1324056189409.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8649430563857450393== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11824?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11824. ----------------------------- Resolution: Done Added {{preventDefault}} option, {{true}} by default. = > rich:hotKey - add option to prevent default event handling > ---------------------------------------------------------- > > Key: RF-11824 > URL: https://issues.jboss.org/browse/RF-11824 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.1.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.1.Final > > > Some hot-keys are triggering default event handling ({{ctrl+a}}, {{page-u= p}}, etc.), > we may try to prevent this behavior, however it is not as simple as {{eve= nt.preventDefault()}} or {{return false;}}. > *_Please vote on issue if you would like to having this issue 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 = --===============8649430563857450393==-- From jira-events at lists.jboss.org Fri Jan 6 07:57:09 2012 Content-Type: multipart/mixed; boundary="===============0514112824607561929==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11837) Hot key: remove onkeypress attribute since it doesn't work with special keys and breaks compatibility with other onkeyup/onkeydown Date: Fri, 06 Jan 2012 07:57:09 -0500 Message-ID: <767209437.45402.1325854629786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1275549371.24421.1324389250026.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0514112824607561929== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11837?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11837: ---------------------------- Summary: Hot key: remove onkeypress attribute since it doesn't work wit= h special keys and breaks compatibility with other onkeyup/onkeydown (was:= Hot key: onkeypress attribute doesn't work with special keys) = > Hot key: remove onkeypress attribute since it doesn't work with special k= eys and breaks compatibility with other onkeyup/onkeydown > -------------------------------------------------------------------------= --------------------------------------------------------- > > Key: RF-11837 > URL: https://issues.jboss.org/browse/RF-11837 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/simple.xhtml > # press Ctrl+X = > # set attribute type=3Dkeypress > # press Ctrl+X > result: > * first action is executed, second 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 = --===============0514112824607561929==-- From jira-events at lists.jboss.org Fri Jan 6 07:59:09 2012 Content-Type: multipart/mixed; boundary="===============9097178438488943102==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11837) Hot key: remove onkeypress attribute since it doesn't work with special keys and breaks compatibility with other onkeyup/onkeydown Date: Fri, 06 Jan 2012 07:59:09 -0500 Message-ID: <783490908.45425.1325854749400.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1275549371.24421.1324389250026.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9097178438488943102== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11837?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11837. ----------------------------- Resolution: Done = > Hot key: remove onkeypress attribute since it doesn't work with special k= eys and breaks compatibility with other onkeyup/onkeydown > -------------------------------------------------------------------------= --------------------------------------------------------- > > Key: RF-11837 > URL: https://issues.jboss.org/browse/RF-11837 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/simple.xhtml > # press Ctrl+X = > # set attribute type=3Dkeypress > # press Ctrl+X > result: > * first action is executed, second 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 = --===============9097178438488943102==-- From jira-events at lists.jboss.org Fri Jan 6 08:40:10 2012 Content-Type: multipart/mixed; boundary="===============2687117308633977069==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11840) jquery.hotkeys.js prevents pickList to observe key events Date: Fri, 06 Jan 2012 08:40:10 -0500 Message-ID: <1851651379.45604.1325857210435.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1746550578.24557.1324390689563.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2687117308633977069== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11840?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11840: ---------------------------- Summary: jquery.hotkeys.js prevents pickList to observe key events (wa= s: Hot key: arrow keys do not work in pick/ordering list when hot key is on= page) = > jquery.hotkeys.js prevents pickList to observe key events > --------------------------------------------------------- > > Key: RF-11840 > URL: https://issues.jboss.org/browse/RF-11840 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3-b02 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/pickList.xhtml > # click into pick list to select third item (Phoenix, Arizona) > # press arrow down > result: > * the following item in pick list should be selected (Little Rock, Arkans= as) but browser scrolls the page instead > * when rich:hotKey is removed from page, arrows down/up start working aga= in > * there is the same problem with *ordering 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 = --===============2687117308633977069==-- From jira-events at lists.jboss.org Fri Jan 6 08:42:09 2012 Content-Type: multipart/mixed; boundary="===============5801621863063172957==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11840) jquery.hotkeys.js prevents pickList to observe key events Date: Fri, 06 Jan 2012 08:42:09 -0500 Message-ID: <100013576.45621.1325857329556.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1746550578.24557.1324390689563.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5801621863063172957== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11840?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654297#com= ment-12654297 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11840: --------------------------------- {{rich:hotKey}} does not have to be on page to reproduce issue, it's enough to include {{jquery.hotkeys.js}} script in the page: {code:XML} {code} = > jquery.hotkeys.js prevents pickList to observe key events > --------------------------------------------------------- > > Key: RF-11840 > URL: https://issues.jboss.org/browse/RF-11840 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3-b02 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/pickList.xhtml > # click into pick list to select third item (Phoenix, Arizona) > # press arrow down > result: > * the following item in pick list should be selected (Little Rock, Arkans= as) but browser scrolls the page instead > * when rich:hotKey is removed from page, arrows down/up start working aga= in > * there is the same problem with *ordering 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 = --===============5801621863063172957==-- From jira-events at lists.jboss.org Fri Jan 6 09:26:10 2012 Content-Type: multipart/mixed; boundary="===============6166539766176587005==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11863) showcase - rich:hotKey - mistake in demo description Date: Fri, 06 Jan 2012 09:26:10 -0500 Message-ID: <261336216.45940.1325859970899.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1960056587.38881.1325672830689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6166539766176587005== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11863?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11863. ----------------------------- Resolution: Done Used *Home* and *End* instead of arrows. = > showcase - rich:hotKey - mistake in demo description > ---------------------------------------------------- > > Key: RF-11863 > URL: https://issues.jboss.org/browse/RF-11863 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, examples, showcase > Affects Versions: 4.1.1.Final > Environment: showcase 4.1.1-SNAPSHOT > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.1.1.Final > > > In the demo description is said: ??Press Home or End buttons in order to = move all items between lists.?? > However, for this action (moving all items), the 'ctrl+right' and 'ctrl+l= eft' shortcuts are bound. > The demo description should be updated according to current bindings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6166539766176587005==-- From jira-events at lists.jboss.org Fri Jan 6 09:28:09 2012 Content-Type: multipart/mixed; boundary="===============2451539053700153660==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11840) jquery.hotkeys.js prevents pickList to observe key events Date: Fri, 06 Jan 2012 09:28:09 -0500 Message-ID: <959600165.45944.1325860089551.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1746550578.24557.1324390689563.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2451539053700153660== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11840?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11840. ----------------------------- Resolution: Done Sanitized {{jquery.hotkeys.js}} to do not wrap handler when no {{options.ke= y}} provided in {{jQuery.bind('key', options);}} = > jquery.hotkeys.js prevents pickList to observe key events > --------------------------------------------------------- > > Key: RF-11840 > URL: https://issues.jboss.org/browse/RF-11840 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT > Mojarra 2.1.3-b02 > JBoss AS 7.1.0.Beta1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richHotKey/pickList.xhtml > # click into pick list to select third item (Phoenix, Arizona) > # press arrow down > result: > * the following item in pick list should be selected (Little Rock, Arkans= as) but browser scrolls the page instead > * when rich:hotKey is removed from page, arrows down/up start working aga= in > * there is the same problem with *ordering 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 = --===============2451539053700153660==-- From jira-events at lists.jboss.org Fri Jan 6 09:32:10 2012 Content-Type: multipart/mixed; boundary="===============4882184203868096012==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11816) Notify stack: names of CSS classes do not follow naming conventions Date: Fri, 06 Jan 2012 09:32:10 -0500 Message-ID: <223497612.45978.1325860330421.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1667763817.10485.1323880569406.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4882184203868096012== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11816?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11816: ---------------------------- Priority: Major (was: Minor) Affects: Compatibility/Configuration = > Notify stack: names of CSS classes do not follow naming conventions > ------------------------------------------------------------------- > > Key: RF-11816 > URL: https://issues.jboss.org/browse/RF-11816 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > Notify stack has 4 CSS classes that do not follow naming conventions: > * rf-ntf-pos-topLeft > * rf-ntf-pos-topRight > * rf-ntf-pos-bottomLeft > * rf-ntf-pos-bottomRight > Compare with similar classes of popup panel: > * rf-pp-hndlr-tl > * rf-pp-hndlr-tr > * rf-pp-hndlr-bl > * rf-pp-hndlr-br -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4882184203868096012==-- From jira-events at lists.jboss.org Fri Jan 6 09:36:10 2012 Content-Type: multipart/mixed; boundary="===============3879868186011219060==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11615) Upgrade to JBoss Parent version 8 Date: Fri, 06 Jan 2012 09:36:10 -0500 Message-ID: <1375395871.46012.1325860570554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714858172.39799.1320059745985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3879868186011219060== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11615?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654326#com= ment-12654326 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11615: --------------------------------- {code} Tests in error: = testMarshal(org.richfaces.cdk.xmlconfig.testmodel.BehaviorBeanTest): JAXB= Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ValidatorBeanTest): JAX= B Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ConverterBeanTest): JAX= B Marshaller error generationTest(org.richfaces.cdk.xmlconfig.TaglibGeneratorVisitorTest): o= rg.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory [INFO] RichFaces CDK Generator ........................... FAILURE {code} = > Upgrade to JBoss Parent version 8 > --------------------------------- > > Key: RF-11615 > URL: https://issues.jboss.org/browse/RF-11615 > Project: RichFaces > Issue Type: Component Upgrade > 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 > Priority: Minor > Fix For: 4.1.1.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 = --===============3879868186011219060==-- From jira-events at lists.jboss.org Fri Jan 6 09:54:09 2012 Content-Type: multipart/mixed; boundary="===============7008504295798458837==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Issue_Comment_Edited=29_=28JIRA=29?= =?utf-8?q?_=3Cjira-events_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11615) Upgrade to JBoss Parent version 8 Date: Fri, 06 Jan 2012 09:54:09 -0500 Message-ID: <225717931.46059.1325861649718.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714858172.39799.1320059745985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7008504295798458837== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11615?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654326#com= ment-12654326 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11615 at 1/6/12 9:52 AM: --------------------------------------------------------- Following issue is brought by upgrade to of {{maven-surefire-plugin}} ({{2.= 5}} -> {{2.10}}), bug has been identified with plugin version {{2.9}}. Prob= lem is solved with latest version of plugin: {{2.11}}. {code} Tests in error: = testMarshal(org.richfaces.cdk.xmlconfig.testmodel.BehaviorBeanTest): JAXB= Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ValidatorBeanTest): JAX= B Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ConverterBeanTest): JAX= B Marshaller error generationTest(org.richfaces.cdk.xmlconfig.TaglibGeneratorVisitorTest): o= rg.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory [INFO] RichFaces CDK Generator ........................... FAILURE {code} = was (Author: lfryc): {code} Tests in error: = testMarshal(org.richfaces.cdk.xmlconfig.testmodel.BehaviorBeanTest): JAXB= Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ValidatorBeanTest): JAX= B Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ConverterBeanTest): JAX= B Marshaller error generationTest(org.richfaces.cdk.xmlconfig.TaglibGeneratorVisitorTest): o= rg.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory [INFO] RichFaces CDK Generator ........................... FAILURE {code} = > Upgrade to JBoss Parent version 8 > --------------------------------- > > Key: RF-11615 > URL: https://issues.jboss.org/browse/RF-11615 > Project: RichFaces > Issue Type: Component Upgrade > 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 > Priority: Minor > Fix For: 4.1.1.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 = --===============7008504295798458837==-- From jira-events at lists.jboss.org Fri Jan 6 10:02:09 2012 Content-Type: multipart/mixed; boundary="===============8986815878460514287==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Issue_Comment_Edited=29_=28JIRA=29?= =?utf-8?q?_=3Cjira-events_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11615) Upgrade to JBoss Parent version 8 Date: Fri, 06 Jan 2012 10:02:09 -0500 Message-ID: <347066272.46103.1325862129650.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714858172.39799.1320059745985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8986815878460514287== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11615?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654326#com= ment-12654326 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11615 at 1/6/12 10:00 AM: ---------------------------------------------------------- Following issue is brought by upgrade to of {{maven-surefire-plugin}} ({{2.= 5}} -> {{2.10}}), bug has been identified with plugin version {{2.9}}. Prob= lem is solved with latest version of plugin: {{2.11}}. {code} Tests in error: = testMarshal(org.richfaces.cdk.xmlconfig.testmodel.BehaviorBeanTest): JAXB= Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ValidatorBeanTest): JAX= B Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ConverterBeanTest): JAX= B Marshaller error generationTest(org.richfaces.cdk.xmlconfig.TaglibGeneratorVisitorTest): o= rg.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory [INFO] RichFaces CDK Generator ........................... FAILURE {code} Problem is probably related to: http://jira.codehaus.org/browse/SUREFIRE-801 = was (Author: lfryc): Following issue is brought by upgrade to of {{maven-surefire-plugin}} (= {{2.5}} -> {{2.10}}), bug has been identified with plugin version {{2.9}}. = Problem is solved with latest version of plugin: {{2.11}}. {code} Tests in error: = testMarshal(org.richfaces.cdk.xmlconfig.testmodel.BehaviorBeanTest): JAXB= Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ValidatorBeanTest): JAX= B Marshaller error testMarshal(org.richfaces.cdk.xmlconfig.testmodel.ConverterBeanTest): JAX= B Marshaller error generationTest(org.richfaces.cdk.xmlconfig.TaglibGeneratorVisitorTest): o= rg.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory [INFO] RichFaces CDK Generator ........................... FAILURE {code} = > Upgrade to JBoss Parent version 8 > --------------------------------- > > Key: RF-11615 > URL: https://issues.jboss.org/browse/RF-11615 > Project: RichFaces > Issue Type: Component Upgrade > 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 > Priority: Minor > Fix For: 4.1.1.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 = --===============8986815878460514287==-- From jira-events at lists.jboss.org Fri Jan 6 10:44:09 2012 Content-Type: multipart/mixed; boundary="===============3607819566297676953==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11808) Archetypes : remove the generation of *-source jars plumbing Date: Fri, 06 Jan 2012 10:44:09 -0500 Message-ID: <1639551280.46248.1325864649532.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1095649657.3045.1323708909608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3607819566297676953== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11808?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654346#com= ment-12654346 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11808: --------------------------------- These sources are assembled during release in order to package them in Rich= Faces distribution ({{build/dist/pom.xml}}). I don't think we should remove them from distribution since user's might us= e them. = > Archetypes : remove the generation of *-source jars plumbing > ------------------------------------------------------------ > > Key: RF-11808 > URL: https://issues.jboss.org/browse/RF-11808 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.1.0.CR2 > Reporter: Fred Bricon > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.1.1.Final > > > The RF archetypes have some configuration to create *-source jars. Since = the sources are already packaged in the actual archetype, this seems unnece= ssary, clutters the pom.xml and adds extra overhead to maintain the maven-a= ssembly-plugin configuration. > Unless there's a good reason to keep that boilerplate, my suggestion is t= o stop generating the *-source packages and clean up the pom.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 = --===============3607819566297676953==-- From jira-events at lists.jboss.org Fri Jan 6 10:44:09 2012 Content-Type: multipart/mixed; boundary="===============2265341450929434717==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Issue_Comment_Edited=29_=28JIRA=29?= =?utf-8?q?_=3Cjira-events_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11808) Archetypes : remove the generation of *-source jars plumbing Date: Fri, 06 Jan 2012 10:44:09 -0500 Message-ID: <997677781.46251.1325864649627.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1095649657.3045.1323708909608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2265341450929434717== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11808?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654346#com= ment-12654346 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11808 at 1/6/12 10:43 AM: ---------------------------------------------------------- These sources are assembled during release in order to package them in Rich= Faces distribution ({{build/dist/pom.xml}}). I don't think we should remove them from distribution since user's might us= e them to install to local repository. = was (Author: lfryc): These sources are assembled during release in order to package them in = RichFaces distribution ({{build/dist/pom.xml}}). I don't think we should remove them from distribution since user's might us= e them. = > Archetypes : remove the generation of *-source jars plumbing > ------------------------------------------------------------ > > Key: RF-11808 > URL: https://issues.jboss.org/browse/RF-11808 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.1.0.CR2 > Reporter: Fred Bricon > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.1.1.Final > > > The RF archetypes have some configuration to create *-source jars. Since = the sources are already packaged in the actual archetype, this seems unnece= ssary, clutters the pom.xml and adds extra overhead to maintain the maven-a= ssembly-plugin configuration. > Unless there's a good reason to keep that boilerplate, my suggestion is t= o stop generating the *-source packages and clean up the pom.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 = --===============2265341450929434717==-- From jira-events at lists.jboss.org Fri Jan 6 11:09:09 2012 Content-Type: multipart/mixed; boundary="===============1515443885938220576==" MIME-Version: 1.0 From: SBS JIRA Integration (Updated) (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, 06 Jan 2012 11:09:09 -0500 Message-ID: <1201845717.46313.1325866149658.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1515443885938220576== 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 ] SBS JIRA Integration updated RF-11739: -------------------------------------- Forum Reference: http://community.jboss.org/message/642770#642770, http= ://community.jboss.org/message/638045#638045 (was: 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 > Priority: Critical > Fix For: 4.1.1.Final, 4.2-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 = --===============1515443885938220576==-- From jira-events at lists.jboss.org Fri Jan 6 11:19:10 2012 Content-Type: multipart/mixed; boundary="===============5831103327845616508==" MIME-Version: 1.0 From: Brian Leathem (Issue Comment Edited) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11749) columnGroup does not work in extendedDataTable header facet Date: Fri, 06 Jan 2012 11:19:10 -0500 Message-ID: <276942840.46354.1325866750535.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1511398401.50702.1322577640646.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5831103327845616508== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11749?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12649057#com= ment-12649057 ] = Brian Leathem edited comment on RF-11749 at 1/6/12 11:18 AM: ------------------------------------------------------------- I used the same header in rich:extendedDataTable of before Richfaces 3.3.3= , it worked well. It seems the complex header is no problem in rich:dataTab= le. {code} {code} = was (Author: hantsy): I used the same header in rich:extendedDataTable of before Richfaces 3= .3.3, it worked well. It seems the complex header is no problem in rich:dat= aTable. = > columnGroup does not work in extendedDataTable header facet > ----------------------------------------------------------- > > Key: RF-11749 > URL: https://issues.jboss.org/browse/RF-11749 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: Richfaces 4.1CR1 > Reporter: hantsy bai > Labels: waiting_on_user > Attachments: extenedDataTable.png > > > columnGroup does not work in extendedDataTable header facet,Please refer = the forum post. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5831103327845616508==-- From jira-events at lists.jboss.org Fri Jan 6 11:25:09 2012 Content-Type: multipart/mixed; boundary="===============4795105371187752158==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11749) columnGroup does not work in extendedDataTable header facet Date: Fri, 06 Jan 2012 11:25:09 -0500 Message-ID: <458975261.46405.1325867109529.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1511398401.50702.1322577640646.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4795105371187752158== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11749?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11749: ------------------------------- Fix Version/s: 4.2-Tracking Labels: (was: waiting_on_user) Component/s: component-tables Forum Reference: http://community.jboss.org/thread/175491?tstart=3D0 (= was: http://community.jboss.org/thread/175491?tstart=3D0) = > columnGroup does not work in extendedDataTable header facet > ----------------------------------------------------------- > > Key: RF-11749 > URL: https://issues.jboss.org/browse/RF-11749 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Environment: Richfaces 4.1CR1 > Reporter: hantsy bai > Fix For: 4.2-Tracking > > Attachments: extenedDataTable.png > > > columnGroup does not work in extendedDataTable header facet,Please refer = the forum post. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4795105371187752158==-- From jira-events at lists.jboss.org Fri Jan 6 11:25:10 2012 Content-Type: multipart/mixed; boundary="===============0727788361582989704==" MIME-Version: 1.0 From: Brian Leathem (Resolved) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11753) faulty rendering of rich:dataTable and rich:collapsibleSubTable Date: Fri, 06 Jan 2012 11:25:10 -0500 Message-ID: <586105443.46414.1325867110100.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1052538550.53617.1322646160994.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0727788361582989704== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11753?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11753. -------------------------------- Labels: (was: waiting_on_user) Assignee: Brian Leathem Resolution: Out of Date Already fixed. = > faulty rendering of rich:dataTable and rich:collapsibleSubTable > --------------------------------------------------------------- > > Key: RF-11753 > URL: https://issues.jboss.org/browse/RF-11753 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables, regression > Affects Versions: 4.1.0.CR1 > Environment: Apache Tomcat 6.0 > Java 1.6.0_24 > Mojarra 2.1.2 > Reporter: Pavel Hofr=C3=ADk > Assignee: Brian Leathem > > a4j:commandLink launches action listener and render a4j:outputPanel. In t= his listener I change data that are displayed in a4j:outputPanel (There are= some h:outputTexts and rich:dataTable) > Problem is that data are succesfully changed in managed bean, all outputT= exts are rendered with changes, but not dataTable. When I render this outpu= tPanel again (with no changes in mb), table is succesfully rendered with pr= oper values. > There would be problem that dataTable holds reference to List in its valu= e, but I create new one, so referende is invalid. > Same problem goes to collapsibleSubTable > RF 4.1M3 and M4 were ok > code example is in http://community.jboss.org/message/638563 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0727788361582989704==-- From jira-events at lists.jboss.org Fri Jan 6 11:27:13 2012 Content-Type: multipart/mixed; boundary="===============7538632048409745261==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11615) Upgrade to JBoss Parent version 8 Date: Fri, 06 Jan 2012 11:27:12 -0500 Message-ID: <1484633542.46429.1325867233004.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714858172.39799.1320059745985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7538632048409745261== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11615?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11615. ----------------------------- Resolution: Done All issues incorporated by upgrade were solved. = > Upgrade to JBoss Parent version 8 > --------------------------------- > > Key: RF-11615 > URL: https://issues.jboss.org/browse/RF-11615 > Project: RichFaces > Issue Type: Component Upgrade > 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 > Priority: Minor > Fix For: 4.1.1.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 = --===============7538632048409745261==-- From jira-events at lists.jboss.org Fri Jan 6 11:43:09 2012 Content-Type: multipart/mixed; boundary="===============7770933011454595706==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Resolved=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11808) Archetypes : remove the generation of *-source jars plumbing Date: Fri, 06 Jan 2012 11:43:09 -0500 Message-ID: <804465527.46503.1325868189596.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1095649657.3045.1323708909608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7770933011454595706== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11808?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11808. ----------------------------- Resolution: Done = > Archetypes : remove the generation of *-source jars plumbing > ------------------------------------------------------------ > > Key: RF-11808 > URL: https://issues.jboss.org/browse/RF-11808 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.1.0.CR2 > Reporter: Fred Bricon > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.1.1.Final > > > The RF archetypes have some configuration to create *-source jars. Since = the sources are already packaged in the actual archetype, this seems unnece= ssary, clutters the pom.xml and adds extra overhead to maintain the maven-a= ssembly-plugin configuration. > Unless there's a good reason to keep that boilerplate, my suggestion is t= o stop generating the *-source packages and clean up the pom.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 = --===============7770933011454595706==-- From jira-events at lists.jboss.org Fri Jan 6 11:43:09 2012 Content-Type: multipart/mixed; boundary="===============1352154769458336654==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Commented=29_=28JIRA=29_=3Cjira-ev?= =?utf-8?q?ents_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11808) Archetypes : remove the generation of *-source jars plumbing Date: Fri, 06 Jan 2012 11:43:09 -0500 Message-ID: <1572929972.46501.1325868189492.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1095649657.3045.1323708909608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1352154769458336654== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11808?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654372#com= ment-12654372 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11808: --------------------------------- Ok, I have decided to package {{richfaces-archetype-simpleapp.jar}} as part= of the ZIP distribution of RichFaces. = > Archetypes : remove the generation of *-source jars plumbing > ------------------------------------------------------------ > > Key: RF-11808 > URL: https://issues.jboss.org/browse/RF-11808 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.1.0.CR2 > Reporter: Fred Bricon > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.1.1.Final > > > The RF archetypes have some configuration to create *-source jars. Since = the sources are already packaged in the actual archetype, this seems unnece= ssary, clutters the pom.xml and adds extra overhead to maintain the maven-a= ssembly-plugin configuration. > Unless there's a good reason to keep that boilerplate, my suggestion is t= o stop generating the *-source packages and clean up the pom.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 = --===============1352154769458336654==-- From jira-events at lists.jboss.org Fri Jan 6 13:33:09 2012 Content-Type: multipart/mixed; boundary="===============4355636725668933137==" MIME-Version: 1.0 From: SBS JIRA Integration (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11842) Support for macrosubstitutions in the contextMenu Date: Fri, 06 Jan 2012 13:33:09 -0500 Message-ID: <1008352534.46620.1325874789443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 846735312.26265.1324444329320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4355636725668933137== 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.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-11842: -------------------------------------- Forum Reference: http://community.jboss.org/message/645104#645104 = > 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.1.1.Final > Reporter: Brian Leathem > Fix For: 4.2-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 --===============4355636725668933137==-- From jira-events at lists.jboss.org Fri Jan 6 20:39:09 2012 Content-Type: multipart/mixed; boundary="===============1961841119867865555==" MIME-Version: 1.0 From: Andrew Wheeler (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11864) selectOneMenu with converter inside collapsiblePanel does not show correct value when switchType is ajax Date: Fri, 06 Jan 2012 20:39:09 -0500 Message-ID: <1856188393.47025.1325900349394.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1961841119867865555== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable selectOneMenu with converter inside collapsiblePanel does not show correct = value when switchType is ajax ---------------------------------------------------------------------------= ----------------------------- Key: RF-11864 URL: https://issues.jboss.org/browse/RF-11864 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.1.0.Final Environment: Linux, 7.0.2.Final, Seam 3.1.Final (faces, solder and= persistence) Reporter: Andrew Wheeler If the panel contents contain a selectOneMenu with a custom converter and t= he switchType is "ajax" then the correct option is not shown. If the switch= Type is changed to "client" then the correct option is displayed. In both i= nstances the converter function getAsString returns the correct value but i= t appears this is not used to mark the option as selected. {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 --===============1961841119867865555==-- From jira-events at lists.jboss.org Fri Jan 6 20:49:09 2012 Content-Type: multipart/mixed; boundary="===============2032577013964691500==" MIME-Version: 1.0 From: Andrew Wheeler (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11865) Partial build of component tree for lazy loaded components Date: Fri, 06 Jan 2012 20:49:09 -0500 Message-ID: <624327655.47030.1325900949445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2032577013964691500== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Partial build of component tree for lazy loaded components ---------------------------------------------------------- Key: RF-11865 URL: https://issues.jboss.org/browse/RF-11865 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Affects Versions: 4.1.0.Final Environment: Any Reporter: Andrew Wheeler Priority: Minor I often use collapsible panel with switchType=3D"ajax". This prevents the r= endering of the content until it is requested by the user. This however doe= s not prevent the component tree from being constructed. In one use-case th= e panel hides expensive to construct output from a JCR query. It would be n= ice if RichFaces could place a marker in the component tree and only constr= uct the child elements on the first request. This would improve page render= ing and memory usage considerably. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2032577013964691500==-- From jira-events at lists.jboss.org Fri Jan 6 23:54:09 2012 Content-Type: multipart/mixed; boundary="===============2904241476976387985==" MIME-Version: 1.0 From: Andrew Wheeler (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11864) selectOneMenu with converter inside collapsiblePanel does not show correct value when switchType is ajax Date: Fri, 06 Jan 2012 23:54:09 -0500 Message-ID: <1812068164.47063.1325912049457.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1856188393.47025.1325900349394.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2904241476976387985== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11864?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654461#com= ment-12654461 ] = Andrew Wheeler commented on RF-11864: ------------------------------------- Sorry, but this appears to be my problem. I had a mis-match between the sco= pe of the backing bean and the data used to produce the option lists. This = caused the the two values to "not equal" even though they naturally are. = > selectOneMenu with converter inside collapsiblePanel does not show correc= t value when switchType is ajax > -------------------------------------------------------------------------= ------------------------------- > > Key: RF-11864 > URL: https://issues.jboss.org/browse/RF-11864 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Linux, 7.0.2.Final, Seam 3.1.Final (faces, solder an= d persistence) > Reporter: Andrew Wheeler > Labels: ajax, lazy-loaded > > If the panel contents contain a selectOneMenu with a custom converter and= the switchType is "ajax" then the correct option is not shown. If the swit= chType is changed to "client" then the correct option is displayed. In both= instances the converter function getAsString returns the correct value but= it appears this is not used to mark the option as selected. > {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 --===============2904241476976387985==-- From jira-events at lists.jboss.org Fri Jan 6 23:54:10 2012 Content-Type: multipart/mixed; boundary="===============5469275913790951036==" MIME-Version: 1.0 From: Andrew Wheeler (Closed) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11864) selectOneMenu with converter inside collapsiblePanel does not show correct value when switchType is ajax Date: Fri, 06 Jan 2012 23:54:09 -0500 Message-ID: <1201163298.47065.1325912049528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1856188393.47025.1325900349394.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5469275913790951036== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11864?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Andrew Wheeler closed RF-11864. ------------------------------- Resolution: Done = > selectOneMenu with converter inside collapsiblePanel does not show correc= t value when switchType is ajax > -------------------------------------------------------------------------= ------------------------------- > > Key: RF-11864 > URL: https://issues.jboss.org/browse/RF-11864 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Linux, 7.0.2.Final, Seam 3.1.Final (faces, solder an= d persistence) > Reporter: Andrew Wheeler > Labels: ajax, lazy-loaded > > If the panel contents contain a selectOneMenu with a custom converter and= the switchType is "ajax" then the correct option is not shown. If the swit= chType is changed to "client" then the correct option is displayed. In both= instances the converter function getAsString returns the correct value but= it appears this is not used to mark the option as selected. > {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 --===============5469275913790951036==-- From jira-events at lists.jboss.org Mon Jan 9 04:46:15 2012 Content-Type: multipart/mixed; boundary="===============5937772163894204216==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Created=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11866) Push: Provide more useful message when subtopic does not meet criteria Date: Mon, 09 Jan 2012 04:46:15 -0500 Message-ID: <1682962725.47910.1326102375475.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5937772163894204216== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Push: Provide more useful message when subtopic does not meet criteria ---------------------------------------------------------------------- Key: RF-11866 URL: https://issues.jboss.org/browse/RF-11866 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: core Affects Versions: 4.1.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.1.1.Final See forums. https://github.com/richfaces/core/blob/develop/api/src/main/java/org/richfa= ces/application/push/TopicKey.java#L76 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5937772163894204216==-- From jira-events at lists.jboss.org Mon Jan 9 05:09:12 2012 Content-Type: multipart/mixed; boundary="===============4488869358721556307==" MIME-Version: 1.0 From: Juraj Huska (Closed) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11863) showcase - rich:hotKey - mistake in demo description Date: Mon, 09 Jan 2012 05:09:11 -0500 Message-ID: <917802285.48011.1326103751729.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1960056587.38881.1325672830689.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4488869358721556307== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11863?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11863. ---------------------------- Verified that text description is right now. = > showcase - rich:hotKey - mistake in demo description > ---------------------------------------------------- > > Key: RF-11863 > URL: https://issues.jboss.org/browse/RF-11863 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, examples, showcase > Affects Versions: 4.1.1.Final > Environment: showcase 4.1.1-SNAPSHOT > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.1.1.Final > > > In the demo description is said: ??Press Home or End buttons in order to = move all items between lists.?? > However, for this action (moving all items), the 'ctrl+right' and 'ctrl+l= eft' shortcuts are bound. > The demo description should be updated according to current bindings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4488869358721556307==-- From jira-events at lists.jboss.org Mon Jan 9 05:27:09 2012 Content-Type: multipart/mixed; boundary="===============6092948147220047723==" MIME-Version: 1.0 From: Juraj Huska (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11867) showcase - rich:hotKey - pressing of home or end key causes moving of whole page instead of just selected/removing all cities on FF 3.6.x Date: Mon, 09 Jan 2012 05:27:09 -0500 Message-ID: <1258943306.48046.1326104829526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6092948147220047723== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable showcase - rich:hotKey - pressing of home or end key causes moving of whole= page instead of just selected/removing all cities on FF 3.6.x ---------------------------------------------------------------------------= -------------------------------------------------------------- Key: RF-11867 URL: https://issues.jboss.org/browse/RF-11867 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component-misc, showcase Affects Versions: 4.1.1.Final Environment: container: Tomcat 7.0.20, JBoss AS 6.0.0.Final browser: Firefox 3.6.24 Reporter: Juraj Huska Priority: Minor The current binding for selecting/removing all cities in the demo for rich:= hotKey are 'home' and 'end' buttons respectively. It works as expected on Chrome and Firefox 8, however it is not working as = expected on *Firefox 3.6.x*. Pressing of 'home' of 'end' button (city is selected, so the pickList has u= ser focus) causes moving of the whole page, like the pickList has no focus.= The cities are added/removed too, but with the side effect of the page mov= ing, which indeed looks a little ugly. The workaround can be to use other keys. = What I would really appreciate is to bind some key to the switching between= the two panels. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6092948147220047723==-- From jira-events at lists.jboss.org Mon Jan 9 05:27:10 2012 Content-Type: multipart/mixed; boundary="===============1953927072817253387==" MIME-Version: 1.0 From: Juraj Huska (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11867) showcase - rich:hotKey - pressing of home or end key causes moving of whole page instead of just selected/removing all cities on FF 3.6.x Date: Mon, 09 Jan 2012 05:27:10 -0500 Message-ID: <1792275095.48050.1326104830051.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1258943306.48046.1326104829526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1953927072817253387== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11867?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11867: ----------------------------- Description: = The current binding for selecting/removing all cities in the demo for rich:= hotKey are 'home' and 'end' buttons respectively. It works as expected on Chrome and Firefox 8, however it is not working as = expected on *Firefox 3.6.x*. *Pressing of 'home' of 'end' button (city is selected, so the pickList has = user focus) causes moving of the whole page, like the pickList has no focus= . The cities are added/removed too, but with the side effect of the page mo= ving, which indeed looks a little ugly.* The workaround can be to use other keys. = What I would really appreciate is to bind some key to the switching between= the two panels. was: The current binding for selecting/removing all cities in the demo for rich:= hotKey are 'home' and 'end' buttons respectively. It works as expected on Chrome and Firefox 8, however it is not working as = expected on *Firefox 3.6.x*. Pressing of 'home' of 'end' button (city is selected, so the pickList has u= ser focus) causes moving of the whole page, like the pickList has no focus.= The cities are added/removed too, but with the side effect of the page mov= ing, which indeed looks a little ugly. The workaround can be to use other keys. = What I would really appreciate is to bind some key to the switching between= the two panels. = > showcase - rich:hotKey - pressing of home or end key causes moving of who= le page instead of just selected/removing all cities on FF 3.6.x > -------------------------------------------------------------------------= ---------------------------------------------------------------- > > Key: RF-11867 > URL: https://issues.jboss.org/browse/RF-11867 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.1.1.Final > Environment: container: Tomcat 7.0.20, JBoss AS 6.0.0.Final > browser: Firefox 3.6.24 > Reporter: Juraj Huska > Priority: Minor > > The current binding for selecting/removing all cities in the demo for ric= h:hotKey are 'home' and 'end' buttons respectively. > It works as expected on Chrome and Firefox 8, however it is not working a= s expected on *Firefox 3.6.x*. > *Pressing of 'home' of 'end' button (city is selected, so the pickList ha= s user focus) causes moving of the whole page, like the pickList has no foc= us. The cities are added/removed too, but with the side effect of the page = moving, which indeed looks a little ugly.* > The workaround can be to use other keys. = > What I would really appreciate is to bind some key to the switching betwe= en the two panels. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1953927072817253387==-- From jira-events at lists.jboss.org Mon Jan 9 05:43:10 2012 Content-Type: multipart/mixed; boundary="===============7720516430548835984==" MIME-Version: 1.0 From: Juraj Huska (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11868) showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3.6.x Date: Mon, 09 Jan 2012 05:43:10 -0500 Message-ID: <992167140.48074.1326105790453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7720516430548835984== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3.6= .x ---------------------------------------------------------------------------= -- Key: RF-11868 URL: https://issues.jboss.org/browse/RF-11868 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component-misc, showcase Affects Versions: 4.1.1.Final Environment: container: all browser: Firefox 3.6.x Reporter: Juraj Huska Priority: Minor Using of bound hot keys in the demo for rich:hotKey generates on Firefox 3.= 6.x a warning: {code} The 'charCode' property of a keydown event should not be used. The value is= meaningless. {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 --===============7720516430548835984==-- From jira-events at lists.jboss.org Mon Jan 9 05:47:09 2012 Content-Type: multipart/mixed; boundary="===============6353894823029221098==" MIME-Version: 1.0 From: Juraj Huska (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11868) showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3.6.x Date: Mon, 09 Jan 2012 05:47:09 -0500 Message-ID: <1642909258.48085.1326106029478.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 992167140.48074.1326105790453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6353894823029221098== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11868?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654548#com= ment-12654548 ] = Juraj Huska commented on RF-11868: ---------------------------------- It is generated due to JS, generated for rich:hotKey components. = > showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3= .6.x > -------------------------------------------------------------------------= ---- > > Key: RF-11868 > URL: https://issues.jboss.org/browse/RF-11868 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.1.1.Final > Environment: container: all > browser: Firefox 3.6.x > Reporter: Juraj Huska > Priority: Minor > > Using of bound hot keys in the demo for rich:hotKey generates on Firefox = 3.6.x a warning: > {code} > The 'charCode' property of a keydown event should not be used. The value = is meaningless. > {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 --===============6353894823029221098==-- From jira-events at lists.jboss.org Mon Jan 9 05:51:09 2012 Content-Type: multipart/mixed; boundary="===============3817778143369769249==" MIME-Version: 1.0 From: Juraj Huska (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11867) showcase - rich:hotKey - pressing of home or end key causes moving of whole page instead of just selected/removing all cities on FF 3.6.x Date: Mon, 09 Jan 2012 05:51:09 -0500 Message-ID: <1286122620.48092.1326106269425.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1258943306.48046.1326104829526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3817778143369769249== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11867?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654550#com= ment-12654550 ] = Juraj Huska commented on RF-11867: ---------------------------------- Just note that *it works fine with last stable FF. (9.0.1).* = > showcase - rich:hotKey - pressing of home or end key causes moving of who= le page instead of just selected/removing all cities on FF 3.6.x > -------------------------------------------------------------------------= ---------------------------------------------------------------- > > Key: RF-11867 > URL: https://issues.jboss.org/browse/RF-11867 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.1.1.Final > Environment: container: Tomcat 7.0.20, JBoss AS 6.0.0.Final > browser: Firefox 3.6.24 > Reporter: Juraj Huska > Priority: Minor > > The current binding for selecting/removing all cities in the demo for ric= h:hotKey are 'home' and 'end' buttons respectively. > It works as expected on Chrome and Firefox 8, however it is not working a= s expected on *Firefox 3.6.x*. > *Pressing of 'home' of 'end' button (city is selected, so the pickList ha= s user focus) causes moving of the whole page, like the pickList has no foc= us. The cities are added/removed too, but with the side effect of the page = moving, which indeed looks a little ugly.* > The workaround can be to use other keys. = > What I would really appreciate is to bind some key to the switching betwe= en the two panels. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3817778143369769249==-- From jira-events at lists.jboss.org Mon Jan 9 05:55:09 2012 Content-Type: multipart/mixed; boundary="===============6286285849147469811==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11827) showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT Date: Mon, 09 Jan 2012 05:55:09 -0500 Message-ID: <1402739973.48098.1326106509789.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 945549203.21383.1324314009775.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6286285849147469811== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11827?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11827: ---------------------------- Priority: Critical (was: Major) = > showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT > -------------------------------------------------------------------- > > Key: RF-11827 > URL: https://issues.jboss.org/browse/RF-11827 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Environment: richfaces showcase 4.1.1-SNAPSHOT > all containers > all brosers > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.1.Final > > > Demos for rich:autocomplete do not work, *whole functionality of autocomp= lete is broken somehow*. = > It is noticeable on *all containers* and on *all browsers*. = > It works fine on 4.1.0-SNAPSHOT showcase wars. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6286285849147469811==-- From jira-events at lists.jboss.org Mon Jan 9 06:01:11 2012 Content-Type: multipart/mixed; boundary="===============7555193319779101733==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Assigned=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11827) showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT Date: Mon, 09 Jan 2012 06:01:10 -0500 Message-ID: <709061735.48116.1326106870969.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 945549203.21383.1324314009775.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7555193319779101733== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11827?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11827: ------------------------------- Assignee: Juraj Huska (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Jura, It seems problems you have experienced was solved in RF-11840. Could you please verify that? = > showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT > -------------------------------------------------------------------- > > Key: RF-11827 > URL: https://issues.jboss.org/browse/RF-11827 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Environment: richfaces showcase 4.1.1-SNAPSHOT > all containers > all brosers > Reporter: Juraj Huska > Assignee: Juraj Huska > Priority: Critical > Fix For: 4.1.1.Final > > > Demos for rich:autocomplete do not work, *whole functionality of autocomp= lete is broken somehow*. = > It is noticeable on *all containers* and on *all browsers*. = > It works fine on 4.1.0-SNAPSHOT showcase wars. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7555193319779101733==-- From jira-events at lists.jboss.org Mon Jan 9 06:15:11 2012 Content-Type: multipart/mixed; boundary="===============6512613972834516503==" MIME-Version: 1.0 From: Juraj Huska (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11869) showcase - JS warning - Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead. Date: Mon, 09 Jan 2012 06:15:10 -0500 Message-ID: <905845731.48184.1326107710988.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6512613972834516503== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable showcase - JS warning - Use of getAttributeNodeNS() is deprecated. Use getA= ttributeNS() instead. ---------------------------------------------------------------------------= --------------------- Key: RF-11869 URL: https://issues.jboss.org/browse/RF-11869 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: showcase Environment: Firefox 8,9 Reporter: Juraj Huska When the welcome file of showcase is loaded the JS warning is generated: {code} Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead. {code} I was not able to find where the function getAttributeNodeNS() is called. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6512613972834516503==-- From jira-events at lists.jboss.org Mon Jan 9 06:17:10 2012 Content-Type: multipart/mixed; boundary="===============0020201711520881505==" MIME-Version: 1.0 From: Juraj Huska (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11869) showcase - JS warning - Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead. Date: Mon, 09 Jan 2012 06:17:10 -0500 Message-ID: <2031517068.48196.1326107830532.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 905845731.48184.1326107710988.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0020201711520881505== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11869?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11869: ----------------------------- Priority: Minor (was: Major) Description: = When the welcome file of showcase is loaded the JS warning is generated: {code} Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead. {code} I was not able to find where the function getAttributeNodeNS() is called. A= nd I have not found any issues which are possibly affected by this. was: When the welcome file of showcase is loaded the JS warning is generated: {code} Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead. {code} I was not able to find where the function getAttributeNodeNS() is called. = > showcase - JS warning - Use of getAttributeNodeNS() is deprecated. Use ge= tAttributeNS() instead. > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11869 > URL: https://issues.jboss.org/browse/RF-11869 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: showcase > Environment: Firefox 8,9 > Reporter: Juraj Huska > Priority: Minor > > When the welcome file of showcase is loaded the JS warning is generated: > {code} > Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead. > {code} > I was not able to find where the function getAttributeNodeNS() is called.= And I have not found any issues which are possibly affected by 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 --===============0020201711520881505==-- From jira-events at lists.jboss.org Mon Jan 9 06:47:09 2012 Content-Type: multipart/mixed; boundary="===============0173991702673852484==" MIME-Version: 1.0 From: Juraj Huska (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11827) showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT Date: Mon, 09 Jan 2012 06:47:09 -0500 Message-ID: <1748778399.48280.1326109629456.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 945549203.21383.1324314009775.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0173991702673852484== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11827?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654559#com= ment-12654559 ] = Juraj Huska commented on RF-11827: ---------------------------------- I have verified that the autocomplete demos work now for both maven repo wa= rs and for manually built wars. = > showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT > -------------------------------------------------------------------- > > Key: RF-11827 > URL: https://issues.jboss.org/browse/RF-11827 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Environment: richfaces showcase 4.1.1-SNAPSHOT > all containers > all brosers > Reporter: Juraj Huska > Assignee: Juraj Huska > Priority: Critical > Fix For: 4.1.1.Final > > > Demos for rich:autocomplete do not work, *whole functionality of autocomp= lete is broken somehow*. = > It is noticeable on *all containers* and on *all browsers*. = > It works fine on 4.1.0-SNAPSHOT showcase wars. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0173991702673852484==-- From jira-events at lists.jboss.org Mon Jan 9 12:50:10 2012 Content-Type: multipart/mixed; boundary="===============1644935717855579755==" MIME-Version: 1.0 From: Hendy Irawan (Commented) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11103) org.richfaces.skin = plain causes java.lang.IllegalArgumentException: Width (2000) and height (0) cannot be <= 0 Date: Mon, 09 Jan 2012 12:50:10 -0500 Message-ID: <934955942.49502.1326131410426.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 358213818.37054.1309943543675.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1644935717855579755== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11103?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12654661#com= ment-12654661 ] = Hendy Irawan commented on RF-11103: ----------------------------------- Still affects RichFaces 4.1.0.Final on JBoss AS 7.1.CR1. Please fix this... Thank you. = > org.richfaces.skin =3D plain causes java.lang.IllegalArgumentException: W= idth (2000) and height (0) cannot be <=3D 0 > -------------------------------------------------------------------------= --------------------------------------- > > Key: RF-11103 > URL: https://issues.jboss.org/browse/RF-11103 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: skinning > Reporter: u j > Priority: Minor > Fix For: 4.Future > > > I tried > {code} > > org.richfaces.skin > plain > > {code} > = > and the skinning seems to be disabled, but I get > {code} > 14:44:21,584 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[l= ocalhost].[/myapp].[Faces Servlet]] Servlet.service() para servlet Faces Se= rvlet lanz=C3=B3 excepci=C3=B3n: java.lang.IllegalArgumentException: Width = (2000) and height (0) cannot be <=3D 0 > at java.awt.image.DirectColorModel.createCompatibleWritableRaster(Dir= ectColorModel.java:999) [:1.6.0_24] > at java.awt.image.BufferedImage.(BufferedImage.java:321) [:1.6.= 0_24] > at org.richfaces.resource.ImageType.createARGBImage(ImageType.java:10= 3) [:4.0.0-SNAPSHOT] > at org.richfaces.resource.ImageType.access$200(ImageType.java:34) [:4= .0.0-SNAPSHOT] > at org.richfaces.resource.ImageType$2.createImage(ImageType.java:44) = [:4.0.0-SNAPSHOT] > at org.richfaces.resource.ImageType.createImage(ImageType.java:118) [= :4.0.0-SNAPSHOT] > at org.richfaces.resource.Java2DUserResourceWrapperImpl.paintAndWrite= (Java2DUserResourceWrapperImpl.java:155) [:4.0.0-SNAPSHOT] > at org.richfaces.resource.Java2DUserResourceWrapperImpl.getInputStrea= m(Java2DUserResourceWrapperImpl.java:65) [:4.0.0-SNAPSHOT] > at org.richfaces.resource.CachedResourceImpl.initialize(CachedResourc= eImpl.java:178) [:4.0.0-SNAPSHOT] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(R= esourceHandlerImpl.java:171) [:4.0.0-SNAPSHOT] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:407) [:2= .1.1-FCS] > 14:45:38,493 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[l= ocalhost].[/myapp].[Faces Servlet]] Servlet.service() para servlet Faces Se= rvlet lanz=C3=B3 excepci=C3=B3n: java.lang.IllegalArgumentException: Width = (1) and height (0) cannot be <=3D 0 > at java.awt.image.DirectColorModel.createCompatibleWritableRaster(Dir= ectColorModel.java:999) [:1.6.0_24] > at java.awt.image.BufferedImage.(BufferedImage.java:321) [:1.6.= 0_24] > at org.richfaces.resource.ImageType.createARGBImage(ImageType.java:10= 3) [:4.0.0-SNAPSHOT] > at org.richfaces.resource.ImageType.access$200(ImageType.java:34) [:4= .0.0-SNAPSHOT] > at org.richfaces.resource.ImageType$2.createImage(ImageType.java:44) = [:4.0.0-SNAPSHOT] > at org.richfaces.resource.ImageType.createImage(ImageType.java:118) [= :4.0.0-SNAPSHOT] > at org.richfaces.resource.Java2DUserResourceWrapperImpl.paintAndWrite= (Java2DUserResourceWrapperImpl.java:155) [:4.0.0-SNAPSHOT] > at org.richfaces.resource.Java2DUserResourceWrapperImpl.getInputStrea= m(Java2DUserResourceWrapperImpl.java:65) [:4.0.0-SNAPSHOT] > at org.richfaces.resource.CachedResourceImpl.initialize(CachedResourc= eImpl.java:178) [:4.0.0-SNAPSHOT] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(R= esourceHandlerImpl.java:171) [:4.0.0-SNAPSHOT] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:407) [:2= .1.1-FCS] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(A= pplicationFilterChain.java:324) [:6.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Applicati= onFilterChain.java:242) [:6.0.0.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conv= ersationPropagationFilter.java:67) [:6.0.0.Final] > {code} > I found a note > http://echelog.matzon.dk/logs/browse/richfaces/1306706400 > 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 = --===============1644935717855579755==-- From jira-events at lists.jboss.org Mon Jan 9 16:02:10 2012 Content-Type: multipart/mixed; boundary="===============5859389981993299898==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Created=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11870) SNAPSHOT artifacts in non-default profiles Date: Mon, 09 Jan 2012 16:02:09 -0500 Message-ID: <1079472273.50047.1326142929821.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5859389981993299898== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable SNAPSHOT artifacts in non-default profiles ------------------------------------------ Key: RF-11870 URL: https://issues.jboss.org/browse/RF-11870 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: build/distribution Affects Versions: 4.0.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.1.Final Look for -SNAPSHOT occurences across framework, docs and all build deps. Replace with release versions and verify build locally with given profiles. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5859389981993299898==-- From jira-events at lists.jboss.org Mon Jan 9 16:04:09 2012 Content-Type: multipart/mixed; boundary="===============7863227640311367148==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Updated=29_=28JIRA=29_=3Cjira-even?= =?utf-8?q?ts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11870) Eliminate SNAPSHOT artifacts in non-default profiles Date: Mon, 09 Jan 2012 16:04:09 -0500 Message-ID: <112727381.50050.1326143049369.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1079472273.50047.1326142929821.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7863227640311367148== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11870?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11870: ---------------------------- Summary: Eliminate SNAPSHOT artifacts in non-default profiles (was= : SNAPSHOT artifacts in non-default profiles) Description: = Look for -SNAPSHOT occurences across framework, docs and all build deps. Replace with release versions and verify build locally with given profiles. This is required by Maven Central. was: Look for -SNAPSHOT occurences across framework, docs and all build deps. Replace with release versions and verify build locally with given profiles. = > Eliminate SNAPSHOT artifacts in non-default profiles > ---------------------------------------------------- > > Key: RF-11870 > URL: https://issues.jboss.org/browse/RF-11870 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > Look for -SNAPSHOT occurences across framework, docs and all build deps. > Replace with release versions and verify build locally with given profile= s. > This is required by Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7863227640311367148==-- From jira-events at lists.jboss.org Mon Jan 9 16:19:11 2012 Content-Type: multipart/mixed; boundary="===============3191708526356327620==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Assigned=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11855) error@malformedXML on inputText files - Ajax Validation on event change - RichFaces 4.1 Final Date: Mon, 09 Jan 2012 16:19:11 -0500 Message-ID: <1530642476.50107.1326143951581.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26805713.30230.1324582930232.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3191708526356327620== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11855?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11855: ------------------------------- Assignee: (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > error(a)malformedXML on inputText files - Ajax Validation on event change= - RichFaces 4.1 Final = > -------------------------------------------------------------------------= --------------------- > > Key: RF-11855 > URL: https://issues.jboss.org/browse/RF-11855 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Websphere 8.0.0.1 - RAD 8.0.0.4 - JSF Mojorra 2.1.4 = - Spring 3.0.6 Final - Hibernate Validator 4.2. - Java 6 > Reporter: Jean ANDRE > Labels: INPUT, MALFORMED, UI, XML > Attachments: createClient1.xhtml, CreateClientController1.java, e= rror(a)malformedXML-ScreenShot-1.jpg, error(a)malformedXML.debug.txt, error= (a)malformedXML.viewSource.html, index.xhtml > > > We got a error(a)malformedXML message when we want to apply an ajax valid= ation on imput text. > The field is include inside a tab in mode "server" - What ever the mode, = we getting the error. Tab content is built by including some xhtml. See att= achment. > {code} > > 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:c=3D"http://java.sun.com/jsp/jstl/core" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > > > > > > > > > > > {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 = --===============3191708526356327620==-- From jira-events at lists.jboss.org Mon Jan 9 16:19:11 2012 Content-Type: multipart/mixed; boundary="===============1568031730516543224==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28Assigned=29_=28JIRA=29_=3Cjira-eve?= =?utf-8?q?nts_at_lists=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11855) error@malformedXML on inputText files - Ajax Validation on event change - RichFaces 4.1 Final Date: Mon, 09 Jan 2012 16:19:11 -0500 Message-ID: <1670457044.50104.1326143951398.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26805713.30230.1324582930232.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1568031730516543224== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11855?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11855: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > error(a)malformedXML on inputText files - Ajax Validation on event change= - RichFaces 4.1 Final = > -------------------------------------------------------------------------= --------------------- > > Key: RF-11855 > URL: https://issues.jboss.org/browse/RF-11855 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Websphere 8.0.0.1 - RAD 8.0.0.4 - JSF Mojorra 2.1.4 = - Spring 3.0.6 Final - Hibernate Validator 4.2. - Java 6 > Reporter: Jean ANDRE > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: INPUT, MALFORMED, UI, XML > Attachments: createClient1.xhtml, CreateClientController1.java, e= rror(a)malformedXML-ScreenShot-1.jpg, error(a)malformedXML.debug.txt, error= (a)malformedXML.viewSource.html, index.xhtml > > > We got a error(a)malformedXML message when we want to apply an ajax valid= ation on imput text. > The field is include inside a tab in mode "server" - What ever the mode, = we getting the error. Tab content is built by including some xhtml. See att= achment. > {code} > > 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:c=3D"http://java.sun.com/jsp/jstl/core" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > > > > > > > > > > > {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 = --===============1568031730516543224==-- From jira-events at lists.jboss.org Mon Jan 9 17:56:10 2012 Content-Type: multipart/mixed; boundary="===============3848548887150174417==" MIME-Version: 1.0 From: Brian Leathem (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11471) Upgrade to latest version of Atmosphere Date: Mon, 09 Jan 2012 17:56:09 -0500 Message-ID: <1976814370.50576.1326149769922.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3848548887150174417== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11471: ------------------------------- Fix Version/s: 4.1.1.Final (was: 4.2-Tracking) Component/s: component-push/poll third-party (was: core) 0.8.2 is the latest version as of the date of this comment: http://groups.google.com/group/atmosphere-framework/browse_thread/thread/8a= 4bdc4a2c9f151c?pli=3D1 = > Upgrade to latest version of Atmosphere > --------------------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.1.Final > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3848548887150174417==-- From jira-events at lists.jboss.org Tue Jan 10 08:08:10 2012 Content-Type: multipart/mixed; boundary="===============4843452382321689373==" MIME-Version: 1.0 From: Jan Papousek (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11871) Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click Date: Tue, 10 Jan 2012 08:08:09 -0500 Message-ID: <1495571967.52108.1326200889891.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4843452382321689373== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first= click ---------------------------------------------------------------------------= ------ Key: RF-11871 URL: https://issues.jboss.org/browse/RF-11871 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: mobile, showcase Affects Versions: 4.1.1.Final Environment: richfaces-showcase-4.1.1-20120106.230242-18 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 --===============4843452382321689373==-- From jira-events at lists.jboss.org Tue Jan 10 08:10:09 2012 Content-Type: multipart/mixed; boundary="===============7917926429736992541==" MIME-Version: 1.0 From: Jan Papousek (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11871) Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click Date: Tue, 10 Jan 2012 08:10:09 -0500 Message-ID: <1536856517.52112.1326201009508.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1495571967.52108.1326200889891.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7917926429736992541== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11871?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-11871: ------------------------------ Workaround Description: = # deploy showcase and open http://localhost:8080/showcase/phoneHome.jsf#pol= l:poll (or open http://showcase-jpapouse.rhcloud.com/phoneHome.jsf#poll:pol= l without deploying) # click on the "Stop" button -> nothing happens (wrong) # click on the "Stop" button again -> polling is stopped (correct) was: # open http://localhost:8080/showcase/phoneHome.jsf#poll:poll # click on the "Stop" button -> nothing happens (wrong) # click on the "Stop" button again -> polling is stopped (correct) = > Mobile Showcase and a4j:poll demo: stop button doesn't respond on the fir= st click > -------------------------------------------------------------------------= -------- > > Key: RF-11871 > URL: https://issues.jboss.org/browse/RF-11871 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.1.Final > Environment: richfaces-showcase-4.1.1-20120106.230242-18 > 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 --===============7917926429736992541==-- From jira-events at lists.jboss.org Tue Jan 10 08:17:10 2012 Content-Type: multipart/mixed; boundary="===============3166218972158476041==" MIME-Version: 1.0 From: Jan Papousek (Created) (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, 10 Jan 2012 08:17:09 -0500 Message-ID: <1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3166218972158476041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Mobile Showcase and a4j:region demo: submit button doesn't respond on the f= irst 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.1.1.Final Environment: richfaces-showcase-4.1.1-20120106.230242-18 = 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 --===============3166218972158476041==-- From jira-events at lists.jboss.org Tue Jan 10 18:48:09 2012 Content-Type: multipart/mixed; boundary="===============8568403138113929134==" MIME-Version: 1.0 From: Wesley Hales (Created) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11873) Enhancements to slidfast.js library Date: Tue, 10 Jan 2012 18:48:09 -0500 Message-ID: <1754905174.53324.1326239289395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8568403138113929134== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Enhancements to slidfast.js library ----------------------------------- Key: RF-11873 URL: https://issues.jboss.org/browse/RF-11873 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Reporter: Wesley Hales Assignee: Wesley Hales Fix For: 4.1.1.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 =20 --===============8568403138113929134==-- From jira-events at lists.jboss.org Tue Jan 10 18:53:10 2012 Content-Type: multipart/mixed; boundary="===============7190348288239006041==" MIME-Version: 1.0 From: Wesley Hales (Resolved) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11873) Enhancements to slidfast.js library Date: Tue, 10 Jan 2012 18:53:09 -0500 Message-ID: <1621045086.53328.1326239589862.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1754905174.53324.1326239289395.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7190348288239006041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11873?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Wesley Hales resolved RF-11873. ------------------------------- Resolution: Done = > Enhancements to slidfast.js library > ----------------------------------- > > Key: RF-11873 > URL: https://issues.jboss.org/browse/RF-11873 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Reporter: Wesley Hales > Assignee: Wesley Hales > Fix For: 4.1.1.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 =20 --===============7190348288239006041==-- From jira-events at lists.jboss.org Wed Jan 11 08:45:13 2012 Content-Type: multipart/mixed; boundary="===============6748259361058303408==" MIME-Version: 1.0 From: Pavol Pitonak (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11547) Panel menu group doesn't keep state after request Date: Wed, 11 Jan 2012 08:45:13 -0500 Message-ID: <558985320.54541.1326289513066.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 598634309.33788.1318600157354.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6748259361058303408== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11547?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-11547: ------------------------------- Component/s: compatibility = > Panel menu group doesn't keep state after request > ------------------------------------------------- > > Key: RF-11547 > URL: https://issues.jboss.org/browse/RF-11547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-menu > Affects Versions: 4.1.0.Milestone3 > Environment: RichFaces 4.1.0-SNAPSHOT > Metamer 4.1.0-SNAPSHOT r.22800 > Mojarra 2.1.3-SNAPSHOT > JBoss Web 7.0.1.Final > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 14.0.835.202 @ Linux i686 > Reporter: Pavol Pitonak > Labels: ci_issue > Fix For: 4.Future > > > # deploy Metamer = > # open panel menu group inside iteration component, e.g. http://localhost= :8080/metamer/faces/components/richPanelMenuGroup/simple.xhtml?templates=3D= richList > # click on "Group 2" > # set some attribute, e.g. bypassUpdates=3Dnull > result: > group 2 is expanded again, this happens inside rich:collapsibleSubTable, = rich:dataTable, rich:dataGrid, rich:extendedDataTable, rich:list, and a4j:r= epeat = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6748259361058303408==-- From jira-events at lists.jboss.org Thu Jan 12 06:52:21 2012 Content-Type: multipart/mixed; boundary="===============5919445889959920229==" MIME-Version: 1.0 From: Dmitry Volkov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11874) rich:extendedDataTable keyboard navigation fails in IE8 Date: Thu, 12 Jan 2012 06:52:21 -0500 Message-ID: <1410319121.2645.1326369141473.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5919445889959920229== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dmitry Volkov created RF-11874: ---------------------------------- Summary: rich:extendedDataTable keyboard navigation fails in I= E8 Key: RF-11874 URL: https://issues.jboss.org/browse/RF-11874 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-ScrollableDataTable Affects Versions: 4.1.0.Final Environment: JSF-RI 2 Internet Explorer version 8.0.7601.17514 Reporter: Dmitry Volkov Continous keyboard navigation fails in IE8 when ajax loading(clientRows=3D"= ..") used. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5919445889959920229==-- From jira-events at lists.jboss.org Thu Jan 12 08:43:21 2012 Content-Type: multipart/mixed; boundary="===============0959798803561847041==" MIME-Version: 1.0 From: Dmitry Volkov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Thu, 12 Jan 2012 08:43:21 -0500 Message-ID: <1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0959798803561847041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dmitry Volkov created RF-11875: ---------------------------------- Summary: rich:extendedDataTable in ajax loading mode, crashes = when dataset length changes between requests Key: RF-11875 URL: https://issues.jboss.org/browse/RF-11875 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Dmitry Volkov rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes whe= n dataset length changes between requests. It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0959798803561847041==-- From jira-events at lists.jboss.org Thu Jan 12 08:45:22 2012 Content-Type: multipart/mixed; boundary="===============8854885659714627450==" MIME-Version: 1.0 From: Dmitry Volkov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Thu, 12 Jan 2012 08:45:21 -0500 Message-ID: <586860284.3018.1326375921966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8854885659714627450== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Dmitry Volkov updated RF-11875: ------------------------------- Affects Version/s: 4.1.0.Final Environment: JSF-RI 2.0, Tomcat 6.0.29 Component/s: component-ScrollableDataTable = > rich:extendedDataTable in ajax loading mode, crashes when dataset length = changes between requests > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11875 > URL: https://issues.jboss.org/browse/RF-11875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2.0, Tomcat 6.0.29 > Reporter: Dmitry Volkov > > rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes w= hen dataset length changes between requests. > It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8854885659714627450==-- From jira-events at lists.jboss.org Thu Jan 12 10:26:21 2012 Content-Type: multipart/mixed; boundary="===============5071805972381404800==" 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-11876) Add jsf.js resource dependency to all components to work around RF-11739 Date: Thu, 12 Jan 2012 10:26:21 -0500 Message-ID: <850827564.3537.1326381981377.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5071805972381404800== 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-11876: ------------------------------- Summary: Add jsf.js resource dependency to all components to w= ork around RF-11739 Key: RF-11876 URL: https://issues.jboss.org/browse/RF-11876 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: component Affects Versions: 4.0.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Priority: Critical Fix For: 4.1.1.Final By adding {{jsf.js}} dependency properly to each component, components will be forced to load {{jsf.js}} just before any RF component r= equests {{packed.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 = --===============5071805972381404800==-- From jira-events at lists.jboss.org Thu Jan 12 10:26:21 2012 Content-Type: multipart/mixed; boundary="===============3027264169075992864==" 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-11739) Components that don't require jsf.js can break ResourceMapping Date: Thu, 12 Jan 2012 10:26:21 -0500 Message-ID: <433059302.3540.1326381981746.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3027264169075992864== 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 ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11739: ---------------------------- Fix Version/s: (was: 4.1.1.Final) Priority: Major (was: Critical) Complexity: High 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) There is available workaround on the framework level: RF-11876, scheduling this fix to {{4.2-Tracking}}. = > 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.2-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 = --===============3027264169075992864==-- From jira-events at lists.jboss.org Thu Jan 12 10:30:22 2012 Content-Type: multipart/mixed; boundary="===============6228923009269671972==" 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-11877) Upgrade Servlets API to 3.0 in BOM Date: Thu, 12 Jan 2012 10:30:22 -0500 Message-ID: <904396798.3551.1326382222093.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6228923009269671972== 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-11877: ------------------------------- Summary: Upgrade Servlets API to 3.0 in BOM Key: RF-11877 URL: https://issues.jboss.org/browse/RF-11877 Project: RichFaces Issue Type: Component Upgrade Security Level: Public (Everyone can see) Components: core Affects Versions: 4.0.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Priority: Critical Fix For: 4.1.1.Final This issue could break backward compatibility with Servlets 2.5 environment= s, we should make sure there are no extensive changes in version 3.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 = --===============6228923009269671972==-- From jira-events at lists.jboss.org Thu Jan 12 11:11:21 2012 Content-Type: multipart/mixed; boundary="===============1639781659641848540==" 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-11870) Eliminate SNAPSHOT artifacts in non-default profiles Date: Thu, 12 Jan 2012 11:11:21 -0500 Message-ID: <1527243673.3772.1326384681328.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1079472273.50047.1326142929821.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1639781659641848540== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11870?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11870: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Eliminate SNAPSHOT artifacts in non-default profiles > ---------------------------------------------------- > > Key: RF-11870 > URL: https://issues.jboss.org/browse/RF-11870 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.1.Final > > > Look for -SNAPSHOT occurences across framework, docs and all build deps. > Replace with release versions and verify build locally with given profile= s. > This is required by Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1639781659641848540==-- From jira-events at lists.jboss.org Thu Jan 12 11:13:23 2012 Content-Type: multipart/mixed; boundary="===============7293268565698104541==" MIME-Version: 1.0 From: Marek Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11878) Add ajax UI tag actionListener to Migration guide Date: Thu, 12 Jan 2012 11:13:23 -0500 Message-ID: <121148811.3790.1326384803339.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7293268565698104541== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Marek Novotny created RF-11878: ---------------------------------- Summary: Add ajax UI tag actionListener to Migration guide Key: RF-11878 URL: https://issues.jboss.org/browse/RF-11878 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: doc Affects Versions: 4.1.0.Final Reporter: Marek Novotny Add a4j:actionListener to Migration guide for easy migration path from a4j:= support -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7293268565698104541==-- From jira-events at lists.jboss.org Thu Jan 12 11:17:23 2012 Content-Type: multipart/mixed; boundary="===============2516915793247877513==" MIME-Version: 1.0 From: Marek Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11879) Add examle of usage of a4j:actionListener into RF showcase Date: Thu, 12 Jan 2012 11:17:22 -0500 Message-ID: <43091471.3804.1326385042424.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2516915793247877513== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Marek Novotny created RF-11879: ---------------------------------- Summary: Add examle of usage of a4j:actionListener into RF sho= wcase Key: RF-11879 URL: https://issues.jboss.org/browse/RF-11879 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.1.0.Final Reporter: Marek Novotny Priority: Minor a4j:actionListener is not presented in showcase example -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2516915793247877513==-- From jira-events at lists.jboss.org Thu Jan 12 13:15:23 2012 Content-Type: multipart/mixed; boundary="===============8270177984749040299==" MIME-Version: 1.0 From: Dirk Dollar (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11880) a4j:jsFunction needs to call event.data instead of data Date: Thu, 12 Jan 2012 13:15:23 -0500 Message-ID: <1048556209.4142.1326392123634.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8270177984749040299== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dirk Dollar created RF-11880: -------------------------------- Summary: a4j:jsFunction needs to call event.data instead of da= ta = Key: RF-11880 URL: https://issues.jboss.org/browse/RF-11880 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.1.0.Final Reporter: Dirk Dollar a4j:jsFunction needs to call event.data instead of data in order to work First I doubted my skills, then I thought it's a bug, now I see there exist= s a workaround (thanks stackoverflow) http://stackoverflow.com/questions/1365491/how-to-correctly-access-the-data= -field-in-an-a4jjsfunction-result please please include in your migration guide, I spent ridiculous amount of= time on it for what it is - and i'm certainly not the first 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 =20 --===============8270177984749040299==-- From jira-events at lists.jboss.org Thu Jan 12 16:17:22 2012 Content-Type: multipart/mixed; boundary="===============2219836171803885214==" MIME-Version: 1.0 From: Nicola Nick (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11881) Rich Faces 4 can't change jQuery selector Date: Thu, 12 Jan 2012 16:17:21 -0500 Message-ID: <1628113380.4505.1326403041921.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2219836171803885214== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Nicola Nick created RF-11881: -------------------------------- Summary: Rich Faces 4 can't change jQuery selector = Key: RF-11881 URL: https://issues.jboss.org/browse/RF-11881 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Nicola Nick I used Rich Faces 4 in my project. Morover i have to use prototype function= ality. In the last version of rich faces is used only jQuery. The my problem is th= at i have to reserve $ selector to prototype but i can't do it because i do= n't know how to change the selector inside richfaces library. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2219836171803885214==-- From jira-events at lists.jboss.org Thu Jan 12 16:19:22 2012 Content-Type: multipart/mixed; boundary="===============2482515221362249813==" MIME-Version: 1.0 From: Nicola Nick (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11881) Rich Faces 4 can't change jQuery selector Date: Thu, 12 Jan 2012 16:19:22 -0500 Message-ID: <1916861611.4521.1326403162561.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1628113380.4505.1326403041921.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2482515221362249813== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11881?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Nicola Nick updated RF-11881: ----------------------------- Issue Type: Feature Request (was: Bug) = > Rich Faces 4 can't change jQuery selector = > ------------------------------------------ > > Key: RF-11881 > URL: https://issues.jboss.org/browse/RF-11881 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Nicola Nick > > I used Rich Faces 4 in my project. Morover i have to use prototype functi= onality. > In the last version of rich faces is used only jQuery. The my problem is = that i have to reserve $ selector to prototype but i can't do it because i = don't know how to change the selector inside richfaces library. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2482515221362249813==-- From jira-events at lists.jboss.org Thu Jan 12 20:13:21 2012 Content-Type: multipart/mixed; boundary="===============1264970488841700381==" 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-11846) rich:validator ignores @NotEmpty Date: Thu, 12 Jan 2012 20:13:21 -0500 Message-ID: <790844569.52527.1326417201605.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 651588956.26878.1324469409370.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1264970488841700381== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11846?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich resolved RF-11846. ------------------------------ Resolution: Cannot Reproduce Bug I was not able to simulate this issue. It works for me on latest richfaces snapshots in Metamer = > rich:validator ignores @NotEmpty > -------------------------------- > > Key: RF-11846 > URL: https://issues.jboss.org/browse/RF-11846 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Final > Environment: Maven 3, Tomcat 6.0.x, Ubuntu 11.10 x64, Glassfish j= sf 2.x implementation, Hibernate validator 4.1.0.Final > Reporter: Mercer Traieste > Assignee: J=C3=A1n Jamrich > > I want to have [client-side validation|http://richfaces-showcase.appspot.= com/richfaces/component-sample.jsf?demo=3DclientValidation&sample=3Djsr303&= skin=3DblueSky] using rich:validator in Richfaces 4.1, but @NotEmpty is ign= ored. = > {code:xml} = > > > > > > {code} = > {code:java} > import org.hibernate.validator.constraints.NotEmpty; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > import java.io.Serializable; > @ManagedBean > @SessionScoped > public class RichBean implements Serializable { > private static final long serialVersionUID =3D -2403138958014741653L; > @NotEmpty > private String firstName; > public String getFirstName() { > return firstName; > } > public void setFirstName(String firstName) { > this.firstName =3D firstName; > } > } > {code} > @Email, another specific Hibernate validator 4.1 annotation works 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 = --===============1264970488841700381==-- From jira-events at lists.jboss.org Thu Jan 12 20:13:21 2012 Content-Type: multipart/mixed; boundary="===============0632180160867035079==" 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-11846) rich:validator ignores @NotEmpty Date: Thu, 12 Jan 2012 20:13:21 -0500 Message-ID: <1311189443.52523.1326417201500.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 651588956.26878.1324469409370.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0632180160867035079== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11846?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659111#com= ment-12659111 ] = J=C3=A1n Jamrich commented on RF-11846: ---------------------------------- I was not able to simulate this on latest Metamer. I made another page with inputs (there already was example for rich:validat= or enclosing many inputs with binding to bean validated by bean validator (= JSR-303)) containing simple rich:validator per input. RichFaces 4.1.1-SNAPSHOT Metamer 4.1.1-SNAPSHOT r.${buildNumber} Mojarra 2.1.3-SNAPSHOT JBoss AS 7.0.2.Final Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux Chrome 15.0.874.106 @ Linux i686 https://source.jboss.org/browse/RichFaces/modules/tests/metamer/trunk/appli= cation/src/main/webapp/components/richValidator/csvOnJsr303.xhtml?r=3D23141 = > rich:validator ignores @NotEmpty > -------------------------------- > > Key: RF-11846 > URL: https://issues.jboss.org/browse/RF-11846 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Final > Environment: Maven 3, Tomcat 6.0.x, Ubuntu 11.10 x64, Glassfish j= sf 2.x implementation, Hibernate validator 4.1.0.Final > Reporter: Mercer Traieste > Assignee: J=C3=A1n Jamrich > > I want to have [client-side validation|http://richfaces-showcase.appspot.= com/richfaces/component-sample.jsf?demo=3DclientValidation&sample=3Djsr303&= skin=3DblueSky] using rich:validator in Richfaces 4.1, but @NotEmpty is ign= ored. = > {code:xml} = > > > > > > {code} = > {code:java} > import org.hibernate.validator.constraints.NotEmpty; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > import java.io.Serializable; > @ManagedBean > @SessionScoped > public class RichBean implements Serializable { > private static final long serialVersionUID =3D -2403138958014741653L; > @NotEmpty > private String firstName; > public String getFirstName() { > return firstName; > } > public void setFirstName(String firstName) { > this.firstName =3D firstName; > } > } > {code} > @Email, another specific Hibernate validator 4.1 annotation works 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 = --===============0632180160867035079==-- From jira-events at lists.jboss.org Fri Jan 13 06:29:22 2012 Content-Type: multipart/mixed; boundary="===============2782045581780044522==" 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-11816) Notify stack: names of CSS classes do not follow naming conventions Date: Fri, 13 Jan 2012 06:29:22 -0500 Message-ID: <1207060103.53350.1326454162361.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1667763817.10485.1323880569406.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2782045581780044522== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11816?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11816. ----------------------------- Resolution: Done = > Notify stack: names of CSS classes do not follow naming conventions > ------------------------------------------------------------------- > > Key: RF-11816 > URL: https://issues.jboss.org/browse/RF-11816 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Final > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Notify stack has 4 CSS classes that do not follow naming conventions: > * rf-ntf-pos-topLeft > * rf-ntf-pos-topRight > * rf-ntf-pos-bottomLeft > * rf-ntf-pos-bottomRight > Compare with similar classes of popup panel: > * rf-pp-hndlr-tl > * rf-pp-hndlr-tr > * rf-pp-hndlr-bl > * rf-pp-hndlr-br -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2782045581780044522==-- From jira-events at lists.jboss.org Fri Jan 13 07:13:23 2012 Content-Type: multipart/mixed; boundary="===============4665516103633880690==" 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-11810) Fix the richfaces-components-ui build to do not overwrite assemblied JAR Date: Fri, 13 Jan 2012 07:13:22 -0500 Message-ID: <138852206.53413.1326456802852.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1133407192.4657.1323764289624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4665516103633880690== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11810?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11810. ----------------------------- Resolution: Done = > Fix the richfaces-components-ui build to do not overwrite assemblied JAR > ------------------------------------------------------------------------ > > Key: RF-11810 > URL: https://issues.jboss.org/browse/RF-11810 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Marek Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > (Issue reported by Lukas Fryc) > Marek Novotny (manaRH) has recently reported that sometimes RF build fail= s for him since {{richfaces-components-ui}} module is generating JAR using = {{maven-assembly-plugin}} which has the same name as the standard {{maven-j= ar-plugin}} artifact would be called. > This may lead into potential clash for bad timings, especially when these= plugins are ran on the same lifecycle phase. > The symptoms are failing applications (and functional tests) which are no= t able to use any UI implementation classes. > We should either: > # change lifecycle mapping of plugins > # modify {{maven-jar-plugin}} settings > {code:title=3DLog from Hudson console http://hudson.qa.jboss.com/hudson/j= ob/richfaces-4.1-all-jboss/62/console} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces Examples Aggregator 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ examples-aggr= egator --- > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-java-version) @ exa= mples-aggregator --- > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven-version) @ ex= amples-aggregator --- > [INFO] = > [INFO] --- maven-source-plugin:2.1.2:jar-no-fork (attach-sources) @ examp= les-aggregator --- > projectSucceeded org.richfaces.examples:examples-aggregator:4.1.0-SNAPSHOT > [JENKINS] Archiving /mnt/hudson_workspace/workspace/richfaces-4.1-all-jbo= ss/dev-examples/pom.xml to /qa/hudson_master/hudson_home/hudson_workspace/j= obs/richfaces-4.1-all-jboss/modules/org.richfaces.examples$examples-aggrega= tor/builds/2011-12-09_06-01-08/archive/org.richfaces.examples/examples-aggr= egator/4.1.0-SNAPSHOT/examples-aggregator-4.1.0-SNAPSHOT.pom > [INFO] = = > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building RichFaces Showcase 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > [INFO] = > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ richfaces-sho= wcase --- > [INFO] Deleting /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/s= howcase/target > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-java-version) @ ric= hfaces-showcase --- > [INFO] = > [INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven-version) @ ri= chfaces-showcase --- > [INFO] = > [INFO] --- maven-checkstyle-plugin:2.5:check (richfaces-checkstyle-report= ) @ richfaces-showcase --- > [INFO] = > [INFO] [debug] execute contextualize > [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ ric= hfaces-showcase --- > [INFO] Using 'UTF-8' encoding to copy filtered resources. > [INFO] Copying 9 resources > [INFO] Copying 0 resource > [INFO] = > [INFO] --- maven-compiler-plugin:2.3.1:compile (default-compile) @ richfa= ces-showcase --- > [INFO] Compiling 97 source files to /mnt/hudson_workspace/workspace/richf= aces-4.1-all-jboss/showcase/target/classes > [INFO] ------------------------------------------------------------- > [ERROR] COMPILATION ERROR : = > [INFO] ------------------------------------------------------------- > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModelItem.java:[3,2= 6] cannot find symbol > symbol : class CalendarDataModelItem > location: package org.richfaces.model > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModelItem.java:[5,4= 2] cannot find symbol > symbol: class CalendarDataModelItem > public class CalendarModelItem implements CalendarDataModelItem { > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tree/TreeBean.java:[36,30] cannot find sym= bol > symbol : class UITree > location: package org.richfaces.component > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tables/ExtTableSelectionBean.java:[13,30] = cannot find symbol > symbol : class UIExtendedDataTable > location: package org.richfaces.component > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[10,26] = cannot find symbol > symbol : class CalendarDataModel > location: package org.richfaces.model > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[11,26] = cannot find symbol > symbol : class CalendarDataModelItem > location: package org.richfaces.model > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[15,38] = cannot find symbol > symbol: class CalendarDataModel > public class CalendarModel implements CalendarDataModel { > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[28,11] = cannot find symbol > symbol : class CalendarDataModelItem > location: class org.richfaces.demo.calendar.model.CalendarModel > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tree/TreeBean.java:[72,8] cannot find symb= ol > symbol : class UITree > location: class org.richfaces.demo.tree.TreeBean > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tree/TreeBean.java:[72,23] cannot find sym= bol > symbol : class UITree > location: class org.richfaces.demo.tree.TreeBean > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tables/ExtTableSelectionBean.java:[26,8] c= annot find symbol > symbol : class UIExtendedDataTable > location: class org.richfaces.demo.tables.ExtTableSelectionBean > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/tables/ExtTableSelectionBean.java:[26,41] = cannot find symbol > symbol : class UIExtendedDataTable > location: class org.richfaces.demo.tables.ExtTableSelectionBean > [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.1-all-jboss/showcase/= src/main/java/org/richfaces/demo/calendar/model/CalendarModel.java:[29,8] c= annot find symbol > symbol : class CalendarDataModelItem > location: class org.richfaces.demo.calendar.model.CalendarModel > [INFO] 13 errors = > [INFO] ------------------------------------------------------------- > mojoFailed org.apache.maven.plugins:maven-compiler-plugin:2.3.1(default-c= ompile) > projectFailed org.richfaces.examples:richfaces-showcase:4.1.0-SNAPSHOT > [JENKINS] Archiving /mnt/hudson_workspace/workspace/richfaces-4.1-all-jbo= ss/showcase/pom.xml to /qa/hudson_master/hudson_home/hudson_workspace/jobs/= richfaces-4.1-all-jboss/modules/org.richfaces.examples$richfaces-showcase/b= uilds/2011-12-09_06-01-09/archive/org.richfaces.examples/richfaces-showcase= /4.1.0-SNAPSHOT/richfaces-showcase-4.1.0-SNAPSHOT.pom > sessionEnded > [INFO] ------------------------------------------------------------------= ------ > [INFO] Reactor Summary: > [INFO] = > [INFO] RichFaces BOM ..................................... SUCCESS [5.347= s] > [INFO] RichFaces Root Parent ............................. SUCCESS [3.868= s] > [INFO] RichFaces Core Parent ............................. SUCCESS [0.434= s] > [INFO] RichFaces Core API ................................ SUCCESS [55.65= 8s] > [INFO] RichFaces Core Implementation ..................... SUCCESS [5:34.= 292s] > [INFO] RichFaces Core Aggregator ......................... SUCCESS [0.269= s] > [INFO] RichFaces CDK Parent .............................. SUCCESS [0.423= s] > [INFO] RichFaces CDK Commons ............................. SUCCESS [14.72= 4s] > [INFO] RichFaces CDK Annotations ......................... SUCCESS [13.30= 8s] > [INFO] RichFaces CDK Attributes .......................... SUCCESS [16.92= 9s] > [INFO] RichFaces CDK XInclude Transformer ................ SUCCESS [24.69= 9s] > [INFO] RichFaces CDK Generator ........................... SUCCESS [2:09.= 707s] > [INFO] RichFaces CDK Generator Maven Plugin .............. SUCCESS [26.48= 5s] > [INFO] RichFaces CDK Resources Maven Plugin .............. SUCCESS [32.53= 0s] > [INFO] RichFaces CDK Distribution ........................ SUCCESS [29.94= 6s] > [INFO] RichFaces CDK Aggregator .......................... SUCCESS [0.244= s] > [INFO] RichFaces UI Components Parent .................... SUCCESS [1.515= s] > [INFO] RichFaces UI Components: Common API ............... SUCCESS [20.30= 4s] > [INFO] RichFaces UI Components: Common UI ................ SUCCESS [1:07.= 241s] > [INFO] RichFaces UI Components: Common Aggregator ........ SUCCESS [0.417= s] > [INFO] RichFaces UI Components: Core API ................. SUCCESS [10.94= 2s] > [INFO] RichFaces UI Components: Core UI .................. SUCCESS [2:25.= 334s] > [INFO] RichFaces UI Components: Core Aggregator .......... SUCCESS [0.368= s] > [INFO] RichFaces UI Components: Iteration API ............ SUCCESS [18.22= 2s] > [INFO] RichFaces UI Components: Iteration UI ............. SUCCESS [3:02.= 748s] > [INFO] RichFaces UI Components: Iteration Aggregator ..... SUCCESS [0.401= s] > [INFO] RichFaces UI Components: Miscellanous UI .......... SUCCESS [33.77= 6s] > [INFO] RichFaces UI Components: Miscellanous Aggregator .. SUCCESS [0.366= s] > [INFO] RichFaces UI Components: Output API ............... SUCCESS [14.14= 0s] > [INFO] RichFaces UI Components: Output UI ................ SUCCESS [3:05.= 517s] > [INFO] RichFaces UI Components: Output Aggregator ........ SUCCESS [0.390= s] > [INFO] RichFaces UI Components: Input API ................ SUCCESS [13.37= 4s] > [INFO] RichFaces UI Components: Input UI ................. SUCCESS [4:40.= 374s] > [INFO] RichFaces UI Components: Input Aggregator ......... SUCCESS [0.371= s] > [INFO] RichFaces UI Components: Drag-n-Drop API .......... SUCCESS [12.12= 6s] > [INFO] RichFaces UI Components: Drag-n-Drop UI ........... SUCCESS [30.14= 5s] > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.406= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.71= 0s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [2:46.= 216s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.372= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [23.60= 4s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [1:47.= 298s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:01.= 812s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.369= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.269= s] > [INFO] RichFaces Archetypes Simple Application ........... SUCCESS [7.277= s] > [INFO] RichFaces Archetypes Component .................... SUCCESS [3.212= s] > [INFO] RichFaces Archetypes Component Short .............. SUCCESS [1.981= s] > [INFO] RichFaces Archetypes Components Aggregator ........ SUCCESS [2.562= s] > [INFO] RichFaces Archetypes GAE Application .............. SUCCESS [2.730= s] > [INFO] RichFaces Archetypes Aggregator ................... SUCCESS [0.264= s] > [INFO] RichFaces Examples Parent ......................... SUCCESS [0.411= s] > [INFO] RichFaces Examples Template ....................... SUCCESS [15.60= 3s] > [INFO] RichFaces Examples Core ........................... SUCCESS [16.37= 4s] > [INFO] RichFaces Examples Miscellanous ................... SUCCESS [12.22= 1s] > [INFO] RichFaces Examples Outputs ........................ SUCCESS [14.60= 3s] > [INFO] RichFaces Examples Inputs ......................... SUCCESS [19.79= 1s] > [INFO] RichFaces Examples Repeater ....................... SUCCESS [26.96= 4s] > [INFO] RichFaces Examples Iteration ...................... SUCCESS [30.28= 5s] > [INFO] RichFaces Examples Push ........................... SUCCESS [18.21= 5s] > [INFO] RichFaces Examples Validators ..................... SUCCESS [19.45= 2s] > [INFO] RichFaces Examples DND ............................ SUCCESS [13.33= 7s] > [INFO] RichFaces Examples Richfaces IRC Client Application SUCCESS [14.6= 30s] > [INFO] RichFaces Examples Aggregator ..................... SUCCESS [0.241= s] > [INFO] RichFaces Showcase ................................ FAILURE [12.10= 9s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 41:12.509s > [INFO] Finished at: Fri Dec 09 06:42:33 EST 2011 > [INFO] Final Memory: 312M/708M > [INFO] ------------------------------------------------------------------= ------ > maven builder waiting > mavenExecutionResult exceptions not empty > org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute= goal org.apache.maven.plugins:maven-compiler-plugin:2.3.1:compile (default= -compile) on project richfaces-showcase: Compilation failure > at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor= .java:213) > at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor= .java:153) > at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor= .java:145) > at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje= ct(LifecycleModuleBuilder.java:84) > at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje= ct(LifecycleModuleBuilder.java:59) > at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBu= ild(LifecycleStarter.java:183) > at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(Lifecycl= eStarter.java:161) > at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319) > at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156) > at org.jvnet.hudson.maven3.launcher.Maven3Launcher.main(Maven3Launcher.j= ava:79) > 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.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Laun= cher.java:329) > at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.jav= a:239) > at org.jvnet.hudson.maven3.agent.Maven3Main.launch(Maven3Main.java:146) > at hudson.maven.Maven3Builder.call(Maven3Builder.java:127) > at hudson.maven.Maven3Builder.call(Maven3Builder.java:74) > at hudson.remoting.UserRequest.perform(UserRequest.java:114) > at hudson.remoting.UserRequest.perform(UserRequest.java:48) > at hudson.remoting.Request$2.run(Request.java:270) > 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:660) > Caused by: org.apache.maven.plugin.CompilationFailureException: Compilati= on failure > at org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompiler= Mojo.java:656) > at org.apache.maven.plugin.CompilerMojo.execute(CompilerMojo.java:128) > at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default= BuildPluginManager.java:101) > at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor= .java:209) > ... 27 more > channel stopped > Email was triggered for: Failure > Sending email for trigger: Failure > ERROR: Ignore Problem expanding maven opts macros org.jenkinsci.plugins.t= okenmacro.TokenMacro > Sending email to: richfaces-builds(a)lists.jboss.org > Finished: FAILURE > {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 = --===============4665516103633880690==-- From jira-events at lists.jboss.org Fri Jan 13 07:27:21 2012 Content-Type: multipart/mixed; boundary="===============7600509985419518046==" 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-11866) Push: Provide more useful message when subtopic does not meet criteria Date: Fri, 13 Jan 2012 07:27:21 -0500 Message-ID: <2123712788.53439.1326457641404.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1682962725.47910.1326102375475.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7600509985419518046== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11866?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11866. ----------------------------- Resolution: Done = > Push: Provide more useful message when subtopic does not meet criteria > ---------------------------------------------------------------------- > > Key: RF-11866 > URL: https://issues.jboss.org/browse/RF-11866 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.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.0.CR1 > > > See forums. > https://github.com/richfaces/core/blob/develop/api/src/main/java/org/rich= faces/application/push/TopicKey.java#L76 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7600509985419518046==-- From jira-events at lists.jboss.org Fri Jan 13 07:44:21 2012 Content-Type: multipart/mixed; boundary="===============3969482380421493916==" 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-11870) Eliminate SNAPSHOT artifacts in non-default profiles Date: Fri, 13 Jan 2012 07:44:21 -0500 Message-ID: <1075942401.53553.1326458661515.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1079472273.50047.1326142929821.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3969482380421493916== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11870?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11870. ----------------------------- Resolution: Done = > Eliminate SNAPSHOT artifacts in non-default profiles > ---------------------------------------------------- > > Key: RF-11870 > URL: https://issues.jboss.org/browse/RF-11870 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Look for -SNAPSHOT occurences across framework, docs and all build deps. > Replace with release versions and verify build locally with given profile= s. > This is required by Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3969482380421493916==-- From jira-events at lists.jboss.org Fri Jan 13 07:44:21 2012 Content-Type: multipart/mixed; boundary="===============1951141052553199353==" 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-11870) Eliminate SNAPSHOT artifacts in non-default profiles Date: Fri, 13 Jan 2012 07:44:21 -0500 Message-ID: <988869388.53552.1326458661457.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1079472273.50047.1326142929821.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1951141052553199353== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11870?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659190#com= ment-12659190 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11870: --------------------------------- There were SNAPSHOT dependencies in integration tests ({{src/it}}) and proj= ect which are not part of the framework build ({{core/legacy-tests}}). = > Eliminate SNAPSHOT artifacts in non-default profiles > ---------------------------------------------------- > > Key: RF-11870 > URL: https://issues.jboss.org/browse/RF-11870 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Look for -SNAPSHOT occurences across framework, docs and all build deps. > Replace with release versions and verify build locally with given profile= s. > This is required by Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1951141052553199353==-- From jira-events at lists.jboss.org Fri Jan 13 07:50:21 2012 Content-Type: multipart/mixed; boundary="===============4156097443832198963==" MIME-Version: 1.0 From: Dirk Dollar (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, 13 Jan 2012 07:50:21 -0500 Message-ID: <1733561605.53594.1326459021528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4156097443832198963== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dirk Dollar created RF-11882: -------------------------------- Summary: 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 I get a = Caused by: java.lang.IllegalAccessException: Class org.ajax4jsf.javascript.= PropertyUtils can not access a member of class java.util.HashMap$Entry with= modifiers "public final" Which wasn't there in richfaces 3.3.3 The code snippet: class MyBean{ public String actionMethod(){ ....do something which creates a Map data, now I want to so= rt it before I return it: private List> sortDataIntoList(Map d= ata) { 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;} } } results in the mentioned 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 --===============4156097443832198963==-- From jira-events at lists.jboss.org Fri Jan 13 07:54:23 2012 Content-Type: multipart/mixed; boundary="===============3858996848183890778==" MIME-Version: 1.0 From: Dirk Dollar (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, 13 Jan 2012 07:54:22 -0500 Message-ID: <1754363298.53664.1326459262912.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1733561605.53594.1326459021528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3858996848183890778== 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 ] Dirk Dollar updated RF-11882: ----------------------------- Description: = I get a = FATAL: ...javax.faces.FacesException: Error in conversion Java Object to JavaScript 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.javascript.= PropertyUtils can not access a member of class java.util.HashMap$Entry with= modifiers "public final" Which wasn't there in richfaces 3.3.3 The code snippet: class MyBean{ public String actionMethod(){ ....do something which creates a Map data, now I want to so= rt it before I return it: private List> sortDataIntoList(Map d= ata) { 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;} } } results in the mentioned error was: I get a = Caused by: java.lang.IllegalAccessException: Class org.ajax4jsf.javascript.= PropertyUtils can not access a member of class java.util.HashMap$Entry with= modifiers "public final" Which wasn't there in richfaces 3.3.3 The code snippet: class MyBean{ public String actionMethod(){ ....do something which creates a Map data, now I want to so= rt it before I return it: private List> sortDataIntoList(Map d= ata) { 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;} } } results in the mentioned error = > 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 > > I get a = > FATAL: > ...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" > Which wasn't there in richfaces 3.3.3 > The code snippet: > 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;} > } > } > results in the mentioned 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 --===============3858996848183890778==-- From jira-events at lists.jboss.org Fri Jan 13 09:37:23 2012 Content-Type: multipart/mixed; boundary="===============3522717214675343014==" MIME-Version: 1.0 From: Dirk Dollar (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, 13 Jan 2012 09:37:23 -0500 Message-ID: <688538701.54505.1326465443557.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1733561605.53594.1326459021528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3522717214675343014== 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 ] Dirk Dollar updated RF-11882: ----------------------------- Priority: Minor (was: Major) Description: = I get a = FATAL: ...javax.faces.FacesException: Error in conversion Java Object to JavaScript 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.javascript.= PropertyUtils can not access a member of class java.util.HashMap$Entry with= modifiers "public final" Which wasn't there in richfaces 3.3.3 The code snippet: class MyBean{ public String actionMethod(){ ....do something which creates a Map data, now I want to so= rt it before I return it: private List> sortDataIntoList(Map d= ata) { 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;} } } results in the mentioned error A possible workaround is to use one's own implementation of a key value obj= ect e.g. something like = http://stackoverflow.com/questions/521171/a-java-collection-of-value-pairs-= tuples was: I get a = FATAL: ...javax.faces.FacesException: Error in conversion Java Object to JavaScript 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.javascript.= PropertyUtils can not access a member of class java.util.HashMap$Entry with= modifiers "public final" Which wasn't there in richfaces 3.3.3 The code snippet: class MyBean{ public String actionMethod(){ ....do something which creates a Map data, now I want to so= rt it before I return it: private List> sortDataIntoList(Map d= ata) { 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;} } } results in the mentioned error = > 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 > Priority: Minor > > I get a = > FATAL: > ...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" > Which wasn't there in richfaces 3.3.3 > The code snippet: > 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;} > } > } > 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 --===============3522717214675343014==-- From jira-events at lists.jboss.org Fri Jan 13 10:46:22 2012 Content-Type: multipart/mixed; boundary="===============6787945721893300492==" 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-11876) Add jsf.js resource dependency to all components to work around RF-11739 Date: Fri, 13 Jan 2012 10:46:22 -0500 Message-ID: <361486724.54945.1326469582218.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 850827564.3537.1326381981377.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6787945721893300492== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11876?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11876. ----------------------------- Labels: needs-qe (was: ) Resolution: Done Only some of components had wrongly defined dependencies. {{jsf.js}} dependency was added mainly to {{base-component.reslib}} which r= esolves issues for most of the components. = > Add jsf.js resource dependency to all components to work around RF-11739 > ------------------------------------------------------------------------ > > Key: RF-11876 > URL: https://issues.jboss.org/browse/RF-11876 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Labels: needs-qe > Fix For: 4.2.0.CR1 > > > By adding {{jsf.js}} dependency properly to each component, > components will be forced to load {{jsf.js}} just before any RF component= requests {{packed.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 = --===============6787945721893300492==-- From jira-events at lists.jboss.org Fri Jan 13 10:48:21 2012 Content-Type: multipart/mixed; boundary="===============0781823673633935416==" 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-11877) Upgrade Servlets API to 3.0 in BOM Date: Fri, 13 Jan 2012 10:48:21 -0500 Message-ID: <345472111.54962.1326469701421.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 904396798.3551.1326382222093.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0781823673633935416== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11877?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659279#com= ment-12659279 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11877: --------------------------------- Servlets 3.0 API has following additions: Pluggability Easy of Development Async Servlet support Security The backward compatibility is solved but * not using Async servlet or detect its support, note that RichFaces does n= ot use it directly, but uses Atmosphere which handle interoperability * automatic registration of servlets does not work, user needs to register = them in {{web.xml}} = > Upgrade Servlets API to 3.0 in BOM > ---------------------------------- > > Key: RF-11877 > URL: https://issues.jboss.org/browse/RF-11877 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > This issue could break backward compatibility with Servlets 2.5 environme= nts, > we should make sure there are no extensive changes in version 3.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 = --===============0781823673633935416==-- From jira-events at lists.jboss.org Fri Jan 13 11:03:22 2012 Content-Type: multipart/mixed; boundary="===============2252584202720323485==" 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-11828) showcase - rich:inplaceInput - entering value does not work Date: Fri, 13 Jan 2012 11:03:22 -0500 Message-ID: <478759361.55017.1326470602478.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 727507047.21455.1324316289442.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2252584202720323485== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11828?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11828: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > showcase - rich:inplaceInput - entering value does not work > ----------------------------------------------------------- > > Key: RF-11828 > URL: https://issues.jboss.org/browse/RF-11828 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Affects Versions: 4.1.0.Final > Environment: richfaces-showcase 4.1.1-SNAPSHOT > all containers > all browsers > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.0.CR1 > > > *Submitting* the value of rich:inplaceInput does not work *by pressing th= e enter key* as it should. = > When I *click outside* of the component then the value of *input is edite= d correctly*. = > This issue is occurring from 4.1.1-SNAPSHOT showcase version. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2252584202720323485==-- From jira-events at lists.jboss.org Fri Jan 13 11:03:22 2012 Content-Type: multipart/mixed; boundary="===============8821573549789273536==" 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-11745) OutOfMemoryError: PermGen space when building on Jenkins Date: Fri, 13 Jan 2012 11:03:22 -0500 Message-ID: <446629592.55020.1326470602897.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 272433447.49466.1322559760800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8821573549789273536== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11745?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11745: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > OutOfMemoryError: PermGen space when building on Jenkins > -------------------------------------------------------- > > Key: RF-11745 > URL: https://issues.jboss.org/browse/RF-11745 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > When RichFaces are built from Jenkins without any extra settings for heap= and perm gen. However, it works fine if following options are set *-Xmx512= m -XX:MaxPermSize=3D128m*. Isn't it possible to set those values directly i= n build (pom.xml)? > {code} > mvn -f build/pom.xml -Pbuild,release clean deploy > {code} > {quote} > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.129= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.72= 9s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [4:17.= 709s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.186= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [1:22.= 666s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [2:08.= 555s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:56.= 547s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.099= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.099= s] > [INFO] RichFaces Showcase ................................ FAILURE [1:57.= 991s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 57:50.540s > [INFO] Finished at: Mon Nov 28 05:38:15 EST 2011 > [INFO] Final Memory: 123M/577M > [INFO] ------------------------------------------------------------------= ------ > --------------------------------------------------- > constituent[0]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-embedder-= 3.0.3.jar > constituent[1]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= 3.0.3.jar > constituent[2]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-utils-2.= 0.6.jar > constituent[3]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-core-3.0.= 3.jar > constituent[4]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-3.0= .3.jar > constituent[5]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= builder-3.0.3.jar > constituent[6]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-interpol= ation-1.14.jar > constituent[7]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-componen= t-annotations-1.5.5.jar > constituent[8]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-sec-disp= atcher-1.3.jar > constituent[9]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-cipher-1= .4.jar > constituent[10]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-reposito= ry-metadata-3.0.3.jar > constituent[11]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-artifact= -3.0.3.jar > constituent[12]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-plugin-a= pi-3.0.3.jar > constituent[13]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-pl= exus-2.1.1.jar > constituent[14]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-be= an-2.1.1.jar > constituent[15]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-guice-2.9= .4-no_aop.jar > constituent[16]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-bu= ilder-3.0.3.jar > constituent[17]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-aether-p= rovider-3.0.3.jar > constituent[18]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-api-1.1= 1.jar > constituent[19]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-spi-1.1= 1.jar > constituent[20]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-util-1.= 11.jar > constituent[21]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-impl-1.= 11.jar > constituent[22]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-compat-3= .0.3.jar > constituent[23]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-provider= -api-1.0-beta-7.jar > constituent[24]: file:/qa/tools/opt/apache-maven-3.0.3/lib/commons-cli-1.= 2.jar > constituent[25]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-lig= htweight-1.0-beta-7.jar > constituent[26]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-sha= red-1.0-beta-7.jar > constituent[27]: file:/qa/tools/opt/apache-maven-3.0.3/lib/xercesMinimal-= 1.9.6.2.jar > constituent[28]: file:/qa/tools/opt/apache-maven-3.0.3/lib/nekohtml-1.9.6= .2.jar > constituent[29]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-file-1.0= -beta-7.jar > constituent[30]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-connect= or-wagon-1.11.jar > --------------------------------------------------- > Exception in thread "main" java.lang.OutOfMemoryError: PermGen space > Exception in thread "Thread-1200" java.lang.OutOfMemoryError: PermGen spa= ce > Archiving artifacts > Finished: FAILURE > {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 = --===============8821573549789273536==-- From jira-events at lists.jboss.org Fri Jan 13 11:13:22 2012 Content-Type: multipart/mixed; boundary="===============1845884374750808894==" 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-11877) Upgrade Servlets API to 3.0 in BOM Date: Fri, 13 Jan 2012 11:13:22 -0500 Message-ID: <11870551.55095.1326471202207.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 904396798.3551.1326382222093.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1845884374750808894== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11877?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659279#com= ment-12659279 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11877 at 1/13/12 11:13 AM: ----------------------------------------------------------- Servlets 3.0 API has following additions: Pluggability Easy of Development Async Servlet support Security The backward compatibility is solved by * not using Async servlet or detect its support, note that RichFaces does n= ot use it directly, but uses Atmosphere which handle interoperability * automatic registration of servlets does not work, user needs to register = them in {{web.xml}} = was (Author: lfryc): Servlets 3.0 API has following additions: Pluggability Easy of Development Async Servlet support Security The backward compatibility is solved but * not using Async servlet or detect its support, note that RichFaces does n= ot use it directly, but uses Atmosphere which handle interoperability * automatic registration of servlets does not work, user needs to register = them in {{web.xml}} = > Upgrade Servlets API to 3.0 in BOM > ---------------------------------- > > Key: RF-11877 > URL: https://issues.jboss.org/browse/RF-11877 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > This issue could break backward compatibility with Servlets 2.5 environme= nts, > we should make sure there are no extensive changes in version 3.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 = --===============1845884374750808894==-- From jira-events at lists.jboss.org Fri Jan 13 11:17:22 2012 Content-Type: multipart/mixed; boundary="===============4403734311704176170==" 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-11877) Upgrade Servlets API to 3.0 in BOM Date: Fri, 13 Jan 2012 11:17:22 -0500 Message-ID: <491207927.55102.1326471442077.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 904396798.3551.1326382222093.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4403734311704176170== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11877?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659289#com= ment-12659289 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11877: --------------------------------- We need to change GAV, not only version, from {{javax.servlet:servlet-api:2.5}} to {{javax.servlet:javax.servlet-api:3.0.1}} = > Upgrade Servlets API to 3.0 in BOM > ---------------------------------- > > Key: RF-11877 > URL: https://issues.jboss.org/browse/RF-11877 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > This issue could break backward compatibility with Servlets 2.5 environme= nts, > we should make sure there are no extensive changes in version 3.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 = --===============4403734311704176170==-- From jira-events at lists.jboss.org Fri Jan 13 11:25:23 2012 Content-Type: multipart/mixed; boundary="===============5819200914192571858==" 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-11739) Components that don't require jsf.js can break ResourceMapping Date: Fri, 13 Jan 2012 11:25:23 -0500 Message-ID: <2010590579.55160.1326471923673.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 445024762.41821.1322186680654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5819200914192571858== 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=3D12659294#com= ment-12659294 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11739: --------------------------------- Just note the workaround has been applied in {{4.2}} with RF-11876. = > 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 = --===============5819200914192571858==-- From jira-events at lists.jboss.org Fri Jan 13 11:29:24 2012 Content-Type: multipart/mixed; boundary="===============3212695196956587435==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11828) showcase - rich:inplaceInput - entering value does not work Date: Fri, 13 Jan 2012 11:29:24 -0500 Message-ID: <927738109.55178.1326472164600.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 727507047.21455.1324316289442.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3212695196956587435== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11828?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11828. ---------------------------- Fix Version/s: (was: 4.2.0.CR1) Resolution: Cannot Reproduce Bug = > showcase - rich:inplaceInput - entering value does not work > ----------------------------------------------------------- > > Key: RF-11828 > URL: https://issues.jboss.org/browse/RF-11828 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Affects Versions: 4.1.0.Final > Environment: richfaces-showcase 4.1.1-SNAPSHOT > all containers > all browsers > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > *Submitting* the value of rich:inplaceInput does not work *by pressing th= e enter key* as it should. = > When I *click outside* of the component then the value of *input is edite= d correctly*. = > This issue is occurring from 4.1.1-SNAPSHOT showcase version. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3212695196956587435==-- From jira-events at lists.jboss.org Fri Jan 13 13:34:21 2012 Content-Type: multipart/mixed; boundary="===============2687411041632862050==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11848) round corner support out of the box Date: Fri, 13 Jan 2012 13:34:21 -0500 Message-ID: <23320839.55508.1326479661396.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1667668977.28991.1324544229472.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2687411041632862050== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11848?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11848: ---------------------------------- Assignee: Dupont Dupont = > round corner support out of the box > ----------------------------------- > > Key: RF-11848 > URL: https://issues.jboss.org/browse/RF-11848 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: skinning > Reporter: Dupont Dupont > Assignee: Dupont Dupont > Fix For: 4.Future > > > Add round corner support to richfaces native styles. > = > Something like jquery ui round-corner support (http://jqueryui.com/themer= oller/) - using only css, no img. > Afterward, as a user just specify a kin property as roundCorner=3D4px and= voila : all components have round corners. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2687411041632862050==-- From jira-events at lists.jboss.org Fri Jan 13 13:44:21 2012 Content-Type: multipart/mixed; boundary="===============8002412575189436730==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11883) Support dynamic attachment of the contextMenu Date: Fri, 13 Jan 2012 13:44:21 -0500 Message-ID: <80244479.55517.1326480261257.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8002412575189436730== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11883: ---------------------------------- Summary: Support dynamic attachment of the contextMenu Key: RF-11883 URL: https://issues.jboss.org/browse/RF-11883 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-menu Reporter: Brian Leathem Assignee: Brian Leathem Fix For: 4.2-Tracking Support creating a single instance of the contextMenu that can be attached = to any component without creating a new contextMenu 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 --===============8002412575189436730==-- From jira-events at lists.jboss.org Sat Jan 14 03:45:23 2012 Content-Type: multipart/mixed; boundary="===============8512016663866136510==" 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: Sat, 14 Jan 2012 03:45:22 -0500 Message-ID: <1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8512016663866136510== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Friedhelm Kuehn created RF-11884: ------------------------------------ Summary: 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, com= ponent-tree Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (al= l errors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics onl= y, problems still persist when RF is removed) Reporter: Friedhelm Kuehn Priority: Critical Problem 1: Shaded TabbedPane Tabs, not changing color when tabbing. Big spa= cing area below tabs (height about 20 px, should be 2px). Problem 2: Content of not-popped-up Popup-Panel is not visible, but an area= 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 TreeNode Problem 6: Javascript Error in ExtendedDataTable.js Biggest Problem: We have to deliver our application in a few weeks. Support= for IE8/9 is hard customer requirement. I have a made a documentation for each problem, but don't find a way to att= ach 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 --===============8512016663866136510==-- From jira-events at lists.jboss.org Sat Jan 14 03:49:22 2012 Content-Type: multipart/mixed; boundary="===============3521799877508323566==" 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: Sat, 14 Jan 2012 03:49:22 -0500 Message-ID: <514963290.56104.1326530962399.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3521799877508323566== 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 updated RF-11884: --------------------------------- Environment: Windows 7 64, Tomcat 7.0.23, Mojarra 2.1.3, IE8/9 (all err= ors), Chrome 16.09 (one problem), PrimesFaces 2.2.1 (ChartGraphics only, pr= oblems still persist when PF is removed) (was: Windows 7 64, Tomcat 7.0.23= , Mojarra 2.1.3, IE8/9 (all errors), Chrome 16.09 (one problem), PrimesFace= s 2.2.1 (ChartGraphics only, problems still persist when RF is removed)) = > 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 > > 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 --===============3521799877508323566==-- From jira-events at lists.jboss.org Sun Jan 15 09:17:18 2012 Content-Type: multipart/mixed; boundary="===============6207606761111379943==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11885) RF 4.1 final a4j:push CDI topic is configured Date: Sun, 15 Jan 2012 09:17:18 -0500 Message-ID: <299555514.178.1326637038536.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6207606761111379943== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-11885: -------------------------------------- Forum Reference: https://community.jboss.org/message/642038#642038, htt= ps://community.jboss.org/thread/176270 (was: https://community.jboss.org/t= hread/176270) = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Labels: a4j:push, cdi > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6207606761111379943==-- From jira-events at lists.jboss.org Sun Jan 15 09:17:18 2012 Content-Type: multipart/mixed; boundary="===============5306570033541837747==" MIME-Version: 1.0 From: Ibrahim Abu Ghosh (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11885) RF 4.1 final a4j:push CDI topic is configured Date: Sun, 15 Jan 2012 09:17:18 -0500 Message-ID: <2063436997.174.1326637038388.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5306570033541837747== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ibrahim Abu Ghosh updated RF-11885: ----------------------------------- Labels: a4j:push cdi (was: ) Forum Reference: https://community.jboss.org/thread/176270 (was: https= ://community.jboss.org/thread/176270) = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Labels: a4j:push, cdi > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5306570033541837747==-- From jira-events at lists.jboss.org Sun Jan 15 09:17:18 2012 Content-Type: multipart/mixed; boundary="===============2397837589312285780==" MIME-Version: 1.0 From: Ibrahim Abu Ghosh (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11885) RF 4.1 final a4j:push CDI topic is configured Date: Sun, 15 Jan 2012 09:17:18 -0500 Message-ID: <880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2397837589312285780== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ibrahim Abu Ghosh created RF-11885: -------------------------------------- Summary: RF 4.1 final a4j:push CDI topic is configured Key: RF-11885 URL: https://issues.jboss.org/browse/RF-11885 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-push/poll Affects Versions: 4.1.0.Final Environment: JBoss 6.0 final JDK 1.6.0_24 Reporter: Ibrahim Abu Ghosh i tried to use a4j:push cdi as in showcase, but my consumer page shows a me= ssage (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2397837589312285780==-- From jira-events at lists.jboss.org Sun Jan 15 16:25:18 2012 Content-Type: multipart/mixed; boundary="===============6785000860315763775==" 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-11846) rich:validator ignores @NotEmpty Date: Sun, 15 Jan 2012 16:25:18 -0500 Message-ID: <856933239.245.1326662718780.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 651588956.26878.1324469409370.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6785000860315763775== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11846?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reopened RF-11846: ------------------------------ Assignee: (was: J=C3=A1n Jamrich) But maybe I found it (correct me if I'm wrong): If form with input bound to some bean (JSR-303 validated) with wrong value = (in this case empty input), client side validation doesn't raise message if= just blur event fired on this input. When input preset by correct value (input is not empty), and then value is = deleted by user and then blur event fired, validation message appears in ms= g box. But I'm not sure if there is workaround for this or it is expected behavior. There is page in Metamer with JSR-303 validation with CSV together: https://source.jboss.org/viewrep/RichFaces/modules/tests/metamer/trunk/appl= ication/src/main/webapp/components/richValidator/csvOnJsr303.xhtml#r23141 An legacy example for CSV on JSR-303 validated bean: https://source.jboss.org/viewrep/RichFaces/modules/tests/metamer/trunk/appl= ication/src/main/webapp/components/richValidator/csv.xhtml = > rich:validator ignores @NotEmpty > -------------------------------- > > Key: RF-11846 > URL: https://issues.jboss.org/browse/RF-11846 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Final > Environment: Maven 3, Tomcat 6.0.x, Ubuntu 11.10 x64, Glassfish j= sf 2.x implementation, Hibernate validator 4.1.0.Final > Reporter: Mercer Traieste > > I want to have [client-side validation|http://richfaces-showcase.appspot.= com/richfaces/component-sample.jsf?demo=3DclientValidation&sample=3Djsr303&= skin=3DblueSky] using rich:validator in Richfaces 4.1, but @NotEmpty is ign= ored. = > {code:xml} = > > > > > > {code} = > {code:java} > import org.hibernate.validator.constraints.NotEmpty; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > import java.io.Serializable; > @ManagedBean > @SessionScoped > public class RichBean implements Serializable { > private static final long serialVersionUID =3D -2403138958014741653L; > @NotEmpty > private String firstName; > public String getFirstName() { > return firstName; > } > public void setFirstName(String firstName) { > this.firstName =3D firstName; > } > } > {code} > @Email, another specific Hibernate validator 4.1 annotation works 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 = --===============6785000860315763775==-- From jira-events at lists.jboss.org Mon Jan 16 03:58:18 2012 Content-Type: multipart/mixed; boundary="===============8803134894943490103==" 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-11877) Upgrade Servlets API to 3.0 in BOM Date: Mon, 16 Jan 2012 03:58:18 -0500 Message-ID: <1826337932.607.1326704298644.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 904396798.3551.1326382222093.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8803134894943490103== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11877?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11877. ----------------------------- Resolution: Done = > Upgrade Servlets API to 3.0 in BOM > ---------------------------------- > > Key: RF-11877 > URL: https://issues.jboss.org/browse/RF-11877 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > This issue could break backward compatibility with Servlets 2.5 environme= nts, > we should make sure there are no extensive changes in version 3.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 = --===============8803134894943490103==-- From jira-events at lists.jboss.org Mon Jan 16 04:17:18 2012 Content-Type: multipart/mixed; boundary="===============7995732677440644868==" 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-11886) Style of the panelMenu changed from 4.1 Date: Mon, 16 Jan 2012 04:17:18 -0500 Message-ID: <383594832.626.1326705438390.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7995732677440644868== 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-11886: ------------------------------- Summary: Style of the panelMenu changed from 4.1 Key: RF-11886 URL: https://issues.jboss.org/browse/RF-11886 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.1.0.Final Environment: Showcase = Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.0.CR1 On the screenshots, there is visual change of panelMenu from 4.1 (http://sh= owcase.richfaces.org/), the border around the panelMenu has been 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 = --===============7995732677440644868==-- From jira-events at lists.jboss.org Mon Jan 16 04:21:21 2012 Content-Type: multipart/mixed; boundary="===============0089025629016041782==" 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-11886) Style of the panelMenu changed from 4.1 Date: Mon, 16 Jan 2012 04:21:21 -0500 Message-ID: <512513442.653.1326705681641.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 383594832.626.1326705438390.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0089025629016041782== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11886?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11886: ---------------------------- Attachment: new.png old.png = > Style of the panelMenu changed from 4.1 > --------------------------------------- > > Key: RF-11886 > URL: https://issues.jboss.org/browse/RF-11886 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Environment: Showcase = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > Attachments: new.png, old.png > > > On the screenshots, there is visual change of panelMenu from 4.1 (http://= showcase.richfaces.org/), > the border around the panelMenu has been 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 = --===============0089025629016041782==-- From jira-events at lists.jboss.org Mon Jan 16 04:21:26 2012 Content-Type: multipart/mixed; boundary="===============0803825625548348003==" 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-11886) Style of the panelMenu changed from 4.1 Date: Mon, 16 Jan 2012 04:21:25 -0500 Message-ID: <1408123768.672.1326705685102.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 383594832.626.1326705438390.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0803825625548348003== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11886?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11886: ---------------------------- Priority: Minor (was: Major) = > Style of the panelMenu changed from 4.1 > --------------------------------------- > > Key: RF-11886 > URL: https://issues.jboss.org/browse/RF-11886 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Environment: Showcase = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.2.0.CR1 > > Attachments: new.png, old.png > > > On the screenshots, there is visual change of panelMenu from 4.1 (http://= showcase.richfaces.org/), > the border around the panelMenu has been 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 = --===============0803825625548348003==-- From jira-events at lists.jboss.org Mon Jan 16 05:53:18 2012 Content-Type: multipart/mixed; boundary="===============0153229111144885014==" 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-11471) Upgrade to latest version of Atmosphere Date: Mon, 16 Jan 2012 05:53:18 -0500 Message-ID: <614675641.916.1326711198677.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0153229111144885014== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659488#com= ment-12659488 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11471: --------------------------------- When upgraded to Atmosphere {{0.8.3}}, it throws: {code} 11:51:58,101 SEVERE [org.richfaces.log.Application] (http-localhost.localdo= main-127.0.0.1-8080-6) null: java.lang.NullPointerException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor= .java:380) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.container.Servlet30CometSupport$CometListener.onTimeout(= Servlet30CometSupport.java:186) [atmosphere-runtime-0.8.3.jar:] at org.apache.catalina.core.StandardWrapperValve.async(StandardWrapperValv= e.java:584) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardWrapperValve.event(StandardWrapperValv= e.java:402) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardContextValve.__event(StandardContextVa= lve.java:183) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardContextValve.event(StandardContextValv= e.java) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardHostValve.event(StandardHostValve.java= :256) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardEngineValve.event(StandardEngineValve.= java:128) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.connector.CoyoteAdapter.event(CoyoteAdapter.java:26= 5) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.coyote.http11.Http11Processor.event(Http11Processor.java:757= ) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.event(H= ttp11Protocol.java:615) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:939)= [jbossweb-7.0.1.Final.jar:7.0.2.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_26] {code} = > Upgrade to latest version of Atmosphere > --------------------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0153229111144885014==-- From jira-events at lists.jboss.org Mon Jan 16 06:28:18 2012 Content-Type: multipart/mixed; boundary="===============0486172155071865413==" 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-11887) Showcase: ajax transitions between demos/samples Date: Mon, 16 Jan 2012 06:28:18 -0500 Message-ID: <410816163.1013.1326713298365.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0486172155071865413== 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-11887: ------------------------------- Summary: Showcase: ajax transitions between demos/samples Key: RF-11887 URL: https://issues.jboss.org/browse/RF-11887 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: showcase Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D When navigating between demos/samples, whole page updates are necessary cur= rently. Navigation may be much more fluent when using Ajax transitions only. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0486172155071865413==-- From jira-events at lists.jboss.org Mon Jan 16 06:42:19 2012 Content-Type: multipart/mixed; boundary="===============7615167638476243574==" 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-11471) Upgrade to latest version of Atmosphere Date: Mon, 16 Jan 2012 06:42:18 -0500 Message-ID: <947940917.1064.1326714138887.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7615167638476243574== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659500#com= ment-12659500 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11471: --------------------------------- I cannot reproduce NPE above anymore, passing for verification to QE: RFPL-1978 = > Upgrade to latest version of Atmosphere > --------------------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7615167638476243574==-- From jira-events at lists.jboss.org Mon Jan 16 06:44:18 2012 Content-Type: multipart/mixed; boundary="===============7066125506398751040==" 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-11471) Upgrade to Atmosphere 0.8.3 Date: Mon, 16 Jan 2012 06:44:18 -0500 Message-ID: <1072972360.1078.1326714258833.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7066125506398751040== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11471: ---------------------------- Summary: Upgrade to Atmosphere 0.8.3 (was: Upgrade to latest version o= f Atmosphere) = > Upgrade to Atmosphere 0.8.3 > --------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7066125506398751040==-- From jira-events at lists.jboss.org Mon Jan 16 06:44:19 2012 Content-Type: multipart/mixed; boundary="===============2825949705615427312==" 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-11471) Upgrade to Atmosphere 0.8.3 Date: Mon, 16 Jan 2012 06:44:18 -0500 Message-ID: <1241758793.1079.1326714258894.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2825949705615427312== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11471. ----------------------------- Resolution: Done = > Upgrade to Atmosphere 0.8.3 > --------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2825949705615427312==-- From jira-events at lists.jboss.org Mon Jan 16 08:08:18 2012 Content-Type: multipart/mixed; boundary="===============1184486066603247684==" MIME-Version: 1.0 From: Brendan Healey (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11888) Resource Servlet can't handle query string appended to resource url Date: Mon, 16 Jan 2012 08:08:18 -0500 Message-ID: <787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1184486066603247684== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brendan Healey created RF-11888: ----------------------------------- Summary: Resource Servlet can't handle query string appended t= o resource url Key: RF-11888 URL: https://issues.jboss.org/browse/RF-11888 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: resource handling Affects Versions: 4.1.0.Final Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome brow= ser - = Reporter: Brendan Healey A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_new= _feature) can be used to append a version string (i.e. ?v=3D23) to a resource url to = force a browser to refresh a resource rather than use any cached version. This is useful as a last resort strategy, perhaps after a major redeploymen= t, and also in the event that there are other problems setting useful ETag and Las= t-Modified http response headers. At present any appending of a version string causes a 404 response status, = for example: Request URL: https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource/o= rg.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/pac= ked.css?v=3D23 Removing the url parameter makes it work ok. As you can see I have resource= Mapping enabled. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1184486066603247684==-- From jira-events at lists.jboss.org Mon Jan 16 08:35:18 2012 Content-Type: multipart/mixed; boundary="===============0275204019430997305==" 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-11745) OutOfMemoryError: PermGen space when building on Jenkins Date: Mon, 16 Jan 2012 08:35:18 -0500 Message-ID: <1782133384.1435.1326720918604.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 272433447.49466.1322559760800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0275204019430997305== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11745?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659532#com= ment-12659532 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11745: --------------------------------- PermGen size is setup in build-JVM settings MAVEN_OPTS, so it cannot be influenced in {{pom.xml}}. = > OutOfMemoryError: PermGen space when building on Jenkins > -------------------------------------------------------- > > Key: RF-11745 > URL: https://issues.jboss.org/browse/RF-11745 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > When RichFaces are built from Jenkins without any extra settings for heap= and perm gen. However, it works fine if following options are set *-Xmx512= m -XX:MaxPermSize=3D128m*. Isn't it possible to set those values directly i= n build (pom.xml)? > {code} > mvn -f build/pom.xml -Pbuild,release clean deploy > {code} > {quote} > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.129= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.72= 9s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [4:17.= 709s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.186= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [1:22.= 666s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [2:08.= 555s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:56.= 547s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.099= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.099= s] > [INFO] RichFaces Showcase ................................ FAILURE [1:57.= 991s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 57:50.540s > [INFO] Finished at: Mon Nov 28 05:38:15 EST 2011 > [INFO] Final Memory: 123M/577M > [INFO] ------------------------------------------------------------------= ------ > --------------------------------------------------- > constituent[0]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-embedder-= 3.0.3.jar > constituent[1]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= 3.0.3.jar > constituent[2]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-utils-2.= 0.6.jar > constituent[3]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-core-3.0.= 3.jar > constituent[4]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-3.0= .3.jar > constituent[5]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= builder-3.0.3.jar > constituent[6]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-interpol= ation-1.14.jar > constituent[7]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-componen= t-annotations-1.5.5.jar > constituent[8]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-sec-disp= atcher-1.3.jar > constituent[9]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-cipher-1= .4.jar > constituent[10]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-reposito= ry-metadata-3.0.3.jar > constituent[11]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-artifact= -3.0.3.jar > constituent[12]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-plugin-a= pi-3.0.3.jar > constituent[13]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-pl= exus-2.1.1.jar > constituent[14]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-be= an-2.1.1.jar > constituent[15]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-guice-2.9= .4-no_aop.jar > constituent[16]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-bu= ilder-3.0.3.jar > constituent[17]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-aether-p= rovider-3.0.3.jar > constituent[18]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-api-1.1= 1.jar > constituent[19]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-spi-1.1= 1.jar > constituent[20]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-util-1.= 11.jar > constituent[21]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-impl-1.= 11.jar > constituent[22]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-compat-3= .0.3.jar > constituent[23]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-provider= -api-1.0-beta-7.jar > constituent[24]: file:/qa/tools/opt/apache-maven-3.0.3/lib/commons-cli-1.= 2.jar > constituent[25]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-lig= htweight-1.0-beta-7.jar > constituent[26]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-sha= red-1.0-beta-7.jar > constituent[27]: file:/qa/tools/opt/apache-maven-3.0.3/lib/xercesMinimal-= 1.9.6.2.jar > constituent[28]: file:/qa/tools/opt/apache-maven-3.0.3/lib/nekohtml-1.9.6= .2.jar > constituent[29]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-file-1.0= -beta-7.jar > constituent[30]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-connect= or-wagon-1.11.jar > --------------------------------------------------- > Exception in thread "main" java.lang.OutOfMemoryError: PermGen space > Exception in thread "Thread-1200" java.lang.OutOfMemoryError: PermGen spa= ce > Archiving artifacts > Finished: FAILURE > {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 = --===============0275204019430997305==-- From jira-events at lists.jboss.org Mon Jan 16 08:39:18 2012 Content-Type: multipart/mixed; boundary="===============9108043242213322632==" 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-11745) OutOfMemoryError: PermGen space when building on Jenkins Date: Mon, 16 Jan 2012 08:39:18 -0500 Message-ID: <1187880609.1441.1326721158483.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 272433447.49466.1322559760800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9108043242213322632== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11745?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11745: ---------------------------- Attachment: Screenshot-components-1.png = > OutOfMemoryError: PermGen space when building on Jenkins > -------------------------------------------------------- > > Key: RF-11745 > URL: https://issues.jboss.org/browse/RF-11745 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > Attachments: Screenshot-components-1.png > > > When RichFaces are built from Jenkins without any extra settings for heap= and perm gen. However, it works fine if following options are set *-Xmx512= m -XX:MaxPermSize=3D128m*. Isn't it possible to set those values directly i= n build (pom.xml)? > {code} > mvn -f build/pom.xml -Pbuild,release clean deploy > {code} > {quote} > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.129= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.72= 9s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [4:17.= 709s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.186= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [1:22.= 666s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [2:08.= 555s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:56.= 547s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.099= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.099= s] > [INFO] RichFaces Showcase ................................ FAILURE [1:57.= 991s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 57:50.540s > [INFO] Finished at: Mon Nov 28 05:38:15 EST 2011 > [INFO] Final Memory: 123M/577M > [INFO] ------------------------------------------------------------------= ------ > --------------------------------------------------- > constituent[0]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-embedder-= 3.0.3.jar > constituent[1]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= 3.0.3.jar > constituent[2]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-utils-2.= 0.6.jar > constituent[3]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-core-3.0.= 3.jar > constituent[4]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-3.0= .3.jar > constituent[5]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= builder-3.0.3.jar > constituent[6]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-interpol= ation-1.14.jar > constituent[7]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-componen= t-annotations-1.5.5.jar > constituent[8]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-sec-disp= atcher-1.3.jar > constituent[9]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-cipher-1= .4.jar > constituent[10]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-reposito= ry-metadata-3.0.3.jar > constituent[11]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-artifact= -3.0.3.jar > constituent[12]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-plugin-a= pi-3.0.3.jar > constituent[13]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-pl= exus-2.1.1.jar > constituent[14]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-be= an-2.1.1.jar > constituent[15]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-guice-2.9= .4-no_aop.jar > constituent[16]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-bu= ilder-3.0.3.jar > constituent[17]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-aether-p= rovider-3.0.3.jar > constituent[18]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-api-1.1= 1.jar > constituent[19]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-spi-1.1= 1.jar > constituent[20]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-util-1.= 11.jar > constituent[21]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-impl-1.= 11.jar > constituent[22]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-compat-3= .0.3.jar > constituent[23]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-provider= -api-1.0-beta-7.jar > constituent[24]: file:/qa/tools/opt/apache-maven-3.0.3/lib/commons-cli-1.= 2.jar > constituent[25]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-lig= htweight-1.0-beta-7.jar > constituent[26]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-sha= red-1.0-beta-7.jar > constituent[27]: file:/qa/tools/opt/apache-maven-3.0.3/lib/xercesMinimal-= 1.9.6.2.jar > constituent[28]: file:/qa/tools/opt/apache-maven-3.0.3/lib/nekohtml-1.9.6= .2.jar > constituent[29]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-file-1.0= -beta-7.jar > constituent[30]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-connect= or-wagon-1.11.jar > --------------------------------------------------- > Exception in thread "main" java.lang.OutOfMemoryError: PermGen space > Exception in thread "Thread-1200" java.lang.OutOfMemoryError: PermGen spa= ce > Archiving artifacts > Finished: FAILURE > {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 = --===============9108043242213322632==-- From jira-events at lists.jboss.org Mon Jan 16 08:43:19 2012 Content-Type: multipart/mixed; boundary="===============1511353543720247395==" 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-11745) OutOfMemoryError: PermGen space when building on Jenkins Date: Mon, 16 Jan 2012 08:43:19 -0500 Message-ID: <1225117408.1482.1326721399480.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 272433447.49466.1322559760800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1511353543720247395== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11745?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659535#com= ment-12659535 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11745: --------------------------------- I have verified that build of {{components}} isn't too memory consuming, se= e attached {{jconsole}} chart ({{static-resources}} part is highlighted by = red color). For comparison, other increases of perm gen are introduced by compilation p= hase ({{maven-compiler-plugin}}), stable memory usage level is test-run time. = > OutOfMemoryError: PermGen space when building on Jenkins > -------------------------------------------------------- > > Key: RF-11745 > URL: https://issues.jboss.org/browse/RF-11745 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > Attachments: Screenshot-components-1.png > > > When RichFaces are built from Jenkins without any extra settings for heap= and perm gen. However, it works fine if following options are set *-Xmx512= m -XX:MaxPermSize=3D128m*. Isn't it possible to set those values directly i= n build (pom.xml)? > {code} > mvn -f build/pom.xml -Pbuild,release clean deploy > {code} > {quote} > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.129= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.72= 9s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [4:17.= 709s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.186= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [1:22.= 666s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [2:08.= 555s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:56.= 547s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.099= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.099= s] > [INFO] RichFaces Showcase ................................ FAILURE [1:57.= 991s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 57:50.540s > [INFO] Finished at: Mon Nov 28 05:38:15 EST 2011 > [INFO] Final Memory: 123M/577M > [INFO] ------------------------------------------------------------------= ------ > --------------------------------------------------- > constituent[0]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-embedder-= 3.0.3.jar > constituent[1]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= 3.0.3.jar > constituent[2]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-utils-2.= 0.6.jar > constituent[3]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-core-3.0.= 3.jar > constituent[4]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-3.0= .3.jar > constituent[5]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= builder-3.0.3.jar > constituent[6]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-interpol= ation-1.14.jar > constituent[7]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-componen= t-annotations-1.5.5.jar > constituent[8]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-sec-disp= atcher-1.3.jar > constituent[9]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-cipher-1= .4.jar > constituent[10]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-reposito= ry-metadata-3.0.3.jar > constituent[11]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-artifact= -3.0.3.jar > constituent[12]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-plugin-a= pi-3.0.3.jar > constituent[13]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-pl= exus-2.1.1.jar > constituent[14]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-be= an-2.1.1.jar > constituent[15]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-guice-2.9= .4-no_aop.jar > constituent[16]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-bu= ilder-3.0.3.jar > constituent[17]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-aether-p= rovider-3.0.3.jar > constituent[18]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-api-1.1= 1.jar > constituent[19]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-spi-1.1= 1.jar > constituent[20]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-util-1.= 11.jar > constituent[21]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-impl-1.= 11.jar > constituent[22]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-compat-3= .0.3.jar > constituent[23]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-provider= -api-1.0-beta-7.jar > constituent[24]: file:/qa/tools/opt/apache-maven-3.0.3/lib/commons-cli-1.= 2.jar > constituent[25]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-lig= htweight-1.0-beta-7.jar > constituent[26]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-sha= red-1.0-beta-7.jar > constituent[27]: file:/qa/tools/opt/apache-maven-3.0.3/lib/xercesMinimal-= 1.9.6.2.jar > constituent[28]: file:/qa/tools/opt/apache-maven-3.0.3/lib/nekohtml-1.9.6= .2.jar > constituent[29]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-file-1.0= -beta-7.jar > constituent[30]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-connect= or-wagon-1.11.jar > --------------------------------------------------- > Exception in thread "main" java.lang.OutOfMemoryError: PermGen space > Exception in thread "Thread-1200" java.lang.OutOfMemoryError: PermGen spa= ce > Archiving artifacts > Finished: FAILURE > {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 = --===============1511353543720247395==-- From jira-events at lists.jboss.org Mon Jan 16 08:45:19 2012 Content-Type: multipart/mixed; boundary="===============7394840823556166849==" 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-11745) OutOfMemoryError: PermGen space when building on Jenkins Date: Mon, 16 Jan 2012 08:45:18 -0500 Message-ID: <142305833.1496.1326721518265.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 272433447.49466.1322559760800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7394840823556166849== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11745?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659537#com= ment-12659537 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11745: --------------------------------- As there is nothing we can do about lowering memory consumption, I suggest to: * setup {{MAVEN_OPTS}} appropriately * separate build of modules ({{core}}, {{components}}) = > OutOfMemoryError: PermGen space when building on Jenkins > -------------------------------------------------------- > > Key: RF-11745 > URL: https://issues.jboss.org/browse/RF-11745 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > Attachments: Screenshot-components-1.png > > > When RichFaces are built from Jenkins without any extra settings for heap= and perm gen. However, it works fine if following options are set *-Xmx512= m -XX:MaxPermSize=3D128m*. Isn't it possible to set those values directly i= n build (pom.xml)? > {code} > mvn -f build/pom.xml -Pbuild,release clean deploy > {code} > {quote} > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.129= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.72= 9s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [4:17.= 709s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.186= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [1:22.= 666s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [2:08.= 555s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:56.= 547s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.099= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.099= s] > [INFO] RichFaces Showcase ................................ FAILURE [1:57.= 991s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 57:50.540s > [INFO] Finished at: Mon Nov 28 05:38:15 EST 2011 > [INFO] Final Memory: 123M/577M > [INFO] ------------------------------------------------------------------= ------ > --------------------------------------------------- > constituent[0]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-embedder-= 3.0.3.jar > constituent[1]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= 3.0.3.jar > constituent[2]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-utils-2.= 0.6.jar > constituent[3]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-core-3.0.= 3.jar > constituent[4]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-3.0= .3.jar > constituent[5]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= builder-3.0.3.jar > constituent[6]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-interpol= ation-1.14.jar > constituent[7]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-componen= t-annotations-1.5.5.jar > constituent[8]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-sec-disp= atcher-1.3.jar > constituent[9]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-cipher-1= .4.jar > constituent[10]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-reposito= ry-metadata-3.0.3.jar > constituent[11]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-artifact= -3.0.3.jar > constituent[12]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-plugin-a= pi-3.0.3.jar > constituent[13]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-pl= exus-2.1.1.jar > constituent[14]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-be= an-2.1.1.jar > constituent[15]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-guice-2.9= .4-no_aop.jar > constituent[16]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-bu= ilder-3.0.3.jar > constituent[17]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-aether-p= rovider-3.0.3.jar > constituent[18]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-api-1.1= 1.jar > constituent[19]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-spi-1.1= 1.jar > constituent[20]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-util-1.= 11.jar > constituent[21]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-impl-1.= 11.jar > constituent[22]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-compat-3= .0.3.jar > constituent[23]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-provider= -api-1.0-beta-7.jar > constituent[24]: file:/qa/tools/opt/apache-maven-3.0.3/lib/commons-cli-1.= 2.jar > constituent[25]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-lig= htweight-1.0-beta-7.jar > constituent[26]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-sha= red-1.0-beta-7.jar > constituent[27]: file:/qa/tools/opt/apache-maven-3.0.3/lib/xercesMinimal-= 1.9.6.2.jar > constituent[28]: file:/qa/tools/opt/apache-maven-3.0.3/lib/nekohtml-1.9.6= .2.jar > constituent[29]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-file-1.0= -beta-7.jar > constituent[30]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-connect= or-wagon-1.11.jar > --------------------------------------------------- > Exception in thread "main" java.lang.OutOfMemoryError: PermGen space > Exception in thread "Thread-1200" java.lang.OutOfMemoryError: PermGen spa= ce > Archiving artifacts > Finished: FAILURE > {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 = --===============7394840823556166849==-- From jira-events at lists.jboss.org Mon Jan 16 08:47:19 2012 Content-Type: multipart/mixed; boundary="===============4992312610986048631==" 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-11745) OutOfMemoryError: PermGen space when building on Jenkins Date: Mon, 16 Jan 2012 08:47:19 -0500 Message-ID: <207429766.1505.1326721639433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 272433447.49466.1322559760800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4992312610986048631== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11745?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659537#com= ment-12659537 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11745 at 1/16/12 8:45 AM: ---------------------------------------------------------- As there is nothing we can do about lowering memory consumption, I suggest to: * setup {{MAVEN_OPTS}} appropriately * separate build of modules ({{core}}, {{components}}, ...) = was (Author: lfryc): As there is nothing we can do about lowering memory consumption, I suggest to: * setup {{MAVEN_OPTS}} appropriately * separate build of modules ({{core}}, {{components}}) = > OutOfMemoryError: PermGen space when building on Jenkins > -------------------------------------------------------- > > Key: RF-11745 > URL: https://issues.jboss.org/browse/RF-11745 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: Screenshot-components-1.png > > > When RichFaces are built from Jenkins without any extra settings for heap= and perm gen. However, it works fine if following options are set *-Xmx512= m -XX:MaxPermSize=3D128m*. Isn't it possible to set those values directly i= n build (pom.xml)? > {code} > mvn -f build/pom.xml -Pbuild,release clean deploy > {code} > {quote} > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.129= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.72= 9s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [4:17.= 709s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.186= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [1:22.= 666s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [2:08.= 555s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:56.= 547s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.099= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.099= s] > [INFO] RichFaces Showcase ................................ FAILURE [1:57.= 991s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 57:50.540s > [INFO] Finished at: Mon Nov 28 05:38:15 EST 2011 > [INFO] Final Memory: 123M/577M > [INFO] ------------------------------------------------------------------= ------ > --------------------------------------------------- > constituent[0]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-embedder-= 3.0.3.jar > constituent[1]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= 3.0.3.jar > constituent[2]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-utils-2.= 0.6.jar > constituent[3]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-core-3.0.= 3.jar > constituent[4]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-3.0= .3.jar > constituent[5]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= builder-3.0.3.jar > constituent[6]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-interpol= ation-1.14.jar > constituent[7]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-componen= t-annotations-1.5.5.jar > constituent[8]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-sec-disp= atcher-1.3.jar > constituent[9]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-cipher-1= .4.jar > constituent[10]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-reposito= ry-metadata-3.0.3.jar > constituent[11]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-artifact= -3.0.3.jar > constituent[12]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-plugin-a= pi-3.0.3.jar > constituent[13]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-pl= exus-2.1.1.jar > constituent[14]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-be= an-2.1.1.jar > constituent[15]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-guice-2.9= .4-no_aop.jar > constituent[16]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-bu= ilder-3.0.3.jar > constituent[17]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-aether-p= rovider-3.0.3.jar > constituent[18]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-api-1.1= 1.jar > constituent[19]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-spi-1.1= 1.jar > constituent[20]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-util-1.= 11.jar > constituent[21]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-impl-1.= 11.jar > constituent[22]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-compat-3= .0.3.jar > constituent[23]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-provider= -api-1.0-beta-7.jar > constituent[24]: file:/qa/tools/opt/apache-maven-3.0.3/lib/commons-cli-1.= 2.jar > constituent[25]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-lig= htweight-1.0-beta-7.jar > constituent[26]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-sha= red-1.0-beta-7.jar > constituent[27]: file:/qa/tools/opt/apache-maven-3.0.3/lib/xercesMinimal-= 1.9.6.2.jar > constituent[28]: file:/qa/tools/opt/apache-maven-3.0.3/lib/nekohtml-1.9.6= .2.jar > constituent[29]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-file-1.0= -beta-7.jar > constituent[30]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-connect= or-wagon-1.11.jar > --------------------------------------------------- > Exception in thread "main" java.lang.OutOfMemoryError: PermGen space > Exception in thread "Thread-1200" java.lang.OutOfMemoryError: PermGen spa= ce > Archiving artifacts > Finished: FAILURE > {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 = --===============4992312610986048631==-- From jira-events at lists.jboss.org Mon Jan 16 08:47:20 2012 Content-Type: multipart/mixed; boundary="===============7007237525050605037==" 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-11745) OutOfMemoryError: PermGen space when building on Jenkins Date: Mon, 16 Jan 2012 08:47:19 -0500 Message-ID: <663806902.1513.1326721639907.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 272433447.49466.1322559760800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7007237525050605037== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11745?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11745. ----------------------------- Fix Version/s: (was: 4.2.0.CR1) Resolution: Won't Fix = > OutOfMemoryError: PermGen space when building on Jenkins > -------------------------------------------------------- > > Key: RF-11745 > URL: https://issues.jboss.org/browse/RF-11745 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: Screenshot-components-1.png > > > When RichFaces are built from Jenkins without any extra settings for heap= and perm gen. However, it works fine if following options are set *-Xmx512= m -XX:MaxPermSize=3D128m*. Isn't it possible to set those values directly i= n build (pom.xml)? > {code} > mvn -f build/pom.xml -Pbuild,release clean deploy > {code} > {quote} > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.129= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.72= 9s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [4:17.= 709s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.186= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [1:22.= 666s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [2:08.= 555s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:56.= 547s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.099= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.099= s] > [INFO] RichFaces Showcase ................................ FAILURE [1:57.= 991s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 57:50.540s > [INFO] Finished at: Mon Nov 28 05:38:15 EST 2011 > [INFO] Final Memory: 123M/577M > [INFO] ------------------------------------------------------------------= ------ > --------------------------------------------------- > constituent[0]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-embedder-= 3.0.3.jar > constituent[1]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= 3.0.3.jar > constituent[2]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-utils-2.= 0.6.jar > constituent[3]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-core-3.0.= 3.jar > constituent[4]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-3.0= .3.jar > constituent[5]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= builder-3.0.3.jar > constituent[6]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-interpol= ation-1.14.jar > constituent[7]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-componen= t-annotations-1.5.5.jar > constituent[8]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-sec-disp= atcher-1.3.jar > constituent[9]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-cipher-1= .4.jar > constituent[10]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-reposito= ry-metadata-3.0.3.jar > constituent[11]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-artifact= -3.0.3.jar > constituent[12]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-plugin-a= pi-3.0.3.jar > constituent[13]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-pl= exus-2.1.1.jar > constituent[14]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-be= an-2.1.1.jar > constituent[15]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-guice-2.9= .4-no_aop.jar > constituent[16]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-bu= ilder-3.0.3.jar > constituent[17]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-aether-p= rovider-3.0.3.jar > constituent[18]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-api-1.1= 1.jar > constituent[19]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-spi-1.1= 1.jar > constituent[20]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-util-1.= 11.jar > constituent[21]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-impl-1.= 11.jar > constituent[22]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-compat-3= .0.3.jar > constituent[23]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-provider= -api-1.0-beta-7.jar > constituent[24]: file:/qa/tools/opt/apache-maven-3.0.3/lib/commons-cli-1.= 2.jar > constituent[25]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-lig= htweight-1.0-beta-7.jar > constituent[26]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-sha= red-1.0-beta-7.jar > constituent[27]: file:/qa/tools/opt/apache-maven-3.0.3/lib/xercesMinimal-= 1.9.6.2.jar > constituent[28]: file:/qa/tools/opt/apache-maven-3.0.3/lib/nekohtml-1.9.6= .2.jar > constituent[29]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-file-1.0= -beta-7.jar > constituent[30]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-connect= or-wagon-1.11.jar > --------------------------------------------------- > Exception in thread "main" java.lang.OutOfMemoryError: PermGen space > Exception in thread "Thread-1200" java.lang.OutOfMemoryError: PermGen spa= ce > Archiving artifacts > Finished: FAILURE > {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 = --===============7007237525050605037==-- From jira-events at lists.jboss.org Mon Jan 16 08:52:18 2012 Content-Type: multipart/mixed; boundary="===============3086851973008309421==" 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-11745) OutOfMemoryError: PermGen space when building on Jenkins Date: Mon, 16 Jan 2012 08:52:18 -0500 Message-ID: <650187538.1518.1326721938247.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 272433447.49466.1322559760800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3086851973008309421== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11745?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659539#com= ment-12659539 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11745: --------------------------------- Wiki about [How to build RichFaces 4.0|https://community.jboss.org/wiki/How= ToBuildRichFaces40] was updated accordingly. = > OutOfMemoryError: PermGen space when building on Jenkins > -------------------------------------------------------- > > Key: RF-11745 > URL: https://issues.jboss.org/browse/RF-11745 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.CR1 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: Screenshot-components-1.png > > > When RichFaces are built from Jenkins without any extra settings for heap= and perm gen. However, it works fine if following options are set *-Xmx512= m -XX:MaxPermSize=3D128m*. Isn't it possible to set those values directly i= n build (pom.xml)? > {code} > mvn -f build/pom.xml -Pbuild,release clean deploy > {code} > {quote} > [INFO] RichFaces UI Components: Drag-n-Drop Aggregator ... SUCCESS [0.129= s] > [INFO] RichFaces UI Components: Validator api ............ SUCCESS [15.72= 9s] > [INFO] RichFaces UI Components: Validator ui ............. SUCCESS [4:17.= 709s] > [INFO] RichFaces UI Components: validator-aggregator ..... SUCCESS [0.186= s] > [INFO] Richfaces UI Components API ....................... SUCCESS [1:22.= 666s] > [INFO] RichFaces UI Components Static Resources .......... SUCCESS [2:08.= 555s] > [INFO] RichFaces UI Components UI ........................ SUCCESS [2:56.= 547s] > [INFO] RichFaces UI Distribution ......................... SUCCESS [0.099= s] > [INFO] RichFaces UI Components Aggregator ................ SUCCESS [0.099= s] > [INFO] RichFaces Showcase ................................ FAILURE [1:57.= 991s] > [INFO] RichFaces Distribution Assembler .................. SKIPPED > [INFO] RichFaces Aggregator .............................. SKIPPED > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 57:50.540s > [INFO] Finished at: Mon Nov 28 05:38:15 EST 2011 > [INFO] Final Memory: 123M/577M > [INFO] ------------------------------------------------------------------= ------ > --------------------------------------------------- > constituent[0]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-embedder-= 3.0.3.jar > constituent[1]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= 3.0.3.jar > constituent[2]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-utils-2.= 0.6.jar > constituent[3]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-core-3.0.= 3.jar > constituent[4]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-3.0= .3.jar > constituent[5]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-settings-= builder-3.0.3.jar > constituent[6]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-interpol= ation-1.14.jar > constituent[7]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-componen= t-annotations-1.5.5.jar > constituent[8]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-sec-disp= atcher-1.3.jar > constituent[9]: file:/qa/tools/opt/apache-maven-3.0.3/lib/plexus-cipher-1= .4.jar > constituent[10]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-reposito= ry-metadata-3.0.3.jar > constituent[11]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-artifact= -3.0.3.jar > constituent[12]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-plugin-a= pi-3.0.3.jar > constituent[13]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-pl= exus-2.1.1.jar > constituent[14]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-inject-be= an-2.1.1.jar > constituent[15]: file:/qa/tools/opt/apache-maven-3.0.3/lib/sisu-guice-2.9= .4-no_aop.jar > constituent[16]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-model-bu= ilder-3.0.3.jar > constituent[17]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-aether-p= rovider-3.0.3.jar > constituent[18]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-api-1.1= 1.jar > constituent[19]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-spi-1.1= 1.jar > constituent[20]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-util-1.= 11.jar > constituent[21]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-impl-1.= 11.jar > constituent[22]: file:/qa/tools/opt/apache-maven-3.0.3/lib/maven-compat-3= .0.3.jar > constituent[23]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-provider= -api-1.0-beta-7.jar > constituent[24]: file:/qa/tools/opt/apache-maven-3.0.3/lib/commons-cli-1.= 2.jar > constituent[25]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-lig= htweight-1.0-beta-7.jar > constituent[26]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-http-sha= red-1.0-beta-7.jar > constituent[27]: file:/qa/tools/opt/apache-maven-3.0.3/lib/xercesMinimal-= 1.9.6.2.jar > constituent[28]: file:/qa/tools/opt/apache-maven-3.0.3/lib/nekohtml-1.9.6= .2.jar > constituent[29]: file:/qa/tools/opt/apache-maven-3.0.3/lib/wagon-file-1.0= -beta-7.jar > constituent[30]: file:/qa/tools/opt/apache-maven-3.0.3/lib/aether-connect= or-wagon-1.11.jar > --------------------------------------------------- > Exception in thread "main" java.lang.OutOfMemoryError: PermGen space > Exception in thread "Thread-1200" java.lang.OutOfMemoryError: PermGen spa= ce > Archiving artifacts > Finished: FAILURE > {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 = --===============3086851973008309421==-- From jira-events at lists.jboss.org Mon Jan 16 08:56:18 2012 Content-Type: multipart/mixed; boundary="===============5840294329811722270==" 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-11889) maven-resources-plugin: ResourceWriter: close streams appropriately Date: Mon, 16 Jan 2012 08:56:18 -0500 Message-ID: <942338142.1532.1326722178330.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5840294329811722270== 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-11889: ------------------------------- Summary: maven-resources-plugin: ResourceWriter: close streams= appropriately Key: RF-11889 URL: https://issues.jboss.org/browse/RF-11889 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: cdk Affects Versions: 4.1.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.0.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 = --===============5840294329811722270==-- From jira-events at lists.jboss.org Mon Jan 16 08:58:18 2012 Content-Type: multipart/mixed; boundary="===============3269703123976219358==" 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-11889) maven-resources-plugin: ResourceWriter: close streams appropriately Date: Mon, 16 Jan 2012 08:58:18 -0500 Message-ID: <1395424682.1538.1326722298464.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 942338142.1532.1326722178330.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3269703123976219358== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11889?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11889. ----------------------------- Resolution: Done = > maven-resources-plugin: ResourceWriter: close streams appropriately > ------------------------------------------------------------------- > > Key: RF-11889 > URL: https://issues.jboss.org/browse/RF-11889 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.1.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.0.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 = --===============3269703123976219358==-- From jira-events at lists.jboss.org Mon Jan 16 09:22:18 2012 Content-Type: multipart/mixed; boundary="===============6522623755394719459==" 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-11850) RF 4.1.0.Final: Problem using columnResize with more than one extendedDataTable on the same page. Date: Mon, 16 Jan 2012 09:22:18 -0500 Message-ID: <1035455200.1658.1326723738822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1719236551.29235.1324550769802.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6522623755394719459== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11850?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659546#com= ment-12659546 ] = J=C3=A1n Jamrich commented on RF-11850: ---------------------------------- Issue confirmed. Created page with 2 EDT to simulate this problem. https://source.jboss.org/browse/RichFaces/modules/tests/metamer/trunk/appli= cation/src/main/webapp/components/richExtendedDataTable/rf-11850.xhtml?r=3D= 23151 = > RF 4.1.0.Final: Problem using columnResize with more than one extendedDat= aTable on the same page. > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11850 > URL: https://issues.jboss.org/browse/RF-11850 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Environment: Windows 7 x64 or arch linux x86 > JBoss 7.0.1 Final or Glassfish 3.1 > Reporter: Christian Peter > Assignee: J=C3=A1n Jamrich > Priority: Minor > > Hello, > I've encountered some problems using richfaces extendedDataTables in Rich= Face 4.1.0.Final > Here is the facelet: > {code:title=3Dfacelet} > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > = > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > = > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > {code} = > = > Resizing the columns on the first table works perfectly, but if someone t= ries to resize the second tables' columns as well, I've got NullPointer exc= eptions like: > {code:title=3Dstacktrace} > java.lang.NullPointerException > at org.richfaces.renderkit.SortingFilteringRowsRenderer.updateAtt= ribute(SortingFilteringRowsRenderer.java:135) [richfaces-components-ui-4.1.= 0.Final.jar: > at org.richfaces.renderkit.ExtendedDataTableRenderer.updateWidthO= fColumns(ExtendedDataTableRenderer.java:825) [richfaces-components-ui-4.1.0= .Final.jar:] > at org.richfaces.renderkit.ExtendedDataTableRenderer.doDecode(Ext= endedDataTableRenderer.java:808) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:= 80) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponentBase.decode(UIComponentBase.j= ava:787) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.component.UIDataAdaptor.processDecodes(UIDataAda= ptor.java:819) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.context.PartialViewExecuteVisitCallback.visit(Pa= rtialViewExecuteVisitCallback.java:53) [richfaces-core-impl-4.1.0.Final.jar= :] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCall= back(BaseExtendedVisitContext.java:321) [richfaces-core-impl-4.1.0.Final.ja= r:] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.= java:1319) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIForm.visitTree(UIForm.java:344) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.context.ExtendedPartialViewContextImpl.executeCo= mponents(ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.1.= 0.Final.jar: > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtialExecutePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-= impl-4.1.0.F > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtial(ExtendedPartialViewContextImpl.java:196) [richfaces-core-impl-4.1.0.F= inal.jar:] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.jav= a:931) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyR= equestValuesPhase.java:78) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHO= T] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-imp= l-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.ja= va:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > 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.internalDoFilt= er(ApplicationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(= ConversationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-2= 6 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > {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 = --===============6522623755394719459==-- From jira-events at lists.jboss.org Mon Jan 16 09:22:19 2012 Content-Type: multipart/mixed; boundary="===============4492490681269044915==" 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-11850) RF 4.1.0.Final: Problem using columnResize with more than one extendedDataTable on the same page. Date: Mon, 16 Jan 2012 09:22:18 -0500 Message-ID: <2060229095.1662.1326723738992.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1719236551.29235.1324550769802.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4492490681269044915== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11850?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reassigned RF-11850: -------------------------------- Assignee: (was: J=C3=A1n Jamrich) = > RF 4.1.0.Final: Problem using columnResize with more than one extendedDat= aTable on the same page. > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11850 > URL: https://issues.jboss.org/browse/RF-11850 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Environment: Windows 7 x64 or arch linux x86 > JBoss 7.0.1 Final or Glassfish 3.1 > Reporter: Christian Peter > Priority: Minor > > Hello, > I've encountered some problems using richfaces extendedDataTables in Rich= Face 4.1.0.Final > Here is the facelet: > {code:title=3Dfacelet} > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > = > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > = > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > {code} = > = > Resizing the columns on the first table works perfectly, but if someone t= ries to resize the second tables' columns as well, I've got NullPointer exc= eptions like: > {code:title=3Dstacktrace} > java.lang.NullPointerException > at org.richfaces.renderkit.SortingFilteringRowsRenderer.updateAtt= ribute(SortingFilteringRowsRenderer.java:135) [richfaces-components-ui-4.1.= 0.Final.jar: > at org.richfaces.renderkit.ExtendedDataTableRenderer.updateWidthO= fColumns(ExtendedDataTableRenderer.java:825) [richfaces-components-ui-4.1.0= .Final.jar:] > at org.richfaces.renderkit.ExtendedDataTableRenderer.doDecode(Ext= endedDataTableRenderer.java:808) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:= 80) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponentBase.decode(UIComponentBase.j= ava:787) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.component.UIDataAdaptor.processDecodes(UIDataAda= ptor.java:819) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.context.PartialViewExecuteVisitCallback.visit(Pa= rtialViewExecuteVisitCallback.java:53) [richfaces-core-impl-4.1.0.Final.jar= :] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCall= back(BaseExtendedVisitContext.java:321) [richfaces-core-impl-4.1.0.Final.ja= r:] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.= java:1319) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIForm.visitTree(UIForm.java:344) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.context.ExtendedPartialViewContextImpl.executeCo= mponents(ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.1.= 0.Final.jar: > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtialExecutePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-= impl-4.1.0.F > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtial(ExtendedPartialViewContextImpl.java:196) [richfaces-core-impl-4.1.0.F= inal.jar:] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.jav= a:931) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyR= equestValuesPhase.java:78) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHO= T] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-imp= l-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.ja= va:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > 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.internalDoFilt= er(ApplicationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(= ConversationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-2= 6 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > {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 = --===============4492490681269044915==-- From jira-events at lists.jboss.org Mon Jan 16 09:28:18 2012 Content-Type: multipart/mixed; boundary="===============6157961903080646000==" 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-11783) disabled a4j:commandButton with nested tooltip disappears when enabled with ajax render Date: Mon, 16 Jan 2012 09:28:18 -0500 Message-ID: <1011004618.1686.1326724098439.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1145377794.68082.1322915200637.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6157961903080646000== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11783?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659551#com= ment-12659551 ] = J=C3=A1n Jamrich commented on RF-11783: ---------------------------------- Created example with tooltip within a4j:commandButton, but didn't get the s= ame behavior. But tooltip is not working (not displayed even conditions for render met). (Since I wrongly commented commit, it is missing in "Source" tracking. Ther= e is related commit: https://source.jboss.org/changelog/RichFaces?cs=3D2315= 0) Example page: https://source.jboss.org/browse/RichFaces/modules/tests/metamer/trunk/appli= cation/src/main/webapp/components/richTooltip/rf11783.xhtml?r=3D23150 = > disabled a4j:commandButton with nested tooltip disappears when enabled wi= th ajax render > -------------------------------------------------------------------------= -------------- > > Key: RF-11783 > URL: https://issues.jboss.org/browse/RF-11783 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Milestone4 > Environment: Mojarra 2.1.3, Glassfish 3.1.1. > Reporter: Brendan Healey > Assignee: J=C3=A1n Jamrich > > The following code resides in the footer of an extendedDataTable, althoug= h my > guess is that this is not relevant. The button is initially disabled, then > bean.property is set true and we do ajax render=3D"myButton". The button > disappears from the screen. Removing the tooltip makes it work as expecte= d. > id=3D"myButton" > value=3D" test " > action=3D"apage?faces-redirect=3Dtrue" > disabled=3D"#{empty bean.property}"> > > > > > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6157961903080646000==-- From jira-events at lists.jboss.org Mon Jan 16 09:28:18 2012 Content-Type: multipart/mixed; boundary="===============1759462916326665115==" 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-11783) disabled a4j:commandButton with nested tooltip disappears when enabled with ajax render Date: Mon, 16 Jan 2012 09:28:18 -0500 Message-ID: <1654115733.1690.1326724098620.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1145377794.68082.1322915200637.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1759462916326665115== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11783?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reassigned RF-11783: -------------------------------- Assignee: (was: J=C3=A1n Jamrich) = > disabled a4j:commandButton with nested tooltip disappears when enabled wi= th ajax render > -------------------------------------------------------------------------= -------------- > > Key: RF-11783 > URL: https://issues.jboss.org/browse/RF-11783 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Milestone4 > Environment: Mojarra 2.1.3, Glassfish 3.1.1. > Reporter: Brendan Healey > > The following code resides in the footer of an extendedDataTable, althoug= h my > guess is that this is not relevant. The button is initially disabled, then > bean.property is set true and we do ajax render=3D"myButton". The button > disappears from the screen. Removing the tooltip makes it work as expecte= d. > id=3D"myButton" > value=3D" test " > action=3D"apage?faces-redirect=3Dtrue" > disabled=3D"#{empty bean.property}"> > > > > > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1759462916326665115==-- From jira-events at lists.jboss.org Mon Jan 16 09:31:18 2012 Content-Type: multipart/mixed; boundary="===============0680229372718069398==" 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-11814) a4j:commandLink in tabPanel disabled if switchtype = ajax Date: Mon, 16 Jan 2012 09:31:18 -0500 Message-ID: <1710371138.1699.1326724278440.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 796306910.9115.1323859989475.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0680229372718069398== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11814?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659552#com= ment-12659552 ] = J=C3=A1n Jamrich commented on RF-11814: ---------------------------------- Issue confirmed. Created page demonstration problem: https://source.jboss.org/browse/RichFaces/modules/tests/metamer/trunk/appli= cation/src/main/webapp/components/richTabPanel/rf-11814.xhtml?r=3D23149 = > a4j:commandLink in tabPanel disabled if switchtype =3D ajax > --------------------------------------------------------- > > Key: RF-11814 > URL: https://issues.jboss.org/browse/RF-11814 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core, component-panels-layout-themes > Affects Versions: 4.1.0.CR2 > Environment: Win 7 64 Bit, Tomcat 7.0.23, Mojarra 2.1.3 > Reporter: Friedhelm Kuehn > Assignee: J=C3=A1n Jamrich > > In the following constellation (=3Dextract from real page) the a4j:comman= dlink action method = > is correctly triggered on clicking when tabPanels switchType =3D "client"= but not when switchType =3D "ajax" > {code} > > > = > > ..... > > > > > > > Logging out, please wait ! > > > {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 = --===============0680229372718069398==-- From jira-events at lists.jboss.org Mon Jan 16 09:31:19 2012 Content-Type: multipart/mixed; boundary="===============8368141703042082095==" 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-11814) a4j:commandLink in tabPanel disabled if switchtype = ajax Date: Mon, 16 Jan 2012 09:31:18 -0500 Message-ID: <1839739319.1712.1326724278905.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 796306910.9115.1323859989475.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8368141703042082095== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11814?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich reassigned RF-11814: -------------------------------- Assignee: (was: J=C3=A1n Jamrich) = > a4j:commandLink in tabPanel disabled if switchtype =3D ajax > --------------------------------------------------------- > > Key: RF-11814 > URL: https://issues.jboss.org/browse/RF-11814 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core, component-panels-layout-themes > Affects Versions: 4.1.0.CR2 > Environment: Win 7 64 Bit, Tomcat 7.0.23, Mojarra 2.1.3 > Reporter: Friedhelm Kuehn > > In the following constellation (=3Dextract from real page) the a4j:comman= dlink action method = > is correctly triggered on clicking when tabPanels switchType =3D "client"= but not when switchType =3D "ajax" > {code} > > > = > > ..... > > > > > > > Logging out, please wait ! > > > {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 = --===============8368141703042082095==-- From jira-events at lists.jboss.org Mon Jan 16 11:14:20 2012 Content-Type: multipart/mixed; boundary="===============5512742043134458105==" 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-11827) showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT Date: Mon, 16 Jan 2012 11:14:20 -0500 Message-ID: <1855153413.2120.1326730460147.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 945549203.21383.1324314009775.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5512742043134458105== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11827?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11827. ----------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Juraj Huska) Fix Version/s: (was: 4.2.0.CR1) Resolution: Cannot Reproduce Bug As Juraj said, this issue cannot be reproduced anymore. = > showcase - all rich:autocomplete demos do not work on 4.1.1-SNAPSHOT > -------------------------------------------------------------------- > > Key: RF-11827 > URL: https://issues.jboss.org/browse/RF-11827 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, showcase > Environment: richfaces showcase 4.1.1-SNAPSHOT > all containers > all brosers > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > > Demos for rich:autocomplete do not work, *whole functionality of autocomp= lete is broken somehow*. = > It is noticeable on *all containers* and on *all browsers*. = > It works fine on 4.1.0-SNAPSHOT showcase wars. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5512742043134458105==-- From jira-events at lists.jboss.org Mon Jan 16 12:05:18 2012 Content-Type: multipart/mixed; boundary="===============8072407561618063160==" 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-11890) ResourceServlet does not set HTTP headers for caching Date: Mon, 16 Jan 2012 12:05:18 -0500 Message-ID: <896407184.2481.1326733518446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8072407561618063160== 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-11890: ------------------------------- Summary: ResourceServlet does not set HTTP headers for caching Key: RF-11890 URL: https://issues.jboss.org/browse/RF-11890 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: core Affects Versions: 4.2.0.CR1 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D {quote} All RichFaces resources served by Faces Servlet have headers set appropriat= ely for caching. (You can check it by removing your Filter and turning resourceMapping=3Dfal= se). = I assume you have problems with ResourceServlet where resources does not go= through RichFaces ResourceHandler, so headers are set as for any other JSF= resource - which means (AFAIK) no caching at all. {quote} This assumption needs to be verified before implementing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8072407561618063160==-- From jira-events at lists.jboss.org Tue Jan 17 00:57:18 2012 Content-Type: multipart/mixed; boundary="===============1279104613122997755==" MIME-Version: 1.0 From: Daniel Dostal (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10267) Accordion creating from Java NPE if activeItem is not set Date: Tue, 17 Jan 2012 00:57:18 -0500 Message-ID: <2127776043.3692.1326779838688.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1587760478.27386.1295566550122.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1279104613122997755== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10267?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659740#com= ment-12659740 ] = Daniel Dostal commented on RF-10267: ------------------------------------ The API clearly states that this field is not required. The description is= also empty. I have just installed 4.1.0.Final and this bug is still curre= nt. I'm not even sure what this item should be. I'll set them to blank, b= ut this is quite sad. = > Accordion creating from Java NPE if activeItem is not set > --------------------------------------------------------- > > Key: RF-10267 > URL: https://issues.jboss.org/browse/RF-10267 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.0.0.Milestone5 > Environment: Ununtu 10.10, Java 6 > Reporter: Konstantin Pupkov > Priority: Minor > Fix For: 4.Future > > > in Java... > FacesContext ctx=3DFacesContext.getCurrentInstance(); > pendingBar =3D (HtmlAccordion) ctx > .getApplication() > .createComponent(ctx, HtmlAccordion.COMPONENT_TYPE, "org.richfaces.A= ccordionRenderer"); > pendingBar.setId("pend"); > ...... > error on page: > ... > ava.lang.NullPointerException > org.richfaces.component.AbstractAccordion.getActiveItem(AbstractAccordio= n.java:50) > org.richfaces.renderkit.html.TogglePanelRenderer.doEncodeBegin(TogglePan= elRenderer.java:116) > org.richfaces.renderkit.html.AccordionRenderer.doEncodeBegin(AccordionRe= nderer.java:55) > org.richfaces.renderkit.RendererBase.encodeBegin(RendererBase.java:116) > javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:8= 24) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1279104613122997755==-- From jira-events at lists.jboss.org Tue Jan 17 03:33:18 2012 Content-Type: multipart/mixed; boundary="===============0944753909888317917==" 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-11890) ResourceServlet does not set HTTP headers for caching Date: Tue, 17 Jan 2012 03:33:18 -0500 Message-ID: <18456987.4068.1326789198279.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 896407184.2481.1326733518446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0944753909888317917== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11890?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659759#com= ment-12659759 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11890: --------------------------------- Check also that regular RichFaces resources have headers setup properly whe= n resource mapping is off. = > ResourceServlet does not set HTTP headers for caching > ----------------------------------------------------- > > Key: RF-11890 > URL: https://issues.jboss.org/browse/RF-11890 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > {quote} > All RichFaces resources served by Faces Servlet have headers set appropri= ately for caching. > (You can check it by removing your Filter and turning resourceMapping=3Df= alse). > = > I assume you have problems with ResourceServlet where resources does not = go through RichFaces ResourceHandler, so headers are set as for any other J= SF resource - which means (AFAIK) no caching at all. > {quote} > This assumption needs to be verified before implementing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0944753909888317917==-- From jira-events at lists.jboss.org Tue Jan 17 03:48:18 2012 Content-Type: multipart/mixed; boundary="===============5346217971734720222==" MIME-Version: 1.0 From: shimon lifshitz (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10779) columnClasses not working on rich:dataGrid Date: Tue, 17 Jan 2012 03:48:18 -0500 Message-ID: <735261082.4092.1326790098524.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2097570417.35324.1300457326600.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5346217971734720222== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10779?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659760#com= ment-12659760 ] = shimon lifshitz commented on RF-10779: -------------------------------------- Is there a workaround? I think it is a bug because it exist in older versio= ns. = > columnClasses not working on rich:dataGrid > ------------------------------------------ > > Key: RF-10779 > URL: https://issues.jboss.org/browse/RF-10779 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.CR1 > Environment: Windows Vista Build 6001 > apache-tomcat-7.0.11 > Sun jdk1.6.0_14 > RichFaces richfaces-4.0.0.20110227-CR1 > Mojarra JSF 2.0.3-FCS = > Reporter: Karl Mueller > Fix For: 4.Future > > > The attribute columnClasses shows no effect when used on rich:dataGrid. > The assigned css classe(s) do not show up in the generated html table and= the styles are not applied. = > Only the "rf-dg-c" class gets assigned to the td tag. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5346217971734720222==-- From jira-events at lists.jboss.org Tue Jan 17 04:02:54 2012 Content-Type: multipart/mixed; boundary="===============1541027177573880144==" MIME-Version: 1.0 From: shimon lifshitz (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10779) columnClasses not working on rich:dataGrid Date: Tue, 17 Jan 2012 04:02:19 -0500 Message-ID: <2147373346.4152.1326790939347.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2097570417.35324.1300457326600.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1541027177573880144== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10779?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659768#com= ment-12659768 ] = shimon lifshitz commented on RF-10779: -------------------------------------- In the show case, there is a comment that dataGrid uses all panelGrid attri= butes, but columnClasses is attribute in panelGrid and doesnot exist in dat= aGrid. = > columnClasses not working on rich:dataGrid > ------------------------------------------ > > Key: RF-10779 > URL: https://issues.jboss.org/browse/RF-10779 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.CR1 > Environment: Windows Vista Build 6001 > apache-tomcat-7.0.11 > Sun jdk1.6.0_14 > RichFaces richfaces-4.0.0.20110227-CR1 > Mojarra JSF 2.0.3-FCS = > Reporter: Karl Mueller > Fix For: 4.Future > > > The attribute columnClasses shows no effect when used on rich:dataGrid. > The assigned css classe(s) do not show up in the generated html table and= the styles are not applied. = > Only the "rf-dg-c" class gets assigned to the td tag. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1541027177573880144==-- From jira-events at lists.jboss.org Tue Jan 17 04:28:18 2012 Content-Type: multipart/mixed; boundary="===============1913911446774903602==" 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-11825) rich:fileUpload - File selected for upload is duplicated in IE 8 when placed in composite component Date: Tue, 17 Jan 2012 04:28:18 -0500 Message-ID: <1411351186.4267.1326792498383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 723368030.20345.1324296789427.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1913911446774903602== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11825?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich resolved RF-11825. ------------------------------ Assignee: (was: J=C3=A1n Jamrich) Resolution: Cannot Reproduce Bug Created example in Metamer (see Source tab for details), but I was not able= to reproduce it. = = > rich:fileUpload - File selected for upload is duplicated in IE 8 when pla= ced in composite component > -------------------------------------------------------------------------= -------------------------- > > Key: RF-11825 > URL: https://issues.jboss.org/browse/RF-11825 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Environment: Apache Tomcat 6.0 > Java 1.6.0_24 > Mojarra 2.1.2 = > Reporter: Pavel Hofr=C3=ADk > Labels: composite_component, fileUpload, richfaces > > When rich:fileUpload is part of composite component, and this component i= s placed in page, than when file is selected from system dialog, it is adde= d twice in list of files. > This fault occurs in IE 8. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1913911446774903602==-- From jira-events at lists.jboss.org Tue Jan 17 07:08:18 2012 Content-Type: multipart/mixed; boundary="===============3339885592062073658==" 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-11483) Elegant way for Push topic creating Date: Tue, 17 Jan 2012 07:08:18 -0500 Message-ID: <1467164002.4712.1326802098511.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11494155.16954.1318245975997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3339885592062073658== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11483?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659820#com= ment-12659820 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11483: --------------------------------- This issue is much more critical, because the {{PushContext}} is not initi= alized properly in time when needs to be used in order to initialize {{Push= Servlet}} properly. {{PushContext}} is initialized in Showcase when {{TopicsContext#lookup()}} = is called, which is called by {{TopicsInitializer}} at JSF application star= tup. So following {{NullPointerException}} is thrown because {{PushContextImpl#i= nit(...)}} wasn't called yet. {code} 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) java.lang.NullPointerE= xception 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushHandlerFilter.init(PushHandlerFilter.java:64) 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.uti= l.AtmosphereFilterChain.init(AtmosphereFilterChain.java:105) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor$FilterChainServletWrapper.init(ReflectorServ= letProcessor.java:273) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor.init(ReflectorServletProcessor.java:164) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.initAtmosphereHandler(AtmosphereServlet.java:813) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.init(AtmosphereServlet.java:566) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushServlet.init(PushServlet.java:98) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.load(StandardWrapper.java:1102) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.loadOnStartup(StandardContext.java:3631) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.start(StandardContext.java:3844) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.as.web.d= eployment.WebDeploymentService.start(WebDeploymentService.java:70) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java= :1824) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.lang.Thread.r= un(Thread.java:662) {code} Exception above is hidden behind following meaningless exception: {code} 12:52:47,369 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[def= ault-host].[/new_project]] (MSC service thread 1-3) Servlet /new_project th= rew load() exception: javax.servlet.ServletException at org.atmosphere.cpr.AtmosphereServlet.init(AtmosphereServlet.java:577) [= atmosphere-runtime-0.8.0-RC1.jar:] at org.richfaces.webapp.PushServlet.init(PushServlet.java:98) [richfaces-c= ore-impl-4.1.0.Final.jar:] at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.ja= va:1202) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1102= ) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.= java:3631) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardContext.start(StandardContext.java:384= 4) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentSer= vice.java:70) [jboss-as-web-7.0.2.Final.jar:7.0.2.Final] at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(Serv= iceControllerImpl.java:1824) at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceContro= llerImpl.java:1759) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecut= or.java:886) [:1.6.0_26] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.j= ava:908) [:1.6.0_26] at java.lang.Thread.run(Thread.java:662) [:1.6.0_26] {code} = > Elegant way for Push topic creating > ----------------------------------- > > Key: RF-11483 > URL: https://issues.jboss.org/browse/RF-11483 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll, core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Currently, topics have to be initialized with similar class: > https://github.com/richfaces/showcase/blob/4.1.0.20110910-M2/src/main/jav= a/org/richfaces/demo/push/TopicsInitializer.java > I suggest to create topic on demand (lazily), when it is accessed first. > It needs following changes: > * {{PushRendererBase}} - will create Topic for @address attribute > * {{JMSTopicsContextImpl}} - will create topic when JMS message received > * {{PushObserverMethod}} - will create topic when @Push event for given t= opic observed > * ... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3339885592062073658==-- From jira-events at lists.jboss.org Tue Jan 17 07:08:19 2012 Content-Type: multipart/mixed; boundary="===============2521052022732229318==" 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-11483) Elegant way for Push topic creating Date: Tue, 17 Jan 2012 07:08:19 -0500 Message-ID: <540222923.4718.1326802099400.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11494155.16954.1318245975997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2521052022732229318== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11483?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11483: ---------------------------- Fix Version/s: 4.2.0.CR1 (was: 4.3-Tracking) Priority: Critical (was: Major) Forum Reference: http://community.jboss.org/message/630871#630871 (was= : http://community.jboss.org/message/630871#630871) Scheduled to {{4.2.0.CR1}} and increased priority to {{critical}}. = > Elegant way for Push topic creating > ----------------------------------- > > Key: RF-11483 > URL: https://issues.jboss.org/browse/RF-11483 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll, core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Currently, topics have to be initialized with similar class: > https://github.com/richfaces/showcase/blob/4.1.0.20110910-M2/src/main/jav= a/org/richfaces/demo/push/TopicsInitializer.java > I suggest to create topic on demand (lazily), when it is accessed first. > It needs following changes: > * {{PushRendererBase}} - will create Topic for @address attribute > * {{JMSTopicsContextImpl}} - will create topic when JMS message received > * {{PushObserverMethod}} - will create topic when @Push event for given t= opic observed > * ... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2521052022732229318==-- From jira-events at lists.jboss.org Tue Jan 17 09:31:18 2012 Content-Type: multipart/mixed; boundary="===============3368535420626863096==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11834) [RF4.1.final] rich:picklist don't support @RequestScope Date: Tue, 17 Jan 2012 09:31:18 -0500 Message-ID: <2006891551.5089.1326810678403.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 823611390.23103.1324374549401.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3368535420626863096== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11834?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11834: ------------------------------- Fix Version/s: 4.2.0.CR1 Assignee: Brian Leathem Forum Reference: http://community.jboss.org/thread/176257?tstart=3D0 (= was: http://community.jboss.org/thread/176257?tstart=3D0) = > [RF4.1.final] rich:picklist don't support @RequestScope > ------------------------------------------------------- > > Key: RF-11834 > URL: https://issues.jboss.org/browse/RF-11834 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.1.0.Final > Environment: JBoss 7 / RF4.1.final jdk 1.6_u27 > Reporter: Adrien Adrien > Assignee: Brian Leathem > Labels: picklist, scope > Fix For: 4.2.0.CR1 > > > picklist don't works if backbean is @requestScope. > (it worked in RF 3.3.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 --===============3368535420626863096==-- From jira-events at lists.jboss.org Tue Jan 17 09:33:18 2012 Content-Type: multipart/mixed; boundary="===============6285136750281968476==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11850) RF 4.1.0.Final: Problem using columnResize with more than one extendedDataTable on the same page. Date: Tue, 17 Jan 2012 09:33:18 -0500 Message-ID: <1488885565.5101.1326810798580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1719236551.29235.1324550769802.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6285136750281968476== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11850?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11850: ------------------------------- Fix Version/s: 4.2.0.CR1 Forum Reference: http://community.jboss.org/message/641921#641921 (was= : http://community.jboss.org/message/641921#641921) = > RF 4.1.0.Final: Problem using columnResize with more than one extendedDat= aTable on the same page. > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11850 > URL: https://issues.jboss.org/browse/RF-11850 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Environment: Windows 7 x64 or arch linux x86 > JBoss 7.0.1 Final or Glassfish 3.1 > Reporter: Christian Peter > Priority: Minor > Fix For: 4.2.0.CR1 > > > Hello, > I've encountered some problems using richfaces extendedDataTables in Rich= Face 4.1.0.Final > Here is the facelet: > {code:title=3Dfacelet} > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > = > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > = > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > {code} = > = > Resizing the columns on the first table works perfectly, but if someone t= ries to resize the second tables' columns as well, I've got NullPointer exc= eptions like: > {code:title=3Dstacktrace} > java.lang.NullPointerException > at org.richfaces.renderkit.SortingFilteringRowsRenderer.updateAtt= ribute(SortingFilteringRowsRenderer.java:135) [richfaces-components-ui-4.1.= 0.Final.jar: > at org.richfaces.renderkit.ExtendedDataTableRenderer.updateWidthO= fColumns(ExtendedDataTableRenderer.java:825) [richfaces-components-ui-4.1.0= .Final.jar:] > at org.richfaces.renderkit.ExtendedDataTableRenderer.doDecode(Ext= endedDataTableRenderer.java:808) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:= 80) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponentBase.decode(UIComponentBase.j= ava:787) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.component.UIDataAdaptor.processDecodes(UIDataAda= ptor.java:819) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.context.PartialViewExecuteVisitCallback.visit(Pa= rtialViewExecuteVisitCallback.java:53) [richfaces-core-impl-4.1.0.Final.jar= :] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCall= back(BaseExtendedVisitContext.java:321) [richfaces-core-impl-4.1.0.Final.ja= r:] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.= java:1319) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIForm.visitTree(UIForm.java:344) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.context.ExtendedPartialViewContextImpl.executeCo= mponents(ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.1.= 0.Final.jar: > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtialExecutePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-= impl-4.1.0.F > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtial(ExtendedPartialViewContextImpl.java:196) [richfaces-core-impl-4.1.0.F= inal.jar:] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.jav= a:931) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyR= equestValuesPhase.java:78) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHO= T] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-imp= l-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.ja= va:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > 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.internalDoFilt= er(ApplicationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(= ConversationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-2= 6 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > {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 --===============6285136750281968476==-- From jira-events at lists.jboss.org Tue Jan 17 15:43:19 2012 Content-Type: multipart/mixed; boundary="===============8188867878078654764==" MIME-Version: 1.0 From: Wesley Hales (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11772) showcase - a4j:attachQueue - ajax request from mobile device generates WARNING on the server log Date: Tue, 17 Jan 2012 15:43:19 -0500 Message-ID: <446907323.6181.1326832999587.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 942002739.61843.1322757520977.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8188867878078654764== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11772?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Wesley Hales resolved RF-11772. ------------------------------- Resolution: Won't Fix This issue is ok for mobile showcase only. It does not appear in regular de= mo. = > showcase - a4j:attachQueue - ajax request from mobile device generates WA= RNING on the server log > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11772 > URL: https://issues.jboss.org/browse/RF-11772 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core, mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: richfaces showcase 4.1.CR2 > container: JBoss AS 7.1.0.Beta1, JBoss AS 6.0.0.Final > mobile device: iPad1, Motorola Xoom, iPhone4 > Reporter: Juraj Huska > Assignee: Wesley Hales > Priority: Minor > Fix For: 4.2.0.CR1 > > > In demo for a4j:attachQueue, when typing to input, the *generated ajax re= quests cause warning logged on the container console*: > {code} > 17:29:40,118 WARNING [org.richfaces.log.Components] (http--0.0.0.0-8080-5= ) Queue with name 'j_idt9' has already been registered > {code} > The *functionality remains fine*, and this is noticeable *only on mobile = devices*. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8188867878078654764==-- From jira-events at lists.jboss.org Tue Jan 17 15:47:18 2012 Content-Type: multipart/mixed; boundary="===============2047464304654693258==" MIME-Version: 1.0 From: Wesley Hales (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Tue, 17 Jan 2012 15:47:18 -0500 Message-ID: <1785709887.6188.1326833238842.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2047464304654693258== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659971#com= ment-12659971 ] = Wesley Hales commented on RF-11773: ----------------------------------- Works for me on iPad/iOS 5.0.1 I don't have a Nexus Android 2.3.6 to test on. We will say Android 2.3.3 is= good enough for our first level of support. Android has a lot of fragmenta= tion with their support, so it will vary across devices. = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > Fix For: 4.2.0.CR1 > > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2047464304654693258==-- From jira-events at lists.jboss.org Tue Jan 17 15:47:19 2012 Content-Type: multipart/mixed; boundary="===============0205656817014609585==" MIME-Version: 1.0 From: Wesley Hales (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Tue, 17 Jan 2012 15:47:18 -0500 Message-ID: <82930192.6192.1326833238945.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0205656817014609585== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Wesley Hales resolved RF-11773. ------------------------------- Resolution: Won't Fix = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > Fix For: 4.2.0.CR1 > > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0205656817014609585==-- From jira-events at lists.jboss.org Tue Jan 17 15:49:19 2012 Content-Type: multipart/mixed; boundary="===============3325113500158791112==" MIME-Version: 1.0 From: Wesley Hales (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11774) mobile showcase - rich:tree - touch event on particular part of tree causes selecting of whole tree component Date: Tue, 17 Jan 2012 15:49:19 -0500 Message-ID: <1364965805.6207.1326833359820.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 468905842.65339.1322827900636.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3325113500158791112== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11774?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12659974#com= ment-12659974 ] = Wesley Hales commented on RF-11774: ----------------------------------- I can't reproduce either. Although, I'm sure the issue exists. = The tree component was not written for touch envs, and I tried to use CSS t= o make it useable. = = > mobile showcase - rich:tree - touch event on particular part of tree caus= es selecting of whole tree component > -------------------------------------------------------------------------= ------------------------------------ > > Key: RF-11774 > URL: https://issues.jboss.org/browse/RF-11774 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tree, mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: app: mobile richfaces-showcase > container: JBoss AS 7.1.0.Beta1 > device: Motorola Xoom > Reporter: Juraj Huska > Assignee: Wesley Hales > Priority: Minor > Fix For: 4.2.0.CR1 > > > When I *touch particular part of the tree component*, e.g. sign for expan= ding the node, then *the whole tree component is selected* till the node is= not expanded. = > It *looks* quite *disturbing*, such a blinking. = > This behavior is also noticeable on iPad1, however it is not so disruptiv= e as in Android device, since the color of selecting the whole tree is diff= erent. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3325113500158791112==-- From jira-events at lists.jboss.org Tue Jan 17 15:49:20 2012 Content-Type: multipart/mixed; boundary="===============5935776096919843812==" MIME-Version: 1.0 From: Wesley Hales (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11774) mobile showcase - rich:tree - touch event on particular part of tree causes selecting of whole tree component Date: Tue, 17 Jan 2012 15:49:19 -0500 Message-ID: <1462406506.6210.1326833359958.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 468905842.65339.1322827900636.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5935776096919843812== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11774?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Wesley Hales resolved RF-11774. ------------------------------- Resolution: Won't Fix = > mobile showcase - rich:tree - touch event on particular part of tree caus= es selecting of whole tree component > -------------------------------------------------------------------------= ------------------------------------ > > Key: RF-11774 > URL: https://issues.jboss.org/browse/RF-11774 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tree, mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: app: mobile richfaces-showcase > container: JBoss AS 7.1.0.Beta1 > device: Motorola Xoom > Reporter: Juraj Huska > Assignee: Wesley Hales > Priority: Minor > Fix For: 4.2.0.CR1 > > > When I *touch particular part of the tree component*, e.g. sign for expan= ding the node, then *the whole tree component is selected* till the node is= not expanded. = > It *looks* quite *disturbing*, such a blinking. = > This behavior is also noticeable on iPad1, however it is not so disruptiv= e as in Android device, since the color of selecting the whole tree is diff= erent. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5935776096919843812==-- From jira-events at lists.jboss.org Tue Jan 17 16:06:18 2012 Content-Type: multipart/mixed; boundary="===============2337111129104234821==" MIME-Version: 1.0 From: Wesley Hales (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11778) mobile showcase - rich:calendar - days of new month are smaller than others Date: Tue, 17 Jan 2012 16:06:18 -0500 Message-ID: <1672039134.6238.1326834378359.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 621211492.65741.1322833540899.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2337111129104234821== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11778?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Wesley Hales resolved RF-11778. ------------------------------- Resolution: Done = > mobile showcase - rich:calendar - days of new month are smaller than othe= rs > -------------------------------------------------------------------------= -- > > Key: RF-11778 > URL: https://issues.jboss.org/browse/RF-11778 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, mobile, showcase, skinning > Environment: richfaces showcase 4.1.CR1 > Reporter: Juraj Huska > Assignee: Wesley Hales > Priority: Minor > Fix For: 4.2.0.CR1 > > Attachments: calendarNewMonthDaysWrongSize.PNG > > > The size of the days which are from the new month are smaller than the ot= her days in the displayed month. = > 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 --===============2337111129104234821==-- From jira-events at lists.jboss.org Tue Jan 17 16:06:18 2012 Content-Type: multipart/mixed; boundary="===============6464364240553545100==" MIME-Version: 1.0 From: Wesley Hales (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11775) mobile showcase - rich:panelMenu - sub menus are not indented accordingly Date: Tue, 17 Jan 2012 16:06:18 -0500 Message-ID: <1980920136.6242.1326834378591.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 989282194.65392.1322829281680.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6464364240553545100== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11775?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Wesley Hales resolved RF-11775. ------------------------------- Resolution: Done = > mobile showcase - rich:panelMenu - sub menus are not indented accordingly > ------------------------------------------------------------------------- > > Key: RF-11775 > URL: https://issues.jboss.org/browse/RF-11775 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu, mobile, showcase, skinning > Affects Versions: 4.1.0.CR2 > Environment: richfaces showcase 4.1.CR1 > devices: iPad1, Motorla Xoom > Reporter: Juraj Huska > Assignee: Wesley Hales > Priority: Minor > Fix For: 4.2.0.CR1 > > Attachments: correctIndentation.png, incorrectIndentation.PNG > > > The *items of sub menu* of richPanel are *not indented correctly*. They h= ave the same indentation as all items in that menu item, although they are = lower in the hierarchy. = > Please see the attachment where is probably more clear what I mean. There= you can find the correct indention from desktop showcase and the incorrect= one from mobile 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 --===============6464364240553545100==-- From jira-events at lists.jboss.org Tue Jan 17 18:01:19 2012 Content-Type: multipart/mixed; boundary="===============5827656624643334336==" MIME-Version: 1.0 From: Dmytro Batishchev (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11891) Simple bug in org.richfaces.resource.Xcss2EcssConverter Date: Tue, 17 Jan 2012 18:01:19 -0500 Message-ID: <815303006.6467.1326841279163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5827656624643334336== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dmytro Batishchev created RF-11891: -------------------------------------- Summary: Simple bug in org.richfaces.resource.Xcss2EcssConvert= er Key: RF-11891 URL: https://issues.jboss.org/browse/RF-11891 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: core Affects Versions: 4.1.0.Final Environment: Any Reporter: Dmytro Batishchev Simple bug in org.richfaces.resource.Xcss2EcssConverter class, please, comm= ent out next line: = {quote} _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/java/= org/ajax4jsf/cache/extended.xcss"_ {quote} PS: Sorry for my English. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5827656624643334336==-- From jira-events at lists.jboss.org Wed Jan 18 01:18:18 2012 Content-Type: multipart/mixed; boundary="===============6022622072609456114==" MIME-Version: 1.0 From: Dmytro Batishchev (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11891) Simple bug in org.richfaces.resource.Xcss2EcssConverter Date: Wed, 18 Jan 2012 01:18:18 -0500 Message-ID: <151173961.6786.1326867498432.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 815303006.6467.1326841279163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6022622072609456114== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11891?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Dmytro Batishchev updated RF-11891: ----------------------------------- Description: = Simple bug in org.richfaces.resource.Xcss2EcssConverter classfile in main c= lass, please, comment out or delete next line: = {quote} _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/java/= org/ajax4jsf/cache/extended.xcss"_ {quote} PS: Sorry for my English. was: Simple bug in org.richfaces.resource.Xcss2EcssConverter class, please, comm= ent out next line: = {quote} _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/java/= org/ajax4jsf/cache/extended.xcss"_ {quote} PS: Sorry for my English. = > Simple bug in org.richfaces.resource.Xcss2EcssConverter > ------------------------------------------------------- > > Key: RF-11891 > URL: https://issues.jboss.org/browse/RF-11891 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Environment: Any > Reporter: Dmytro Batishchev > > Simple bug in org.richfaces.resource.Xcss2EcssConverter classfile in main= class, please, comment out or delete next line: = > {quote} > _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/jav= a/org/ajax4jsf/cache/extended.xcss"_ > {quote} > PS: Sorry for my English. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6022622072609456114==-- From jira-events at lists.jboss.org Wed Jan 18 04:04:20 2012 Content-Type: multipart/mixed; boundary="===============1380619960093302826==" 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-11892) Push: turn on JMS integration by default Date: Wed, 18 Jan 2012 04:04:18 -0500 Message-ID: <985205215.6984.1326877458621.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1380619960093302826== 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-11892: ------------------------------- Summary: Push: turn on JMS integration by default Key: RF-11892 URL: https://issues.jboss.org/browse/RF-11892 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: component-push/poll Affects Versions: 4.1.0.Final, 4.0.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.0.CR1 On team meeting [1], we have discussed necessity to simplify configuration = of Push in order to simplify starting with push for new users. I suggest to replace current configuration {{org.richfaces.push.jms.disable= }} with {{org.richfaces.push.jms.enable}}, leaving previous one with no effect or providing warning. [1] https://community.jboss.org/wiki/RichFacesTeamMeetingAgenda2012-01-17 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1380619960093302826==-- From jira-events at lists.jboss.org Wed Jan 18 04:14:20 2012 Content-Type: multipart/mixed; boundary="===============3446741049637628497==" 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-11893) Increment version number to 4.2.0-SNAPSHOT Date: Wed, 18 Jan 2012 04:14:19 -0500 Message-ID: <1843504770.7002.1326878059466.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3446741049637628497== 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-11893: ------------------------------- Summary: Increment version number to 4.2.0-SNAPSHOT Key: RF-11893 URL: https://issues.jboss.org/browse/RF-11893 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: build/distribution, qe Affects Versions: 4.2.0.CR1 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.0.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 = --===============3446741049637628497==-- From jira-events at lists.jboss.org Wed Jan 18 04:38:20 2012 Content-Type: multipart/mixed; boundary="===============3385267909159967149==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11838) Warning in Chrome console for pages with ajax Date: Wed, 18 Jan 2012 04:38:19 -0500 Message-ID: <1666609354.7055.1326879499508.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 836209596.24520.1324389969366.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3385267909159967149== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11838?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reopened RF-11838: -------------------------------- I see the warning in Chrome's console after jQuery upgrade (jQuery.fn.jquer= y returns 1.7.1). {quote} RichFaces 4.1.1-SNAPSHOT Metamer 4.1.1-SNAPSHOT Mojarra 2.1.5 JBoss AS 7.1.0.CR1 OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux Chrome 16.0.912.75 @ Linux i686 {quote} = > Warning in Chrome console for pages with ajax > --------------------------------------------- > > Key: RF-11838 > URL: https://issues.jboss.org/browse/RF-11838 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 4.1.0.Final > Environment: Google Chrome 16.0.912.63 > Reporter: Pavol Pitonak > > # open Showcase in Chrome http://showcase.richfaces.org/richfaces/compone= nt-sample.jsf?demo=3Dajax&skin=3DblueSky > # open browser console > # type "xxx" into input > result: > The following warning is displayed in browser console 6 times (twice for = each Ajax request). Seems to be Chrome-specific and seems not to influence = functionality of any component. > {quote} > event.layerX and event.layerY are broken and deprecated in WebKit. They w= ill be removed from the engine in the near future. > {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 =20 --===============3385267909159967149==-- From jira-events at lists.jboss.org Wed Jan 18 07:40:18 2012 Content-Type: multipart/mixed; boundary="===============3715087509056782058==" 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-11894) PushHandlerFilter initialization fails when PushServlet registered manually Date: Wed, 18 Jan 2012 07:40:18 -0500 Message-ID: <487983712.7487.1326890418351.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3715087509056782058== 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-11894: ------------------------------- Summary: PushHandlerFilter initialization fails when PushServl= et registered manually Key: RF-11894 URL: https://issues.jboss.org/browse/RF-11894 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: core Affects Versions: 4.1.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.0.CR1 When {{PushContext}} is not touched before the {{PushHandlerImpl}} is initi= alized, {{SessionManager}} is not stored in the {{ServletContext}} attribut= es and initialization fails. {{NullPointerException}} is thrown in this case: {code} 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) java.lang.NullPointerE= xception 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushHandlerFilter.init(PushHandlerFilter.java:64) 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.uti= l.AtmosphereFilterChain.init(AtmosphereFilterChain.java:105) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor$FilterChainServletWrapper.init(ReflectorServ= letProcessor.java:273) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor.init(ReflectorServletProcessor.java:164) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.initAtmosphereHandler(AtmosphereServlet.java:813) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.init(AtmosphereServlet.java:566) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushServlet.init(PushServlet.java:98) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.load(StandardWrapper.java:1102) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.loadOnStartup(StandardContext.java:3631) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.start(StandardContext.java:3844) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.as.web.d= eployment.WebDeploymentService.start(WebDeploymentService.java:70) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java= :1824) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.lang.Thread.r= un(Thread.java:662) {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 = --===============3715087509056782058==-- From jira-events at lists.jboss.org Wed Jan 18 07:40:18 2012 Content-Type: multipart/mixed; boundary="===============2904581617765275863==" 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-11894) PushHandlerFilter initialization fails when PushServlet registered manually Date: Wed, 18 Jan 2012 07:40:18 -0500 Message-ID: <1224134537.7488.1326890418408.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 487983712.7487.1326890418351.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2904581617765275863== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11894?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660129#com= ment-12660129 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11894: --------------------------------- Solution is initialize {{SessionManager}} reference lazily. = > PushHandlerFilter initialization fails when PushServlet registered manual= ly > -------------------------------------------------------------------------= -- > > Key: RF-11894 > URL: https://issues.jboss.org/browse/RF-11894 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > When {{PushContext}} is not touched before the {{PushHandlerImpl}} is ini= tialized, {{SessionManager}} is not stored in the {{ServletContext}} attrib= utes and initialization fails. > {{NullPointerException}} is thrown in this case: > {code} > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) java.lang.NullPointe= rException > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.we= bapp.PushHandlerFilter.init(PushHandlerFilter.java:64) > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.u= til.AtmosphereFilterChain.init(AtmosphereFilterChain.java:105) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.h= andler.ReflectorServletProcessor$FilterChainServletWrapper.init(ReflectorSe= rvletProcessor.java:273) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.h= andler.ReflectorServletProcessor.init(ReflectorServletProcessor.java:164) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.c= pr.AtmosphereServlet.initAtmosphereHandler(AtmosphereServlet.java:813) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.c= pr.AtmosphereServlet.init(AtmosphereServlet.java:566) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.we= bapp.PushServlet.init(PushServlet.java:98) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardWrapper.load(StandardWrapper.java:1102) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardContext.loadOnStartup(StandardContext.java:3631) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardContext.start(StandardContext.java:3844) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.as.web= .deployment.WebDeploymentService.start(WebDeploymentService.java:70) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.se= rvice.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.ja= va:1824) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.se= rvice.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concur= rent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concur= rent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.lang.Thread= .run(Thread.java:662) > {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 = --===============2904581617765275863==-- From jira-events at lists.jboss.org Wed Jan 18 07:44:18 2012 Content-Type: multipart/mixed; boundary="===============5805210208581423000==" 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-11894) PushHandlerFilter initialization fails when PushServlet registered manually Date: Wed, 18 Jan 2012 07:44:18 -0500 Message-ID: <2093682193.7508.1326890658499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 487983712.7487.1326890418351.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5805210208581423000== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11894?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11894. ----------------------------- Resolution: Done = > PushHandlerFilter initialization fails when PushServlet registered manual= ly > -------------------------------------------------------------------------= -- > > Key: RF-11894 > URL: https://issues.jboss.org/browse/RF-11894 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > When {{PushContext}} is not touched before the {{PushHandlerImpl}} is ini= tialized, {{SessionManager}} is not stored in the {{ServletContext}} attrib= utes and initialization fails. > {{NullPointerException}} is thrown in this case: > {code} > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) java.lang.NullPointe= rException > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.we= bapp.PushHandlerFilter.init(PushHandlerFilter.java:64) > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.u= til.AtmosphereFilterChain.init(AtmosphereFilterChain.java:105) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.h= andler.ReflectorServletProcessor$FilterChainServletWrapper.init(ReflectorSe= rvletProcessor.java:273) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.h= andler.ReflectorServletProcessor.init(ReflectorServletProcessor.java:164) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.c= pr.AtmosphereServlet.initAtmosphereHandler(AtmosphereServlet.java:813) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.c= pr.AtmosphereServlet.init(AtmosphereServlet.java:566) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.we= bapp.PushServlet.init(PushServlet.java:98) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardWrapper.load(StandardWrapper.java:1102) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardContext.loadOnStartup(StandardContext.java:3631) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardContext.start(StandardContext.java:3844) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.as.web= .deployment.WebDeploymentService.start(WebDeploymentService.java:70) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.se= rvice.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.ja= va:1824) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.se= rvice.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concur= rent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concur= rent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.lang.Thread= .run(Thread.java:662) > {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 = --===============5805210208581423000==-- From jira-events at lists.jboss.org Wed Jan 18 07:44:19 2012 Content-Type: multipart/mixed; boundary="===============8814375878543751101==" 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-11483) Elegant way for Push topic creating Date: Wed, 18 Jan 2012 07:44:19 -0500 Message-ID: <398946342.7509.1326890659525.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11494155.16954.1318245975997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8814375878543751101== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11483?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11483: ---------------------------- Comment: was deleted (was: Scheduled to {{4.2.0.CR1}} and increased priority to {{critical}}.) = > Elegant way for Push topic creating > ----------------------------------- > > Key: RF-11483 > URL: https://issues.jboss.org/browse/RF-11483 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll, core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.3-Tracking > > > Currently, topics have to be initialized with similar class: > https://github.com/richfaces/showcase/blob/4.1.0.20110910-M2/src/main/jav= a/org/richfaces/demo/push/TopicsInitializer.java > I suggest to create topic on demand (lazily), when it is accessed first. > It needs following changes: > * {{PushRendererBase}} - will create Topic for @address attribute > * {{JMSTopicsContextImpl}} - will create topic when JMS message received > * {{PushObserverMethod}} - will create topic when @Push event for given t= opic observed > * ... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8814375878543751101==-- From jira-events at lists.jboss.org Wed Jan 18 07:44:21 2012 Content-Type: multipart/mixed; boundary="===============7766792117349774132==" 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-11483) Elegant way for Push topic creating Date: Wed, 18 Jan 2012 07:44:19 -0500 Message-ID: <1108483050.7512.1326890659714.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11494155.16954.1318245975997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7766792117349774132== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11483?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11483: ---------------------------- Comment: was deleted (was: This issue is much more critical, because the {{PushContext}} is not= initialized properly in time when needs to be used in order to initialize = {{PushServlet}} properly. {{PushContext}} is initialized in Showcase when {{TopicsContext#lookup()}} = is called, which is called by {{TopicsInitializer}} at JSF application star= tup. So following {{NullPointerException}} is thrown because {{PushContextImpl#i= nit(...)}} wasn't called yet. {code} 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) java.lang.NullPointerE= xception 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushHandlerFilter.init(PushHandlerFilter.java:64) 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.uti= l.AtmosphereFilterChain.init(AtmosphereFilterChain.java:105) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor$FilterChainServletWrapper.init(ReflectorServ= letProcessor.java:273) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor.init(ReflectorServletProcessor.java:164) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.initAtmosphereHandler(AtmosphereServlet.java:813) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.init(AtmosphereServlet.java:566) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushServlet.init(PushServlet.java:98) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.load(StandardWrapper.java:1102) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.loadOnStartup(StandardContext.java:3631) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.start(StandardContext.java:3844) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.as.web.d= eployment.WebDeploymentService.start(WebDeploymentService.java:70) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java= :1824) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.lang.Thread.r= un(Thread.java:662) {code} Exception above is hidden behind following meaningless exception: {code} 12:52:47,369 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[def= ault-host].[/new_project]] (MSC service thread 1-3) Servlet /new_project th= rew load() exception: javax.servlet.ServletException at org.atmosphere.cpr.AtmosphereServlet.init(AtmosphereServlet.java:577) [= atmosphere-runtime-0.8.0-RC1.jar:] at org.richfaces.webapp.PushServlet.init(PushServlet.java:98) [richfaces-c= ore-impl-4.1.0.Final.jar:] at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.ja= va:1202) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1102= ) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.= java:3631) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.apache.catalina.core.StandardContext.start(StandardContext.java:384= 4) [jbossweb-7.0.1.Final.jar:7.0.2.Final] at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentSer= vice.java:70) [jboss-as-web-7.0.2.Final.jar:7.0.2.Final] at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(Serv= iceControllerImpl.java:1824) at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceContro= llerImpl.java:1759) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecut= or.java:886) [:1.6.0_26] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.j= ava:908) [:1.6.0_26] at java.lang.Thread.run(Thread.java:662) [:1.6.0_26] {code} ) = > Elegant way for Push topic creating > ----------------------------------- > > Key: RF-11483 > URL: https://issues.jboss.org/browse/RF-11483 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll, core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.3-Tracking > > > Currently, topics have to be initialized with similar class: > https://github.com/richfaces/showcase/blob/4.1.0.20110910-M2/src/main/jav= a/org/richfaces/demo/push/TopicsInitializer.java > I suggest to create topic on demand (lazily), when it is accessed first. > It needs following changes: > * {{PushRendererBase}} - will create Topic for @address attribute > * {{JMSTopicsContextImpl}} - will create topic when JMS message received > * {{PushObserverMethod}} - will create topic when @Push event for given t= opic observed > * ... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7766792117349774132==-- From jira-events at lists.jboss.org Wed Jan 18 07:44:21 2012 Content-Type: multipart/mixed; boundary="===============8656887598967394399==" 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-11483) Elegant way for Push topic creating Date: Wed, 18 Jan 2012 07:44:19 -0500 Message-ID: <780642877.7516.1326890659939.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11494155.16954.1318245975997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8656887598967394399== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11483?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11483: ---------------------------- Assignee: (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Fix Version/s: 4.3-Tracking (was: 4.2.0.CR1) Priority: Major (was: Critical) Forum Reference: http://community.jboss.org/message/630871#630871 (was= : http://community.jboss.org/message/630871#630871) = > Elegant way for Push topic creating > ----------------------------------- > > Key: RF-11483 > URL: https://issues.jboss.org/browse/RF-11483 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll, core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3-Tracking > > > Currently, topics have to be initialized with similar class: > https://github.com/richfaces/showcase/blob/4.1.0.20110910-M2/src/main/jav= a/org/richfaces/demo/push/TopicsInitializer.java > I suggest to create topic on demand (lazily), when it is accessed first. > It needs following changes: > * {{PushRendererBase}} - will create Topic for @address attribute > * {{JMSTopicsContextImpl}} - will create topic when JMS message received > * {{PushObserverMethod}} - will create topic when @Push event for given t= opic observed > * ... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8656887598967394399==-- From jira-events at lists.jboss.org Wed Jan 18 07:46:20 2012 Content-Type: multipart/mixed; boundary="===============0337747400275300707==" 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-11894) PushHandlerFilter initialization fails when PushServlet registered manually Date: Wed, 18 Jan 2012 07:46:20 -0500 Message-ID: <1428016923.7535.1326890780742.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 487983712.7487.1326890418351.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0337747400275300707== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11894?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11894: ---------------------------- Description: = When {{PushContext}} is not touched before the {{PushHandlerImpl}} is initi= alized, {{SessionManager}} is not stored in the {{ServletContext}} attribut= es and initialization fails. {{NullPointerException}} is thrown in this case: {code} 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) java.lang.NullPointerE= xception 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushHandlerFilter.init(PushHandlerFilter.java:64) 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.uti= l.AtmosphereFilterChain.init(AtmosphereFilterChain.java:105) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor$FilterChainServletWrapper.init(ReflectorServ= letProcessor.java:273) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor.init(ReflectorServletProcessor.java:164) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.initAtmosphereHandler(AtmosphereServlet.java:813) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.init(AtmosphereServlet.java:566) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushServlet.init(PushServlet.java:98) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.load(StandardWrapper.java:1102) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.loadOnStartup(StandardContext.java:3631) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.start(StandardContext.java:3844) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.as.web.d= eployment.WebDeploymentService.start(WebDeploymentService.java:70) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java= :1824) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.lang.Thread.r= un(Thread.java:662) {code} Exception above can be hidden behind {{ServletException}} bellow: {code} 12:52:47,369 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[def= ault-host].[/new_project]] (MSC service thread 1-3) Servlet /new_project th= rew load() exception: javax.servlet.ServletException = at org.atmosphere.cpr.AtmosphereServlet.init(AtmosphereServlet.java:577) [a= tmosphere-runtime-0.8.0-RC1.jar:] = at org.richfaces.webapp.PushServlet.init(PushServlet.java:98) [richfaces-co= re-impl-4.1.0.Final.jar:] = at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.jav= a:1202) [jbossweb-7.0.1.Final.jar:7.0.2.Final] = at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1102)= [jbossweb-7.0.1.Final.jar:7.0.2.Final] = at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.j= ava:3631) [jbossweb-7.0.1.Final.jar:7.0.2.Final] = at org.apache.catalina.core.StandardContext.start(StandardContext.java:3844= ) [jbossweb-7.0.1.Final.jar:7.0.2.Final] = at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentServ= ice.java:70) [jboss-as-web-7.0.2.Final.jar:7.0.2.Final] = at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(Servi= ceControllerImpl.java:1824) = at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControl= lerImpl.java:1759) = at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecuto= r.java:886) [:1.6.0_26] = at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.ja= va:908) [:1.6.0_26] = at java.lang.Thread.run(Thread.java:662) [:1.6.0_26] = {code} was: When {{PushContext}} is not touched before the {{PushHandlerImpl}} is initi= alized, {{SessionManager}} is not stored in the {{ServletContext}} attribut= es and initialization fails. {{NullPointerException}} is thrown in this case: {code} 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) java.lang.NullPointerE= xception 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushHandlerFilter.init(PushHandlerFilter.java:64) 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.uti= l.AtmosphereFilterChain.init(AtmosphereFilterChain.java:105) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor$FilterChainServletWrapper.init(ReflectorServ= letProcessor.java:273) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.han= dler.ReflectorServletProcessor.init(ReflectorServletProcessor.java:164) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.initAtmosphereHandler(AtmosphereServlet.java:813) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.cpr= .AtmosphereServlet.init(AtmosphereServlet.java:566) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.weba= pp.PushServlet.init(PushServlet.java:98) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardWrapper.load(StandardWrapper.java:1102) 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.loadOnStartup(StandardContext.java:3631) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.apache.catalin= a.core.StandardContext.start(StandardContext.java:3844) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.as.web.d= eployment.WebDeploymentService.start(WebDeploymentService.java:70) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java= :1824) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.serv= ice.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concurre= nt.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.lang.Thread.r= un(Thread.java:662) {code} = > PushHandlerFilter initialization fails when PushServlet registered manual= ly > -------------------------------------------------------------------------= -- > > Key: RF-11894 > URL: https://issues.jboss.org/browse/RF-11894 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > When {{PushContext}} is not touched before the {{PushHandlerImpl}} is ini= tialized, {{SessionManager}} is not stored in the {{ServletContext}} attrib= utes and initialization fails. > {{NullPointerException}} is thrown in this case: > {code} > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) java.lang.NullPointe= rException > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.we= bapp.PushHandlerFilter.init(PushHandlerFilter.java:64) > 12:55:43,883 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.u= til.AtmosphereFilterChain.init(AtmosphereFilterChain.java:105) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.h= andler.ReflectorServletProcessor$FilterChainServletWrapper.init(ReflectorSe= rvletProcessor.java:273) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.h= andler.ReflectorServletProcessor.init(ReflectorServletProcessor.java:164) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.c= pr.AtmosphereServlet.initAtmosphereHandler(AtmosphereServlet.java:813) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.atmosphere.c= pr.AtmosphereServlet.init(AtmosphereServlet.java:566) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.richfaces.we= bapp.PushServlet.init(PushServlet.java:98) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardWrapper.load(StandardWrapper.java:1102) > 12:55:43,884 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardContext.loadOnStartup(StandardContext.java:3631) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.apache.catal= ina.core.StandardContext.start(StandardContext.java:3844) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.as.web= .deployment.WebDeploymentService.start(WebDeploymentService.java:70) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.se= rvice.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.ja= va:1824) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at org.jboss.msc.se= rvice.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concur= rent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.util.concur= rent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) > 12:55:43,885 ERROR [stderr] (MSC service thread 1-3) at java.lang.Thread= .run(Thread.java:662) > {code} > Exception above can be hidden behind {{ServletException}} bellow: > {code} > 12:52:47,369 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/new_project]] (MSC service thread 1-3) Servlet /new_project = threw load() exception: javax.servlet.ServletException = > at org.atmosphere.cpr.AtmosphereServlet.init(AtmosphereServlet.java:577) = [atmosphere-runtime-0.8.0-RC1.jar:] = > at org.richfaces.webapp.PushServlet.init(PushServlet.java:98) [richfaces-= core-impl-4.1.0.Final.jar:] = > at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.j= ava:1202) [jbossweb-7.0.1.Final.jar:7.0.2.Final] = > at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:110= 2) [jbossweb-7.0.1.Final.jar:7.0.2.Final] = > at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext= .java:3631) [jbossweb-7.0.1.Final.jar:7.0.2.Final] = > at org.apache.catalina.core.StandardContext.start(StandardContext.java:38= 44) [jbossweb-7.0.1.Final.jar:7.0.2.Final] = > at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentSe= rvice.java:70) [jboss-as-web-7.0.2.Final.jar:7.0.2.Final] = > at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(Ser= viceControllerImpl.java:1824) = > at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceContr= ollerImpl.java:1759) = > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecu= tor.java:886) [:1.6.0_26] = > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.= java:908) [:1.6.0_26] = > at java.lang.Thread.run(Thread.java:662) [:1.6.0_26] = > {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 = --===============0337747400275300707==-- From jira-events at lists.jboss.org Wed Jan 18 08:02:18 2012 Content-Type: multipart/mixed; boundary="===============5961218762222407008==" MIME-Version: 1.0 From: Burr Sutter (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11895) Richfaces showcase import into JBoss Tools/JBDS Date: Wed, 18 Jan 2012 08:02:18 -0500 Message-ID: <1507274563.7562.1326891738548.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5961218762222407008== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Burr Sutter created RF-11895: -------------------------------- Summary: Richfaces showcase import into JBoss Tools/JBDS Key: RF-11895 URL: https://issues.jboss.org/browse/RF-11895 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: examples Affects Versions: 4.1.0.Final Reporter: Burr Sutter Importing RichFaces Showcase into JBDS5 M5 has the following error: [ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Final= (/Users/burr/Downloads/richfaces-4.1.0.Final/examples/richfaces-showcase/p= om.xml) has 1 error [ERROR] Non-resolvable parent POM: Could not find artifact org.richface= s:richfaces-root-parent:pom:4.1.0.Final in central (http://repo1.maven.org/= maven2) and 'parent.relativePath' points at wrong local POM @ line 8, colum= n 13 -> [Help 2] [ERROR] = Same error on the command line. Also in the readme.txt, it refers to "Jboss" - need to upper case that "b" -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5961218762222407008==-- From jira-events at lists.jboss.org Wed Jan 18 08:25:20 2012 Content-Type: multipart/mixed; boundary="===============4635716105151906592==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Wed, 18 Jan 2012 08:25:20 -0500 Message-ID: <167134730.7624.1326893120060.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4635716105151906592== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660145#com= ment-12660145 ] = Jay Balunas commented on RF-11773: ---------------------------------- This should probably function for 2.3.3+ don't you think? The buttons not = working would be a big issue. = QE can you provide any additional info, and try on Android emulator 2.3.6? = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > Fix For: 4.2.0.CR1 > > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4635716105151906592==-- From jira-events at lists.jboss.org Wed Jan 18 08:50:28 2012 Content-Type: multipart/mixed; boundary="===============4962128892380075962==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11896) [rich:autocomplete] add attribute maxlength Date: Wed, 18 Jan 2012 08:50:19 -0500 Message-ID: <744278392.7735.1326894619247.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4962128892380075962== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Rene O created RF-11896: --------------------------- Summary: [rich:autocomplete] add attribute maxlength Key: RF-11896 URL: https://issues.jboss.org/browse/RF-11896 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 maxlength to limit = the users input. It should be the same as attribute maxlength within the h:input 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 --===============4962128892380075962==-- From jira-events at lists.jboss.org Wed Jan 18 10:19:18 2012 Content-Type: multipart/mixed; boundary="===============1282414946737849879==" MIME-Version: 1.0 From: Wesley Hales (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Wed, 18 Jan 2012 10:19:18 -0500 Message-ID: <1383185395.8204.1326899958774.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1282414946737849879== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660207#com= ment-12660207 ] = Wesley Hales commented on RF-11773: ----------------------------------- Jay - This has been an ongoing issue in multiple environments. Please see: https://issues.jboss.org/browse/RF-11646 If there continues to be a huge difference in Android point releases (i.e. = 2.3.3 -> 2.3.6) then we should define a Grade for the browsers and versions= to be supported. This doesn't make sense to me as there are not any major = browser changes in an Android point release. So, is this a QA environment i= ssue? If this component continues to give us problems we may want to remove it: https://issues.jboss.org/browse/RF-11567 This issue already calls for a re-write due to scrolling incompatibilities. = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > Fix For: 4.2.0.CR1 > > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1282414946737849879==-- From jira-events at lists.jboss.org Wed Jan 18 10:28:18 2012 Content-Type: multipart/mixed; boundary="===============6683012391285079392==" 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-11893) Increment version number to 4.2.0-SNAPSHOT Date: Wed, 18 Jan 2012 10:28:18 -0500 Message-ID: <504918927.8235.1326900498572.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1843504770.7002.1326878059466.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6683012391285079392== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11893?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11893. ----------------------------- Resolution: Done = > Increment version number to 4.2.0-SNAPSHOT > ------------------------------------------ > > Key: RF-11893 > URL: https://issues.jboss.org/browse/RF-11893 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, qe > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.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 = --===============6683012391285079392==-- From jira-events at lists.jboss.org Wed Jan 18 10:28:19 2012 Content-Type: multipart/mixed; boundary="===============5961569093854583684==" 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-11893) Increment version number to 4.2.0-SNAPSHOT Date: Wed, 18 Jan 2012 10:28:18 -0500 Message-ID: <1876008300.8239.1326900498992.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1843504770.7002.1326878059466.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5961569093854583684== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11893?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-11893: ----------------------------- Assignee: Pavol Pitonak (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Pavol, framework version has been incremented to 4.2.0-SNAPSHOt, could you please update also QE/CI builds? = > Increment version number to 4.2.0-SNAPSHOT > ------------------------------------------ > > Key: RF-11893 > URL: https://issues.jboss.org/browse/RF-11893 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, qe > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Pavol Pitonak > Fix For: 4.2.0.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 = --===============5961569093854583684==-- From jira-events at lists.jboss.org Wed Jan 18 13:52:19 2012 Content-Type: multipart/mixed; boundary="===============8535935472016994996==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11764) Problems with packed resources Date: Wed, 18 Jan 2012 13:52:18 -0500 Message-ID: <1361537875.8797.1326912738731.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531552132.56496.1322674962554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8535935472016994996== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11764?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660287#com= ment-12660287 ] = Brian Leathem commented on RF-11764: ------------------------------------ Jean ANDRE, has this issue been resolved with RF-11876? = > Problems with packed resources > ------------------------------ > > Key: RF-11764 > URL: https://issues.jboss.org/browse/RF-11764 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Reporter: Jean ANDRE > Labels: material-sent, waiting_on_user > > *Follow up RF-11694.* > We tested the solution by updating the web.xml. We put following code : > {code} > > org.richfaces.resourceMapping.enabled > true > > > org.richfaces.resourceMapping.packedStages > All = > > {code} > The workaround does not work well because it triggers many javacript erre= ur - User Interface seem to be frozen, hanged. > Here are the errors catch under firebug / Mozilla > {code} > jsf is not defined > [Stopper sur une erreur] }(jQuery,RichFaces,jsf));;(function(C,B,D){B.bla= nkFunction=3Dfunction(){}; > packed.js (ligne 3040) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur] RichFaces.ui.Menu(...":"MenuForm:mainToolBar"} )= ; > index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 85) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > {code} > more over there is many CSS errors/warning > {code} > L'utilisation de getAttributeNodeNS() est obsol=C3=A8te. Utilisez getAttr= ibuteNS() =C3=A0 la place. > Une fin de valeur =C3=A9tait attendue, mais =C2=AB "#E5973E " =C2=BB a = =C3=A9t=C3=A9 trouv=C3=A9. Erreur d'analyse de la valeur pour =C2=AB border= =C2=BB. D=C3=A9claration abandonn=C3=A9e. > *.rf-insl-tt{position:absolute;display..."#E5973E ";background-color:#FAE= 6B0;} > packed.css (ligne 108) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-fu-inp{filter:alpha(opacity=3D0);fo...y:0;position:absolute;right:0;= top:0;} > packed.css (ligne 158) > Propri=C3=A9t=C3=A9 =C2=AB text-color =C2=BB inconnue. D=C3=A9claration a= bandonn=C3=A9e. > *.rf-fu-itm-st{display:none;margin-top...000;background-color:#fff;paddin= g:0;} > packed.css (ligne 164) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-tab-cnt{border:1px solid #C4C0B9;...opacity:.1;filter:alpha(opacity= =3D10);} > packed.css (ligne 184) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shade{position:fixed;width:100...opacity:.5;filter:alpha(opacity= =3D50);} > packed.css (ligne 185) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shdw{background-color:#000;opa...6px;left:6px;bottom:-6px;z-index= :-1;} > packed.css (ligne 186) > Propri=C3=A9t=C3=A9 =C2=AB repeat-x =C2=BB inconnue. D=C3=A9claration aba= ndonn=C3=A9e. > *.rf-pp-hdr{background:url(../org.rich...g-left:10px;cursor:move;padding:= 2px;} > packed.css (ligne 188) > Erreur d'analyse de la valeur pour =C2=AB font-size =C2=BB. D=C3=A9clarat= ion abandonn=C3=A9e. > *.rf-cal-sp-inp{border:0;padding:0 0 0...Arial,Verdana,sans-serif;width:1= 8px;} > packed.css (ligne 354) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-shdw{background:#FFF;opacity:.5;filter:alpha(opacity=3D50);} > packed.css (ligne 369) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-layout-shdw{background-c...opacity:.3;filter:alpha(opacity= =3D30);} = > {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 = --===============8535935472016994996==-- From jira-events at lists.jboss.org Wed Jan 18 15:32:18 2012 Content-Type: multipart/mixed; boundary="===============5282021906543220936==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11897) menuItems do not inherit the mode of the parent contextMenu Date: Wed, 18 Jan 2012 15:32:18 -0500 Message-ID: <647787621.8905.1326918738187.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5282021906543220936== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11897: ---------------------------------- Summary: menuItems do not inherit the mode of the parent conte= xtMenu Key: RF-11897 URL: https://issues.jboss.org/browse/RF-11897 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu Reporter: Brian Leathem Setting the mode of the contextMenu to "client" does not propagate to the c= hild menuItems. The mode of the menuItem must be set explicitly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5282021906543220936==-- From jira-events at lists.jboss.org Wed Jan 18 15:36:18 2012 Content-Type: multipart/mixed; boundary="===============1975542267438663200==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11898) Attaching a contextMenu to a h:graphicImage results in a contextMenu that does not display Date: Wed, 18 Jan 2012 15:36:18 -0500 Message-ID: <1893634399.8909.1326918978241.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1975542267438663200== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11898: ---------------------------------- Summary: Attaching a contextMenu to a h:graphicImage results i= n a contextMenu that does not display Key: RF-11898 URL: https://issues.jboss.org/browse/RF-11898 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Brian Leathem Attaching a contextMenu to a h:graphicImage results in a contextMenu that d= oes not display. Wrapping the image with a panelGroup, and attaching the c= ontextMenu to that panelGroup instead does not cause a 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 =20 --===============1975542267438663200==-- From jira-events at lists.jboss.org Wed Jan 18 15:36:18 2012 Content-Type: multipart/mixed; boundary="===============1775323071512559520==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11898) Attaching a contextMenu to a h:graphicImage results in a contextMenu that does not display Date: Wed, 18 Jan 2012 15:36:18 -0500 Message-ID: <1590922519.8910.1326918978674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1893634399.8909.1326918978241.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1775323071512559520== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11898?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11898: ------------------------------- Component/s: component-menu = > Attaching a contextMenu to a h:graphicImage results in a contextMenu that= does not display > -------------------------------------------------------------------------= ----------------- > > Key: RF-11898 > URL: https://issues.jboss.org/browse/RF-11898 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > > Attaching a contextMenu to a h:graphicImage results in a contextMenu that= does not display. Wrapping the image with a panelGroup, and attaching the= contextMenu to that panelGroup instead does not cause a 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 =20 --===============1775323071512559520==-- From jira-events at lists.jboss.org Wed Jan 18 15:46:18 2012 Content-Type: multipart/mixed; boundary="===============4393485202374592372==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11899) the attachId of the contextMenu requires the fully qualified path Date: Wed, 18 Jan 2012 15:46:18 -0500 Message-ID: <130287168.8929.1326919578474.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4393485202374592372== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11899: ---------------------------------- Summary: the attachId of the contextMenu requires the fully qu= alified path Key: RF-11899 URL: https://issues.jboss.org/browse/RF-11899 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu Reporter: Brian Leathem Providing an attachId of "pic" for instance is insufficient, one must provi= de "form:pic". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4393485202374592372==-- From jira-events at lists.jboss.org Wed Jan 18 16:24:18 2012 Content-Type: multipart/mixed; boundary="===============6160106028565679508==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11900) contextMenu has to be defined after the extendedDatatable, or it cannot attach Date: Wed, 18 Jan 2012 16:24:18 -0500 Message-ID: <1920914566.9002.1326921858188.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6160106028565679508== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11900: ---------------------------------- Summary: contextMenu has to be defined after the extendedDatat= able, or it cannot attach Key: RF-11900 URL: https://issues.jboss.org/browse/RF-11900 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu Reporter: 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 --===============6160106028565679508==-- From jira-events at lists.jboss.org Wed Jan 18 18:44:20 2012 Content-Type: multipart/mixed; boundary="===============4215127006457359395==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11901) Review the "new" label on showcase compnents Date: Wed, 18 Jan 2012 18:44:19 -0500 Message-ID: <1378292109.9479.1326930259921.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4215127006457359395== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11901: ---------------------------------- Summary: Review the "new" label on showcase compnents Key: RF-11901 URL: https://issues.jboss.org/browse/RF-11901 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: showcase Reporter: Brian Leathem Assignee: Brian Leathem Priority: Trivial Fix For: 4.2.0.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 --===============4215127006457359395==-- From jira-events at lists.jboss.org Wed Jan 18 19:02:21 2012 Content-Type: multipart/mixed; boundary="===============8955353873931400399==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10197) Right click menu - rich:contextMenu - should be ported from RF 3 Date: Wed, 18 Jan 2012 19:02:21 -0500 Message-ID: <2004935848.9588.1326931341124.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1371525318.9293.1294869109676.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8955353873931400399== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10197?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-10197. -------------------------------- Labels: (was: sandbox) Assignee: Brian Leathem (was: J=C3=A1n Jamrich) Resolution: Done = > Right click menu - rich:contextMenu - should be ported from RF 3 > ---------------------------------------------------------------- > > Key: RF-10197 > URL: https://issues.jboss.org/browse/RF-10197 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.0.0.Milestone5 > Environment: Windows > Reporter: Devinder Singh > Assignee: Brian Leathem > Priority: Blocker > Fix For: 4.2.0.CR1 > > > rich:contextMenu is available in 3.x release but not yet supported in 4.0= . = > As it enables right click menus on JSF components, it's a very useful fea= ture that can be used in wide variety of applications = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8955353873931400399==-- From jira-events at lists.jboss.org Thu Jan 19 03:41:19 2012 Content-Type: multipart/mixed; boundary="===============0592357461218906654==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11893) Increment version number to 4.2.0-SNAPSHOT Date: Thu, 19 Jan 2012 03:41:19 -0500 Message-ID: <379771525.10024.1326962479708.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1843504770.7002.1326878059466.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0592357461218906654== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11893?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11893: ---------------------------------- Assignee: Juraj Huska (was: Pavol Pitonak) = > Increment version number to 4.2.0-SNAPSHOT > ------------------------------------------ > > Key: RF-11893 > URL: https://issues.jboss.org/browse/RF-11893 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, qe > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Juraj Huska > Fix For: 4.2.0.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 = --===============0592357461218906654==-- From jira-events at lists.jboss.org Thu Jan 19 05:32:18 2012 Content-Type: multipart/mixed; boundary="===============3925680645609166697==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11902) [rich:autocomplete] add attribute queueId Date: Thu, 19 Jan 2012 05:32:18 -0500 Message-ID: <1022848615.10266.1326969138391.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3925680645609166697== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Rene O created RF-11902: --------------------------- Summary: [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:aja= x 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 --===============3925680645609166697==-- From jira-events at lists.jboss.org Thu Jan 19 07:25:18 2012 Content-Type: multipart/mixed; boundary="===============4583201561790631718==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11893) Increment version number to 4.2.0-SNAPSHOT Date: Thu, 19 Jan 2012 07:25:18 -0500 Message-ID: <546501655.10523.1326975918383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1843504770.7002.1326878059466.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4583201561790631718== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11893?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska resolved RF-11893. ------------------------------ Resolution: Done I have changed richfaces version to 4.2.0-SNAPSHOT on all modules in the re= pository qa And also changed that the *only* places where the *version is defined* are = in the *parent pom version*, and also in the *definition of parent* in the = submodules. = > Increment version number to 4.2.0-SNAPSHOT > ------------------------------------------ > > Key: RF-11893 > URL: https://issues.jboss.org/browse/RF-11893 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, qe > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Juraj Huska > Fix For: 4.2.0.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 = --===============4583201561790631718==-- From jira-events at lists.jboss.org Thu Jan 19 07:51:18 2012 Content-Type: multipart/mixed; boundary="===============2557736388095196066==" 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-11892) Push: turn off JMS integration by default Date: Thu, 19 Jan 2012 07:51:18 -0500 Message-ID: <1251499046.10554.1326977478269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 985205215.6984.1326877458621.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2557736388095196066== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11892?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11892: ---------------------------- Summary: Push: turn off JMS integration by default (was: Push: turn on= JMS integration by default) = > Push: turn off JMS integration by default > ----------------------------------------- > > Key: RF-11892 > URL: https://issues.jboss.org/browse/RF-11892 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.0.0.Final, 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > On team meeting [1], we have discussed necessity to simplify configuratio= n of Push in order to simplify starting with push for new users. > I suggest to replace current configuration {{org.richfaces.push.jms.disab= le}} > with {{org.richfaces.push.jms.enable}}, leaving previous one with no effe= ct > or providing warning. > [1] https://community.jboss.org/wiki/RichFacesTeamMeetingAgenda2012-01-17 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2557736388095196066==-- From jira-events at lists.jboss.org Thu Jan 19 08:46:20 2012 Content-Type: multipart/mixed; boundary="===============6914667072981413696==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Thu, 19 Jan 2012 08:46:20 -0500 Message-ID: <1630178280.10733.1326980780347.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6914667072981413696== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek reopened RF-11773: ------------------------------- = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > Fix For: 4.2.0.CR1 > > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6914667072981413696==-- From jira-events at lists.jboss.org Thu Jan 19 08:46:20 2012 Content-Type: multipart/mixed; boundary="===============2480848475210932963==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Thu, 19 Jan 2012 08:46:20 -0500 Message-ID: <1406776420.10742.1326980780808.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2480848475210932963== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek closed RF-11773. ----------------------------- I've tried to reproduce the bug and it's working on 4.1.0.Final. = Jay: Android SDK doesn't provide emulator in version 2.3.6 Wesley: I agree we should define supported versions. Tests are currently ex= ecuted on 2.2. There can be executed on 3.1 too, but it's slower. = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > Fix For: 4.2.0.CR1 > > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2480848475210932963==-- From jira-events at lists.jboss.org Thu Jan 19 08:46:20 2012 Content-Type: multipart/mixed; boundary="===============1532097607957868898==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11773) Mobile Showcase and rich:orderingList/rich:pickList - control buttons can't be enabled Date: Thu, 19 Jan 2012 08:46:20 -0500 Message-ID: <629632775.10738.1326980780683.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 677171215.62017.1322758002710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1532097607957868898== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11773?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek resolved RF-11773. ------------------------------- Resolution: Cannot Reproduce Bug = > Mobile Showcase and rich:orderingList/rich:pickList - control buttons can= 't be enabled > -------------------------------------------------------------------------= ------------- > > Key: RF-11773 > URL: https://issues.jboss.org/browse/RF-11773 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile, showcase > Affects Versions: 4.1.0.CR2 > Environment: JBoss AS 7.1.0.Beta1 > mobile devices: Nexus - Android 2.3.6, iPad > Reporter: Jan Papousek > Assignee: Wesley Hales > Fix For: 4.2.0.CR1 > > > It works correctly on iPhone, Motorola Xoom(Andorid), Android emulator (2= .3.3). > It does not work for Nexus mobile device and iPad. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1532097607957868898==-- From jira-events at lists.jboss.org Thu Jan 19 09:11:19 2012 Content-Type: multipart/mixed; boundary="===============8285852155917262717==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Thu, 19 Jan 2012 09:11:18 -0500 Message-ID: <1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8285852155917262717== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-11903: -------------------------------- Summary: showcase - a4j:push - error on the server side, Unab= le to resume the suspended connection with latchId Key: RF-11903 URL: https://issues.jboss.org/browse/RF-11903 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-push/poll, showcase, third-party Affects Versions: 4.1.0.Final Environment: container: JBoss AS 6.0.0.Final browsers: all application: showcase 4.2.0-SNAPSHOT = Reporter: Juraj Huska *All* demos for 14j:push are causing *error* on the server side when it is = pushing something to them: {code} 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 11597405 {code} Note that the latchId is for each push different. *The functionality* howev= er remains *ok*, at least for Topics context usage and JMS push. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8285852155917262717==-- From jira-events at lists.jboss.org Thu Jan 19 09:25:18 2012 Content-Type: multipart/mixed; boundary="===============1538289479701575890==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Thu, 19 Jan 2012 09:25:18 -0500 Message-ID: <776611634.10918.1326983118497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1538289479701575890== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660513#com= ment-12660513 ] = Juraj Huska commented on RF-11903: ---------------------------------- This excepion is thrown after some time of not using push, IMHO it is throw= n after timeout set on Atmosphere: {code} 15:22:50,797 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 17509802 15:22:50,798 SEVERE [org.richfaces.log.Application] null: java.lang.NullPoi= nterException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [:0.8.3] at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor= .java:380) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOComet= Support.java:165) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOComet= Support.java:95) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:1171= ) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:1157)= [:0.8.3] at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [:1.0.0.Fi= nal] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Fi= nal] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:324) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:67) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:274) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:191) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityA= ssociationValve.java:181) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.even= t(CatalinaContext.java:285) [:1.1.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invo= ke(CatalinaContext.java:261) [:1.1.0.Final] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.= java:88) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(= SecurityContextEstablishmentValve.java:100) [:6.0.0.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:127) [:6.0.0.Final] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [:6.0.0.Final] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedCon= nectionValve.java:158) [:6.0.0.Final] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [:6.0.0.Final] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.in= voke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 362) [:6.0.0.Final] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [:6.0.0.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:654) [:6.0.0.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)= [:6.0.0.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1538289479701575890==-- From jira-events at lists.jboss.org Thu Jan 19 09:33:18 2012 Content-Type: multipart/mixed; boundary="===============8360168055297387560==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Thu, 19 Jan 2012 09:33:18 -0500 Message-ID: <1000327676.10931.1326983598601.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8360168055297387560== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660513#com= ment-12660513 ] = Juraj Huska edited comment on RF-11903 at 1/19/12 9:32 AM: ----------------------------------------------------------- This excepion is thrown after some time of not using push, *before it had t= o be used CDI example*, IMHO it is thrown after timeout set on Atmosphere: {code} 15:22:50,797 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 17509802 15:22:50,798 SEVERE [org.richfaces.log.Application] null: java.lang.NullPoi= nterException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [:0.8.3] at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor= .java:380) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOComet= Support.java:165) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOComet= Support.java:95) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:1171= ) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:1157)= [:0.8.3] at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [:1.0.0.Fi= nal] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Fi= nal] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:324) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:67) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:274) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:191) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityA= ssociationValve.java:181) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.even= t(CatalinaContext.java:285) [:1.1.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invo= ke(CatalinaContext.java:261) [:1.1.0.Final] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.= java:88) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(= SecurityContextEstablishmentValve.java:100) [:6.0.0.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:127) [:6.0.0.Final] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [:6.0.0.Final] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedCon= nectionValve.java:158) [:6.0.0.Final] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [:6.0.0.Final] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.in= voke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 362) [:6.0.0.Final] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [:6.0.0.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:654) [:6.0.0.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)= [:6.0.0.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} = was (Author: jhuska): This excepion is thrown after some time of not using push, IMHO it is t= hrown after timeout set on Atmosphere: {code} 15:22:50,797 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 17509802 15:22:50,798 SEVERE [org.richfaces.log.Application] null: java.lang.NullPoi= nterException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [:0.8.3] at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor= .java:380) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOComet= Support.java:165) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOComet= Support.java:95) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:1171= ) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:1157)= [:0.8.3] at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [:1.0.0.Fi= nal] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Fi= nal] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:324) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:67) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:274) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:191) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityA= ssociationValve.java:181) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.even= t(CatalinaContext.java:285) [:1.1.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invo= ke(CatalinaContext.java:261) [:1.1.0.Final] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.= java:88) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(= SecurityContextEstablishmentValve.java:100) [:6.0.0.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:127) [:6.0.0.Final] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [:6.0.0.Final] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedCon= nectionValve.java:158) [:6.0.0.Final] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [:6.0.0.Final] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.in= voke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 362) [:6.0.0.Final] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [:6.0.0.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:654) [:6.0.0.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)= [:6.0.0.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8360168055297387560==-- From jira-events at lists.jboss.org Thu Jan 19 09:39:18 2012 Content-Type: multipart/mixed; boundary="===============6882034859253687034==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Thu, 19 Jan 2012 09:39:18 -0500 Message-ID: <438720814.10948.1326983958334.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6882034859253687034== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660517#com= ment-12660517 ] = Juraj Huska commented on RF-11903: ---------------------------------- Another error thrown when server is shutting down, note that it is also thr= own *after using of CDI push demo.* {code} 15:36:49,800 ERROR [org.atmosphere.container.BlockingIOCometSupport] : java= .lang.NullPointerException at org.atmosphere.container.BlockingIOCometSupport.action(BlockingIOCometS= upport.java:199) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.action(BlockingIOCometS= upport.java:71) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceImpl= .java:218) [:0.8.3] at org.atmosphere.cpr.Meteor.resume(Meteor.java:240) [:0.8.3] at org.richfaces.application.push.impl.RequestImpl.resume(RequestImpl.java= :68) [:4.2.0-SNAPSHOT] at org.richfaces.application.push.impl.SessionImpl.releaseRequest(SessionI= mpl.java:112) [:4.2.0-SNAPSHOT] at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.= java:117) [:4.2.0-SNAPSHOT] at org.richfaces.application.push.impl.SessionImpl.destroy(SessionImpl.jav= a:156) [:4.2.0-SNAPSHOT] at org.richfaces.application.push.impl.SessionManagerImpl.destroy(SessionM= anagerImpl.java:84) [:4.2.0-SNAPSHOT] at org.richfaces.application.push.impl.PushContextImpl.destroy(PushContext= Impl.java:90) [:4.2.0-SNAPSHOT] at org.richfaces.application.push.impl.PushContextImpl.processEvent(PushCo= ntextImpl.java:106) [:4.2.0-SNAPSHOT] at javax.faces.event.SystemEvent.processListener(SystemEvent.java:102) [:2= .0.3-] at com.sun.faces.application.ApplicationImpl.processListeners(ApplicationI= mpl.java:2040) [:2.0.3-] at com.sun.faces.application.ApplicationImpl.invokeListenersFor(Applicatio= nImpl.java:2016) [:2.0.3-] at com.sun.faces.application.ApplicationImpl.publishEvent(ApplicationImpl.= java:298) [:2.0.3-] at org.jboss.weld.integration.webtier.jsf.ForwardingApplication.publishEve= nt(ForwardingApplication.java:330) [:6.0.0.Final] at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureListen= er.java:316) [:2.0.3-] at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.j= ava:3466) [:6.0.0.Final] at org.apache.catalina.core.StandardContext.stop(StandardContext.java:3975= ) [:6.0.0.Final] at org.apache.catalina.core.ContainerBase.destroy(ContainerBase.java:1162)= [:6.0.0.Final] at org.apache.catalina.core.StandardContext.destroy(StandardContext.java:4= 062) [:6.0.0.Final] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_22] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) [:1.6.0_22] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) [:1.6.0_22] at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] at org.apache.tomcat.util.modeler.BaseModelMBean.invoke(BaseModelMBean.jav= a:300) [:6.0.0.Final] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164= ) [:6.0.0.GA] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:670) [:= 6.0.0.GA] at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performUndeploy= Internal(TomcatDeployment.java:551) [:6.0.0.Final] at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performUndeploy= (TomcatDeployment.java:526) [:6.0.0.Final] at org.jboss.web.deployers.AbstractWarDeployment.stop(AbstractWarDeploymen= t.java:496) [:6.0.0.Final] at org.jboss.web.deployers.WebModule.stopModule(WebModule.java:133) [:6.0.= 0.Final] at org.jboss.web.deployers.WebModule.stop(WebModule.java:100) [:6.0.0.Fina= l] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_22] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) [:1.6.0_22] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:25) [:1.6.0_22] at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher= .java:157) [:6.0.0.GA] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96) [:6.0.0.GA] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) [:6.0.0.GA] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.ja= va:271) [:6.0.0.GA] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:670) [:= 6.0.0.GA] at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:2= 06) [:2.2.0.GA] at $Proxy41.stop(Unknown Source) at org.jboss.system.microcontainer.StartS= topLifecycleAction.uninstallAction(StartStopLifecycleAction.java:74) [:2.2.= 0.GA] at org.jboss.system.microcontainer.StartStopLifecycleAction.uninstallActio= n(StartStopLifecycleAction.java:41) [:2.2.0.GA] at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpl= eUninstallAction(SimpleControllerContextAction.java:79) [jboss-dependency.j= ar:2.2.0.GA] at org.jboss.dependency.plugins.action.AccessControllerContextAction.unins= tall(AccessControllerContextAction.java:131) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractControllerContextActions.uninstall= (AbstractControllerContextActions.java:58) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractControllerContext.uninstall(Abstra= ctControllerContext.java:385) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.uninstall(AbstractContr= oller.java:2078) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.uninstallContext(Abstra= ctController.java:1624) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.uninstallContext(Abstra= ctController.java:1472) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.uninstallContext(Abstra= ctController.java:1537) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.uninstallContext(Abstra= ctController.java:1472) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.uninstallContext(Abstra= ctController.java:1537) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.change(AbstractControll= er.java:948) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.change(AbstractControll= er.java:654) [jboss-dependency.jar:2.2.0.GA] at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImp= l.java:1983) [:2.2.0.GA] at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImp= l.java:1968) [:2.2.0.GA] at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersIm= pl.java:1001) [:2.2.0.GA] at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerI= mpl.java:656) [:2.2.0.GA] at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.pro= cess(MainDeployerPlugin.java:106) [:6.0.0.Final] at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDe= ployer.process(ProfileControllerContext.java:143) [:0.2.2] at org.jboss.profileservice.dependency.ProfileDeployAction.undeploy(Profil= eDeployAction.java:195) [:0.2.2] at org.jboss.profileservice.dependency.ProfileDeployAction.uninstallAction= Internal(ProfileDeployAction.java:112) [:0.2.2] at org.jboss.kernel.plugins.dependency.InstallsAwareAction.uninstallAction= (InstallsAwareAction.java:175) [jboss-kernel.jar:2.2.0.GA] at org.jboss.kernel.plugins.dependency.InstallsAwareAction.uninstallAction= (InstallsAwareAction.java:42) [jboss-kernel.jar:2.2.0.GA] at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpl= eUninstallAction(SimpleControllerContextAction.java:79) [jboss-dependency.j= ar:2.2.0.GA] at org.jboss.dependency.plugins.action.AccessControllerContextAction.unins= tall(AccessControllerContextAction.java:131) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractControllerContextActions.uninstall= (AbstractControllerContextActions.java:58) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractControllerContext.uninstall(Abstra= ctControllerContext.java:385) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.uninstall(AbstractContr= oller.java:2078) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.uninstallContext(Abstra= ctController.java:1624) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.change(AbstractControll= er.java:948) [jboss-dependency.jar:2.2.0.GA] at org.jboss.dependency.plugins.AbstractController.change(AbstractControll= er.java:654) [jboss-dependency.jar:2.2.0.GA] at org.jboss.profileservice.dependency.ProfileActivationWrapper$BasicProfi= leActivation.stop(ProfileActivationWrapper.java:210) [:0.2.2] at org.jboss.profileservice.dependency.ProfileActivationWrapper.stop(Profi= leActivationWrapper.java:101) [:0.2.2] at org.jboss.profileservice.dependency.ProfileActivationService.deactivate= Profile(ProfileActivationService.java:220) [:0.2.2] at org.jboss.profileservice.dependency.ProfileActivationService.deactivate= (ProfileActivationService.java:170) [:0.2.2] at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.stop= (AbstractProfileServiceBootstrap.java:130) [:0.2.2] at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBoo= tstrap.shutdown(BasicProfileServiceBootstrap.java:160) [:6.0.0.Final] at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBoo= tstrap.shutdown(BasicProfileServiceBootstrap.java:56) [:6.0.0.Final] at org.jboss.bootstrap.impl.base.server.AbstractServer.shutdownBootstraps(= AbstractServer.java:859) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5] at org.jboss.bootstrap.impl.base.server.AbstractServer.shutdown(AbstractSe= rver.java:300) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5] at org.jboss.Main$ShutdownHook$1.run(Main.java:994) [run.jar:6.0.0.Final (= Build SVNTag:JBoss_6.0.0.Final date: 20101228)] {code} = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6882034859253687034==-- From jira-events at lists.jboss.org Thu Jan 19 09:41:18 2012 Content-Type: multipart/mixed; boundary="===============0232590700817470779==" 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-11904) rich:contextMenu @mode doesn't affect request type Date: Thu, 19 Jan 2012 09:41:18 -0500 Message-ID: <1470389961.10951.1326984078257.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0232590700817470779== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable J=C3=A1n Jamrich created RF-11904: -------------------------------- Summary: rich:contextMenu @mode doesn't affect request type Key: RF-11904 URL: https://issues.jboss.org/browse/RF-11904 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc Environment: RichFaces 4.2.0-SNAPSHOT Metamer 4.1.1-SNAPSHOT r.${buildNumber} Mojarra 2.1.3-SNAPSHOT JBoss AS 7.0.2.Final Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux Firefox 10.0 @ Linux i686 ----- Richfaces component module built after merge to develop branch Reporter: J=C3=A1n Jamrich Since contextMenu should be similar to dropDownMenu, I'm missing behavior c= ontrolled by @mode in contextMenu like dropDownMenu. In dropDownMenu @mode=3Dajax causes just one request performed when click m= enu item. No request for @mode=3Dclient and only for @mode=3Dserver multipl= e requests (first POST request for page where dropDownMenu triggered reques= t and then multiple GET requests for all associated (referenced) resources = such as CSS, JS... But not for contextMenu. @mode set to client neither ajax doesn't change re= quest type, always is full page refresh performed when click on contextMenu= item. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0232590700817470779==-- From jira-events at lists.jboss.org Thu Jan 19 09:43:18 2012 Content-Type: multipart/mixed; boundary="===============8360388807906250862==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Thu, 19 Jan 2012 09:43:18 -0500 Message-ID: <2075974577.10954.1326984198340.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8360388807906250862== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660513#com= ment-12660513 ] = Juraj Huska edited comment on RF-11903 at 1/19/12 9:43 AM: ----------------------------------------------------------- This excepion is thrown after some time of not using push, *before it had t= o be used CDI example*, IMHO it is thrown after timeout set on Atmosphere: Note that this behavior is also occurring on JBoss AS 7.0.2.Final. = {code} 15:22:50,797 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 17509802 15:22:50,798 SEVERE [org.richfaces.log.Application] null: java.lang.NullPoi= nterException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [:0.8.3] at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor= .java:380) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOComet= Support.java:165) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOComet= Support.java:95) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:1171= ) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:1157)= [:0.8.3] at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [:1.0.0.Fi= nal] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Fi= nal] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:324) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:67) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:274) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:191) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityA= ssociationValve.java:181) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.even= t(CatalinaContext.java:285) [:1.1.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invo= ke(CatalinaContext.java:261) [:1.1.0.Final] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.= java:88) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(= SecurityContextEstablishmentValve.java:100) [:6.0.0.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:127) [:6.0.0.Final] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [:6.0.0.Final] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedCon= nectionValve.java:158) [:6.0.0.Final] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [:6.0.0.Final] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.in= voke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 362) [:6.0.0.Final] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [:6.0.0.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:654) [:6.0.0.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)= [:6.0.0.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} = was (Author: jhuska): This excepion is thrown after some time of not using push, *before it h= ad to be used CDI example*, IMHO it is thrown after timeout set on Atmosphe= re: {code} 15:22:50,797 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 17509802 15:22:50,798 SEVERE [org.richfaces.log.Application] null: java.lang.NullPoi= nterException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [:0.8.3] at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor= .java:380) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOComet= Support.java:165) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOComet= Support.java:95) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:1171= ) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:1157)= [:0.8.3] at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [:1.0.0.Fi= nal] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Fi= nal] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:324) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:67) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:274) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:191) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityA= ssociationValve.java:181) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.even= t(CatalinaContext.java:285) [:1.1.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invo= ke(CatalinaContext.java:261) [:1.1.0.Final] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.= java:88) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(= SecurityContextEstablishmentValve.java:100) [:6.0.0.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:127) [:6.0.0.Final] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [:6.0.0.Final] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedCon= nectionValve.java:158) [:6.0.0.Final] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [:6.0.0.Final] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.in= voke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 362) [:6.0.0.Final] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [:6.0.0.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:654) [:6.0.0.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)= [:6.0.0.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8360388807906250862==-- From jira-events at lists.jboss.org Thu Jan 19 09:49:19 2012 Content-Type: multipart/mixed; boundary="===============5973628851665145105==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Thu, 19 Jan 2012 09:49:19 -0500 Message-ID: <1058039597.10968.1326984559814.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5973628851665145105== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660513#com= ment-12660513 ] = Juraj Huska edited comment on RF-11903 at 1/19/12 9:48 AM: ----------------------------------------------------------- This excepion is thrown after some time of not using push, *before it had t= o be used CDI example*, IMHO it is thrown after timeout set on Atmosphere: Note that this behavior is also occurring on *JBoss AS 7.0.2.Final*. = {code} 15:22:50,797 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 17509802 15:22:50,798 SEVERE [org.richfaces.log.Application] null: java.lang.NullPoi= nterException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [:0.8.3] at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor= .java:380) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOComet= Support.java:165) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOComet= Support.java:95) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:1171= ) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:1157)= [:0.8.3] at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [:1.0.0.Fi= nal] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Fi= nal] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:324) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:67) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:274) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:191) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityA= ssociationValve.java:181) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.even= t(CatalinaContext.java:285) [:1.1.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invo= ke(CatalinaContext.java:261) [:1.1.0.Final] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.= java:88) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(= SecurityContextEstablishmentValve.java:100) [:6.0.0.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:127) [:6.0.0.Final] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [:6.0.0.Final] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedCon= nectionValve.java:158) [:6.0.0.Final] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [:6.0.0.Final] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.in= voke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 362) [:6.0.0.Final] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [:6.0.0.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:654) [:6.0.0.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)= [:6.0.0.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} = was (Author: jhuska): This excepion is thrown after some time of not using push, *before it h= ad to be used CDI example*, IMHO it is thrown after timeout set on Atmosphe= re: Note that this behavior is also occurring on JBoss AS 7.0.2.Final. = {code} 15:22:50,797 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 17509802 15:22:50,798 SEVERE [org.richfaces.log.Application] null: java.lang.NullPoi= nterException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [:0.8.3] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [:0.8.3] at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor= .java:380) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOComet= Support.java:165) [:0.8.3] at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOComet= Support.java:95) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:1171= ) [:0.8.3] at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:1157)= [:0.8.3] at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [:1.0.0.Fi= nal] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Fi= nal] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:324) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:67) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:274) [:6.0.0.Final] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:242) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:191) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityA= ssociationValve.java:181) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.even= t(CatalinaContext.java:285) [:1.1.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invo= ke(CatalinaContext.java:261) [:1.1.0.Final] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.= java:88) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(= SecurityContextEstablishmentValve.java:100) [:6.0.0.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:127) [:6.0.0.Final] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [:6.0.0.Final] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedCon= nectionValve.java:158) [:6.0.0.Final] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [:6.0.0.Final] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.in= voke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 362) [:6.0.0.Final] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [:6.0.0.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:654) [:6.0.0.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)= [:6.0.0.Final] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5973628851665145105==-- From jira-events at lists.jboss.org Thu Jan 19 10:03:18 2012 Content-Type: multipart/mixed; boundary="===============7493838256928473807==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Thu, 19 Jan 2012 10:03:18 -0500 Message-ID: <74728147.11013.1326985398419.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7493838256928473807== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660522#com= ment-12660522 ] = Juraj Huska commented on RF-11903: ---------------------------------- On *Jboss AS 7.1.0.CR1b* similar NullPointerException is thrown, but not af= ter timeout but after *canceling* of the atmosphere connection(so it is eno= ugh to switch between various push demos): {code} 15:58:29,170 SEVERE [org.richfaces.log.Application] (http-localhost.localdo= main-127.0.0.1-8080-2) null: java.lang.NullPointerException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AsynchronousProcessor.cancelled(AsynchronousProcesso= r.java:505) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.container.JBossWebCometSupport.cancelled(JBossWebCometSu= pport.java:151) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.container.JBossWebCometSupport.service(JBossWebCometSupp= ort.java:124) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereServlet.event(AtmosphereServlet.java:1305)= [atmosphere-runtime-0.8.3.jar:] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilterEvent(A= pplicationFilterChain.java:494) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilterEvent(Applicati= onFilterChain.java:399) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.event(StandardWrapperValv= e.java:464) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.StandardContextValve.event(StandardContextValv= e.java:183) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.7.Final.jar:] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.7.Final.jar:] at org.apache.catalina.core.StandardHostValve.event(StandardHostValve.java= :259) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.7.Final.jar:] at org.apache.catalina.core.StandardEngineValve.event(StandardEngineValve.= java:128) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.event(CoyoteAdapter.java:26= 5) [jbossweb-7.0.7.Final.jar:] at org.apache.coyote.http11.Http11AprProcessor.event(Http11AprProcessor.ja= va:780) [jbossweb-7.0.7.Final.jar:] at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.even= t(Http11AprProtocol.java:579) [jbossweb-7.0.7.Final.jar:] at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:2027= ) [jbossweb-7.0.7.Final.jar:] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7493838256928473807==-- From jira-events at lists.jboss.org Thu Jan 19 10:07:18 2012 Content-Type: multipart/mixed; boundary="===============3493045550726858650==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Thu, 19 Jan 2012 10:07:18 -0500 Message-ID: <1511030665.11034.1326985638337.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3493045550726858650== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-11903: ----------------------------- Description: = *All* demos for 14j:push are causing *error* on the server side when it is = pushing something to them: {code} 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 11597405 {code} Note that the latchId is for each push different. *The functionality* howev= er remains *ok*, at least for Topics context usage and JMS push. This particular error is thrown only on *JBoss AS 6*, *other containers* th= rows also some errors, please see the comments below. was: *All* demos for 14j:push are causing *error* on the server side when it is = pushing something to them: {code} 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unable= to resume the suspended connection with latchId: 11597405 {code} Note that the latchId is for each push different. *The functionality* howev= er remains *ok*, at least for Topics context usage and JMS push. Environment: = container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Final, JBoss AS 7.1.0.CR1b browsers: all application: showcase 4.2.0-SNAPSHOT = was: container: JBoss AS 6.0.0.Final browsers: all application: showcase 4.2.0-SNAPSHOT = = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3493045550726858650==-- From jira-events at lists.jboss.org Thu Jan 19 10:15:19 2012 Content-Type: multipart/mixed; boundary="===============1551541596476584602==" 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: Thu, 19 Jan 2012 10:15:19 -0500 Message-ID: <973231784.11076.1326986119347.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1551541596476584602== 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 updated RF-11905: ----------------------------- Summary: showcase - shutdown of the JBoss AS with showcase deployed thr= ows DB error (was: showcase - shutdown of the JBoss AS server throws DB er= ror) = > 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 > app: showcase 4.2.0-SNAPSHOT > Reporter: Juraj Huska > Priority: Minor > > When shutting down JBoss AS 7.1.0.CR1b with showcase deployed, then the D= B error is 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 =20 --===============1551541596476584602==-- From jira-events at lists.jboss.org Thu Jan 19 10:15:19 2012 Content-Type: multipart/mixed; boundary="===============5581749016629868748==" 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 server throws DB error Date: Thu, 19 Jan 2012 10:15:19 -0500 Message-ID: <567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5581749016629868748== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj Huska created RF-11905: -------------------------------- Summary: showcase - shutdown of the JBoss AS server 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 app: showcase 4.2.0-SNAPSHOT Reporter: Juraj Huska Priority: Minor When shutting down JBoss AS 7.1.0.CR1b with showcase deployed, then the DB = error is thrown: {code} 16:09:52,334 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] HHH000231: Sch= ema export unsuccessful: org.h2.jdbc.JdbcSQLException: Database is already = closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EXIT= =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(WrappedCo= nnection.java:301) at org.hibernate.tool.hbm2ddl.DatabaseExporter.(DatabaseExporter.jav= a: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) [hi= bernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:315) [hi= bernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.internal.SessionFactoryImpl.close(SessionFactoryImpl.java= :1305) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.ejb.EntityManagerFactoryImpl.close(EntityManagerFactoryIm= pl.java:126) [hibernate-entitymanager-4.0.0.Final.jar:4.0.0.Final] at org.richfaces.demo.arrangeablemodel.PersistenceService.destroy(Persiste= nceService.java:159) [classes:] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_22] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) [:1.6.0_22] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.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.ManagedReferenceLifecycleMethodInterceptorFac= tory$ManagedReferenceLifecycleMethodInterceptor.processInvocation(ManagedRe= ferenceLifecycleMethodInterceptorFactory.java:130) [jboss-as-ee-7.1.0.CR1b.= jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedIntercep= tor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.ManagedReferenceReleaseInterceptorFactory$Man= agedReferenceReleaseInterceptor.processInvocation(ManagedReferenceReleaseIn= terceptorFactory.java:90) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedIntercep= tor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInterce= ptor.java:45) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterc= eptor.java:61) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.BasicComponentInstance.destroy(BasicComponent= Instance.java:122) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.as.web.deployment.component.WebComponentInstantiator$2.releas= e(WebComponentInstantiator.java:102) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1= b] at org.jboss.as.web.deployment.WebInjectionContainer.destroyInstance(WebIn= jectionContainer.java:67) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.as.web.deployment.jsf.JsfInjectionProvider.invokePreDestroy(J= sfInjectionProvider.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-imp= l-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.mgbean.BeanManager.destroy(BeanManager.java:283) [jsf-imp= l-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.application.WebappLifecycleListener.handleAttributeEvent(= WebappLifecycleListener.java:314) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAP= SHOT] at com.sun.faces.application.WebappLifecycleListener.contextDestroyed(Weba= ppLifecycleListener.java:368) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureListen= er.java:308) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.j= ava:3489) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.StandardContext.stop(StandardContext.java:3999= ) [jbossweb-7.0.7.Final.jar:] at org.jboss.as.web.deployment.WebDeploymentService.stop(WebDeploymentServ= ice.java:96) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.msc.service.ServiceControllerImpl$StopTask.stopService(Servic= eControllerImpl.java:1909) at org.jboss.msc.service.ServiceControllerImpl$StopTask.run(ServiceControl= lerImpl.java:1872) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecut= or.java:886) [:1.6.0_22] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.j= ava: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 =20 --===============5581749016629868748==-- From jira-events at lists.jboss.org Thu Jan 19 10:19:18 2012 Content-Type: multipart/mixed; boundary="===============4774558459064841431==" 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: Thu, 19 Jan 2012 10:19:18 -0500 Message-ID: <2018133944.11112.1326986358278.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4774558459064841431== 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 updated RF-11905: ----------------------------- Description: = When shutting down JBoss AS 7 with showcase deployed, then the DB error is = thrown: {code} 16:09:52,334 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] HHH000231: Sch= ema export unsuccessful: org.h2.jdbc.JdbcSQLException: Database is already = closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EXIT= =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(WrappedCo= nnection.java:301) at org.hibernate.tool.hbm2ddl.DatabaseExporter.(DatabaseExporter.jav= a: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) [hi= bernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:315) [hi= bernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.internal.SessionFactoryImpl.close(SessionFactoryImpl.java= :1305) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.ejb.EntityManagerFactoryImpl.close(EntityManagerFactoryIm= pl.java:126) [hibernate-entitymanager-4.0.0.Final.jar:4.0.0.Final] at org.richfaces.demo.arrangeablemodel.PersistenceService.destroy(Persiste= nceService.java:159) [classes:] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_22] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) [:1.6.0_22] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.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.ManagedReferenceLifecycleMethodInterceptorFac= tory$ManagedReferenceLifecycleMethodInterceptor.processInvocation(ManagedRe= ferenceLifecycleMethodInterceptorFactory.java:130) [jboss-as-ee-7.1.0.CR1b.= jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedIntercep= tor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.ManagedReferenceReleaseInterceptorFactory$Man= agedReferenceReleaseInterceptor.processInvocation(ManagedReferenceReleaseIn= terceptorFactory.java:90) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedIntercep= tor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInterce= ptor.java:45) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterc= eptor.java:61) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.BasicComponentInstance.destroy(BasicComponent= Instance.java:122) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.as.web.deployment.component.WebComponentInstantiator$2.releas= e(WebComponentInstantiator.java:102) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1= b] at org.jboss.as.web.deployment.WebInjectionContainer.destroyInstance(WebIn= jectionContainer.java:67) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.as.web.deployment.jsf.JsfInjectionProvider.invokePreDestroy(J= sfInjectionProvider.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-imp= l-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.mgbean.BeanManager.destroy(BeanManager.java:283) [jsf-imp= l-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.application.WebappLifecycleListener.handleAttributeEvent(= WebappLifecycleListener.java:314) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAP= SHOT] at com.sun.faces.application.WebappLifecycleListener.contextDestroyed(Weba= ppLifecycleListener.java:368) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureListen= er.java:308) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.j= ava:3489) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.StandardContext.stop(StandardContext.java:3999= ) [jbossweb-7.0.7.Final.jar:] at org.jboss.as.web.deployment.WebDeploymentService.stop(WebDeploymentServ= ice.java:96) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.msc.service.ServiceControllerImpl$StopTask.stopService(Servic= eControllerImpl.java:1909) at org.jboss.msc.service.ServiceControllerImpl$StopTask.run(ServiceControl= lerImpl.java:1872) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecut= or.java:886) [:1.6.0_22] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.j= ava:908) [:1.6.0_22] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} was: When shutting down JBoss AS 7.1.0.CR1b with showcase deployed, then the DB = error is thrown: {code} 16:09:52,334 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] HHH000231: Sch= ema export unsuccessful: org.h2.jdbc.JdbcSQLException: Database is already = closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EXIT= =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(WrappedCo= nnection.java:301) at org.hibernate.tool.hbm2ddl.DatabaseExporter.(DatabaseExporter.jav= a: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) [hi= bernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.tool.hbm2ddl.SchemaExport.drop(SchemaExport.java:315) [hi= bernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.internal.SessionFactoryImpl.close(SessionFactoryImpl.java= :1305) [hibernate-core-4.0.0.Final.jar:4.0.0.Final] at org.hibernate.ejb.EntityManagerFactoryImpl.close(EntityManagerFactoryIm= pl.java:126) [hibernate-entitymanager-4.0.0.Final.jar:4.0.0.Final] at org.richfaces.demo.arrangeablemodel.PersistenceService.destroy(Persiste= nceService.java:159) [classes:] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_22] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:39) [:1.6.0_22] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.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.ManagedReferenceLifecycleMethodInterceptorFac= tory$ManagedReferenceLifecycleMethodInterceptor.processInvocation(ManagedRe= ferenceLifecycleMethodInterceptorFactory.java:130) [jboss-as-ee-7.1.0.CR1b.= jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedIntercep= tor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.ManagedReferenceReleaseInterceptorFactory$Man= agedReferenceReleaseInterceptor.processInvocation(ManagedReferenceReleaseIn= terceptorFactory.java:90) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.WeavedInterceptor.processInvocation(WeavedIntercep= tor.java:53) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.TCCLInterceptor.processInvocation(TCCLInterce= ptor.java:45) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java= :288) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterc= eptor.java:61) [jboss-invocation-1.1.1.Final.jar:1.1.1.Final] at org.jboss.as.ee.component.BasicComponentInstance.destroy(BasicComponent= Instance.java:122) [jboss-as-ee-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.as.web.deployment.component.WebComponentInstantiator$2.releas= e(WebComponentInstantiator.java:102) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1= b] at org.jboss.as.web.deployment.WebInjectionContainer.destroyInstance(WebIn= jectionContainer.java:67) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.as.web.deployment.jsf.JsfInjectionProvider.invokePreDestroy(J= sfInjectionProvider.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-imp= l-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.mgbean.BeanManager.destroy(BeanManager.java:283) [jsf-imp= l-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.application.WebappLifecycleListener.handleAttributeEvent(= WebappLifecycleListener.java:314) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAP= SHOT] at com.sun.faces.application.WebappLifecycleListener.contextDestroyed(Weba= ppLifecycleListener.java:368) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureListen= er.java:308) [jsf-impl-2.1.5-jbossorg-1.jar:2.1.5-SNAPSHOT] at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.j= ava:3489) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.StandardContext.stop(StandardContext.java:3999= ) [jbossweb-7.0.7.Final.jar:] at org.jboss.as.web.deployment.WebDeploymentService.stop(WebDeploymentServ= ice.java:96) [jboss-as-web-7.1.0.CR1b.jar:7.1.0.CR1b] at org.jboss.msc.service.ServiceControllerImpl$StopTask.stopService(Servic= eControllerImpl.java:1909) at org.jboss.msc.service.ServiceControllerImpl$StopTask.run(ServiceControl= lerImpl.java:1872) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecut= or.java:886) [:1.6.0_22] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.j= ava:908) [:1.6.0_22] at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] {code} Environment: = container: JBoss AS 7.1.0.CR1b, 7.0.2.Final app: showcase 4.2.0-SNAPSHOT was: container: JBoss AS 7.1.0.CR1b app: showcase 4.2.0-SNAPSHOT = > 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 > Priority: Minor > > 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 =20 --===============4774558459064841431==-- From jira-events at lists.jboss.org Thu Jan 19 11:07:18 2012 Content-Type: multipart/mixed; boundary="===============7770993703878550986==" 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: Thu, 19 Jan 2012 11:07:18 -0500 Message-ID: <317936770.11282.1326989238604.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7770993703878550986== 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=3D12660547#com= ment-12660547 ] = Juraj Huska commented on RF-11905: ---------------------------------- I was able to *get rid of this exception* when I set the database create-up= date-drop policy (hibernate.hbm2ddl.auto property of persistence.xml) to *c= reate* instead of create-drop. It is probably just workaround. = > 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 > Priority: Minor > > 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 =20 --===============7770993703878550986==-- From jira-events at lists.jboss.org Thu Jan 19 12:04:19 2012 Content-Type: multipart/mixed; boundary="===============8421992921555186992==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11764) Problems with packed resources Date: Thu, 19 Jan 2012 12:04:18 -0500 Message-ID: <252957118.11498.1326992658945.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531552132.56496.1322674962554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8421992921555186992== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11764?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660573#com= ment-12660573 ] = Jean ANDRE commented on RF-11764: --------------------------------- Well, I've made the modification in our web.xml and all the UI is completly= scrapped. CSS is partially rendered and we got strange characters on the s= creen - See screen capture - We still got a bunch of javascript error such = as: jsf is not defined line 2833 [Stopper sur une erreur] - }(jQuery,RichFaces,jsf));;(function(F,N){N.csv= =3DN.csv||{}; RichFaces.ui is undefined line 59 [Stopper sur une erreur] - ..f-ddm-itm rf-ddm-itm-unsel " id=3D"MenuForm:i= tem-search"> CRM-Enterprise index.html index.htm index.jsp default.html default.htm default.jsp index.jsf org.richfaces.skin crm-enterprise org.richfaces.CONTROL_SKINNING enable org.richfaces.resourceMapping.enabled true org.richfaces.resourceMapping.packedStages All = = Faces Servlet javax.faces.webapp.FacesServlet 1 Faces Servlet *.jsf State saving method: 'client' or 'server' (=3Ddefault). See = JSF Specification 2.5.2 javax.faces.STATE_SAVING_METHOD client javax.servlet.jsp.jstl.fmt.localizationContext resources.application javax.faces.DEFAULT_SUFFIX .xhtml com.sun.faces.responseBufferSize 49536 com.sun.faces.clientStateWriteBufferSize 16384 org.springframework.web.context.ContextLoaderListener org.springframework.web.context.request.RequestContextListener = BASIC 15 = Login Filter com.intact.crm.web.filter.LoginFilter Login Filter /pages/* = > Problems with packed resources > ------------------------------ > > Key: RF-11764 > URL: https://issues.jboss.org/browse/RF-11764 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Reporter: Jean ANDRE > Labels: material-sent, waiting_on_user > > *Follow up RF-11694.* > We tested the solution by updating the web.xml. We put following code : > {code} > > org.richfaces.resourceMapping.enabled > true > > > org.richfaces.resourceMapping.packedStages > All = > > {code} > The workaround does not work well because it triggers many javacript erre= ur - User Interface seem to be frozen, hanged. > Here are the errors catch under firebug / Mozilla > {code} > jsf is not defined > [Stopper sur une erreur] }(jQuery,RichFaces,jsf));;(function(C,B,D){B.bla= nkFunction=3Dfunction(){}; > packed.js (ligne 3040) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur] RichFaces.ui.Menu(...":"MenuForm:mainToolBar"} )= ; > index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 85) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > {code} > more over there is many CSS errors/warning > {code} > L'utilisation de getAttributeNodeNS() est obsol=C3=A8te. Utilisez getAttr= ibuteNS() =C3=A0 la place. > Une fin de valeur =C3=A9tait attendue, mais =C2=AB "#E5973E " =C2=BB a = =C3=A9t=C3=A9 trouv=C3=A9. Erreur d'analyse de la valeur pour =C2=AB border= =C2=BB. D=C3=A9claration abandonn=C3=A9e. > *.rf-insl-tt{position:absolute;display..."#E5973E ";background-color:#FAE= 6B0;} > packed.css (ligne 108) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-fu-inp{filter:alpha(opacity=3D0);fo...y:0;position:absolute;right:0;= top:0;} > packed.css (ligne 158) > Propri=C3=A9t=C3=A9 =C2=AB text-color =C2=BB inconnue. D=C3=A9claration a= bandonn=C3=A9e. > *.rf-fu-itm-st{display:none;margin-top...000;background-color:#fff;paddin= g:0;} > packed.css (ligne 164) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-tab-cnt{border:1px solid #C4C0B9;...opacity:.1;filter:alpha(opacity= =3D10);} > packed.css (ligne 184) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shade{position:fixed;width:100...opacity:.5;filter:alpha(opacity= =3D50);} > packed.css (ligne 185) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shdw{background-color:#000;opa...6px;left:6px;bottom:-6px;z-index= :-1;} > packed.css (ligne 186) > Propri=C3=A9t=C3=A9 =C2=AB repeat-x =C2=BB inconnue. D=C3=A9claration aba= ndonn=C3=A9e. > *.rf-pp-hdr{background:url(../org.rich...g-left:10px;cursor:move;padding:= 2px;} > packed.css (ligne 188) > Erreur d'analyse de la valeur pour =C2=AB font-size =C2=BB. D=C3=A9clarat= ion abandonn=C3=A9e. > *.rf-cal-sp-inp{border:0;padding:0 0 0...Arial,Verdana,sans-serif;width:1= 8px;} > packed.css (ligne 354) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-shdw{background:#FFF;opacity:.5;filter:alpha(opacity=3D50);} > packed.css (ligne 369) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-layout-shdw{background-c...opacity:.3;filter:alpha(opacity= =3D30);} = > {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 = --===============8421992921555186992==-- From jira-events at lists.jboss.org Thu Jan 19 12:06:18 2012 Content-Type: multipart/mixed; boundary="===============6427395006333955909==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11764) Problems with packed resources Date: Thu, 19 Jan 2012 12:06:18 -0500 Message-ID: <1294983185.11509.1326992778608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531552132.56496.1322674962554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6427395006333955909== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11764?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660573#com= ment-12660573 ] = Jean ANDRE edited comment on RF-11764 at 1/19/12 12:06 PM: ----------------------------------------------------------- NOP - Oups.. need to apply the fix before... = was (Author: jorelia64): NOP - ERROR = > Problems with packed resources > ------------------------------ > > Key: RF-11764 > URL: https://issues.jboss.org/browse/RF-11764 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Reporter: Jean ANDRE > Labels: material-sent, waiting_on_user > > *Follow up RF-11694.* > We tested the solution by updating the web.xml. We put following code : > {code} > > org.richfaces.resourceMapping.enabled > true > > > org.richfaces.resourceMapping.packedStages > All = > > {code} > The workaround does not work well because it triggers many javacript erre= ur - User Interface seem to be frozen, hanged. > Here are the errors catch under firebug / Mozilla > {code} > jsf is not defined > [Stopper sur une erreur] }(jQuery,RichFaces,jsf));;(function(C,B,D){B.bla= nkFunction=3Dfunction(){}; > packed.js (ligne 3040) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur] RichFaces.ui.Menu(...":"MenuForm:mainToolBar"} )= ; > index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 85) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > {code} > more over there is many CSS errors/warning > {code} > L'utilisation de getAttributeNodeNS() est obsol=C3=A8te. Utilisez getAttr= ibuteNS() =C3=A0 la place. > Une fin de valeur =C3=A9tait attendue, mais =C2=AB "#E5973E " =C2=BB a = =C3=A9t=C3=A9 trouv=C3=A9. Erreur d'analyse de la valeur pour =C2=AB border= =C2=BB. D=C3=A9claration abandonn=C3=A9e. > *.rf-insl-tt{position:absolute;display..."#E5973E ";background-color:#FAE= 6B0;} > packed.css (ligne 108) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-fu-inp{filter:alpha(opacity=3D0);fo...y:0;position:absolute;right:0;= top:0;} > packed.css (ligne 158) > Propri=C3=A9t=C3=A9 =C2=AB text-color =C2=BB inconnue. D=C3=A9claration a= bandonn=C3=A9e. > *.rf-fu-itm-st{display:none;margin-top...000;background-color:#fff;paddin= g:0;} > packed.css (ligne 164) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-tab-cnt{border:1px solid #C4C0B9;...opacity:.1;filter:alpha(opacity= =3D10);} > packed.css (ligne 184) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shade{position:fixed;width:100...opacity:.5;filter:alpha(opacity= =3D50);} > packed.css (ligne 185) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shdw{background-color:#000;opa...6px;left:6px;bottom:-6px;z-index= :-1;} > packed.css (ligne 186) > Propri=C3=A9t=C3=A9 =C2=AB repeat-x =C2=BB inconnue. D=C3=A9claration aba= ndonn=C3=A9e. > *.rf-pp-hdr{background:url(../org.rich...g-left:10px;cursor:move;padding:= 2px;} > packed.css (ligne 188) > Erreur d'analyse de la valeur pour =C2=AB font-size =C2=BB. D=C3=A9clarat= ion abandonn=C3=A9e. > *.rf-cal-sp-inp{border:0;padding:0 0 0...Arial,Verdana,sans-serif;width:1= 8px;} > packed.css (ligne 354) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-shdw{background:#FFF;opacity:.5;filter:alpha(opacity=3D50);} > packed.css (ligne 369) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-layout-shdw{background-c...opacity:.3;filter:alpha(opacity= =3D30);} = > {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 = --===============6427395006333955909==-- From jira-events at lists.jboss.org Thu Jan 19 12:06:18 2012 Content-Type: multipart/mixed; boundary="===============5219336475745695171==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11764) Problems with packed resources Date: Thu, 19 Jan 2012 12:06:18 -0500 Message-ID: <1161991553.11503.1326992778320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531552132.56496.1322674962554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5219336475745695171== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11764?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660573#com= ment-12660573 ] = Jean ANDRE edited comment on RF-11764 at 1/19/12 12:04 PM: ----------------------------------------------------------- NOP - ERROR = was (Author: jorelia64): Well, I've made the modification in our web.xml and all the UI is compl= etly scrapped. CSS is partially rendered and we got strange characters on t= he screen - See screen capture - We still got a bunch of javascript error s= uch as: jsf is not defined line 2833 [Stopper sur une erreur] - }(jQuery,RichFaces,jsf));;(function(F,N){N.csv= =3DN.csv||{}; RichFaces.ui is undefined line 59 [Stopper sur une erreur] - ..f-ddm-itm rf-ddm-itm-unsel " id=3D"MenuForm:i= tem-search"> CRM-Enterprise index.html index.htm index.jsp default.html default.htm default.jsp index.jsf org.richfaces.skin crm-enterprise org.richfaces.CONTROL_SKINNING enable org.richfaces.resourceMapping.enabled true org.richfaces.resourceMapping.packedStages All = = Faces Servlet javax.faces.webapp.FacesServlet 1 Faces Servlet *.jsf State saving method: 'client' or 'server' (=3Ddefault). See = JSF Specification 2.5.2 javax.faces.STATE_SAVING_METHOD client javax.servlet.jsp.jstl.fmt.localizationContext resources.application javax.faces.DEFAULT_SUFFIX .xhtml com.sun.faces.responseBufferSize 49536 com.sun.faces.clientStateWriteBufferSize 16384 org.springframework.web.context.ContextLoaderListener org.springframework.web.context.request.RequestContextListener = BASIC 15 = Login Filter com.intact.crm.web.filter.LoginFilter Login Filter /pages/* = > Problems with packed resources > ------------------------------ > > Key: RF-11764 > URL: https://issues.jboss.org/browse/RF-11764 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.CR1 > Reporter: Jean ANDRE > Labels: material-sent, waiting_on_user > > *Follow up RF-11694.* > We tested the solution by updating the web.xml. We put following code : > {code} > > org.richfaces.resourceMapping.enabled > true > > > org.richfaces.resourceMapping.packedStages > All = > > {code} > The workaround does not work well because it triggers many javacript erre= ur - User Interface seem to be frozen, hanged. > Here are the errors catch under firebug / Mozilla > {code} > jsf is not defined > [Stopper sur une erreur] }(jQuery,RichFaces,jsf));;(function(C,B,D){B.bla= nkFunction=3Dfunction(){}; > packed.js (ligne 3040) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur] RichFaces.ui.Menu(...":"MenuForm:mainToolBar"} )= ; > index.jsf (ligne 77) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 85) > RichFaces.ui is undefined > [Stopper sur une erreur]
> index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > RichFaces.ui is undefined > [Stopper sur une erreur] > index.jsf (ligne 88) > {code} > more over there is many CSS errors/warning > {code} > L'utilisation de getAttributeNodeNS() est obsol=C3=A8te. Utilisez getAttr= ibuteNS() =C3=A0 la place. > Une fin de valeur =C3=A9tait attendue, mais =C2=AB "#E5973E " =C2=BB a = =C3=A9t=C3=A9 trouv=C3=A9. Erreur d'analyse de la valeur pour =C2=AB border= =C2=BB. D=C3=A9claration abandonn=C3=A9e. > *.rf-insl-tt{position:absolute;display..."#E5973E ";background-color:#FAE= 6B0;} > packed.css (ligne 108) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-fu-inp{filter:alpha(opacity=3D0);fo...y:0;position:absolute;right:0;= top:0;} > packed.css (ligne 158) > Propri=C3=A9t=C3=A9 =C2=AB text-color =C2=BB inconnue. D=C3=A9claration a= bandonn=C3=A9e. > *.rf-fu-itm-st{display:none;margin-top...000;background-color:#fff;paddin= g:0;} > packed.css (ligne 164) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-tab-cnt{border:1px solid #C4C0B9;...opacity:.1;filter:alpha(opacity= =3D10);} > packed.css (ligne 184) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shade{position:fixed;width:100...opacity:.5;filter:alpha(opacity= =3D50);} > packed.css (ligne 185) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-pp-shdw{background-color:#000;opa...6px;left:6px;bottom:-6px;z-index= :-1;} > packed.css (ligne 186) > Propri=C3=A9t=C3=A9 =C2=AB repeat-x =C2=BB inconnue. D=C3=A9claration aba= ndonn=C3=A9e. > *.rf-pp-hdr{background:url(../org.rich...g-left:10px;cursor:move;padding:= 2px;} > packed.css (ligne 188) > Erreur d'analyse de la valeur pour =C2=AB font-size =C2=BB. D=C3=A9clarat= ion abandonn=C3=A9e. > *.rf-cal-sp-inp{border:0;padding:0 0 0...Arial,Verdana,sans-serif;width:1= 8px;} > packed.css (ligne 354) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-shdw{background:#FFF;opacity:.5;filter:alpha(opacity=3D50);} > packed.css (ligne 369) > Erreur d'analyse de la valeur pour =C2=AB filter =C2=BB. D=C3=A9claration= abandonn=C3=A9e. > *.rf-cal-edtr-layout-shdw{background-c...opacity:.3;filter:alpha(opacity= =3D30);} = > {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 = --===============5219336475745695171==-- From jira-events at lists.jboss.org Thu Jan 19 18:48:18 2012 Content-Type: multipart/mixed; boundary="===============7300258212565204596==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11783) disabled a4j:commandButton with nested tooltip disappears when enabled with ajax render Date: Thu, 19 Jan 2012 18:48:18 -0500 Message-ID: <2086457959.12320.1327016898514.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1145377794.68082.1322915200637.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7300258212565204596== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11783?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11783: ------------------------------- Fix Version/s: 4.3-Tracking = > disabled a4j:commandButton with nested tooltip disappears when enabled wi= th ajax render > -------------------------------------------------------------------------= -------------- > > Key: RF-11783 > URL: https://issues.jboss.org/browse/RF-11783 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Milestone4 > Environment: Mojarra 2.1.3, Glassfish 3.1.1. > Reporter: Brendan Healey > Fix For: 4.3-Tracking > > > The following code resides in the footer of an extendedDataTable, althoug= h my > guess is that this is not relevant. The button is initially disabled, then > bean.property is set true and we do ajax render=3D"myButton". The button > disappears from the screen. Removing the tooltip makes it work as expecte= d. > id=3D"myButton" > value=3D" test " > action=3D"apage?faces-redirect=3Dtrue" > disabled=3D"#{empty bean.property}"> > > > > > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7300258212565204596==-- From jira-events at lists.jboss.org Fri Jan 20 03:45:19 2012 Content-Type: multipart/mixed; boundary="===============0719520847198020018==" 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-11533) Notify and IE 8: can't close a message Date: Fri, 20 Jan 2012 03:45:19 -0500 Message-ID: <442710687.12629.1327049119353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1754239113.29618.1318507637333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0719520847198020018== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11533?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660713#com= ment-12660713 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11533: --------------------------------- Note: This can be solved after feature freeze. I have found following behavior: When initializing closer button as follows, the event is not caught: {code} $("
", { "click" : function() { ... } } {code} but when using following handler, it works as expected: {code} $("
") {code} But that principle would need expose the pnotify object globally. What can we try additionally: * what code breaks "click" event triggering/handling - remove other compone= nts when resource mapping off * try dev-example with resource mapping on = > Notify and IE 8: can't close a message > -------------------------------------- > > Key: RF-11533 > URL: https://issues.jboss.org/browse/RF-11533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.1.0.Milestone3 > Environment: =E2=80=A2RichFaces 4.1.0.20111011-M3 r.68406156c3d64= 7eee75816d4bd6a29a66b0b5a2f > =E2=80=A2Metamer 4.1.0.20111011-M3 r.22776 > =E2=80=A2Mojarra 2.1.3-SNAPSHOT > =E2=80=A2Apache Tomcat 7.0.22 > =E2=80=A2Java(TM) SE Runtime Environment 1.6.0_27-b07 @ Windows Server 20= 08 > =E2=80=A2Internet Explorer 8.0 @ Win32 = > Reporter: Jan Papousek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Notify messages can't be closed in IE 8. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0719520847198020018==-- From jira-events at lists.jboss.org Fri Jan 20 03:52:18 2012 Content-Type: multipart/mixed; boundary="===============4629769033222755900==" 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-11483) Elegant way for Push topic creating Date: Fri, 20 Jan 2012 03:52:18 -0500 Message-ID: <1039538878.12633.1327049538486.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11494155.16954.1318245975997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4629769033222755900== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11483?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11483: ---------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix Version/s: 4.2.0.CR1 (was: 4.3-Tracking) Forum Reference: http://community.jboss.org/message/630871#630871 (was= : http://community.jboss.org/message/630871#630871) = > Elegant way for Push topic creating > ----------------------------------- > > Key: RF-11483 > URL: https://issues.jboss.org/browse/RF-11483 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll, core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Currently, topics have to be initialized with similar class: > https://github.com/richfaces/showcase/blob/4.1.0.20110910-M2/src/main/jav= a/org/richfaces/demo/push/TopicsInitializer.java > I suggest to create topic on demand (lazily), when it is accessed first. > It needs following changes: > * {{PushRendererBase}} - will create Topic for @address attribute > * {{JMSTopicsContextImpl}} - will create topic when JMS message received > * {{PushObserverMethod}} - will create topic when @Push event for given t= opic observed > * ... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4629769033222755900==-- From jira-events at lists.jboss.org Fri Jan 20 03:54:18 2012 Content-Type: multipart/mixed; boundary="===============5969567827130181059==" 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-11906) Warning when JMS integration is off but JMS is available Date: Fri, 20 Jan 2012 03:54:18 -0500 Message-ID: <655659084.12635.1327049658286.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5969567827130181059== 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-11906: ------------------------------- Summary: Warning when JMS integration is off but JMS is availa= ble Key: RF-11906 URL: https://issues.jboss.org/browse/RF-11906 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: core Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.0.CR1 For JMS detection, following algorithms can be used: * JMS API class detection * JNDI binding {{java://ConnectionFactory}} can be checked {{PushServlet}} can be used as place for triggering detection. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5969567827130181059==-- From jira-events at lists.jboss.org Fri Jan 20 06:12:20 2012 Content-Type: multipart/mixed; boundary="===============7427247855110103885==" 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-11297) Upgrade to Atmosphere 0.8 Date: Fri, 20 Jan 2012 06:12:19 -0500 Message-ID: <1185258972.12849.1327057939857.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2095736598.451.1313071442606.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7427247855110103885== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11297?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11297. ----------------------------- Fix Version/s: (was: 4.3-Tracking) Resolution: Duplicate Issue = > Upgrade to Atmosphere 0.8 > ------------------------- > > Key: RF-11297 > URL: https://issues.jboss.org/browse/RF-11297 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > > Upgrade to Atmosphere 0.8 once available. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7427247855110103885==-- From jira-events at lists.jboss.org Fri Jan 20 06:12:20 2012 Content-Type: multipart/mixed; boundary="===============0783434214029481726==" 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-11471) Upgrade to Atmosphere 0.8.3 Date: Fri, 20 Jan 2012 06:12:20 -0500 Message-ID: <386967480.12850.1327057940574.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0783434214029481726== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-11471: ----------------------------- = > Upgrade to Atmosphere 0.8.3 > --------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0783434214029481726==-- From jira-events at lists.jboss.org Fri Jan 20 06:14:18 2012 Content-Type: multipart/mixed; boundary="===============7786717458660032491==" 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-11471) Upgrade to Atmosphere 0.8.3 Date: Fri, 20 Jan 2012 06:14:18 -0500 Message-ID: <926546579.12853.1327058058268.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7786717458660032491== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660737#com= ment-12660737 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11471: --------------------------------- I can reproduce this issue again with Atmosphere {{0.8.3}} on JBoss AS {{7.= 0.2.Final}}, {{7.1.0.CR1b}}, when switching between samples of Push demo in Showcase: {code} 12:12:31,533 SEVERE [org.richfaces.log.Application] (http-localhost.localdo= main-127.0.0.1-8080-1) null: java.lang.NullPointerException at org.atmosphere.cpr.AtmosphereResourceEventImpl.isResuming(AtmosphereRes= ourceEventImpl.java:89) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:599) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereRes= ourceImpl.java:584) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AsynchronousProcessor.cancelled(AsynchronousProcesso= r.java:505) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.container.JBossWebCometSupport.cancelled(JBossWebCometSu= pport.java:151) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.container.JBossWebCometSupport.service(JBossWebCometSupp= ort.java:124) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.j= ava:1212) [atmosphere-runtime-0.8.3.jar:] at org.atmosphere.cpr.AtmosphereServlet.event(AtmosphereServlet.java:1305)= [atmosphere-runtime-0.8.3.jar:] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilterEvent(A= pplicationFilterChain.java:494) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilterEvent(Applicati= onFilterChain.java:399) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.event(StandardWrapperValv= e.java:464) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.core.StandardContextValve.event(StandardContextValv= e.java:183) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.7.Final.jar:] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.7.Final.jar:] at org.apache.catalina.core.StandardHostValve.event(StandardHostValve.java= :259) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:193) [jbosswe= b-7.0.7.Final.jar:] at org.apache.catalina.core.StandardEngineValve.event(StandardEngineValve.= java:128) [jbossweb-7.0.7.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.event(CoyoteAdapter.java:26= 5) [jbossweb-7.0.7.Final.jar:] at org.apache.coyote.http11.Http11AprProcessor.event(Http11AprProcessor.ja= va:780) [jbossweb-7.0.7.Final.jar:] at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.even= t(Http11AprProtocol.java:579) [jbossweb-7.0.7.Final.jar:] at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:2027= ) [jbossweb-7.0.7.Final.jar:] at java.lang.Thread.run(Thread.java:662) [:1.6.0_26] {code} = > Upgrade to Atmosphere 0.8.3 > --------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7786717458660032491==-- From jira-events at lists.jboss.org Fri Jan 20 07:01:18 2012 Content-Type: multipart/mixed; boundary="===============2602017293297491289==" 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-11471) Upgrade to Atmosphere 0.8.3 Date: Fri, 20 Jan 2012 07:01:18 -0500 Message-ID: <2129976173.12953.1327060878348.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2602017293297491289== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660748#com= ment-12660748 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11471: --------------------------------- Trying to upgrade to {{0.8.4}}. = > Upgrade to Atmosphere 0.8.3 > --------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2602017293297491289==-- From jira-events at lists.jboss.org Fri Jan 20 07:04:18 2012 Content-Type: multipart/mixed; boundary="===============0995191734562432086==" 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-11471) Upgrade to Atmosphere 0.8.4 Date: Fri, 20 Jan 2012 07:04:18 -0500 Message-ID: <1614083930.12956.1327061058336.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0995191734562432086== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11471: ---------------------------- Summary: Upgrade to Atmosphere 0.8.4 (was: Upgrade to Atmosphere 0.8.3) = > Upgrade to Atmosphere 0.8.4 > --------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0995191734562432086==-- From jira-events at lists.jboss.org Fri Jan 20 07:08:18 2012 Content-Type: multipart/mixed; boundary="===============2551234665207699102==" 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-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Fri, 20 Jan 2012 07:08:18 -0500 Message-ID: <233089307.12962.1327061298443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2551234665207699102== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660750#com= ment-12660750 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11903: --------------------------------- Hi Juraj, as I mentioned in RF-11471, there were issues with {{0.8.3}}, so I have upg= raded to {{0.8.4}}, could you please check that you are not experiencing these issues anymore? (Please coordinate with Jan, since he has assigned RFPL-1978) = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Fix For: 4.2.0.CR1 > > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2551234665207699102==-- From jira-events at lists.jboss.org Fri Jan 20 07:08:18 2012 Content-Type: multipart/mixed; boundary="===============3916686359309929204==" 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-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Fri, 20 Jan 2012 07:08:18 -0500 Message-ID: <75239559.12965.1327061298562.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3916686359309929204== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11903: ------------------------------- Assignee: Juraj Huska = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Assignee: Juraj Huska > Fix For: 4.2.0.CR1 > > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3916686359309929204==-- From jira-events at lists.jboss.org Fri Jan 20 07:08:18 2012 Content-Type: multipart/mixed; boundary="===============1515975202428107866==" 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-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Fri, 20 Jan 2012 07:08:18 -0500 Message-ID: <470443374.12967.1327061298651.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1515975202428107866== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11903: ---------------------------- Fix Version/s: 4.2.0.CR1 = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Assignee: Juraj Huska > Fix For: 4.2.0.CR1 > > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1515975202428107866==-- From jira-events at lists.jboss.org Fri Jan 20 07:10:19 2012 Content-Type: multipart/mixed; boundary="===============2435581407807816442==" 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-11471) Upgrade to Atmosphere 0.8.4 Date: Fri, 20 Jan 2012 07:10:19 -0500 Message-ID: <1060857186.12972.1327061419074.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1090154337.14335.1318029736037.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2435581407807816442== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11471?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11471. ----------------------------- Resolution: Done It seems bug was resolved with upgrading to {{0.8.4}}, needs to be checked = in RF-11903 and RFPL-1978 = > Upgrade to Atmosphere 0.8.4 > --------------------------- > > Key: RF-11471 > URL: https://issues.jboss.org/browse/RF-11471 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: component-push/poll, third-party > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Atmosphere 0.8.0-RC2 is planned to be released [1] on right on 4.1.0.M3 c= ode-freeze, we will wait before start of QE cycle to grab this release. > [1] http://groups.google.com/group/atmosphere-framework/browse_thread/thr= ead/caffae0c616c250a -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2435581407807816442==-- From jira-events at lists.jboss.org Fri Jan 20 07:12:18 2012 Content-Type: multipart/mixed; boundary="===============5711032324047753626==" 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-11483) Elegant way for Push topic creating Date: Fri, 20 Jan 2012 07:12:18 -0500 Message-ID: <395362621.12975.1327061538319.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11494155.16954.1318245975997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5711032324047753626== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11483?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11483: ---------------------------- Priority: Critical (was: Major) Forum Reference: http://community.jboss.org/message/630871#630871 (was= : http://community.jboss.org/message/630871#630871) = > Elegant way for Push topic creating > ----------------------------------- > > Key: RF-11483 > URL: https://issues.jboss.org/browse/RF-11483 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll, core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Currently, topics have to be initialized with similar class: > https://github.com/richfaces/showcase/blob/4.1.0.20110910-M2/src/main/jav= a/org/richfaces/demo/push/TopicsInitializer.java > I suggest to create topic on demand (lazily), when it is accessed first. > It needs following changes: > * {{PushRendererBase}} - will create Topic for @address attribute > * {{JMSTopicsContextImpl}} - will create topic when JMS message received > * {{PushObserverMethod}} - will create topic when @Push event for given t= opic observed > * ... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5711032324047753626==-- From jira-events at lists.jboss.org Fri Jan 20 07:17:18 2012 Content-Type: multipart/mixed; boundary="===============4403465064004088176==" 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-11907) Push: add configuration switch for PushContext initialization on startup (org.richfaces.push.initializeOnStartup) Date: Fri, 20 Jan 2012 07:17:18 -0500 Message-ID: <1152490790.12978.1327061838339.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 377172022.12977.1327061838297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4403465064004088176== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11907?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11907: ---------------------------- Summary: Push: add configuration switch for PushContext initialization = on startup (org.richfaces.push.initializeOnStartup) (was: Push: added cont= ext-param switch for PushContext initialization on startup (org.richfaces.p= ush.initializeOnStartup)) = > Push: add configuration switch for PushContext initialization on startup = (org.richfaces.push.initializeOnStartup) > -------------------------------------------------------------------------= ---------------------------------------- > > Key: RF-11907 > URL: https://issues.jboss.org/browse/RF-11907 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > For applications like Showcase which are accessing {{TopicsContext}} from= non-{{FacesContext}} threads, > {{PushContext}} needs to be initialized from the thread which have {{Face= sContext}}/{{ExternalContext}} > accessible. > These applications are typically pushing messages to the topic periodical= ly > or they receive messages externally (JMS). > New switch {{org.richfaces.push.initializeOnStartup}} should be {{false}}= by default, > since regular usage of Push does not require so early initialization. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4403465064004088176==-- From jira-events at lists.jboss.org Fri Jan 20 07:17:18 2012 Content-Type: multipart/mixed; boundary="===============4845327750039746797==" 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-11907) Push: added context-param switch for PushContext initialization on startup (org.richfaces.push.initializeOnStartup) Date: Fri, 20 Jan 2012 07:17:18 -0500 Message-ID: <377172022.12977.1327061838297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4845327750039746797== 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-11907: ------------------------------- Summary: Push: added context-param switch for PushContext init= ialization on startup (org.richfaces.push.initializeOnStartup) Key: RF-11907 URL: https://issues.jboss.org/browse/RF-11907 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: core Affects Versions: 4.2.0.CR1 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.0.CR1 For applications like Showcase which are accessing {{TopicsContext}} from n= on-{{FacesContext}} threads, {{PushContext}} needs to be initialized from the thread which have {{FacesC= ontext}}/{{ExternalContext}} accessible. These applications are typically pushing messages to the topic periodically or they receive messages externally (JMS). New switch {{org.richfaces.push.initializeOnStartup}} should be {{false}} b= y default, since regular usage of Push does not require so early initialization. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4845327750039746797==-- From jira-events at lists.jboss.org Fri Jan 20 07:48:18 2012 Content-Type: multipart/mixed; boundary="===============4481936041318644183==" 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-11483) Elegant way for Push topic creating Date: Fri, 20 Jan 2012 07:48:18 -0500 Message-ID: <734206515.13017.1327063698236.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11494155.16954.1318245975997.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4481936041318644183== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11483?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11483. ----------------------------- Resolution: Done = > Elegant way for Push topic creating > ----------------------------------- > > Key: RF-11483 > URL: https://issues.jboss.org/browse/RF-11483 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll, core > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.2.0.CR1 > > > Currently, topics have to be initialized with similar class: > https://github.com/richfaces/showcase/blob/4.1.0.20110910-M2/src/main/jav= a/org/richfaces/demo/push/TopicsInitializer.java > I suggest to create topic on demand (lazily), when it is accessed first. > It needs following changes: > * {{PushRendererBase}} - will create Topic for @address attribute > * {{JMSTopicsContextImpl}} - will create topic when JMS message received > * {{PushObserverMethod}} - will create topic when @Push event for given t= opic observed > * ... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4481936041318644183==-- From jira-events at lists.jboss.org Fri Jan 20 07:50:18 2012 Content-Type: multipart/mixed; boundary="===============8753407313174221408==" 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-11907) Push: add configuration switch for PushContext initialization on startup (org.richfaces.push.initializeOnStartup) Date: Fri, 20 Jan 2012 07:50:18 -0500 Message-ID: <519990275.13019.1327063818320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 377172022.12977.1327061838297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8753407313174221408== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11907?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11907. ----------------------------- Resolution: Done = > Push: add configuration switch for PushContext initialization on startup = (org.richfaces.push.initializeOnStartup) > -------------------------------------------------------------------------= ---------------------------------------- > > Key: RF-11907 > URL: https://issues.jboss.org/browse/RF-11907 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.2.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > For applications like Showcase which are accessing {{TopicsContext}} from= non-{{FacesContext}} threads, > {{PushContext}} needs to be initialized from the thread which have {{Face= sContext}}/{{ExternalContext}} > accessible. > These applications are typically pushing messages to the topic periodical= ly > or they receive messages externally (JMS). > New switch {{org.richfaces.push.initializeOnStartup}} should be {{false}}= by default, > since regular usage of Push does not require so early initialization. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8753407313174221408==-- From jira-events at lists.jboss.org Fri Jan 20 07:50:18 2012 Content-Type: multipart/mixed; boundary="===============2598854330329355364==" 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-11906) Warning when JMS integration is off but JMS is available Date: Fri, 20 Jan 2012 07:50:18 -0500 Message-ID: <760707670.13020.1327063818362.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 655659084.12635.1327049658286.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2598854330329355364== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11906?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11906: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Warning when JMS integration is off but JMS is available > -------------------------------------------------------- > > Key: RF-11906 > URL: https://issues.jboss.org/browse/RF-11906 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: core > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > For JMS detection, following algorithms can be used: > * JMS API class detection > * JNDI binding {{java://ConnectionFactory}} can be checked > {{PushServlet}} can be used as place for triggering detection. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2598854330329355364==-- From jira-events at lists.jboss.org Fri Jan 20 08:16:18 2012 Content-Type: multipart/mixed; boundary="===============1590810788465226600==" 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-11892) Push: turn off JMS integration by default Date: Fri, 20 Jan 2012 08:16:18 -0500 Message-ID: <2083039711.13099.1327065378473.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 985205215.6984.1326877458621.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1590810788465226600== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11892?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11892: ---------------------------- Description: = On team meeting [1], we have discussed necessity to simplify configuration = of Push in order to simplify starting with push for new users. I suggest to replace current configuration {{org.richfaces.push.jms.disable= }} with {{org.richfaces.push.jms.enabled}}, leaving previous one with no effect or providing warning. [1] https://community.jboss.org/wiki/RichFacesTeamMeetingAgenda2012-01-17 was: On team meeting [1], we have discussed necessity to simplify configuration = of Push in order to simplify starting with push for new users. I suggest to replace current configuration {{org.richfaces.push.jms.disable= }} with {{org.richfaces.push.jms.enable}}, leaving previous one with no effect or providing warning. [1] https://community.jboss.org/wiki/RichFacesTeamMeetingAgenda2012-01-17 = > Push: turn off JMS integration by default > ----------------------------------------- > > Key: RF-11892 > URL: https://issues.jboss.org/browse/RF-11892 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.0.0.Final, 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > On team meeting [1], we have discussed necessity to simplify configuratio= n of Push in order to simplify starting with push for new users. > I suggest to replace current configuration {{org.richfaces.push.jms.disab= le}} > with {{org.richfaces.push.jms.enabled}}, leaving previous one with no eff= ect > or providing warning. > [1] https://community.jboss.org/wiki/RichFacesTeamMeetingAgenda2012-01-17 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1590810788465226600==-- From jira-events at lists.jboss.org Fri Jan 20 08:23:19 2012 Content-Type: multipart/mixed; boundary="===============8545152348336084411==" 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-11892) Push: turn off JMS integration by default Date: Fri, 20 Jan 2012 08:23:18 -0500 Message-ID: <572867013.13111.1327065798517.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 985205215.6984.1326877458621.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8545152348336084411== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11892?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11892. ----------------------------- Resolution: Done = > Push: turn off JMS integration by default > ----------------------------------------- > > Key: RF-11892 > URL: https://issues.jboss.org/browse/RF-11892 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.0.0.Final, 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > On team meeting [1], we have discussed necessity to simplify configuratio= n of Push in order to simplify starting with push for new users. > I suggest to replace current configuration {{org.richfaces.push.jms.disab= le}} > with {{org.richfaces.push.jms.enabled}}, leaving previous one with no eff= ect > or providing warning. > [1] https://community.jboss.org/wiki/RichFacesTeamMeetingAgenda2012-01-17 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8545152348336084411==-- From jira-events at lists.jboss.org Fri Jan 20 09:02:18 2012 Content-Type: multipart/mixed; boundary="===============2238812095779933477==" 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-11906) Warning when JMS integration is off but JMS is available Date: Fri, 20 Jan 2012 09:02:18 -0500 Message-ID: <2040008678.13186.1327068138215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 655659084.12635.1327049658286.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2238812095779933477== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11906?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11906. ----------------------------- Resolution: Done = > Warning when JMS integration is off but JMS is available > -------------------------------------------------------- > > Key: RF-11906 > URL: https://issues.jboss.org/browse/RF-11906 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: core > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > For JMS detection, following algorithms can be used: > * JMS API class detection > * JNDI binding {{java://ConnectionFactory}} can be checked > {{PushServlet}} can be used as place for triggering detection. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2238812095779933477==-- From jira-events at lists.jboss.org Fri Jan 20 09:58:18 2012 Content-Type: multipart/mixed; boundary="===============4737659425761095825==" MIME-Version: 1.0 From: Todd Gould (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11908) rich:datascroller not scrolling rich:dataGrid Date: Fri, 20 Jan 2012 09:58:18 -0500 Message-ID: <938472980.13390.1327071498619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4737659425761095825== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Todd Gould created RF-11908: ------------------------------- Summary: rich:datascroller not scrolling rich:dataGrid Key: RF-11908 URL: https://issues.jboss.org/browse/RF-11908 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component Affects Versions: 3.3.3.Final Environment: Windows OS in JBoss 5.1 Reporter: Todd Gould The rich:dataScroller does not work with the rich:dataGrid component. The = datascroller represents the proper number of pages for the data in the data= Grid. However, when I select any of the datascroller controlls, the ajax r= equest processes (as witnessed via the associated status), but the dataGrid= remains on the first page. Nothing seems to be able to make it progress t= o another page. No ajax or other errors are generated and all appears to f= unction well except that the datGrid does not scroll. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4737659425761095825==-- From jira-events at lists.jboss.org Fri Jan 20 10:06:19 2012 Content-Type: multipart/mixed; boundary="===============7265779470592658321==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Fri, 20 Jan 2012 10:06:18 -0500 Message-ID: <42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7265779470592658321== 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-11909: ------------------------------- Summary: Custom resource mapping can't simply reuse pre-genera= ted RichFaces resources Key: RF-11909 URL: https://issues.jboss.org/browse/RF-11909 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: core Affects Versions: 4.1.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.2.0.CR1 Following configuration of location is needed: {code} org.richfaces.resourceMapping.location #{facesContext.externalContext.requestContextPath}/org.ric= hfaces.resources/javax.faces.resource/org.richfaces.staticResource/#{a4j.ve= rsion.implementationVersion}/%Features%/#{resourceLocation} = {code} But that means you need to place custom resources to directory called speci= fically for RF: {code} ${WAR}/resources/org.richfaces.staticResource/4.1.0.Final/Packed/. {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 = --===============7265779470592658321==-- From jira-events at lists.jboss.org Fri Jan 20 10:06:22 2012 Content-Type: multipart/mixed; boundary="===============3155269049525158014==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Fri, 20 Jan 2012 10:06:21 -0500 Message-ID: <932870533.13440.1327071981219.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3155269049525158014== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660796#com= ment-12660796 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11909: --------------------------------- This will just need change of default values and pre-generated resource map= ping files. = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Following configuration of location is needed: > {code} > > org.richfaces.resourceMapping.location > #{facesContext.externalContext.requestContextPath}/org.r= ichfaces.resources/javax.faces.resource/org.richfaces.staticResource/#{a4j.= version.implementationVersion}/%Features%/#{resourceLocation} > = > {code} > But that means you need to place custom resources to directory called spe= cifically for RF: > {code} > ${WAR}/resources/org.richfaces.staticResource/4.1.0.Final/Packed/. > {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 = --===============3155269049525158014==-- From jira-events at lists.jboss.org Fri Jan 20 10:08:18 2012 Content-Type: multipart/mixed; boundary="===============2420688872196293821==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Fri, 20 Jan 2012 10:08:18 -0500 Message-ID: <806081353.13445.1327072098596.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2420688872196293821== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11909: ---------------------------- Forum Reference: https://community.jboss.org/message/647859#647859 = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Following configuration of location is needed: > {code} > > org.richfaces.resourceMapping.location > #{facesContext.externalContext.requestContextPath}/org.r= ichfaces.resources/javax.faces.resource/org.richfaces.staticResource/#{a4j.= version.implementationVersion}/%Features%/#{resourceLocation} > = > {code} > But that means you need to place custom resources to directory called spe= cifically for RF: > {code} > ${WAR}/resources/org.richfaces.staticResource/4.1.0.Final/Packed/. > {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 = --===============2420688872196293821==-- From jira-events at lists.jboss.org Fri Jan 20 10:18:19 2012 Content-Type: multipart/mixed; boundary="===============2791203214685404873==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11750) onter() on nested tab Date: Fri, 20 Jan 2012 10:18:19 -0500 Message-ID: <2013623411.13512.1327072699725.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1869736783.50711.1322577760839.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2791203214685404873== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11750?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-11750: ---------------------------- Summary: onter() on nested tab (was: onter() with nested tab) = > onter() on nested tab > --------------------- > > Key: RF-11750 > URL: https://issues.jboss.org/browse/RF-11750 > 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 > Fix For: 4.Future > > Attachments: screenshot-1.jpg, screenshot-2.jpg, screenshot-3.jpg > > > We put onenter() on tabs, because the actionlistener does not work very w= ell on the first click. Some tabs are static while other are dynamically co= nstructed. Tabs are created after a search and a new tab is created with a = list of items. When a user click on item list, the content of the tab is re= freshed to display detailed information. These information are displayed al= so inside 6 static tabs. > The problems comes when we click/select these static tabs. Selecting thes= es tabs, trigger the onter() of the parent tab even if we stay all the time= on the parent tab.... > We do not known if this behavior is normal or not. > The following code is the dynamic tab construction - Note the onenter() > {code} > > > > > > > > > > > > > > > value=3D"#{msg[desktopTabController.toggleSearchLabel= ]}" > actionListener=3D"#{desktopTabController.doToggleSearch}" > render=3D"toggleSearchOutput" > immediate=3D"true"> > >
>
> > > > > > > > >
>
> > > > > > > > > styleClass=3D"closeButton" > action=3D"#{desktopTabController.doCloseTab(tab.i= d)}" /> > > > > > > > > > > > > > > > > >
> > {code} > The onenter function definition. This function set only the selectedTab v= ariable in the backing bean > {code} > > > > {code} > The onenter function inside the backing-bean > {code} > public String doEnterTab() { > // we just need to set the activeTab because actionListener is not wo= rking > // for the first click - Bug has been reported by other users. > return OUTCOME_DESKTOP; > } > {code} > The following code is the nested tabs - Those tabs appears when the use c= lick on the item from a list. > {code} > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > {code} > Then, each time we click on these nested tabs, the parent tab call the on= enter(). > See the screen capture for better understanding of the scenario. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2791203214685404873==-- From jira-events at lists.jboss.org Fri Jan 20 10:20:19 2012 Content-Type: multipart/mixed; boundary="===============7489176242957899056==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11750) onter() on nested tab Date: Fri, 20 Jan 2012 10:20:19 -0500 Message-ID: <804076124.13540.1327072819317.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1869736783.50711.1322577760839.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7489176242957899056== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11750?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jean ANDRE updated RF-11750: ---------------------------- Description: = We put onenter() on tabs, because the actionlistener does not work very wel= l on the first click. Some tabs are static while other are dynamically cons= tructed. Tabs are created after a search and a new tab is created with a li= st of items. When a user click on item list, the content of the tab is refr= eshed to display detailed information. These information are displayed also= inside 6 static tabs. The problems comes when we click/select these static tabs. Selecting theses= tabs, trigger the onter() of the parent tab even if we stay all the time o= n the parent tab.... The expected behavior is to receive the event on the s= ub-tab instead of its parent. We do not known if this behavior is normal or not. The following code is the dynamic tab construction - Note the onenter() {code}

{code} The onenter function definition. This function set only the selectedTab var= iable in the backing bean {code} {code} The onenter function inside the backing-bean {code} public String doEnterTab() { // we just need to set the activeTab because actionListener is not work= ing // for the first click - Bug has been reported by other users. return OUTCOME_DESKTOP; } {code} The following code is the nested tabs - Those tabs appears when the use cli= ck on the item from a list. {code} = = = = = = {code} Then, each time we click on these nested tabs, the parent tab call the onen= ter(). See the screen capture for better understanding of the scenario. was: We put onenter() on tabs, because the actionlistener does not work very wel= l on the first click. Some tabs are static while other are dynamically cons= tructed. Tabs are created after a search and a new tab is created with a li= st of items. When a user click on item list, the content of the tab is refr= eshed to display detailed information. These information are displayed also= inside 6 static tabs. The problems comes when we click/select these static tabs. Selecting theses= tabs, trigger the onter() of the parent tab even if we stay all the time o= n the parent tab.... We do not known if this behavior is normal or not. The following code is the dynamic tab construction - Note the onenter() {code}

{code} The onenter function definition. This function set only the selectedTab var= iable in the backing bean {code} {code} The onenter function inside the backing-bean {code} public String doEnterTab() { // we just need to set the activeTab because actionListener is not work= ing // for the first click - Bug has been reported by other users. return OUTCOME_DESKTOP; } {code} The following code is the nested tabs - Those tabs appears when the use cli= ck on the item from a list. {code} = = = = = = {code} Then, each time we click on these nested tabs, the parent tab call the onen= ter(). See the screen capture for better understanding of the scenario. = > onter() on nested tab > --------------------- > > Key: RF-11750 > URL: https://issues.jboss.org/browse/RF-11750 > 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 > Fix For: 4.Future > > Attachments: screenshot-1.jpg, screenshot-2.jpg, screenshot-3.jpg > > > We put onenter() on tabs, because the actionlistener does not work very w= ell on the first click. Some tabs are static while other are dynamically co= nstructed. Tabs are created after a search and a new tab is created with a = list of items. When a user click on item list, the content of the tab is re= freshed to display detailed information. These information are displayed al= so inside 6 static tabs. > The problems comes when we click/select these static tabs. Selecting thes= es tabs, trigger the onter() of the parent tab even if we stay all the time= on the parent tab.... The expected behavior is to receive the event on the= sub-tab instead of its parent. > We do not known if this behavior is normal or not. > The following code is the dynamic tab construction - Note the onenter() > {code} > > > > > > > > > > > > > > > value=3D"#{msg[desktopTabController.toggleSearchLabel= ]}" > actionListener=3D"#{desktopTabController.doToggleSearch}" > render=3D"toggleSearchOutput" > immediate=3D"true"> > >
>
> > > > > > > > >
>
> > > > > > > > > styleClass=3D"closeButton" > action=3D"#{desktopTabController.doCloseTab(tab.i= d)}" /> > > > > > > > > > > > > > > > > >
> > {code} > The onenter function definition. This function set only the selectedTab v= ariable in the backing bean > {code} > > > > {code} > The onenter function inside the backing-bean > {code} > public String doEnterTab() { > // we just need to set the activeTab because actionListener is not wo= rking > // for the first click - Bug has been reported by other users. > return OUTCOME_DESKTOP; > } > {code} > The following code is the nested tabs - Those tabs appears when the use c= lick on the item from a list. > {code} > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > {code} > Then, each time we click on these nested tabs, the parent tab call the on= enter(). > See the screen capture for better understanding of the scenario. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7489176242957899056==-- From jira-events at lists.jboss.org Fri Jan 20 10:26:19 2012 Content-Type: multipart/mixed; boundary="===============6306776963709073187==" MIME-Version: 1.0 From: Jean ANDRE (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11750) onter() on nested tab Date: Fri, 20 Jan 2012 10:26:18 -0500 Message-ID: <1901615713.13589.1327073178743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1869736783.50711.1322577760839.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6306776963709073187== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11750?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660807#com= ment-12660807 ] = Jean ANDRE commented on RF-11750: --------------------------------- With the 4.1.0 final, the behavior seems to be changed - The onenter on a s= ub-tab is not working anymore - We have to choose a different event such as= onheaderclick. Does it means that we cannot use the same event on tabPanel= and its sub-TabPanel ???? However onheaderclick is not an equivalent to onenter since a tab can be se= lected other than a click.... = > onter() on nested tab > --------------------- > > Key: RF-11750 > URL: https://issues.jboss.org/browse/RF-11750 > 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 > Fix For: 4.Future > > Attachments: screenshot-1.jpg, screenshot-2.jpg, screenshot-3.jpg > > > We put onenter() on tabs, because the actionlistener does not work very w= ell on the first click. Some tabs are static while other are dynamically co= nstructed. Tabs are created after a search and a new tab is created with a = list of items. When a user click on item list, the content of the tab is re= freshed to display detailed information. These information are displayed al= so inside 6 static tabs. > The problems comes when we click/select these static tabs. Selecting thes= es tabs, trigger the onter() of the parent tab even if we stay all the time= on the parent tab.... The expected behavior is to receive the event on the= sub-tab instead of its parent. > We do not known if this behavior is normal or not. > The following code is the dynamic tab construction - Note the onenter() > {code} > > > > > > > > > > > > > > > value=3D"#{msg[desktopTabController.toggleSearchLabel= ]}" > actionListener=3D"#{desktopTabController.doToggleSearch}" > render=3D"toggleSearchOutput" > immediate=3D"true"> > >
>
> > > > > > > > >
>
> > > > > > > > > styleClass=3D"closeButton" > action=3D"#{desktopTabController.doCloseTab(tab.i= d)}" /> > > > > > > > > > > > > > > > > >
> > {code} > The onenter function definition. This function set only the selectedTab v= ariable in the backing bean > {code} > > > > {code} > The onenter function inside the backing-bean > {code} > public String doEnterTab() { > // we just need to set the activeTab because actionListener is not wo= rking > // for the first click - Bug has been reported by other users. > return OUTCOME_DESKTOP; > } > {code} > The following code is the nested tabs - Those tabs appears when the use c= lick on the item from a list. > {code} > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > > > > = > > > {code} > Then, each time we click on these nested tabs, the parent tab call the on= enter(). > See the screen capture for better understanding of the scenario. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6306776963709073187==-- From jira-events at lists.jboss.org Fri Jan 20 11:18:18 2012 Content-Type: multipart/mixed; boundary="===============2581372690043437626==" 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-11910) Showcase: reduntant MANIFEST.MF, it is configured in pom.xml and also in resources Date: Fri, 20 Jan 2012 11:18:18 -0500 Message-ID: <850752854.13850.1327076298214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2581372690043437626== 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-11910: ------------------------------- Summary: Showcase: reduntant MANIFEST.MF, it is configured in = pom.xml and also in resources Key: RF-11910 URL: https://issues.jboss.org/browse/RF-11910 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.1.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D These files should be merged, and only {{pom.xml}} should be used preferabl= y. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2581372690043437626==-- From jira-events at lists.jboss.org Fri Jan 20 11:30:18 2012 Content-Type: multipart/mixed; boundary="===============3275838908612713969==" MIME-Version: 1.0 From: Ronan Silva (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10930) calendar: decode of the behavior not occurs for custom events Date: Fri, 20 Jan 2012 11:30:18 -0500 Message-ID: <905546232.13864.1327077018529.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 293799868.33581.1303119933220.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3275838908612713969== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10930?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660835#com= ment-12660835 ] = Ronan Silva commented on RF-10930: ---------------------------------- What workAround this issue??? Please, Can do you post an exempla??? I tried, but don't work the event inputchange: ---------------------------------------------------------------------------= ----------------------- ---------------------------------------------------------------------------= ------------ Thank's... = > calendar: decode of the behavior not occurs for custom events > ------------------------------------------------------------- > > Key: RF-10930 > URL: https://issues.jboss.org/browse/RF-10930 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-input > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.Future > > > see forum post. checked at rf-showcase and confirmed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3275838908612713969==-- From jira-events at lists.jboss.org Fri Jan 20 12:08:18 2012 Content-Type: multipart/mixed; boundary="===============3522875940560470127==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Fri, 20 Jan 2012 12:08:18 -0500 Message-ID: <657506238.13898.1327079298875.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3522875940560470127== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660839#com= ment-12660839 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11909: --------------------------------- pushed to {{feature/RF-11909}} = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Following configuration of location is needed: > {code} > > org.richfaces.resourceMapping.location > #{facesContext.externalContext.requestContextPath}/org.r= ichfaces.resources/javax.faces.resource/org.richfaces.staticResource/#{a4j.= version.implementationVersion}/%Features%/#{resourceLocation} > = > {code} > But that means you need to place custom resources to directory called spe= cifically for RF: > {code} > ${WAR}/resources/org.richfaces.staticResource/4.1.0.Final/Packed/. > {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 = --===============3522875940560470127==-- From jira-events at lists.jboss.org Fri Jan 20 12:29:18 2012 Content-Type: multipart/mixed; boundary="===============3544076063814469858==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11765) Datatable footer cell doesn't use all columns (wrong colspan generated) Date: Fri, 20 Jan 2012 12:29:18 -0500 Message-ID: <75686927.13917.1327080558760.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 249178125.59139.1322705200743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3544076063814469858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11765?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11765: ---------------------------------- Assignee: Brian Leathem = > Datatable footer cell doesn't use all columns (wrong colspan generated) > ----------------------------------------------------------------------- > > Key: RF-11765 > URL: https://issues.jboss.org/browse/RF-11765 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.CR1 > Reporter: Karsten Wutzke > Assignee: Brian Leathem > Labels: colspan, dataTable, footer > Fix For: 4.2.0.CR1 > > > When specifying a datatable's header with rich:columnGroup and a rich:col= umn in the tbody that has rendered=3D"#{rowKeyNbr eq 0}" the wrong colspan = for the table footer cell is generated. > For more details, code, and images please see the forum thread: > http://community.jboss.org/message/639211 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3544076063814469858==-- From jira-events at lists.jboss.org Fri Jan 20 12:29:18 2012 Content-Type: multipart/mixed; boundary="===============3468590323650706085==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11886) Style of the panelMenu changed from 4.1 Date: Fri, 20 Jan 2012 12:29:18 -0500 Message-ID: <872703361.13912.1327080558308.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 383594832.626.1326705438390.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3468590323650706085== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11886?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11886: ------------------------------- Fix Version/s: (was: 4.2.0.CR1) Labels: (was: regression) = > Style of the panelMenu changed from 4.1 > --------------------------------------- > > Key: RF-11886 > URL: https://issues.jboss.org/browse/RF-11886 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Environment: Showcase = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Attachments: new.png, old.png > > > On the screenshots, there is visual change of panelMenu from 4.1 (http://= showcase.richfaces.org/), > the border around the panelMenu has been 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 = --===============3468590323650706085==-- From jira-events at lists.jboss.org Fri Jan 20 12:29:18 2012 Content-Type: multipart/mixed; boundary="===============5476608895101434206==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11850) RF 4.1.0.Final: Problem using columnResize with more than one extendedDataTable on the same page. Date: Fri, 20 Jan 2012 12:29:18 -0500 Message-ID: <1811182525.13915.1327080558472.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1719236551.29235.1324550769802.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5476608895101434206== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11850?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11850: ---------------------------------- Assignee: Brian Leathem = > RF 4.1.0.Final: Problem using columnResize with more than one extendedDat= aTable on the same page. > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11850 > URL: https://issues.jboss.org/browse/RF-11850 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Environment: Windows 7 x64 or arch linux x86 > JBoss 7.0.1 Final or Glassfish 3.1 > Reporter: Christian Peter > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.0.CR1 > > > Hello, > I've encountered some problems using richfaces extendedDataTables in Rich= Face 4.1.0.Final > Here is the facelet: > {code:title=3Dfacelet} > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > = > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > = > > > > Header7 > #{item.name} > > = > > Header8 > #{item.uuid} > > > Header9 > #{item.uuid} > > = > > Header10 > #{item.uuid} > > = > > = > > {code} = > = > Resizing the columns on the first table works perfectly, but if someone t= ries to resize the second tables' columns as well, I've got NullPointer exc= eptions like: > {code:title=3Dstacktrace} > java.lang.NullPointerException > at org.richfaces.renderkit.SortingFilteringRowsRenderer.updateAtt= ribute(SortingFilteringRowsRenderer.java:135) [richfaces-components-ui-4.1.= 0.Final.jar: > at org.richfaces.renderkit.ExtendedDataTableRenderer.updateWidthO= fColumns(ExtendedDataTableRenderer.java:825) [richfaces-components-ui-4.1.0= .Final.jar:] > at org.richfaces.renderkit.ExtendedDataTableRenderer.doDecode(Ext= endedDataTableRenderer.java:808) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:= 80) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponentBase.decode(UIComponentBase.j= ava:787) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.component.UIDataAdaptor.processDecodes(UIDataAda= ptor.java:819) [richfaces-components-ui-4.1.0.Final.jar:] > at org.richfaces.context.PartialViewExecuteVisitCallback.visit(Pa= rtialViewExecuteVisitCallback.java:53) [richfaces-core-impl-4.1.0.Final.jar= :] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCall= back(BaseExtendedVisitContext.java:321) [richfaces-core-impl-4.1.0.Final.ja= r:] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.= java:1319) [richfaces-components-ui-4.1.0.Final.jar:] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIForm.visitTree(UIForm.java:344) [jboss= -jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1= 600) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.richfaces.context.ExtendedPartialViewContextImpl.executeCo= mponents(ExtendedPartialViewContextImpl.java:237) [richfaces-core-impl-4.1.= 0.Final.jar: > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtialExecutePhase(ExtendedPartialViewContextImpl.java:217) [richfaces-core-= impl-4.1.0.F > at org.richfaces.context.ExtendedPartialViewContextImpl.processPa= rtial(ExtendedPartialViewContextImpl.java:196) [richfaces-core-impl-4.1.0.F= inal.jar:] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.jav= a:931) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyR= equestValuesPhase.java:78) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHO= T] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-imp= l-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.ja= va:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > 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.internalDoFilt= er(ApplicationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(= ConversationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-2= 6 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > {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 --===============5476608895101434206==-- From jira-events at lists.jboss.org Fri Jan 20 12:44:18 2012 Content-Type: multipart/mixed; boundary="===============4363732793713408868==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11836) Replace ${project.version} definitions in the poms with actual version Date: Fri, 20 Jan 2012 12:44:18 -0500 Message-ID: <842489158.13925.1327081458508.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 150403957.24272.1324386369523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4363732793713408868== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11836?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11836: ------------------------------- Fix Version/s: (was: 4.2.0.CR1) The description of this issue says it's a requirement for getting into mave= n central. From where was this requirement determined? On a related note, RichFaces is now in maven central: http://search.maven.org/#search|richfaces = > Replace ${project.version} definitions in the poms with actual version > ---------------------------------------------------------------------- > > Key: RF-11836 > URL: https://issues.jboss.org/browse/RF-11836 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > > This is requirement for uploading to Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4363732793713408868==-- From jira-events at lists.jboss.org Fri Jan 20 14:08:18 2012 Content-Type: multipart/mixed; boundary="===============7985780457751344910==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11898) Attaching a contextMenu to a h:graphicImage results in a contextMenu that does not display Date: Fri, 20 Jan 2012 14:08:18 -0500 Message-ID: <222308115.14119.1327086498194.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1893634399.8909.1326918978241.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7985780457751344910== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11898?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660850#com= ment-12660850 ] = Brian Leathem commented on RF-11898: ------------------------------------ ContextMenu works with graphicImage when you set _attached=3D"false"_ on th= e contextMenu. = > Attaching a contextMenu to a h:graphicImage results in a contextMenu that= does not display > -------------------------------------------------------------------------= ----------------- > > Key: RF-11898 > URL: https://issues.jboss.org/browse/RF-11898 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > Attaching a contextMenu to a h:graphicImage results in a contextMenu that= does not display. Wrapping the image with a panelGroup, and attaching the= contextMenu to that panelGroup instead does not cause a 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 =20 --===============7985780457751344910==-- From jira-events at lists.jboss.org Fri Jan 20 15:04:18 2012 Content-Type: multipart/mixed; boundary="===============2959699932568547915==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11898) Attaching a contextMenu to a h:graphicImage results in a contextMenu that does not display Date: Fri, 20 Jan 2012 15:04:18 -0500 Message-ID: <874109598.14190.1327089858215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1893634399.8909.1326918978241.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2959699932568547915== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11898?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660861#com= ment-12660861 ] = Brian Leathem commented on RF-11898: ------------------------------------ The initial contextMenu implementation used _attached_ to determine whether= or not to attach the contextMenu to the attachId DOM. This is different t= han the RF3 contextMenu, where the _attached_ attribute determines whether = or not the context menu is attached to the event of the parent menu. Resolving this issue, by adjusting the _attached_ semantics of the RichFace= s 4 contextMenu to match that of the RichFaces 3 one. = > Attaching a contextMenu to a h:graphicImage results in a contextMenu that= does not display > -------------------------------------------------------------------------= ----------------- > > Key: RF-11898 > URL: https://issues.jboss.org/browse/RF-11898 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > Attaching a contextMenu to a h:graphicImage results in a contextMenu that= does not display. Wrapping the image with a panelGroup, and attaching the= contextMenu to that panelGroup instead does not cause a 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 =20 --===============2959699932568547915==-- From jira-events at lists.jboss.org Fri Jan 20 15:13:18 2012 Content-Type: multipart/mixed; boundary="===============5231586642067543963==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11898) Attaching a contextMenu to a h:graphicImage results in a contextMenu that does not display Date: Fri, 20 Jan 2012 15:13:18 -0500 Message-ID: <1513227572.14199.1327090398691.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1893634399.8909.1326918978241.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5231586642067543963== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11898?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11898. -------------------------------- Resolution: Done Changed the _attached_ semantics of the contextMenu = > Attaching a contextMenu to a h:graphicImage results in a contextMenu that= does not display > -------------------------------------------------------------------------= ----------------- > > Key: RF-11898 > URL: https://issues.jboss.org/browse/RF-11898 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > Attaching a contextMenu to a h:graphicImage results in a contextMenu that= does not display. Wrapping the image with a panelGroup, and attaching the= contextMenu to that panelGroup instead does not cause a 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 =20 --===============5231586642067543963==-- From jira-events at lists.jboss.org Fri Jan 20 16:39:18 2012 Content-Type: multipart/mixed; boundary="===============8025682821729397720==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11900) contextMenu has to be defined after the extendedDatatable, or it cannot attach Date: Fri, 20 Jan 2012 16:39:18 -0500 Message-ID: <377415249.14506.1327095558415.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1920914566.9002.1326921858188.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8025682821729397720== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11900?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660898#com= ment-12660898 ] = Brian Leathem commented on RF-11900: ------------------------------------ The event listener is registered during the component initialisation. If i= t cannot find the attachId dom element, the listener does not get registere= d. A solution is to register the listener in a $(document).ready() handler. = > contextMenu has to be defined after the extendedDatatable, or it cannot a= ttach > -------------------------------------------------------------------------= ----- > > Key: RF-11900 > URL: https://issues.jboss.org/browse/RF-11900 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.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 --===============8025682821729397720==-- From jira-events at lists.jboss.org Fri Jan 20 16:39:19 2012 Content-Type: multipart/mixed; boundary="===============3621919365965044613==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11900) contextMenu has to be defined after the extendedDatatable, or it cannot attach Date: Fri, 20 Jan 2012 16:39:18 -0500 Message-ID: <293516220.14517.1327095558917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1920914566.9002.1326921858188.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3621919365965044613== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11900?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11900. -------------------------------- Resolution: Done = > contextMenu has to be defined after the extendedDatatable, or it cannot a= ttach > -------------------------------------------------------------------------= ----- > > Key: RF-11900 > URL: https://issues.jboss.org/browse/RF-11900 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.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 --===============3621919365965044613==-- From jira-events at lists.jboss.org Fri Jan 20 17:33:18 2012 Content-Type: multipart/mixed; boundary="===============4496988403450938923==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11899) the attachId of the contextMenu requires the fully qualified path Date: Fri, 20 Jan 2012 17:33:18 -0500 Message-ID: <1364827075.14648.1327098798205.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 130287168.8929.1326919578474.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4496988403450938923== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11899?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660919#com= ment-12660919 ] = Brian Leathem commented on RF-11899: ------------------------------------ Resolution: In the template, when passing the _target/attachTo_ id via the = _scriptObject_, first pass the _target/attachTo_ id through = {code} RENDERER_UTILS.findComponentFor(component, target) {code} = > the attachId of the contextMenu requires the fully qualified path > ----------------------------------------------------------------- > > Key: RF-11899 > URL: https://issues.jboss.org/browse/RF-11899 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > Providing an attachId of "pic" for instance is insufficient, one must pro= vide "form:pic". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4496988403450938923==-- From jira-events at lists.jboss.org Fri Jan 20 17:35:18 2012 Content-Type: multipart/mixed; boundary="===============4156345051944378616==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11899) the attachId of the contextMenu requires the fully qualified path Date: Fri, 20 Jan 2012 17:35:18 -0500 Message-ID: <1589190857.14649.1327098918215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 130287168.8929.1326919578474.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4156345051944378616== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11899?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11899. -------------------------------- Resolution: Done = > the attachId of the contextMenu requires the fully qualified path > ----------------------------------------------------------------- > > Key: RF-11899 > URL: https://issues.jboss.org/browse/RF-11899 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > Providing an attachId of "pic" for instance is insufficient, one must pro= vide "form:pic". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4156345051944378616==-- From jira-events at lists.jboss.org Fri Jan 20 17:41:18 2012 Content-Type: multipart/mixed; boundary="===============7835402978871911642==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11911) contextMenu API for attaching to components should match that of tooltip Date: Fri, 20 Jan 2012 17:41:18 -0500 Message-ID: <682996182.14650.1327099278196.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7835402978871911642== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-11911: ---------------------------------- Summary: contextMenu API for attaching to components should ma= tch that of tooltip Key: RF-11911 URL: https://issues.jboss.org/browse/RF-11911 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu Reporter: Brian Leathem Assignee: Brian Leathem Priority: Minor Fix For: 4.2.0.CR1 in it's initial implementation, contextMenu uses the _attachTo_ (from RichF= aces 3) attribute to target another component and tooltip uses the _target_= attribute for the same purpose. The contextMenu _attachTo_ attribute should be renamed to _target_ to have = a consistent API with tooltip. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7835402978871911642==-- From jira-events at lists.jboss.org Fri Jan 20 18:08:18 2012 Content-Type: multipart/mixed; boundary="===============3019717358122172331==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11911) contextMenu API for attaching to components should match that of tooltip Date: Fri, 20 Jan 2012 18:08:18 -0500 Message-ID: <275401649.14686.1327100898188.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 682996182.14650.1327099278196.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3019717358122172331== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11911?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11911. -------------------------------- Resolution: Done = > contextMenu API for attaching to components should match that of tooltip > ------------------------------------------------------------------------ > > Key: RF-11911 > URL: https://issues.jboss.org/browse/RF-11911 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.0.CR1 > > > in it's initial implementation, contextMenu uses the _attachTo_ (from Ric= hFaces 3) attribute to target another component and tooltip uses the _targe= t_ attribute for the same purpose. > The contextMenu _attachTo_ attribute should be renamed to _target_ to hav= e a consistent API with tooltip. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3019717358122172331==-- From jira-events at lists.jboss.org Fri Jan 20 21:07:18 2012 Content-Type: multipart/mixed; boundary="===============0123114843127884367==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11897) menuItems do not inherit the mode of the parent contextMenu Date: Fri, 20 Jan 2012 21:07:18 -0500 Message-ID: <1883547265.14750.1327111638299.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 647787621.8905.1326918738187.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0123114843127884367== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11897?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11897. -------------------------------- Resolution: Done Abstracted MenuContainer out of ContextMenu and DropDownMenu, so that the m= enuItem parent lookup code worked with both types of parent. = > menuItems do not inherit the mode of the parent contextMenu > ----------------------------------------------------------- > > Key: RF-11897 > URL: https://issues.jboss.org/browse/RF-11897 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > Setting the mode of the contextMenu to "client" does not propagate to the= child menuItems. The mode of the menuItem must be set explicitly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0123114843127884367==-- From jira-events at lists.jboss.org Fri Jan 20 21:09:18 2012 Content-Type: multipart/mixed; boundary="===============7795295873359443704==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11904) rich:contextMenu @mode doesn't affect request type Date: Fri, 20 Jan 2012 21:09:18 -0500 Message-ID: <1361500944.14752.1327111758231.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1470389961.10951.1326984078257.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7795295873359443704== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11904?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11904: ---------------------------------- Assignee: J=C3=A1n Jamrich I believe this is indeed a duplicate of RF-11897. Can you give this a try = again, now that RF-11897 has been resolved? = > rich:contextMenu @mode doesn't affect request type > -------------------------------------------------- > > Key: RF-11904 > URL: https://issues.jboss.org/browse/RF-11904 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Environment: RichFaces 4.2.0-SNAPSHOT > Metamer 4.1.1-SNAPSHOT r.${buildNumber} > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 10.0 @ Linux i686 > ----- > Richfaces component module built after merge to develop branch > Reporter: J=C3=A1n Jamrich > Assignee: J=C3=A1n Jamrich > > Since contextMenu should be similar to dropDownMenu, I'm missing behavior= controlled by @mode in contextMenu like dropDownMenu. > In dropDownMenu @mode=3Dajax causes just one request performed when click= menu item. No request for @mode=3Dclient and only for @mode=3Dserver multi= ple requests (first POST request for page where dropDownMenu triggered requ= est and then multiple GET requests for all associated (referenced) resource= s such as CSS, JS... > But not for contextMenu. @mode set to client neither ajax doesn't change = request type, always is full page refresh performed when click on contextMe= nu item. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7795295873359443704==-- From jira-events at lists.jboss.org Sat Jan 21 00:02:18 2012 Content-Type: multipart/mixed; boundary="===============4780118174411280130==" 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: Sat, 21 Jan 2012 00:02:18 -0500 Message-ID: <576361578.14807.1327122138398.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1562607854.56099.1326530722497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4780118174411280130== 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=3D12660944#com= ment-12660944 ] = Brian Leathem commented on RF-11884: ------------------------------------ Have you tried enabling ie8/9 compatibility mode? This can be done with a = tag in your page template. see: http://msdn.microsoft.com/en-us/library/cc288325.aspx = > 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 > Labels: waiting_on_user > > 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 --===============4780118174411280130==-- From jira-events at lists.jboss.org Sat Jan 21 00:12:19 2012 Content-Type: multipart/mixed; boundary="===============4294337554893108823==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11865) Partial build of component tree for lazy loaded components Date: Sat, 21 Jan 2012 00:12:19 -0500 Message-ID: <841003623.14812.1327122739040.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 624327655.47030.1325900949445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4294337554893108823== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11865?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11865: ------------------------------- Fix Version/s: 4.3-Tracking Forum Reference: http://community.jboss.org/thread/177011 (was: http:/= /community.jboss.org/thread/177011) = > Partial build of component tree for lazy loaded components > ---------------------------------------------------------- > > Key: RF-11865 > URL: https://issues.jboss.org/browse/RF-11865 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Any > Reporter: Andrew Wheeler > Priority: Minor > Labels: lazy-loaded > Fix For: 4.3-Tracking > > > I often use collapsible panel with switchType=3D"ajax". This prevents the= rendering of the content until it is requested by the user. This however d= oes not prevent the component tree from being constructed. In one use-case = the panel hides expensive to construct output from a JCR query. It would be= nice if RichFaces could place a marker in the component tree and only cons= truct the child elements on the first request. This would improve page rend= ering and memory usage considerably. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4294337554893108823==-- From jira-events at lists.jboss.org Sat Jan 21 00:12:19 2012 Content-Type: multipart/mixed; boundary="===============1984596995769277519==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11869) showcase - JS warning - Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead. Date: Sat, 21 Jan 2012 00:12:18 -0500 Message-ID: <1850338212.14809.1327122738782.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 905845731.48184.1326107710988.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1984596995769277519== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11869?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11869. -------------------------------- Assignee: Brian Leathem Resolution: Rejected This is an internal error to Firefox, with it's own XUL markup/rendering. = > showcase - JS warning - Use of getAttributeNodeNS() is deprecated. Use ge= tAttributeNS() instead. > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11869 > URL: https://issues.jboss.org/browse/RF-11869 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: showcase > Environment: Firefox 8,9 > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Minor > > When the welcome file of showcase is loaded the JS warning is generated: > {code} > Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead. > {code} > I was not able to find where the function getAttributeNodeNS() is called.= And I have not found any issues which are possibly affected by 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 --===============1984596995769277519==-- From jira-events at lists.jboss.org Sat Jan 21 00:12:20 2012 Content-Type: multipart/mixed; boundary="===============8673149513287180010==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11885) RF 4.1 final a4j:push CDI topic is configured Date: Sat, 21 Jan 2012 00:12:19 -0500 Message-ID: <958909626.14817.1327122739488.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8673149513287180010== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11885: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, has this been covered by your recent fixes to Topic initialisation? = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: a4j:push, cdi > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8673149513287180010==-- From jira-events at lists.jboss.org Sat Jan 21 00:14:19 2012 Content-Type: multipart/mixed; boundary="===============1170811302997487076==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11908) rich:datascroller not scrolling rich:dataGrid Date: Sat, 21 Jan 2012 00:14:18 -0500 Message-ID: <1156948957.14820.1327122858245.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 938472980.13390.1327071498619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1170811302997487076== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11908?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11908: ------------------------------- Steps to Reproduce: = Here is the complete form. As presented the rich:DataGrid will not be scro= lled by the scroller. Simply swapping to the very similar rich:dataTable v= ersion enclosed in the ui:remove tags will demonstrate that it works proper= ly with that component. Swapping back to the dataGrid version, the datascr= oller no longer functions. The bug appears to be with either thet datGrid = itself and/or the datascroller: {code} = = = = = {code} = was: Here is the complete form. As presented the rich:DataGrid will not be scro= lled by the scroller. Simply swapping to the very similar rich:dataTable v= ersion enclosed in the ui:remove tags will demonstrate that it works proper= ly with that component. Swapping back to the dataGrid version, the datascr= oller no longer functions. The bug appears to be with either thet datGrid = itself and/or the datascroller: = = = = = = Forum Reference: https://community.jboss.org/message/647269#647269 = (was: https://community.jboss.org/message/647269#647269) = > rich:datascroller not scrolling rich:dataGrid > --------------------------------------------- > > Key: RF-11908 > URL: https://issues.jboss.org/browse/RF-11908 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 3.3.3.Final > Environment: Windows OS in JBoss 5.1 > Reporter: Todd Gould > > The rich:dataScroller does not work with the rich:dataGrid component. Th= e datascroller represents the proper number of pages for the data in the da= taGrid. However, when I select any of the datascroller controlls, the ajax= request processes (as witnessed via the associated status), but the dataGr= id remains on the first page. Nothing seems to be able to make it progress= to another page. No ajax or other errors are generated and all appears to= function well except that the datGrid does not scroll. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1170811302997487076==-- From jira-events at lists.jboss.org Sat Jan 21 00:16:21 2012 Content-Type: multipart/mixed; boundary="===============6653012933039334799==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11908) rich:datascroller not scrolling rich:dataGrid Date: Sat, 21 Jan 2012 00:16:18 -0500 Message-ID: <2032891094.14823.1327122978396.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 938472980.13390.1327071498619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6653012933039334799== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11908?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11908: ---------------------------------- Assignee: Pavol Pitonak QE, please confirm = > rich:datascroller not scrolling rich:dataGrid > --------------------------------------------- > > Key: RF-11908 > URL: https://issues.jboss.org/browse/RF-11908 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 3.3.3.Final > Environment: Windows OS in JBoss 5.1 > Reporter: Todd Gould > Assignee: Pavol Pitonak > > The rich:dataScroller does not work with the rich:dataGrid component. Th= e datascroller represents the proper number of pages for the data in the da= taGrid. However, when I select any of the datascroller controlls, the ajax= request processes (as witnessed via the associated status), but the dataGr= id remains on the first page. Nothing seems to be able to make it progress= to another page. No ajax or other errors are generated and all appears to= function well except that the datGrid does not scroll. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6653012933039334799==-- From jira-events at lists.jboss.org Sat Jan 21 00:20:18 2012 Content-Type: multipart/mixed; boundary="===============3966434793481866381==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11881) Rich Faces 4 can't change jQuery selector Date: Sat, 21 Jan 2012 00:20:18 -0500 Message-ID: <941727031.14825.1327123218262.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1628113380.4505.1326403041921.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3966434793481866381== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11881?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11881: ------------------------------- Fix Version/s: 4.3-Tracking We should namespace our use of jQuery. For instance, put a referernce to i= t in our RichFaces global: {code} RichFaces.jQuery =3D jQuery.noConflict(); {code} Unfortunately, RichFaces.$ is already taken... = > Rich Faces 4 can't change jQuery selector = > ------------------------------------------ > > Key: RF-11881 > URL: https://issues.jboss.org/browse/RF-11881 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Nicola Nick > Fix For: 4.3-Tracking > > > I used Rich Faces 4 in my project. Morover i have to use prototype functi= onality. > In the last version of rich faces is used only jQuery. The my problem is = that i have to reserve $ selector to prototype but i can't do it because i = don't know how to change the selector inside richfaces library. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3966434793481866381==-- From jira-events at lists.jboss.org Sat Jan 21 00:22:19 2012 Content-Type: multipart/mixed; boundary="===============8510210369495728120==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11861) richfaces 4.1.Final showcase: Non-resolvable parent POM: Could not find artifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final Date: Sat, 21 Jan 2012 00:22:18 -0500 Message-ID: <1034800112.14827.1327123338378.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1704236441.36501.1325599509914.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8510210369495728120== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11861?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11861. -------------------------------- Assignee: Brian Leathem Fix Version/s: 4.2.0.CR1 Resolution: Done RichFaces artifacts are now in maven central. See: http://search.maven.org/#search|ga = > richfaces 4.1.Final showcase: Non-resolvable parent POM: Could not find a= rtifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final > -------------------------------------------------------------------------= ----------------------------------------------------------- > > Key: RF-11861 > URL: https://issues.jboss.org/browse/RF-11861 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Peter B > Assignee: Brian Leathem > Labels: richfaces > Fix For: 4.2.0.CR1 > > > richfaces showcase for Richfaces 4.1 Final doesn't build. > Problem is that: > {code} > org.richfaces > richfaces-root-parent > 4.1.0.Final > {code} > is not in central maven repository. > Console output: > {code} > [INFO] Scanning for projects... > Downloading: http://repo1.maven.org/maven2/org/richfaces/richfaces-root-p= arent/4.1.0.Final/richfaces-root-parent-4.1.0.F > inal.pom > [ERROR] The build could not read 1 project -> [Help 1] > [ERROR] > [ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Fin= al (D:\tmp\richfaces-showcase-77c6701\pom.xml) > has 1 error > [ERROR] Non-resolvable parent POM: Could not find artifact org.richfa= ces:richfaces-root-parent:pom:4.1.0.Final in ce > ntral (http://repo1.maven.org/maven2) and 'parent.relativePath' points at= wrong local POM @ line 8, column 13 -> [Help 2 > ] > [ERROR] > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/Project= BuildingException > [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/Unresol= vableModelException > {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 --===============8510210369495728120==-- From jira-events at lists.jboss.org Sat Jan 21 00:22:19 2012 Content-Type: multipart/mixed; boundary="===============6205678561405048515==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11861) richfaces 4.1.Final showcase: Non-resolvable parent POM: Could not find artifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final Date: Sat, 21 Jan 2012 00:22:18 -0500 Message-ID: <914352631.14829.1327123338449.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1704236441.36501.1325599509914.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6205678561405048515== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11861?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660949#com= ment-12660949 ] = Brian Leathem edited comment on RF-11861 at 1/21/12 12:22 AM: -------------------------------------------------------------- RichFaces artifacts are now in maven central. See: http://search.maven.org/#search%7Cga%7Crichfaces = was (Author: bleathem): RichFaces artifacts are now in maven central. See: http://search.maven.org/#search|ga = > richfaces 4.1.Final showcase: Non-resolvable parent POM: Could not find a= rtifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final > -------------------------------------------------------------------------= ----------------------------------------------------------- > > Key: RF-11861 > URL: https://issues.jboss.org/browse/RF-11861 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Peter B > Assignee: Brian Leathem > Labels: richfaces > Fix For: 4.2.0.CR1 > > > richfaces showcase for Richfaces 4.1 Final doesn't build. > Problem is that: > {code} > org.richfaces > richfaces-root-parent > 4.1.0.Final > {code} > is not in central maven repository. > Console output: > {code} > [INFO] Scanning for projects... > Downloading: http://repo1.maven.org/maven2/org/richfaces/richfaces-root-p= arent/4.1.0.Final/richfaces-root-parent-4.1.0.F > inal.pom > [ERROR] The build could not read 1 project -> [Help 1] > [ERROR] > [ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Fin= al (D:\tmp\richfaces-showcase-77c6701\pom.xml) > has 1 error > [ERROR] Non-resolvable parent POM: Could not find artifact org.richfa= ces:richfaces-root-parent:pom:4.1.0.Final in ce > ntral (http://repo1.maven.org/maven2) and 'parent.relativePath' points at= wrong local POM @ line 8, column 13 -> [Help 2 > ] > [ERROR] > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/Project= BuildingException > [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/Unresol= vableModelException > {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 --===============6205678561405048515==-- From jira-events at lists.jboss.org Sat Jan 21 00:24:18 2012 Content-Type: multipart/mixed; boundary="===============7747941468922013925==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11895) Richfaces showcase import into JBoss Tools/JBDS Date: Sat, 21 Jan 2012 00:24:18 -0500 Message-ID: <1743605553.14831.1327123458276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1507274563.7562.1326891738548.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7747941468922013925== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11895?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11895. -------------------------------- Assignee: Brian Leathem Fix Version/s: 4.2.0.CR1 Resolution: Done RichFaces has just recently been added to maven central. See: http://search.maven.org/#search%7Cga%7Crichfaces = > Richfaces showcase import into JBoss Tools/JBDS > ----------------------------------------------- > > Key: RF-11895 > URL: https://issues.jboss.org/browse/RF-11895 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.1.0.Final > Reporter: Burr Sutter > Assignee: Brian Leathem > Fix For: 4.2.0.CR1 > > > Importing RichFaces Showcase into JBDS5 M5 has the following error: > [ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Fin= al (/Users/burr/Downloads/richfaces-4.1.0.Final/examples/richfaces-showcase= /pom.xml) has 1 error > [ERROR] Non-resolvable parent POM: Could not find artifact org.richfa= ces:richfaces-root-parent:pom:4.1.0.Final in central (http://repo1.maven.or= g/maven2) and 'parent.relativePath' points at wrong local POM @ line 8, col= umn 13 -> [Help 2] > [ERROR] = > Same error on the command line. > Also in the readme.txt, it refers to "Jboss" - need to upper case that "b" -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7747941468922013925==-- From jira-events at lists.jboss.org Sat Jan 21 00:26:18 2012 Content-Type: multipart/mixed; boundary="===============4289742687266724000==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11896) [rich:autocomplete] add attribute maxlength Date: Sat, 21 Jan 2012 00:26:18 -0500 Message-ID: <954227262.14833.1327123578348.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 744278392.7735.1326894619247.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4289742687266724000== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11896?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11896: ------------------------------- Fix Version/s: 4.2-Tracking Priority: Minor (was: Major) Component/s: component-input = > [rich:autocomplete] add attribute maxlength > ------------------------------------------- > > Key: RF-11896 > URL: https://issues.jboss.org/browse/RF-11896 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Final > Reporter: Rene O > Priority: Minor > Fix For: 4.2-Tracking > > > It would be nice, if rich:autocomplete has an attribute maxlength to limi= t the users input. > It should be the same as attribute maxlength within the h:input 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 --===============4289742687266724000==-- From jira-events at lists.jboss.org Sat Jan 21 00:28:18 2012 Content-Type: multipart/mixed; boundary="===============8427744096789531916==" 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: Sat, 21 Jan 2012 00:28:18 -0500 Message-ID: <397503324.14835.1327123698322.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1022848615.10266.1326969138391.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8427744096789531916== 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.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660951#com= ment-12660951 ] = Brian Leathem commented on RF-11902: ------------------------------------ Is it not sufficient to nest a [a4j:attachQueue|http://showcase.richfaces.o= rg/richfaces/component-sample.jsf?demo=3DattachQueue&skin=3DblueSky] within= the component? = > [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 > Labels: waiting_on_user > > 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 --===============8427744096789531916==-- From jira-events at lists.jboss.org Sat Jan 21 22:55:19 2012 Content-Type: multipart/mixed; boundary="===============0741334655734610442==" MIME-Version: 1.0 From: oday qasim (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8201) Print RichFaces module information at start up Date: Sat, 21 Jan 2012 22:55:19 -0500 Message-ID: <496616693.15088.1327204519287.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1329040258.1260548489621.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============0741334655734610442== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8201?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660991#comm= ent-12660991 ] = oday qasim commented on RF-8201: -------------------------------- thnx = > Print RichFaces module information at start up > ---------------------------------------------- > > Key: RF-8201 > URL: https://issues.jboss.org/browse/RF-8201 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, core > Affects Versions: 4.0.0.Alpha2 > Reporter: Jay Balunas > Assignee: Nick Belaevski > Fix For: 4.Future > > > During start up all RichFaces modules should printout meta data into the = log. This would be for each module api, ui, impl, themes, etc.... = > This will be more important as we allow for module releases that may not = always be 100% in sync. It will also help with debugging issues. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0741334655734610442==-- From jira-events at lists.jboss.org Sun Jan 22 18:22:18 2012 Content-Type: multipart/mixed; boundary="===============8985061730776630348==" MIME-Version: 1.0 From: Brendan Healey (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11888) Resource Servlet can't handle query string appended to resource url Date: Sun, 22 Jan 2012 18:22:18 -0500 Message-ID: <365390081.15423.1327274538297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8985061730776630348== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661027#com= ment-12661027 ] = Brendan Healey commented on RF-11888: ------------------------------------- I'm really starting to see this as a critical problem. I've got everything = setup so that my static resources cache properly. In web.xml I set com.sun.faces.= defaultResourceMaxAge to 31536000000 (a year), and in a filter I set the response header Cache-Co= ntrol to "max-age=3D31536000, public, must-revalidate". I then see the browser using the cache rather than issuing a request. The b= rowser has calculated an expiry date for the cached resource, and I expect that it wil= l carry on using the cache rather than issuing a new request for the resource until th= e expiry date is reached. Which raises the question how do I invalidate the browser cache in the case= that I've upgraded richfaces? I clearly don't want to be using an old version of pack= ed.js if I've upgraded from RF 4.1 to 4.2. For all my other resources I will just increment the version string in my r= esource handler whenever necessary, but I don't see any way to achieve the same for the ric= hfaces resources because of this problem. = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > This is useful as a last resort strategy, perhaps after a major redeploym= ent, and > also in the event that there are other problems setting useful ETag and L= ast-Modified > http response headers. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8985061730776630348==-- From jira-events at lists.jboss.org Sun Jan 22 18:39:18 2012 Content-Type: multipart/mixed; boundary="===============9220784787277865673==" MIME-Version: 1.0 From: Brendan Healey (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11888) Resource Servlet can't handle query string appended to resource url Date: Sun, 22 Jan 2012 18:39:18 -0500 Message-ID: <595159696.15426.1327275558245.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9220784787277865673== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brendan Healey updated RF-11888: -------------------------------- Priority: Critical (was: Major) Description: = A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_new= _feature) can be used to append a version string (i.e. ?v=3D23) to a resource url to = force a browser to refresh a resource rather than use any cached version. At present any appending of a version string causes a 404 response status, = for example: Request URL: https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource/o= rg.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/pac= ked.css?v=3D23 Removing the url parameter makes it work ok. As you can see I have resource= Mapping enabled. This is essential to cause a browser to issue a request to the server if a = static resource is held in a browser cache and is not expired, but you've upgraded= the richfaces version. You have to have a way to invalidate the cache, and I'm = not seeing how this can be done. was: A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_new= _feature) can be used to append a version string (i.e. ?v=3D23) to a resource url to = force a browser to refresh a resource rather than use any cached version. This is useful as a last resort strategy, perhaps after a major redeploymen= t, and also in the event that there are other problems setting useful ETag and Las= t-Modified http response headers. At present any appending of a version string causes a 404 response status, = for example: Request URL: https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource/o= rg.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/pac= ked.css?v=3D23 Removing the url parameter makes it work ok. As you can see I have resource= Mapping enabled. = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > Priority: Critical > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. > This is essential to cause a browser to issue a request to the server if = a static > resource is held in a browser cache and is not expired, but you've upgrad= ed the > richfaces version. You have to have a way to invalidate the cache, and I'= m not > seeing how this can be done. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9220784787277865673==-- From jira-events at lists.jboss.org Sun Jan 22 18:41:18 2012 Content-Type: multipart/mixed; boundary="===============4913443009590818333==" MIME-Version: 1.0 From: Brendan Healey (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11888) Resource Servlet can't handle query string appended to resource url Date: Sun, 22 Jan 2012 18:41:18 -0500 Message-ID: <1333081058.15430.1327275678390.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4913443009590818333== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brendan Healey updated RF-11888: -------------------------------- Description: = A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_new= _feature) can be used to append a version string (i.e. ?v=3D23) to a resource url to = force a browser to refresh a resource rather than use any cached version. At present any appending of a version string causes a 404 response status, = for example: Request URL: https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource/o= rg.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/pac= ked.css?v=3D23 Removing the url parameter makes it work ok. As you can see I have resource= Mapping enabled. This is essential to cause a browser to issue a request to the server if a = static resource is held in a browser cache and is not expired, but you've upgraded= the richfaces version. You have to have a way to invalidate the cache, and I'm = not seeing how this can be done in a sensible way. You can set the Cache-Control no-cache header, but I'd need to do this in a way that says "I've just upgr= aded richfaces, so don't use the cache, issue a request to the server for the re= source, but cache the result and use this until the next time". was: A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_new= _feature) can be used to append a version string (i.e. ?v=3D23) to a resource url to = force a browser to refresh a resource rather than use any cached version. At present any appending of a version string causes a 404 response status, = for example: Request URL: https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource/o= rg.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/pac= ked.css?v=3D23 Removing the url parameter makes it work ok. As you can see I have resource= Mapping enabled. This is essential to cause a browser to issue a request to the server if a = static resource is held in a browser cache and is not expired, but you've upgraded= the richfaces version. You have to have a way to invalidate the cache, and I'm = not seeing how this can be done. = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > Priority: Critical > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. > This is essential to cause a browser to issue a request to the server if = a static > resource is held in a browser cache and is not expired, but you've upgrad= ed the > richfaces version. You have to have a way to invalidate the cache, and I'= m not > seeing how this can be done in a sensible way. You can set the Cache-Cont= rol > no-cache header, but I'd need to do this in a way that says "I've just up= graded > richfaces, so don't use the cache, issue a request to the server for the = resource, > but cache the result and use this until the next time". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4913443009590818333==-- From jira-events at lists.jboss.org Mon Jan 23 02:23:18 2012 Content-Type: multipart/mixed; boundary="===============0928493140455536571==" MIME-Version: 1.0 From: Rene O (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11902) [rich:autocomplete] add attribute queueId Date: Mon, 23 Jan 2012 02:23:18 -0500 Message-ID: <1977796789.15828.1327303398368.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1022848615.10266.1326969138391.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0928493140455536571== 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.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661047#com= ment-12661047 ] = Rene O commented on RF-11902: ----------------------------- It is not sufficient, beacause it doesn't work. I have tried the following code within h:form {code} {code} The search starts immediatly after i put in the 2nd character. The search d= oesn't wait 750ms. Apart from that i think it is not the best solution. Imagine if you have a = lot of autocomplete components. Then its better to reuse a global queue. = > [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 > Labels: waiting_on_user > > 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 --===============0928493140455536571==-- From jira-events at lists.jboss.org Mon Jan 23 03:08:18 2012 Content-Type: multipart/mixed; boundary="===============5213690112105568102==" 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-11836) Replace ${project.version} definitions in the poms with actual version Date: Mon, 23 Jan 2012 03:08:18 -0500 Message-ID: <2133747399.15857.1327306098801.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 150403957.24272.1324386369523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5213690112105568102== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11836?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661053#com= ment-12661053 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11836: --------------------------------- I assume this was only misinterpretation of mail we have got from Joel: {quote} * Several sub-groups in org.richfaces contained POMs with variables in the = element. This caused our POM validity scripts to fail. These su= b-groups appeared to be documentation or example related: {quote} Although some changes were done on feature branch {{productization-changes}= }, there were rather focused on clean up. I suggest to reject this issue. = > Replace ${project.version} definitions in the poms with actual version > ---------------------------------------------------------------------- > > Key: RF-11836 > URL: https://issues.jboss.org/browse/RF-11836 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > > This is requirement for uploading to Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5213690112105568102==-- From jira-events at lists.jboss.org Mon Jan 23 03:08:19 2012 Content-Type: multipart/mixed; boundary="===============8856668440231756393==" 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-11836) Replace ${project.version} definitions in the poms with actual version Date: Mon, 23 Jan 2012 03:08:19 -0500 Message-ID: <1558117569.15868.1327306099474.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 150403957.24272.1324386369523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8856668440231756393== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11836?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-11836: ----------------------------- = > Replace ${project.version} definitions in the poms with actual version > ---------------------------------------------------------------------- > > Key: RF-11836 > URL: https://issues.jboss.org/browse/RF-11836 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > > This is requirement for uploading to Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8856668440231756393==-- From jira-events at lists.jboss.org Mon Jan 23 03:08:19 2012 Content-Type: multipart/mixed; boundary="===============6058803294118521679==" 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-11836) Replace ${project.version} definitions in the poms with actual version Date: Mon, 23 Jan 2012 03:08:18 -0500 Message-ID: <1966904708.15858.1327306098841.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 150403957.24272.1324386369523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6058803294118521679== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11836?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11836. ----------------------------- Resolution: Done = > Replace ${project.version} definitions in the poms with actual version > ---------------------------------------------------------------------- > > Key: RF-11836 > URL: https://issues.jboss.org/browse/RF-11836 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > > This is requirement for uploading to Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6058803294118521679==-- From jira-events at lists.jboss.org Mon Jan 23 03:08:19 2012 Content-Type: multipart/mixed; boundary="===============3191911895776508389==" 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-11836) Replace ${project.version} definitions in the poms with actual version Date: Mon, 23 Jan 2012 03:08:19 -0500 Message-ID: <1739993334.15869.1327306099503.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 150403957.24272.1324386369523.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3191911895776508389== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11836?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11836. ----------------------------- Resolution: Rejected = > Replace ${project.version} definitions in the poms with actual version > ---------------------------------------------------------------------- > > Key: RF-11836 > URL: https://issues.jboss.org/browse/RF-11836 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > > This is requirement for uploading to Maven Central. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3191911895776508389==-- From jira-events at lists.jboss.org Mon Jan 23 03:15:18 2012 Content-Type: multipart/mixed; boundary="===============1972295527926219873==" 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-11885) RF 4.1 final a4j:push CDI topic is configured Date: Mon, 23 Jan 2012 03:15:18 -0500 Message-ID: <362056758.15894.1327306518452.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1972295527926219873== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661056#com= ment-12661056 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11885: --------------------------------- Currently, topic needs to be initialized by {{TopicsInitializer}}, refer to https://community.jboss.org/wiki/StartingWithRichFacesPushOnVariousServletC= ontainers#Push_Initialization__Topics_Creation This issue should be also fixed by RF-11483 in {{4.2}} cycle. Ibrahim, could you please give a try to latest {{4.2.0-SNAPSHOT}}? = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: a4j:push, cdi, waiting_on_user > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1972295527926219873==-- From jira-events at lists.jboss.org Mon Jan 23 03:30:18 2012 Content-Type: multipart/mixed; boundary="===============5716050459313322725==" MIME-Version: 1.0 From: Ibrahim Abu Ghosh (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11885) RF 4.1 final a4j:push CDI topic is configured Date: Mon, 23 Jan 2012 03:30:18 -0500 Message-ID: <359279784.15901.1327307418624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5716050459313322725== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661057#com= ment-12661057 ] = Ibrahim Abu Ghosh commented on RF-11885: ---------------------------------------- please provide me with a download link. = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: a4j:push, cdi, waiting_on_user > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5716050459313322725==-- From jira-events at lists.jboss.org Mon Jan 23 06:07:18 2012 Content-Type: multipart/mixed; boundary="===============0939234394906131229==" 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-11885) RF 4.1 final a4j:push CDI topic is configured Date: Mon, 23 Jan 2012 06:07:18 -0500 Message-ID: <1084093424.16326.1327316838352.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0939234394906131229== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661096#com= ment-12661096 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11885: --------------------------------- There can be found download links on JBoss repo: https://repository.jboss.org/nexus/index.html#nexus-search;gav~~richfaces-c= ore-*~4.2.0-SNAPSHOT~~ https://repository.jboss.org/nexus/index.html#nexus-search;gav~~richfaces-c= omponents-*~4.2.0-SNAPSHOT~~ = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: a4j:push, cdi, waiting_on_user > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0939234394906131229==-- From jira-events at lists.jboss.org Mon Jan 23 08:44:18 2012 Content-Type: multipart/mixed; boundary="===============4469874068456028771==" MIME-Version: 1.0 From: Ibrahim Abu Ghosh (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11885) RF 4.1 final a4j:push CDI topic is configured Date: Mon, 23 Jan 2012 08:44:18 -0500 Message-ID: <1536876017.16847.1327326258612.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4469874068456028771== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661146#com= ment-12661146 ] = Ibrahim Abu Ghosh commented on RF-11885: ---------------------------------------- thanks Lukas, I've tested and it works fine, i removed TopicContext initial= ization code. i tested against atmosphere 0.8.4 runtime. = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: a4j:push, cdi, waiting_on_user > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4469874068456028771==-- From jira-events at lists.jboss.org Mon Jan 23 08:44:20 2012 Content-Type: multipart/mixed; boundary="===============1497585029688102678==" MIME-Version: 1.0 From: Ibrahim Abu Ghosh (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11885) RF 4.1 final a4j:push CDI topic is configured Date: Mon, 23 Jan 2012 08:44:19 -0500 Message-ID: <815755762.16862.1327326259975.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1497585029688102678== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661146#com= ment-12661146 ] = Ibrahim Abu Ghosh edited comment on RF-11885 at 1/23/12 8:43 AM: ----------------------------------------------------------------- thanks Lukas, I've tested and it works fine, i removed TopicContext initial= ization code. i tested it with atmosphere 0.8.4 runtime. = was (Author: iabughosh): thanks Lukas, I've tested and it works fine, i removed TopicContext ini= tialization code. i tested against atmosphere 0.8.4 runtime. = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: a4j:push, cdi, waiting_on_user > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1497585029688102678==-- From jira-events at lists.jboss.org Mon Jan 23 11:17:18 2012 Content-Type: multipart/mixed; boundary="===============7608677309586842343==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11885) RF 4.1 final a4j:push CDI topic is configured Date: Mon, 23 Jan 2012 11:17:18 -0500 Message-ID: <599835644.17325.1327335438531.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 880165753.172.1326637038332.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7608677309586842343== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11885?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11885. -------------------------------- Labels: a4j:push cdi (was: a4j:push cdi waiting_on_user) Resolution: Out of Date Thanks for confirming the fix! = > RF 4.1 final a4j:push CDI topic is configured > --------------------------------------------- > > Key: RF-11885 > URL: https://issues.jboss.org/browse/RF-11885 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Final > Environment: JBoss 6.0 final > JDK 1.6.0_24 > Reporter: Ibrahim Abu Ghosh > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: a4j:push, cdi > > i tried to use a4j:push cdi as in showcase, but my consumer page shows a = message (topic 'my topic name' is not configured). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7608677309586842343==-- From jira-events at lists.jboss.org Mon Jan 23 11:41:18 2012 Content-Type: multipart/mixed; boundary="===============4560573887074702882==" MIME-Version: 1.0 From: Jason Lee (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11912) Improved Maven documentation Date: Mon, 23 Jan 2012 11:41:18 -0500 Message-ID: <343803648.17341.1327336878277.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4560573887074702882== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jason Lee created RF-11912: ------------------------------ Summary: Improved Maven documentation Key: RF-11912 URL: https://issues.jboss.org/browse/RF-11912 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: doc Affects Versions: 4.1.0.Final Reporter: Jason Lee Priority: Minor The Maven documentation in the developers guide could be greatly improved i= f the relevant pom.xml elements were explicitly listed in the documentation= . This information can be gleaned from the showcase app (which I did :), b= ut having that in the docs themselves would make it easier for someone new = to the project. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4560573887074702882==-- From jira-events at lists.jboss.org Mon Jan 23 11:56:18 2012 Content-Type: multipart/mixed; boundary="===============1332461314934172450==" MIME-Version: 1.0 From: Cody Lerum (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11913) Simplify Documentation and Process of using Resource Packing with Custom Skins Date: Mon, 23 Jan 2012 11:56:18 -0500 Message-ID: <130703154.17370.1327337778226.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1332461314934172450== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Cody Lerum created RF-11913: ------------------------------- Summary: Simplify Documentation and Process of using Resource = Packing with Custom Skins Key: RF-11913 URL: https://issues.jboss.org/browse/RF-11913 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Affects Versions: 4.1.0.Final Reporter: Cody Lerum Once a user creates their own skin the steps to enable resource packing are= complex and not all documented in a easy to find manner. At a minimum it would be nice to just pack the 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 =20 --===============1332461314934172450==-- From jira-events at lists.jboss.org Mon Jan 23 12:04:18 2012 Content-Type: multipart/mixed; boundary="===============2440247072939253431==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Mon, 23 Jan 2012 12:04:18 -0500 Message-ID: <140618293.17384.1327338258473.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2440247072939253431== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11909: ---------------------------- Description: = Custom resource mapping can't simply reuse pre-generated RichFaces resource= s. Use case: * user wants to use resource mapping for several purposes ** using RichFaces pre-generated resources in {{richfaces-components-ui.jar= /META-INF/resources/org.richfaces.staticResources//...}} ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} using= e.g. {{my.war/resources/patched-jsf.js}} ---- With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.loca= tion}} is by default referring to root of packed resources: {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.reso= urces/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imple= mentationVersion}/%Features%/#{resourceLocation} = {code} and mapping file looks like: {code} jquery.js=3Djquery.js {code} When you want to reuse RichFaces mappings, you [need to copy mapping file f= rom {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest_4= _X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html#d= 0e1692] and extend it by custom properties. and additionally you need to place custom resources to directory called spe= cifically for RF, like: {code} my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompressed/= patched-jsf.js {code} Other options: * change all mappings in {{custom-mappings.properties}} at own * copy all resources from {{richfaces-component-ui.jar}} to own location ---- For simplification, I suggest default resource mapping location root be {code} #{facesContext.externalContext.requestContextPath}/org.richfaces.resources/= javax.faces.resource/#{resourceLocation} {code} so it would refer to JSF resources root ({{my.war/resources}} or {{some.jar= /META-INF/resources}}) by default. Then, we would force {{richfaces-components-ui.jar}} to define mappings whi= ch points from JSF resources root, e.g.: {code} jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jquer= y.js {code} ---- Additionally, Brian suggested support for multiple {{mapping.properties}} f= iles, so their content will be merged. It means user won't be forced to copy&paste RichFaces mapping configuration= from {{richfaces-components-ui.jar}}. ---- Finally, the only thing user would need to define is: {code:XML|title=3Dweb.xml} org.richfaces.resourceMapping.mappingFile META-INF/custom-mapping.properties {code} {code:title=3DMETA-INF/custom-mapping.properties} javax.faces:jsf.js=3Dpatched-jsf.js {code} was: Following configuration of location is needed: {code} org.richfaces.resourceMapping.location #{facesContext.externalContext.requestContextPath}/org.ric= hfaces.resources/javax.faces.resource/org.richfaces.staticResource/#{a4j.ve= rsion.implementationVersion}/%Features%/#{resourceLocation} = {code} But that means you need to place custom resources to directory called speci= fically for RF: {code} ${WAR}/resources/org.richfaces.staticResource/4.1.0.Final/Packed/. {code} Forum Reference: https://community.jboss.org/message/647859#647859 (wa= s: https://community.jboss.org/message/647859#647859) = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces. > Use case: > * user wants to use resource mapping for several purposes > ** using RichFaces pre-generated resources in {{richfaces-components-ui.j= ar/META-INF/resources/org.richfaces.staticResources//...}} > ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} usi= ng e.g. {{my.war/resources/patched-jsf.js}} > ---- > With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.lo= cation}} is by default referring to root of packed resources: > {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.re= sources/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imp= lementationVersion}/%Features%/#{resourceLocation} = > {code} > and mapping file looks like: > {code} > jquery.js=3Djquery.js > {code} > When you want to reuse RichFaces mappings, you [need to copy mapping file= from {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest= _4_X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html= #d0e1692] and extend it by custom properties. > and additionally you need to place custom resources to directory called s= pecifically for RF, like: > {code} > my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompresse= d/patched-jsf.js > {code} > Other options: > * change all mappings in {{custom-mappings.properties}} at own > * copy all resources from {{richfaces-component-ui.jar}} to own location > ---- > For simplification, I suggest default resource mapping location root be > {code} > #{facesContext.externalContext.requestContextPath}/org.richfaces.resource= s/javax.faces.resource/#{resourceLocation} > {code} > so it would refer to JSF resources root ({{my.war/resources}} or {{some.j= ar/META-INF/resources}}) by default. > Then, we would force {{richfaces-components-ui.jar}} to define mappings w= hich points from JSF resources root, e.g.: > {code} > jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jqu= ery.js > {code} > ---- > Additionally, Brian suggested support for multiple {{mapping.properties}}= files, so their content will be merged. > It means user won't be forced to copy&paste RichFaces mapping configurati= on from {{richfaces-components-ui.jar}}. > ---- > Finally, the only thing user would need to define is: > {code:XML|title=3Dweb.xml} > > org.richfaces.resourceMapping.mappingFile > META-INF/custom-mapping.properties > > {code} > {code:title=3DMETA-INF/custom-mapping.properties} > javax.faces:jsf.js=3Dpatched-jsf.js > {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 = --===============2440247072939253431==-- From jira-events at lists.jboss.org Mon Jan 23 12:06:18 2012 Content-Type: multipart/mixed; boundary="===============1283980762167294570==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Mon, 23 Jan 2012 12:06:18 -0500 Message-ID: <1992642095.17392.1327338378899.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1283980762167294570== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12660839#com= ment-12660839 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-11909 at 1/23/12 12:06 PM: ----------------------------------------------------------- PoC pushed to {{feature/RF-11909}} = was (Author: lfryc): pushed to {{feature/RF-11909}} = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces. > Use case: > * user wants to use resource mapping for several purposes > ** using RichFaces pre-generated resources in {{richfaces-components-ui.j= ar/META-INF/resources/org.richfaces.staticResources//...}} > ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} usi= ng e.g. {{my.war/resources/patched-jsf.js}} > ---- > With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.lo= cation}} is by default referring to root of packed resources: > {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.re= sources/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imp= lementationVersion}/%Features%/#{resourceLocation} = > {code} > and mapping file looks like: > {code} > jquery.js=3Djquery.js > {code} > When you want to reuse RichFaces mappings, you [need to copy mapping file= from {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest= _4_X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html= #d0e1692] and extend it by custom properties. > and additionally you need to place custom resources to directory called s= pecifically for RF, like: > {code} > my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompresse= d/patched-jsf.js > {code} > Other options: > * change all mappings in {{custom-mappings.properties}} at own > * copy all resources from {{richfaces-component-ui.jar}} to own location > ---- > For simplification, I suggest default resource mapping location root be > {code} > #{facesContext.externalContext.requestContextPath}/org.richfaces.resource= s/javax.faces.resource/#{resourceLocation} > {code} > so it would refer to JSF resources root ({{my.war/resources}} or {{some.j= ar/META-INF/resources}}) by default. > Then, we would force {{richfaces-components-ui.jar}} to define mappings w= hich points from JSF resources root, e.g.: > {code} > jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jqu= ery.js > {code} > ---- > Additionally, Brian suggested support for multiple {{mapping.properties}}= files, so their content will be merged. > It means user won't be forced to copy&paste RichFaces mapping configurati= on from {{richfaces-components-ui.jar}}. > ---- > Finally, the only thing user would need to define is: > {code:XML|title=3Dweb.xml} > > org.richfaces.resourceMapping.mappingFile > META-INF/custom-mapping.properties > > {code} > {code:title=3DMETA-INF/custom-mapping.properties} > javax.faces:jsf.js=3Dpatched-jsf.js > {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 = --===============1283980762167294570==-- From jira-events at lists.jboss.org Mon Jan 23 12:06:19 2012 Content-Type: multipart/mixed; boundary="===============4942809787422501137==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Mon, 23 Jan 2012 12:06:19 -0500 Message-ID: <225297503.17398.1327338379257.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4942809787422501137== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11909: ---------------------------- Comment: was deleted (was: This will just need change of default values and pre-generated resour= ce mapping files.) = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces. > Use case: > * user wants to use resource mapping for several purposes > ** using RichFaces pre-generated resources in {{richfaces-components-ui.j= ar/META-INF/resources/org.richfaces.staticResources//...}} > ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} usi= ng e.g. {{my.war/resources/patched-jsf.js}} > ---- > With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.lo= cation}} is by default referring to root of packed resources: > {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.re= sources/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imp= lementationVersion}/%Features%/#{resourceLocation} = > {code} > and mapping file looks like: > {code} > jquery.js=3Djquery.js > {code} > When you want to reuse RichFaces mappings, you [need to copy mapping file= from {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest= _4_X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html= #d0e1692] and extend it by custom properties. > and additionally you need to place custom resources to directory called s= pecifically for RF, like: > {code} > my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompresse= d/patched-jsf.js > {code} > Other options: > * change all mappings in {{custom-mappings.properties}} at own > * copy all resources from {{richfaces-component-ui.jar}} to own location > ---- > For simplification, I suggest default resource mapping location root be > {code} > #{facesContext.externalContext.requestContextPath}/org.richfaces.resource= s/javax.faces.resource/#{resourceLocation} > {code} > so it would refer to JSF resources root ({{my.war/resources}} or {{some.j= ar/META-INF/resources}}) by default. > Then, we would force {{richfaces-components-ui.jar}} to define mappings w= hich points from JSF resources root, e.g.: > {code} > jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jqu= ery.js > {code} > ---- > Additionally, Brian suggested support for multiple {{mapping.properties}}= files, so their content will be merged. > It means user won't be forced to copy&paste RichFaces mapping configurati= on from {{richfaces-components-ui.jar}}. > ---- > Finally, the only thing user would need to define is: > {code:XML|title=3Dweb.xml} > > org.richfaces.resourceMapping.mappingFile > META-INF/custom-mapping.properties > > {code} > {code:title=3DMETA-INF/custom-mapping.properties} > javax.faces:jsf.js=3Dpatched-jsf.js > {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 = --===============4942809787422501137==-- From jira-events at lists.jboss.org Mon Jan 23 12:08:21 2012 Content-Type: multipart/mixed; boundary="===============0260873599489783537==" 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-11909) Custom resource mapping can't simply reuse pre-generated RichFaces resources Date: Mon, 23 Jan 2012 12:08:20 -0500 Message-ID: <1431023089.17414.1327338500053.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 42430590.13417.1327071978848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0260873599489783537== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11909?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661221#com= ment-12661221 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11909: --------------------------------- The proposal is not changing backward compatibility. We can also create default for {{org.richfaces.resourceMapping.mappingFile}= } and don't user force to define {{web.xml}} fragment. File presence detect= ion would be necessary. = > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces > -------------------------------------------------------------------------= --- > > Key: RF-11909 > URL: https://issues.jboss.org/browse/RF-11909 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.2.0.CR1 > > > Custom resource mapping can't simply reuse pre-generated RichFaces resour= ces. > Use case: > * user wants to use resource mapping for several purposes > ** using RichFaces pre-generated resources in {{richfaces-components-ui.j= ar/META-INF/resources/org.richfaces.staticResources//...}} > ** using custom mappings like {{javax.faces:jsf.js=3Dpatched-jsf.js}} usi= ng e.g. {{my.war/resources/patched-jsf.js}} > ---- > With {{4.1.0.Final}}, configuration of {{org.richfaces.resourceMapping.lo= cation}} is by default referring to root of packed resources: > {code}#{facesContext.externalContext.requestContextPath}/org.richfaces.re= sources/javax.faces.resource/org.richfaces.staticResource/#{a4j.version.imp= lementationVersion}/%Features%/#{resourceLocation} = > {code} > and mapping file looks like: > {code} > jquery.js=3Djquery.js > {code} > When you want to reuse RichFaces mappings, you [need to copy mapping file= from {{richfaces-component-ui.jar}}|http://docs.jboss.org/richfaces/latest= _4_X/Developer_Guide/en-US/html/chap-Developer_Guide-Advanced_features.html= #d0e1692] and extend it by custom properties. > and additionally you need to place custom resources to directory called s= pecifically for RF, like: > {code} > my.war/resources/org.richfaces.staticResource/4.1.0.Final/PackedCompresse= d/patched-jsf.js > {code} > Other options: > * change all mappings in {{custom-mappings.properties}} at own > * copy all resources from {{richfaces-component-ui.jar}} to own location > ---- > For simplification, I suggest default resource mapping location root be > {code} > #{facesContext.externalContext.requestContextPath}/org.richfaces.resource= s/javax.faces.resource/#{resourceLocation} > {code} > so it would refer to JSF resources root ({{my.war/resources}} or {{some.j= ar/META-INF/resources}}) by default. > Then, we would force {{richfaces-components-ui.jar}} to define mappings w= hich points from JSF resources root, e.g.: > {code} > jquery.js=3Dorg.richfaces.staticResource/4.1.0.Final/PackedCompressed/jqu= ery.js > {code} > ---- > Additionally, Brian suggested support for multiple {{mapping.properties}}= files, so their content will be merged. > It means user won't be forced to copy&paste RichFaces mapping configurati= on from {{richfaces-components-ui.jar}}. > ---- > Finally, the only thing user would need to define is: > {code:XML|title=3Dweb.xml} > > org.richfaces.resourceMapping.mappingFile > META-INF/custom-mapping.properties > > {code} > {code:title=3DMETA-INF/custom-mapping.properties} > javax.faces:jsf.js=3Dpatched-jsf.js > {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 = --===============0260873599489783537==-- From jira-events at lists.jboss.org Mon Jan 23 15:02:18 2012 Content-Type: multipart/mixed; boundary="===============6756740186068229541==" MIME-Version: 1.0 From: Robert Gary (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11914) Would like to see a dynamic subtable option for extendedDataTable Date: Mon, 23 Jan 2012 15:02:18 -0500 Message-ID: <1890896963.17700.1327348938263.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6756740186068229541== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Robert Gary created RF-11914: -------------------------------- Summary: Would like to see a dynamic subtable option for exten= dedDataTable Key: RF-11914 URL: https://issues.jboss.org/browse/RF-11914 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.1.0.Final Reporter: Robert Gary Priority: Minor In RF 3.3.3 extendedDataTable offered the ability for the user to select an= y column and subgroup on it. This is no longer supported in RF 4.X. We do h= ave the callapsibleSubTable tag but it requires each column to be pre-confi= gured for subtable grouping. Could subtable grouping simply be an attribute= on the column??? We would also want to allow the user to customize the expand/collapse subta= ble icon once the subtable grouping is enabled. -Robert -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6756740186068229541==-- From jira-events at lists.jboss.org Mon Jan 23 15:23:19 2012 Content-Type: multipart/mixed; boundary="===============4316643369371063040==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11838) Warning in Chrome console for pages with ajax Date: Mon, 23 Jan 2012 15:23:19 -0500 Message-ID: <1494266881.17730.1327350199085.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 836209596.24520.1324389969366.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4316643369371063040== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11838?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11838: ------------------------------- Fix Version/s: 4.2.0.CR1 A grep of the RichFaces codebase does not provide any immediate indication = as to what is causing this. A web search indicates this can also be caused= by installed chrome extensions - I disabled all my extensions, and still o= bserved the method. Further investigation is required. = > Warning in Chrome console for pages with ajax > --------------------------------------------- > > Key: RF-11838 > URL: https://issues.jboss.org/browse/RF-11838 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 4.1.0.Final > Environment: Google Chrome 16.0.912.63 > Reporter: Pavol Pitonak > Fix For: 4.2.0.CR1 > > > # open Showcase in Chrome http://showcase.richfaces.org/richfaces/compone= nt-sample.jsf?demo=3Dajax&skin=3DblueSky > # open browser console > # type "xxx" into input > result: > The following warning is displayed in browser console 6 times (twice for = each Ajax request). Seems to be Chrome-specific and seems not to influence = functionality of any component. > {quote} > event.layerX and event.layerY are broken and deprecated in WebKit. They w= ill be removed from the engine in the near future. > {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 =20 --===============4316643369371063040==-- From jira-events at lists.jboss.org Mon Jan 23 15:23:19 2012 Content-Type: multipart/mixed; boundary="===============0511267639923860350==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11814) a4j:commandLink in tabPanel disabled if switchtype = ajax Date: Mon, 23 Jan 2012 15:23:18 -0500 Message-ID: <957170782.17726.1327350198868.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 796306910.9115.1323859989475.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0511267639923860350== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11814?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11814. -------------------------------- Assignee: Brian Leathem Resolution: Won't Fix Nesting ajax actions like this is not supported by JSF. When switchtype=3D= ajax, this is effectively the same as nesting a commandButton within anothe= r commandButton - which one should take precedence? To avoid this ambiguity, you have two choices: # use switchType=3Dclient, and nest the button within the tab (as you alrea= dy pointed out). # use switchType=3Dajax, and put your action in the tab itself, as in: {code} Logging out, please wait ! {code} = > a4j:commandLink in tabPanel disabled if switchtype =3D ajax > --------------------------------------------------------- > > Key: RF-11814 > URL: https://issues.jboss.org/browse/RF-11814 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core, component-panels-layout-themes > Affects Versions: 4.1.0.CR2 > Environment: Win 7 64 Bit, Tomcat 7.0.23, Mojarra 2.1.3 > Reporter: Friedhelm Kuehn > Assignee: Brian Leathem > > In the following constellation (=3Dextract from real page) the a4j:comman= dlink action method = > is correctly triggered on clicking when tabPanels switchType =3D "client"= but not when switchType =3D "ajax" > {code} > > > = > > ..... > > > > > > > Logging out, please wait ! > > > {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 --===============0511267639923860350==-- From jira-events at lists.jboss.org Mon Jan 23 15:27:18 2012 Content-Type: multipart/mixed; boundary="===============6795904445302070542==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11846) rich:validator ignores @NotEmpty Date: Mon, 23 Jan 2012 15:27:18 -0500 Message-ID: <1669587073.17737.1327350438469.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 651588956.26878.1324469409370.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6795904445302070542== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11846?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11846: ------------------------------- Fix Version/s: 4.3-Tracking I think you're right Jan, this probably has to do with validation being tri= ggered by blur events. Further investigation is required. = > rich:validator ignores @NotEmpty > -------------------------------- > > Key: RF-11846 > URL: https://issues.jboss.org/browse/RF-11846 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Final > Environment: Maven 3, Tomcat 6.0.x, Ubuntu 11.10 x64, Glassfish j= sf 2.x implementation, Hibernate validator 4.1.0.Final > Reporter: Mercer Traieste > Fix For: 4.3-Tracking > > > I want to have [client-side validation|http://richfaces-showcase.appspot.= com/richfaces/component-sample.jsf?demo=3DclientValidation&sample=3Djsr303&= skin=3DblueSky] using rich:validator in Richfaces 4.1, but @NotEmpty is ign= ored. = > {code:xml} = > > > > > > {code} = > {code:java} > import org.hibernate.validator.constraints.NotEmpty; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.SessionScoped; > import java.io.Serializable; > @ManagedBean > @SessionScoped > public class RichBean implements Serializable { > private static final long serialVersionUID =3D -2403138958014741653L; > @NotEmpty > private String firstName; > public String getFirstName() { > return firstName; > } > public void setFirstName(String firstName) { > this.firstName =3D firstName; > } > } > {code} > @Email, another specific Hibernate validator 4.1 annotation works 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 =20 --===============6795904445302070542==-- From jira-events at lists.jboss.org Mon Jan 23 15:33:18 2012 Content-Type: multipart/mixed; boundary="===============3175656009148602299==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11871) Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click Date: Mon, 23 Jan 2012 15:33:18 -0500 Message-ID: <838460537.17742.1327350798257.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1495571967.52108.1326200889891.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3175656009148602299== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11871?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11871: ---------------------------------- Assignee: Jan Papousek Jan, this works with me on a recent SNAPSHOT. It was possibly fixed with t= he recent Atmosphere upgrade that Lukas did. Can you please try this again to confirm it is no longer an issue? = > Mobile Showcase and a4j:poll demo: stop button doesn't respond on the fir= st click > -------------------------------------------------------------------------= -------- > > Key: RF-11871 > URL: https://issues.jboss.org/browse/RF-11871 > 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 > Reporter: Jan Papousek > Assignee: 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 --===============3175656009148602299==-- From jira-events at lists.jboss.org Mon Jan 23 15:39:19 2012 Content-Type: multipart/mixed; boundary="===============4701433549561479634==" 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: Mon, 23 Jan 2012 15:39:19 -0500 Message-ID: <170644102.17778.1327351159143.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4701433549561479634== 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. -------------------------------- Assignee: Brian Leathem Resolution: Cannot Reproduce Bug Unable to reproduce with a recent RichFaces SNAPSHOT, and Google chrome 16.= If you continue to observe this behavior, please re-open the issue includ= ing details of your browser environment. = > 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 = > Reporter: Jan Papousek > 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 --===============4701433549561479634==-- From jira-events at lists.jboss.org Mon Jan 23 15:41:18 2012 Content-Type: multipart/mixed; boundary="===============4792594288526045767==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11874) rich:extendedDataTable keyboard navigation fails in IE8 Date: Mon, 23 Jan 2012 15:41:18 -0500 Message-ID: <1768637260.17782.1327351278377.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1410319121.2645.1326369141473.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4792594288526045767== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11874?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11874: ---------------------------------- Assignee: Pavol Pitonak QE, please verify. = > rich:extendedDataTable keyboard navigation fails in IE8 > ------------------------------------------------------- > > Key: RF-11874 > URL: https://issues.jboss.org/browse/RF-11874 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2 > Internet Explorer version 8.0.7601.17514 > Reporter: Dmitry Volkov > Assignee: Pavol Pitonak > > Continous keyboard navigation fails in IE8 when ajax loading(clientRows= =3D"..") used. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4792594288526045767==-- From jira-events at lists.jboss.org Mon Jan 23 15:43:19 2012 Content-Type: multipart/mixed; boundary="===============1021907401894335325==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11875) rich:extendedDataTable in ajax loading mode, crashes when dataset length changes between requests Date: Mon, 23 Jan 2012 15:43:18 -0500 Message-ID: <569591025.17786.1327351398497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1944546618.3014.1326375801528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1021907401894335325== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11875: ---------------------------------- Assignee: Pavol Pitonak QE, please confirm = > rich:extendedDataTable in ajax loading mode, crashes when dataset length = changes between requests > -------------------------------------------------------------------------= ------------------------ > > Key: RF-11875 > URL: https://issues.jboss.org/browse/RF-11875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.1.0.Final > Environment: JSF-RI 2.0, Tomcat 6.0.29 > Reporter: Dmitry Volkov > Assignee: Pavol Pitonak > > rich:extendedDataTable in ajax loading mode(clientRows=3D".."), crashes w= hen dataset length changes between requests. > It makes ajax loading mode unusable for database paging. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1021907401894335325==-- From jira-events at lists.jboss.org Mon Jan 23 15:45:18 2012 Content-Type: multipart/mixed; boundary="===============8583070344568587021==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11879) Add examle of usage of a4j:actionListener into RF showcase Date: Mon, 23 Jan 2012 15:45:18 -0500 Message-ID: <1815466880.17791.1327351518553.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 43091471.3804.1326385042424.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8583070344568587021== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11879?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11879: ------------------------------- Fix Version/s: 4.2.0.CR1 = > Add examle of usage of a4j:actionListener into RF showcase > ---------------------------------------------------------- > > Key: RF-11879 > URL: https://issues.jboss.org/browse/RF-11879 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Reporter: Marek Novotny > Priority: Minor > Fix For: 4.2.0.CR1 > > > a4j:actionListener is not presented in showcase example -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8583070344568587021==-- From jira-events at lists.jboss.org Mon Jan 23 15:49:19 2012 Content-Type: multipart/mixed; boundary="===============4388485273541856304==" 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: Mon, 23 Jan 2012 15:49:19 -0500 Message-ID: <1928371595.17799.1327351759210.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1733561605.53594.1326459021528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4388485273541856304== 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 updated RF-11882: ------------------------------- Description: = I get a = FATAL: {code} ...javax.faces.FacesException: Error in conversion Java Object to JavaScript 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.javascript.= PropertyUtils can not access a member of class java.util.HashMap$Entry with= 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 so= rt it before I return it: private List> sortDataIntoList(Map d= ata) { 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 obj= ect e.g. something like = http://stackoverflow.com/questions/521171/a-java-collection-of-value-pairs-= tuples was: I get a = FATAL: ...javax.faces.FacesException: Error in conversion Java Object to JavaScript 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.javascript.= PropertyUtils can not access a member of class java.util.HashMap$Entry with= modifiers "public final" Which wasn't there in richfaces 3.3.3 The code snippet: class MyBean{ public String actionMethod(){ ....do something which creates a Map data, now I want to so= rt it before I return it: private List> sortDataIntoList(Map d= ata) { 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;} } } results in the mentioned error A possible workaround is to use one's own implementation of a key value obj= ect e.g. something like = http://stackoverflow.com/questions/521171/a-java-collection-of-value-pairs-= tuples = > 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 > Priority: Minor > > 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 --===============4388485273541856304==-- From jira-events at lists.jboss.org Mon Jan 23 15:57:18 2012 Content-Type: multipart/mixed; boundary="===============5012716898592701084==" 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: Mon, 23 Jan 2012 15:57:18 -0500 Message-ID: <1949789890.17816.1327352238233.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1733561605.53594.1326459021528.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5012716898592701084== 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.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661291#com= ment-12661291 ] = Brian Leathem commented on RF-11882: ------------------------------------ Would you please frovide a complete, [self-contained example|http://sscce.o= rg/] demonstrating this behavior? = = > 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 > 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 --===============5012716898592701084==-- From jira-events at lists.jboss.org Mon Jan 23 15:59:18 2012 Content-Type: multipart/mixed; boundary="===============1126172033086766346==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11887) Showcase: ajax transitions between demos/samples Date: Mon, 23 Jan 2012 15:59:18 -0500 Message-ID: <1115992687.17822.1327352358477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 410816163.1013.1326713298365.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1126172033086766346== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11887?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11887: ------------------------------- Fix Version/s: 4.Future = > Showcase: ajax transitions between demos/samples > ------------------------------------------------ > > Key: RF-11887 > URL: https://issues.jboss.org/browse/RF-11887 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: showcase > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.Future > > > When navigating between demos/samples, whole page updates are necessary c= urrently. > Navigation may be much more fluent when using Ajax transitions only. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1126172033086766346==-- From jira-events at lists.jboss.org Mon Jan 23 15:59:18 2012 Content-Type: multipart/mixed; boundary="===============2847237135475640437==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11886) Style of the panelMenu changed from 4.1 Date: Mon, 23 Jan 2012 15:59:18 -0500 Message-ID: <1786760464.17818.1327352358366.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 383594832.626.1326705438390.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2847237135475640437== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11886?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11886. -------------------------------- Resolution: Won't Fix The menupanel border was removed with the addition of round-corner support = - when the menu items have round corners, the border doesn't look right. = > Style of the panelMenu changed from 4.1 > --------------------------------------- > > Key: RF-11886 > URL: https://issues.jboss.org/browse/RF-11886 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Environment: Showcase = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Attachments: new.png, old.png > > > On the screenshots, there is visual change of panelMenu from 4.1 (http://= showcase.richfaces.org/), > the border around the panelMenu has been 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 = --===============2847237135475640437==-- From jira-events at lists.jboss.org Mon Jan 23 15:59:18 2012 Content-Type: multipart/mixed; boundary="===============9018837692529294676==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11886) Style of the panelMenu changed from 4.1 Date: Mon, 23 Jan 2012 15:59:18 -0500 Message-ID: <1306649188.17820.1327352358420.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 383594832.626.1326705438390.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9018837692529294676== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11886?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11886: ---------------------------------- Assignee: Brian Leathem = > Style of the panelMenu changed from 4.1 > --------------------------------------- > > Key: RF-11886 > URL: https://issues.jboss.org/browse/RF-11886 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Environment: Showcase = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Priority: Minor > Attachments: new.png, old.png > > > On the screenshots, there is visual change of panelMenu from 4.1 (http://= showcase.richfaces.org/), > the border around the panelMenu has been 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 = --===============9018837692529294676==-- From jira-events at lists.jboss.org Mon Jan 23 16:01:18 2012 Content-Type: multipart/mixed; boundary="===============7391093765248976751==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11888) Resource Servlet can't handle query string appended to resource url Date: Mon, 23 Jan 2012 16:01:18 -0500 Message-ID: <415629244.17838.1327352478587.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7391093765248976751== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661295#com= ment-12661295 ] = Brian Leathem commented on RF-11888: ------------------------------------ Note: When you upgrade from version 4.1 to 4.2, the URL for packed.js will = change: https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource/o= rg.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/pac= ked.css?v=3D23 Not the RichFaces version in the URL. = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > Priority: Critical > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. > This is essential to cause a browser to issue a request to the server if = a static > resource is held in a browser cache and is not expired, but you've upgrad= ed the > richfaces version. You have to have a way to invalidate the cache, and I'= m not > seeing how this can be done in a sensible way. You can set the Cache-Cont= rol > no-cache header, but I'd need to do this in a way that says "I've just up= graded > richfaces, so don't use the cache, issue a request to the server for the = resource, > but cache the result and use this until the next time". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7391093765248976751==-- From jira-events at lists.jboss.org Mon Jan 23 16:01:19 2012 Content-Type: multipart/mixed; boundary="===============1679554489435360499==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11888) Resource Servlet can't handle query string appended to resource url Date: Mon, 23 Jan 2012 16:01:18 -0500 Message-ID: <243073932.17842.1327352478809.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1679554489435360499== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11888: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, please assess and schedule accordingly. = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. > This is essential to cause a browser to issue a request to the server if = a static > resource is held in a browser cache and is not expired, but you've upgrad= ed the > richfaces version. You have to have a way to invalidate the cache, and I'= m not > seeing how this can be done in a sensible way. You can set the Cache-Cont= rol > no-cache header, but I'd need to do this in a way that says "I've just up= graded > richfaces, so don't use the cache, issue a request to the server for the = resource, > but cache the result and use this until the next time". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1679554489435360499==-- From jira-events at lists.jboss.org Mon Jan 23 16:23:18 2012 Content-Type: multipart/mixed; boundary="===============5993842811209091536==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11891) Simple bug in org.richfaces.resource.Xcss2EcssConverter Date: Mon, 23 Jan 2012 16:23:18 -0500 Message-ID: <2079098074.17868.1327353798357.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 815303006.6467.1326841279163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5993842811209091536== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11891?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11891: ------------------------------- Fix Version/s: 4.2.0.CR1 Priority: Trivial (was: Major) Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Simple bug in org.richfaces.resource.Xcss2EcssConverter > ------------------------------------------------------- > > Key: RF-11891 > URL: https://issues.jboss.org/browse/RF-11891 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Environment: Any > Reporter: Dmytro Batishchev > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.2.0.CR1 > > > Simple bug in org.richfaces.resource.Xcss2EcssConverter classfile in main= class, please, comment out or delete next line: = > {quote} > _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/jav= a/org/ajax4jsf/cache/extended.xcss"_ > {quote} > PS: Sorry for my English. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5993842811209091536==-- From jira-events at lists.jboss.org Mon Jan 23 16:23:18 2012 Content-Type: multipart/mixed; boundary="===============3536246195795789219==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11891) Simple bug in org.richfaces.resource.Xcss2EcssConverter Date: Mon, 23 Jan 2012 16:23:18 -0500 Message-ID: <1758231896.17866.1327353798303.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 815303006.6467.1326841279163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3536246195795789219== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11891?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661300#com= ment-12661300 ] = Brian Leathem commented on RF-11891: ------------------------------------ Simply commenting out this line would break the subsequent line: {code} String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/java/o= rg/ajax4jsf/cache/extended.xcss"; parser.parse(string); {code} rather, given that this is a _public static void main_ method, I suspect th= e string should be set to _args\[0\]_. = > Simple bug in org.richfaces.resource.Xcss2EcssConverter > ------------------------------------------------------- > > Key: RF-11891 > URL: https://issues.jboss.org/browse/RF-11891 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Final > Environment: Any > Reporter: Dmytro Batishchev > Fix For: 4.2.0.CR1 > > > Simple bug in org.richfaces.resource.Xcss2EcssConverter classfile in main= class, please, comment out or delete next line: = > {quote} > _String string =3D "E:/projs/richafces4/framework/trunk/impl/src/test/jav= a/org/ajax4jsf/cache/extended.xcss"_ > {quote} > PS: Sorry for my English. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3536246195795789219==-- From jira-events at lists.jboss.org Mon Jan 23 16:30:18 2012 Content-Type: multipart/mixed; boundary="===============0749929654767616326==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11910) Showcase: reduntant MANIFEST.MF, it is configured in pom.xml and also in resources Date: Mon, 23 Jan 2012 16:30:18 -0500 Message-ID: <1293644671.17871.1327354218286.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 850752854.13850.1327076298214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0749929654767616326== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11910?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11910. -------------------------------- Assignee: Brian Leathem Resolution: Won't Fix The problem is, maven only generates the manifest.mf file during the packag= e phase, not during the compile phase. This causes a problem when you run = the showcase from the exploded directory, as the exploded directory does no= t have the MANIFEST.MF file present. The file is duplicated here as a work= around for this maven behavior. If you have an alternate solution/workaround for this problem, feel free to= re-open this issue. = > Showcase: reduntant MANIFEST.MF, it is configured in pom.xml and also in = resources > -------------------------------------------------------------------------= --------- > > Key: RF-11910 > URL: https://issues.jboss.org/browse/RF-11910 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > > These files should be merged, and only {{pom.xml}} should be used prefera= bly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0749929654767616326==-- From jira-events at lists.jboss.org Mon Jan 23 16:43:19 2012 Content-Type: multipart/mixed; boundary="===============8690658260735736910==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11855) error@malformedXML on inputText files - Ajax Validation on event change - RichFaces 4.1 Final Date: Mon, 23 Jan 2012 16:43:19 -0500 Message-ID: <876353185.17908.1327354999249.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 26805713.30230.1324582930232.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8690658260735736910== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11855?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11855. -------------------------------- Assignee: Brian Leathem Resolution: Won't Fix Without a [short, self-contained example|http://sscce.org/] demonstrating t= he error, it is impossible to isolate the problem causing the malformed XML= response -- there are to many variables at play to proceed. Feel free to re-open with a simple example that demonstrates the problem. = > error(a)malformedXML on inputText files - Ajax Validation on event change= - RichFaces 4.1 Final = > -------------------------------------------------------------------------= --------------------- > > Key: RF-11855 > URL: https://issues.jboss.org/browse/RF-11855 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Environment: Websphere 8.0.0.1 - RAD 8.0.0.4 - JSF Mojorra 2.1.4 = - Spring 3.0.6 Final - Hibernate Validator 4.2. - Java 6 > Reporter: Jean ANDRE > Assignee: Brian Leathem > Labels: INPUT, MALFORMED, UI, XML > Attachments: createClient1.xhtml, CreateClientController1.java, e= rror(a)malformedXML-ScreenShot-1.jpg, error(a)malformedXML.debug.txt, error= (a)malformedXML.viewSource.html, index.xhtml > > > We got a error(a)malformedXML message when we want to apply an ajax valid= ation on imput text. > The field is include inside a tab in mode "server" - What ever the mode, = we getting the error. Tab content is built by including some xhtml. See att= achment. > {code} > > 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:c=3D"http://java.sun.com/jsp/jstl/core" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > > > > > > > > > > > {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 --===============8690658260735736910==-- From jira-events at lists.jboss.org Mon Jan 23 16:47:18 2012 Content-Type: multipart/mixed; boundary="===============1426506562721248287==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11867) showcase - rich:hotKey - pressing of home or end key causes moving of whole page instead of just selected/removing all cities on FF 3.6.x Date: Mon, 23 Jan 2012 16:47:18 -0500 Message-ID: <1813540518.17926.1327355238522.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1258943306.48046.1326104829526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1426506562721248287== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11867?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11867: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, please assess and schedule accordingly = > showcase - rich:hotKey - pressing of home or end key causes moving of who= le page instead of just selected/removing all cities on FF 3.6.x > -------------------------------------------------------------------------= ---------------------------------------------------------------- > > Key: RF-11867 > URL: https://issues.jboss.org/browse/RF-11867 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.2.0.CR1 > Environment: container: Tomcat 7.0.20, JBoss AS 6.0.0.Final > browser: Firefox 3.6.24 > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > The current binding for selecting/removing all cities in the demo for ric= h:hotKey are 'home' and 'end' buttons respectively. > It works as expected on Chrome and Firefox 8, however it is not working a= s expected on *Firefox 3.6.x*. > *Pressing of 'home' of 'end' button (city is selected, so the pickList ha= s user focus) causes moving of the whole page, like the pickList has no foc= us. The cities are added/removed too, but with the side effect of the page = moving, which indeed looks a little ugly.* > The workaround can be to use other keys. = > What I would really appreciate is to bind some key to the switching betwe= en the two panels. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1426506562721248287==-- From jira-events at lists.jboss.org Mon Jan 23 16:47:18 2012 Content-Type: multipart/mixed; boundary="===============6803508804951835491==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11868) showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3.6.x Date: Mon, 23 Jan 2012 16:47:18 -0500 Message-ID: <1326044153.17928.1327355238589.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 992167140.48074.1326105790453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6803508804951835491== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11868?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11868: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, please assess and schedule accordingly = > showcase - rich:hotKey - using bound hotKeys generates JS warning on FF 3= .6.x > -------------------------------------------------------------------------= ---- > > Key: RF-11868 > URL: https://issues.jboss.org/browse/RF-11868 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-misc, showcase > Affects Versions: 4.2.0.CR1 > Environment: container: all > browser: Firefox 3.6.x > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > Using of bound hot keys in the demo for rich:hotKey generates on Firefox = 3.6.x a warning: > {code} > The 'charCode' property of a keydown event should not be used. The value = is meaningless. > {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 = --===============6803508804951835491==-- From jira-events at lists.jboss.org Mon Jan 23 16:51:18 2012 Content-Type: multipart/mixed; boundary="===============7389754687967829073==" MIME-Version: 1.0 From: Brian Leathem (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, 23 Jan 2012 16:51:18 -0500 Message-ID: <138179345.17942.1327355478688.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7389754687967829073== 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 ] Brian Leathem reassigned RF-11905: ---------------------------------- Assignee: Juraj Huska When I shutdown AS 7 (7.0.2), I see: {code} 13:48:32,403 INFO [org.hibernate.tool.hbm2ddl.SchemaExport] HHH00227:Runni= ng hbm2ddl schema export 13:48:32,408 INFO [org.hibernate.tool.hbm2ddl.SchemaExport] HHH00230:Schem= a export complete {code} Can you provide details describing how to reproduce the error message you r= eported? = > 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: Juraj Huska > Priority: Minor > > 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 =20 --===============7389754687967829073==-- From jira-events at lists.jboss.org Mon Jan 23 16:53:18 2012 Content-Type: multipart/mixed; boundary="===============1515504403508619549==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11913) Simplify Documentation and Process of using Resource Packing with Custom Skins Date: Mon, 23 Jan 2012 16:53:18 -0500 Message-ID: <749974989.17948.1327355598258.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 130703154.17370.1327337778226.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1515504403508619549== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11913?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11913: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Lukas, please assess and schedule accordingly. = > Simplify Documentation and Process of using Resource Packing with Custom = Skins > -------------------------------------------------------------------------= ----- > > Key: RF-11913 > URL: https://issues.jboss.org/browse/RF-11913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final > Reporter: Cody Lerum > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Once a user creates their own skin the steps to enable resource packing a= re complex and not all documented in a easy to find manner. > At a minimum it would be nice to just pack the 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 = --===============1515504403508619549==-- From jira-events at lists.jboss.org Mon Jan 23 17:17:18 2012 Content-Type: multipart/mixed; boundary="===============7894605960527936607==" MIME-Version: 1.0 From: Brendan Healey (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11888) Resource Servlet can't handle query string appended to resource url Date: Mon, 23 Jan 2012 17:17:18 -0500 Message-ID: <1992657818.17957.1327357038289.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 787852126.1337.1326719298230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7894605960527936607== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11888?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661316#com= ment-12661316 ] = Brendan Healey commented on RF-11888: ------------------------------------- >Note: When you upgrade from version 4.1 to 4.2, the URL for packed.js will= change: Hello Brian, that's a very good point - that definitely takes the edge off = my concerns, I should have realised this myself, too much coding. Thanks. = > Resource Servlet can't handle query string appended to resource url > ------------------------------------------------------------------- > > Key: RF-11888 > URL: https://issues.jboss.org/browse/RF-11888 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.1.0.Final > Environment: Glassfish 3.1.1 (NO Tomcat)/Mojarra 2.1.3 Chrome bro= wser - = > Reporter: Brendan Healey > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > > A custom resource handler (http://blogs.oracle.com/rlubke/entry/jsf_2_0_n= ew_feature) > can be used to append a version string (i.e. ?v=3D23) to a resource url t= o force a > browser to refresh a resource rather than use any cached version. > At present any appending of a version string causes a 404 response status= , for example: > Request URL: > https://localhost:8181/MyApp/org.richfaces.resources/javax.faces.resource= /org.richfaces.staticResource/4.1.0.Final/PackedCompressed/blueSky/packed/p= acked.css?v=3D23 > Removing the url parameter makes it work ok. As you can see I have resour= ceMapping > enabled. > This is essential to cause a browser to issue a request to the server if = a static > resource is held in a browser cache and is not expired, but you've upgrad= ed the > richfaces version. You have to have a way to invalidate the cache, and I'= m not > seeing how this can be done in a sensible way. You can set the Cache-Cont= rol > no-cache header, but I'd need to do this in a way that says "I've just up= graded > richfaces, so don't use the cache, issue a request to the server for the = resource, > but cache the result and use this until the next time". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7894605960527936607==-- From jira-events at lists.jboss.org Mon Jan 23 17:19:18 2012 Content-Type: multipart/mixed; boundary="===============3137649424707364014==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11914) Would like to see a dynamic subtable option for extendedDataTable Date: Mon, 23 Jan 2012 17:19:18 -0500 Message-ID: <1120039950.17960.1327357158397.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1890896963.17700.1327348938263.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3137649424707364014== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11914?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11914: ------------------------------- Fix Version/s: 4.Future Scheduling to 4.Future for now, we'll re-visit when we look at all outstand= ing EDT feature requests. = > Would like to see a dynamic subtable option for extendedDataTable > ----------------------------------------------------------------- > > Key: RF-11914 > URL: https://issues.jboss.org/browse/RF-11914 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Reporter: Robert Gary > Priority: Minor > Fix For: 4.Future > > > In RF 3.3.3 extendedDataTable offered the ability for the user to select = any column and subgroup on it. This is no longer supported in RF 4.X. We do= have the callapsibleSubTable tag but it requires each column to be pre-con= figured for subtable grouping. Could subtable grouping simply be an attribu= te on the column??? > > We would also want to allow the user to customize the expand/collapse sub= table icon once the subtable grouping is enabled. > -Robert -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3137649424707364014==-- From jira-events at lists.jboss.org Mon Jan 23 17:35:20 2012 Content-Type: multipart/mixed; boundary="===============5230112316299941026==" MIME-Version: 1.0 From: Robert Gary (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11914) Would like to see a dynamic subtable option for extendedDataTable Date: Mon, 23 Jan 2012 17:35:18 -0500 Message-ID: <761353395.17978.1327358118406.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1890896963.17700.1327348938263.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5230112316299941026== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11914?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661321#com= ment-12661321 ] = Robert Gary commented on RF-11914: ---------------------------------- Perhaps a better interface would be to add the option on the EDT tag... Where columntoSubgroupOn resolved to "name" This would prevent the uncomfortable situation that would arise if the user= were able to request more than one column to be subgrouped on. = > Would like to see a dynamic subtable option for extendedDataTable > ----------------------------------------------------------------- > > Key: RF-11914 > URL: https://issues.jboss.org/browse/RF-11914 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Final > Reporter: Robert Gary > Priority: Minor > Fix For: 4.Future > > > In RF 3.3.3 extendedDataTable offered the ability for the user to select = any column and subgroup on it. This is no longer supported in RF 4.X. We do= have the callapsibleSubTable tag but it requires each column to be pre-con= figured for subtable grouping. Could subtable grouping simply be an attribu= te on the column??? > > We would also want to allow the user to customize the expand/collapse sub= table icon once the subtable grouping is enabled. > -Robert -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5230112316299941026==-- From jira-events at lists.jboss.org Tue Jan 24 04:21:18 2012 Content-Type: multipart/mixed; boundary="===============7441923255875062605==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11871) Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click Date: Tue, 24 Jan 2012 04:21:18 -0500 Message-ID: <1531747908.18566.1327396878418.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1495571967.52108.1326200889891.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7441923255875062605== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11871?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-11871: ------------------------------ Attachment: richfaces-showcase-4.2.0-20120123.231757-13-jbas7.war = > Mobile Showcase and a4j:poll demo: stop button doesn't respond on the fir= st click > -------------------------------------------------------------------------= -------- > > Key: RF-11871 > URL: https://issues.jboss.org/browse/RF-11871 > 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 > Reporter: Jan Papousek > Assignee: Jan Papousek > 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 --===============7441923255875062605==-- From jira-events at lists.jboss.org Tue Jan 24 04:25:18 2012 Content-Type: multipart/mixed; boundary="===============3691001351150554490==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11871) Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click Date: Tue, 24 Jan 2012 04:25:18 -0500 Message-ID: <268051908.18568.1327397118263.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1495571967.52108.1326200889891.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3691001351150554490== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11871?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-11871: ------------------------------ Steps to Reproduce: = # download Showcase WAR file from attachments # start JBoss AS 7 # deploy the WAR file and open http://localhost:8080/showcase/phoneHome.js= f#poll:poll = # click on the "Stop" button -> nothing happens (wrong) # click on the "Stop" button again -> polling is stopped (correct) Environment: = richfaces-showcase-4.1.1-20120106.230242-18 / richfaces-showcase-4.2.0-2012= 0123.231757-13 JBoss AS 7.0.2.Final / 7.1.0.Beta1 Firefox 8.0 / Google Chrome 16.0.912.63 / Android 2.2 was:richfaces-showcase-4.1.1-20120106.230242-18 Workaround Description: (was: # deploy showcase and open http://local= host:8080/showcase/phoneHome.jsf#poll:poll (or open http://showcase-jpapous= e.rhcloud.com/phoneHome.jsf#poll:poll without deploying) # click on the "Stop" button -> nothing happens (wrong) # click on the "Stop" button again -> polling is stopped (correct)) = > Mobile Showcase and a4j:poll demo: stop button doesn't respond on the fir= st click > -------------------------------------------------------------------------= -------- > > Key: RF-11871 > URL: https://issues.jboss.org/browse/RF-11871 > 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 > Reporter: Jan Papousek > Assignee: Jan Papousek > 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 --===============3691001351150554490==-- From jira-events at lists.jboss.org Tue Jan 24 04:29:18 2012 Content-Type: multipart/mixed; boundary="===============4929720040938454938==" 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: Tue, 24 Jan 2012 04:29:18 -0500 Message-ID: <1182468396.18575.1327397358524.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4929720040938454938== 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 updated RF-11872: ------------------------------ Attachment: richfaces-showcase-4.2.0-20120123.231757-13-jbas7.war = > 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 = > Reporter: Jan Papousek > Assignee: Brian Leathem > 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 --===============4929720040938454938==-- From jira-events at lists.jboss.org Tue Jan 24 04:29:18 2012 Content-Type: multipart/mixed; boundary="===============0842950919751249875==" 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: Tue, 24 Jan 2012 04:29:18 -0500 Message-ID: <768817335.18572.1327397358421.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0842950919751249875== 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 reopened RF-11872: ------------------------------- The issue isn't fixed,. so I'll update the description. = > 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 = > Reporter: Jan Papousek > Assignee: Brian Leathem > 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 --===============0842950919751249875==-- From jira-events at lists.jboss.org Tue Jan 24 04:31:18 2012 Content-Type: multipart/mixed; boundary="===============1005730456872996619==" 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: Tue, 24 Jan 2012 04:31:18 -0500 Message-ID: <30219553.18588.1327397478876.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1005730456872996619== 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 updated RF-11872: ------------------------------ Steps to Reproduce: = # download Showcase WAR file from attachments # start JBoss AS 7 # deploy the WAR file and open http://localhost:8080/showcase/phoneHome.jsf= #region:region # type something into the name and e-mail input fields # click on the "Submit" button -> nothing happens (wrong) # click on the "Submit" button again -> the form is submitted (correct) was: # download Showcase WAR file from attachments # start JBoss AS 7 # deploy the WAR fileand open http://localhost:8080/showcase/phoneHome.jsf#= region:region # type something into the name and e-mail input fields # click on the "Submit" button -> nothing happens (wrong) # click on the "Submit" button again -> the form is submitted (correct) = > 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 = > Reporter: Jan Papousek > Assignee: Brian Leathem > 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 --===============1005730456872996619==-- From jira-events at lists.jboss.org Tue Jan 24 04:31:18 2012 Content-Type: multipart/mixed; boundary="===============7126443099212025468==" 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: Tue, 24 Jan 2012 04:31:18 -0500 Message-ID: <385128133.18584.1327397478608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7126443099212025468== 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.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661373#com= ment-12661373 ] = Jan Papousek edited comment on RF-11872 at 1/24/12 4:29 AM: ------------------------------------------------------------ The issue isn't fixed, so I'll update the description. = was (Author: jpapouse): The issue isn't fixed,. so I'll update the description. = > 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 = > Reporter: Jan Papousek > Assignee: Brian Leathem > 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 --===============7126443099212025468==-- From jira-events at lists.jboss.org Tue Jan 24 04:31:18 2012 Content-Type: multipart/mixed; boundary="===============0124270352147092155==" 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: Tue, 24 Jan 2012 04:31:18 -0500 Message-ID: <273555640.18582.1327397478483.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1714655772.52122.1326201429582.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0124270352147092155== 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 updated RF-11872: ------------------------------ Steps to Reproduce: = # download Showcase WAR file from attachments # start JBoss AS 7 # deploy the WAR fileand open http://localhost:8080/showcase/phoneHome.jsf#= region:region # type something into the name and e-mail input fields # click on the "Submit" button -> nothing happens (wrong) # click on the "Submit" button again -> the form is submitted (correct) was: # deploy showcase and open http://localhost:8080/showcase/phoneHome.jsf#reg= ion:region (or open http://showcase-jpapouse.rhcloud.com/phoneHome.jsf#regi= on:region without deploying) # type something into the name and e-mail input fields # click on the "Submit" button -> nothing happens (wrong) # click on the "Submit" button again -> the form is submitted (correct) Environment: = richfaces-showcase-4.1.1-20120106.230242-18 / richfaces-showcase-4.2.0-2012= 0123.231757-13 JBoss AS 7.0.2.Final / 7.1.0.Beta1 Firefox 8.0 / Google Chrome 16.0.912.63 / Android 2.2 = was:richfaces-showcase-4.1.1-20120106.230242-18 = = > 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 = > Reporter: Jan Papousek > Assignee: Brian Leathem > 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 --===============0124270352147092155==-- From jira-events at lists.jboss.org Tue Jan 24 04:37:19 2012 Content-Type: multipart/mixed; boundary="===============7665689078664135948==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11871) Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click Date: Tue, 24 Jan 2012 04:37:19 -0500 Message-ID: <1407929753.18615.1327397839087.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1495571967.52108.1326200889891.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7665689078664135948== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11871?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661378#com= ment-12661378 ] = Jan Papousek commented on RF-11871: ----------------------------------- Brian: It's weird. The behaviour is still the same on my computer. Have you= tried mobile version? It's important, because the button works correctly i= n the common version. = > Mobile Showcase and a4j:poll demo: stop button doesn't respond on the fir= st click > -------------------------------------------------------------------------= -------- > > Key: RF-11871 > URL: https://issues.jboss.org/browse/RF-11871 > 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 > Reporter: Jan Papousek > Assignee: Jan Papousek > 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 --===============7665689078664135948==-- From jira-events at lists.jboss.org Tue Jan 24 05:15:18 2012 Content-Type: multipart/mixed; boundary="===============2780729530321445132==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Tue, 24 Jan 2012 05:15:18 -0500 Message-ID: <1373045697.18651.1327400118572.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2780729530321445132== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661380#com= ment-12661380 ] = Juraj Huska commented on RF-11903: ---------------------------------- I could not reproduce any of above mentioned errors after building componen= ts and showcase snapshots. = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Assignee: Juraj Huska > Fix For: 4.2.0.CR1 > > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2780729530321445132==-- From jira-events at lists.jboss.org Tue Jan 24 05:23:19 2012 Content-Type: multipart/mixed; boundary="===============0524388719870453009==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Tue, 24 Jan 2012 05:23:19 -0500 Message-ID: <1877875573.18674.1327400599880.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0524388719870453009== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661380#com= ment-12661380 ] = Juraj Huska edited comment on RF-11903 at 1/24/12 5:23 AM: ----------------------------------------------------------- I could not reproduce any of above mentioned errors after building componen= ts and showcase snapshots. So as you guess the upgrade of Atmosphere fixed it. = was (Author: jhuska): I could not reproduce any of above mentioned errors after building comp= onents and showcase snapshots. = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Assignee: Juraj Huska > Fix For: 4.2.0.CR1 > > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0524388719870453009==-- From jira-events at lists.jboss.org Tue Jan 24 05:25:19 2012 Content-Type: multipart/mixed; boundary="===============0060599441055273312==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Tue, 24 Jan 2012 05:25:19 -0500 Message-ID: <5261767.18696.1327400719501.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0060599441055273312== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska closed RF-11903. ---------------------------- = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Assignee: Juraj Huska > Fix For: 4.2.0.CR1 > > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0060599441055273312==-- From jira-events at lists.jboss.org Tue Jan 24 05:25:19 2012 Content-Type: multipart/mixed; boundary="===============4310028123875828209==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Tue, 24 Jan 2012 05:25:19 -0500 Message-ID: <655101294.18688.1327400719085.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4310028123875828209== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska resolved RF-11903. ------------------------------ Resolution: Done Fixed with Atmosphere upgrade. = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Assignee: Juraj Huska > Fix For: 4.2.0.CR1 > > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4310028123875828209==-- From jira-events at lists.jboss.org Tue Jan 24 05:32:18 2012 Content-Type: multipart/mixed; boundary="===============0814217723290500290==" MIME-Version: 1.0 From: Jan Papousek (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11871) Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click Date: Tue, 24 Jan 2012 05:32:18 -0500 Message-ID: <1854304381.18713.1327401138294.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1495571967.52108.1326200889891.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0814217723290500290== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11871?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jan Papousek updated RF-11871: ------------------------------ Assignee: Brian Leathem (was: Jan Papousek) = > Mobile Showcase and a4j:poll demo: stop button doesn't respond on the fir= st click > -------------------------------------------------------------------------= -------- > > Key: RF-11871 > URL: https://issues.jboss.org/browse/RF-11871 > 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 > Reporter: Jan Papousek > Assignee: Brian Leathem > 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 --===============0814217723290500290==-- From jira-events at lists.jboss.org Tue Jan 24 06:31:18 2012 Content-Type: multipart/mixed; boundary="===============2814288379232516500==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Hala=C5=A1a_=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-11915) MenuGroup with all items disabled or no items causes JS error Date: Tue, 24 Jan 2012 06:31:18 -0500 Message-ID: <2107920490.18850.1327404678300.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2814288379232516500== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable J=C3=A1n Hala=C5=A1a created RF-11915: ------------------------------- Summary: MenuGroup with all items disabled or no items causes = JS error Key: RF-11915 URL: https://issues.jboss.org/browse/RF-11915 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu Affects Versions: 4.1.0.Final Environment: Tomcat 6.0.26, MyFaces 2.1.13, RichFaces Reporter: J=C3=A1n Hala=C5=A1a Submenu (r:menuGroup) containing only disabled items or no items, causes a = JavaScript error when it is supposed to get hidden (moving cursor to the ne= xt item in the parent menu). In Firefox 9: parentMenu is undefined menu-base.js, line 126 In MSIE 7: 'nodeType' is null or not an object richfaces.js, line 43 It's the same error only reported from the different level of the call stac= k. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2814288379232516500==-- From jira-events at lists.jboss.org Tue Jan 24 07:24:18 2012 Content-Type: multipart/mixed; boundary="===============5083982161048661800==" 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: Tue, 24 Jan 2012 07:24:18 -0500 Message-ID: <85845914.18920.1327407858366.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5083982161048661800== 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=3D12661409#com= ment-12661409 ] = Juraj Huska commented on RF-11905: ---------------------------------- After first starting of JBoss it shuts down as you said. = It is noticeable after several shut downing. = I have also found AS7-2045, where they suffer the same problem. It seems th= erefore that it is AS problem, not showcase. I have tried also the workaround described in that JIRA, but I am not sure = whether I have set it up correctly, since in showcase we are using dataSour= ce to provide persistence connection. = > 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: Juraj Huska > Priority: Minor > > 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 =20 --===============5083982161048661800==-- From jira-events at lists.jboss.org Tue Jan 24 07:24:18 2012 Content-Type: multipart/mixed; boundary="===============1695092632409198109==" 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: Tue, 24 Jan 2012 07:24:18 -0500 Message-ID: <1762263254.18922.1327407858527.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 567082387.11072.1326986119167.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1695092632409198109== 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 reassigned RF-11905: -------------------------------- Assignee: (was: Juraj Huska) = > 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 > Priority: Minor > > 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 =20 --===============1695092632409198109==-- From jira-events at lists.jboss.org Tue Jan 24 08:30:18 2012 Content-Type: multipart/mixed; boundary="===============3121872247107770748==" 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-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Tue, 24 Jan 2012 08:30:18 -0500 Message-ID: <1084332583.19025.1327411818419.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3121872247107770748== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-11903: ----------------------------- = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Assignee: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3121872247107770748==-- From jira-events at lists.jboss.org Tue Jan 24 08:30:18 2012 Content-Type: multipart/mixed; boundary="===============5703040531468238855==" 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-11903) showcase - a4j:push - error on the server side, Unable to resume the suspended connection with latchId Date: Tue, 24 Jan 2012 08:30:18 -0500 Message-ID: <1268704222.19028.1327411818561.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1647203784.10826.1326982278758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5703040531468238855== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11903?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11903. ----------------------------- Fix Version/s: (was: 4.2.0.CR1) Resolution: Duplicate Issue = > showcase - a4j:push - error on the server side, Unable to resume the sus= pended connection with latchId > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-11903 > URL: https://issues.jboss.org/browse/RF-11903 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, showcase, third-party > Affects Versions: 4.1.0.Final > Environment: container: JBoss AS 6.0.0.Final, JBoss AS 7.0.2.Fina= l, JBoss AS 7.1.0.CR1b > browsers: all > application: showcase 4.2.0-SNAPSHOT = > Reporter: Juraj Huska > Assignee: Juraj Huska > > *All* demos for 14j:push are causing *error* on the server side when it i= s pushing something to them: > {code} > 15:03:42,962 ERROR [org.atmosphere.container.BlockingIOCometSupport] Unab= le to resume the suspended connection with latchId: 11597405 > {code} > Note that the latchId is for each push different. *The functionality* how= ever remains *ok*, at least for Topics context usage and JMS push. > This particular error is thrown only on *JBoss AS 6*, *other containers* = throws also some errors, please see the comments below. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5703040531468238855==-- From jira-events at lists.jboss.org Tue Jan 24 08:34:18 2012 Content-Type: multipart/mixed; boundary="===============2096387244898299460==" 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-11910) Showcase: reduntant MANIFEST.MF, it is configured in pom.xml and also in resources Date: Tue, 24 Jan 2012 08:34:18 -0500 Message-ID: <1201742167.19039.1327412058230.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 850752854.13850.1327076298214.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2096387244898299460== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11910?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-11910: ----------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Brian Leathem) Brian, we can re-schedule manifest generation to the another phase. I will = investigate if it can help and come back with results. = > Showcase: reduntant MANIFEST.MF, it is configured in pom.xml and also in = resources > -------------------------------------------------------------------------= --------- > > Key: RF-11910 > URL: https://issues.jboss.org/browse/RF-11910 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.1.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > These files should be merged, and only {{pom.xml}} should be used prefera= bly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2096387244898299460==-- From jira-events at lists.jboss.org Tue Jan 24 08:38:18 2012 Content-Type: multipart/mixed; boundary="===============4801238013371729462==" MIME-Version: 1.0 From: Brendan Healey (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11588) HeaderClass is ignored on ExtendedDataTable column Date: Tue, 24 Jan 2012 08:38:18 -0500 Message-ID: <777789222.19046.1327412298757.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1427004328.27237.1319584545776.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4801238013371729462== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11588?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12661427#com= ment-12661427 ] = Brendan Healey commented on RF-11588: ------------------------------------- just hit this one in 4.1.0.Final... for the record = > HeaderClass is ignored on ExtendedDataTable column > -------------------------------------------------- > > Key: RF-11588 > URL: https://issues.jboss.org/browse/RF-11588 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Reporter: Cody Lerum > Priority: Minor > Fix For: 4.Future > > > When a header class is defined on a rich:column inside an rich:extendedDa= taTable it is ignored > Assume > {code} > > Foo > > > {code} > What is rendered is > {code} >
>
>
>
>
>
Foo
>
>
>
>
>
>
>
Foo
>
>
>
>
>
>
>
Foo
>
>
>
>
>
>
>
Foo
>
>
_ elements, and _
_ elements. I suppressed the html scope attribute when the element is not th. Alternatively, we could look changing the _
_ e= lements. = > Data table: The scope attribute on the td element is obsolete > ------------------------------------------------------------- > > Key: RF-11860 > URL: https://issues.jboss.org/browse/RF-11860 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-tables > Affects Versions: 4.1.0.Final > Environment: RichFaces 4.1.1-SNAPSHOT > Metamer 4.1.1-SNAPSHOT r.23118 > Mojarra 2.1.5 > JBoss AS 7.1.0.CR1 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 16.0.912.63 @ Linux i686 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.2.0.CR1 > > > The column footer is rendered as in following code snippet (can be reprod= uced in Metamer http://localhost:8080/metamer/faces/components/richDataTabl= e/facets.xhtml): > {code:xml} >
> State Footer > > Capital Footer<= /span> >
> Footer >
>
>
>
>
>
Foo
>
>