[JBoss JIRA] (RF-13565) RichFaces 4.5 not compilable because of FileUploadResourcesTest
by Michal Petrov (JIRA)
[ https://issues.jboss.org/browse/RF-13565?page=com.atlassian.jira.plugin.s... ]
Michal Petrov reassigned RF-13565:
----------------------------------
Assignee: Michal Petrov
> RichFaces 4.5 not compilable because of FileUploadResourcesTest
> ---------------------------------------------------------------
>
> Key: RF-13565
> URL: https://issues.jboss.org/browse/RF-13565
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: build/distribution
> Affects Versions: 4.5.0.Alpha2
> Environment: RichFaces 4.5.0-SNAPSHOT
> Reporter: Pavol Pitonak
> Assignee: Michal Petrov
> Priority: Blocker
>
> RIchFaces 4.5.0-SNAPSHOT components module cannot be compiled:
> https://jenkins.mw.lab.eng.bos.redhat.com/hudson/view/RichFaces/view/4.5/...
> {code}
> [ERROR] COMPILATION ERROR :
> [INFO] -------------------------------------------------------------
> [ERROR]
> E extends HtmlElement declared in method <E>getElementById(String)
> /mnt/hudson_workspace/workspace/richfaces-4.5-components/components/rich/src/test/java/org/richfaces/request/FileUploadResourcesTest.java:[86,22] error: cannot find symbol
> [ERROR] class Closeables
> /mnt/hudson_workspace/workspace/richfaces-4.5-components/components/rich/src/test/java/org/richfaces/request/FileUploadResourcesTest.java:[152,22] error: cannot find symbol
> [ERROR] class Closeables
> /mnt/hudson_workspace/workspace/richfaces-4.5-components/components/rich/src/test/java/org/richfaces/request/FileUploadResourcesTest.java:[158,22] error: cannot find symbol
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 8 months
[JBoss JIRA] (RF-13565) RichFaces 4.5 not compilable because of FileUploadResourcesTest
by Pavol Pitonak (JIRA)
Pavol Pitonak created RF-13565:
----------------------------------
Summary: RichFaces 4.5 not compilable because of FileUploadResourcesTest
Key: RF-13565
URL: https://issues.jboss.org/browse/RF-13565
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: build/distribution
Affects Versions: 4.5.0.Alpha2
Environment: RichFaces 4.5.0-SNAPSHOT
Reporter: Pavol Pitonak
Priority: Blocker
RIchFaces 4.5.0-SNAPSHOT components module cannot be compiled:
https://jenkins.mw.lab.eng.bos.redhat.com/hudson/view/RichFaces/view/4.5/...
{code}
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR]
E extends HtmlElement declared in method <E>getElementById(String)
/mnt/hudson_workspace/workspace/richfaces-4.5-components/components/rich/src/test/java/org/richfaces/request/FileUploadResourcesTest.java:[86,22] error: cannot find symbol
[ERROR] class Closeables
/mnt/hudson_workspace/workspace/richfaces-4.5-components/components/rich/src/test/java/org/richfaces/request/FileUploadResourcesTest.java:[152,22] error: cannot find symbol
[ERROR] class Closeables
/mnt/hudson_workspace/workspace/richfaces-4.5-components/components/rich/src/test/java/org/richfaces/request/FileUploadResourcesTest.java:[158,22] error: cannot find symbol
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 8 months
[JBoss JIRA] (RF-13564) rich:pickList has unnecessary tabindex in div
by alexey plotnikov (JIRA)
alexey plotnikov created RF-13564:
-------------------------------------
Summary: rich:pickList has unnecessary tabindex in div
Key: RF-13564
URL: https://issues.jboss.org/browse/RF-13564
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Affects Versions: 4.3.5
Reporter: alexey plotnikov
Fix For: 4.3.6
Hi all, i use rich:pickList and i was amazing. If we press left button on a mouse(don't release left button) on rich:pickList we'll see rectangle. You can check it [here|http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=pi...].
I found a solution:
in file template "picklist.template.xml"
{code}
...
<div id="#{clientId}" tabindex="-1" class="#{concatClasses('rf-pick', component.attributes['styleClass'], disabled ? component.attributes['disabledClass'] : '')}" style="#{component.attributes['style']}"
cdk:passThrough="onclick:onclick ondblclick:ondblclick onmousedown:onmousedown onmouseup:onmouseup onmouseover:onmouseover
onmousemove:onmousemove onmouseout:onmouseout onkeypress:onkeypress onkeydown:onkeydown onkeyup:onkeyup">
...
{code}
used tabindex attribue for DIV.
Why?
DIV elements are not compatible with tabindex ([see the HTML 4.01 spec|http://www.w3.org/TR/html401/interact/forms.html#adef-tabindex]).
I can create pull request :).
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 8 months
[JBoss JIRA] (RF-13563) rich:pickList: add new items after last selected one
by Alexey Shakov (JIRA)
Alexey Shakov created RF-13563:
----------------------------------
Summary: rich:pickList: add new items after last selected one
Key: RF-13563
URL: https://issues.jboss.org/browse/RF-13563
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: component-selects
Affects Versions: 4.3.5
Reporter: Alexey Shakov
Sometimes it is preferable, that the newly added item(s) are positioned directly after already selected item in the right pane.
With current implementation, one needs first add the item and then move it to desired position. It is inconvinient in the case of large lists.
This functionality makes sense only with orderable lists and only if something selected in the right pane. This functionality can be optional.
Possible implementation :
{code:title=list.js|borderStyle=solid}
addItems: function(items) {
var parentContainer = this.scrollContainer;
//new items are added after last selected item (if any)
var selection = $("." + this.selectItemCssMarker, parentContainer);
if (selection.length) {
selection.last().after(items);
} else {
parentContainer.append(items);
}
this.__updateItemsList();
rf.Event.fire(this, "additems", items);
},
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 8 months
[JBoss JIRA] (RF-13120) Investigate impact of using JavascriptService deferred script invocation on instantiating widgets
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13120?page=com.atlassian.jira.plugin.s... ]
Brian Leathem resolved RF-13120.
--------------------------------
Assignee: Brian Leathem
Fix Version/s: (was: 5.0.0.Alpha4)
Resolution: Rejected
We'll have to make sure the component defines sufficient html for the CSS to pick up and correctly render the component. Failure of a component to do so should be considered a bug.
Note: the dynamic addition of control elements (buttons etc.) is acceptable.
> Investigate impact of using JavascriptService deferred script invocation on instantiating widgets
> -------------------------------------------------------------------------------------------------
>
> Key: RF-13120
> URL: https://issues.jboss.org/browse/RF-13120
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: architectural
> Affects Versions: 5.0.0.Alpha1
> Reporter: Lukáš Fryč
> Assignee: Brian Leathem
>
> javascript service advantages:
> * advantage scripts are executed at the end of the page load
> disadvantages:
> * when the widget does DOM manipulation, page might look funny until plugin is executed
> ** widgets needs to be styled before JS execution
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 9 months
[JBoss JIRA] (RF-13562) Ui:repeat doesn't work
by Lukáš Macko (JIRA)
Lukáš Macko created RF-13562:
--------------------------------
Summary: Ui:repeat doesn't work
Key: RF-13562
URL: https://issues.jboss.org/browse/RF-13562
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: showcase
Reporter: Lukáš Macko
Priority: Minor
When new showcase is deployed to WildFly usage of ui:repeat in table showing VDL docs https://github.com/richfaces/richfaces/blob/RF-12901-showcase/examples/bo...
throws an Exception
{{16:28:08,647 SEVERE [javax.enterprise.resource.webcontainer.jsf.application] (default task-3) Error Rendering View[/component/autocomplete/index.xhtml]: javax.el.ELException: //home/lmacko/workspace/richfaces/examples/bootstrap-showcase/target/m2e-wtp/web-resources/resources/fragment/attributesRepeat.xhtml @7,64 value="#{attributesList}": //home/lmacko/workspace/richfaces/examples/bootstrap-showcase/target/m2e-wtp/web-resources/resources/taglib.xhtml @81,106 value="#{taglibReader.getDefaultAttributes(tag)}": java.lang.NullPointerException
at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:114) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.facelets.component.UIRepeat.getValue(UIRepeat.java:279) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.facelets.component.UIRepeat.getDataModel(UIRepeat.java:255) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.facelets.component.UIRepeat.setIndex(UIRepeat.java:523) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.facelets.component.UIRepeat.doVisitChildren(UIRepeat.java:790) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.facelets.component.UIRepeat.visitTree(UIRepeat.java:748) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.facelets.component.UIRepeat.visitTree(UIRepeat.java:754) [jsf-impl-2.2.5-jbossorg-3.jar:]
at javax.faces.component.UIComponent.visitTree(UIComponent.java:1700) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
at com.sun.faces.application.view.FormOmittedChecker.check(FormOmittedChecker.java:91) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:445) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:133) [jsf-impl-2.2.5-jbossorg-3.jar:]
at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:337) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:337) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:337) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:219) [jsf-impl-2.2.5-jbossorg-3.jar:]
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:647) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:85) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:70) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:76) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.server.Connectors.executeRootHandler(Connectors.java:168) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:687) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_40]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_40]
at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_40]
Caused by: javax.el.ELException: //home/lmacko/workspace/richfaces/examples/bootstrap-showcase/target/m2e-wtp/web-resources/resources/taglib.xhtml @81,106 value="#{taglibReader.getDefaultAttributes(tag)}": java.lang.NullPointerException
at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:114) [jsf-impl-2.2.5-jbossorg-3.jar:]
at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:112) [javax.el-3.0.0.jar:3.0.0]
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226) [javax.el-3.0.0.jar:3.0.0]
at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) [weld-core-impl-2.1.2.Final.jar:2014-01-09 09:23]
at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) [weld-core-impl-2.1.2.Final.jar:2014-01-09 09:23]
at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109) [jsf-impl-2.2.5-jbossorg-3.jar:]
... 41 more
Caused by: javax.el.ELException: java.lang.NullPointerException
at javax.el.ELUtil.invokeMethod(ELUtil.java:330) [javax.el-3.0.0.jar:3.0.0]
at javax.el.BeanELResolver.invoke(BeanELResolver.java:536) [javax.el-3.0.0.jar:3.0.0]
at javax.el.CompositeELResolver.invoke(CompositeELResolver.java:256) [javax.el-3.0.0.jar:3.0.0]
at com.sun.el.parser.AstValue.getValue(AstValue.java:136) [javax.el-3.0.0.jar:3.0.0]
at com.sun.el.parser.AstValue.getValue(AstValue.java:204) [javax.el-3.0.0.jar:3.0.0]
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226) [javax.el-3.0.0.jar:3.0.0]
at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) [weld-core-impl-2.1.2.Final.jar:2014-01-09 09:23]
at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) [weld-core-impl-2.1.2.Final.jar:2014-01-09 09:23]
at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109) [jsf-impl-2.2.5-jbossorg-3.jar:]
... 46 more
Caused by: java.lang.NullPointerException
at org.richfaces.bootstrap.demo.TaglibReader.getAllAttributesFromTagName(TaglibReader.java:120) [:]
at org.richfaces.bootstrap.demo.TaglibReader.initAttributesForTagName(TaglibReader.java:124) [:]
at org.richfaces.bootstrap.demo.TaglibReader.getDefaultAttributes(TaglibReader.java:100) [:]
at sun.reflect.GeneratedMethodAccessor711.invoke(Unknown Source) [:1.7.0_40]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_40]
at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_40]
at javax.el.ELUtil.invokeMethod(ELUtil.java:326) [javax.el-3.0.0.jar:3.0.0]
... 54 more}}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 9 months
[JBoss JIRA] (RF-13562) Ui:repeat doesn't work in new showcase
by Lukáš Macko (JIRA)
[ https://issues.jboss.org/browse/RF-13562?page=com.atlassian.jira.plugin.s... ]
Lukáš Macko updated RF-13562:
-----------------------------
Summary: Ui:repeat doesn't work in new showcase (was: Ui:repeat doesn't work)
> Ui:repeat doesn't work in new showcase
> --------------------------------------
>
> Key: RF-13562
> URL: https://issues.jboss.org/browse/RF-13562
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: showcase
> Reporter: Lukáš Macko
> Priority: Minor
>
> When new showcase is deployed to WildFly usage of ui:repeat in table showing VDL docs https://github.com/richfaces/richfaces/blob/RF-12901-showcase/examples/bo...
> throws an Exception
> {{16:28:08,647 SEVERE [javax.enterprise.resource.webcontainer.jsf.application] (default task-3) Error Rendering View[/component/autocomplete/index.xhtml]: javax.el.ELException: //home/lmacko/workspace/richfaces/examples/bootstrap-showcase/target/m2e-wtp/web-resources/resources/fragment/attributesRepeat.xhtml @7,64 value="#{attributesList}": //home/lmacko/workspace/richfaces/examples/bootstrap-showcase/target/m2e-wtp/web-resources/resources/taglib.xhtml @81,106 value="#{taglibReader.getDefaultAttributes(tag)}": java.lang.NullPointerException
> at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:114) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.facelets.component.UIRepeat.getValue(UIRepeat.java:279) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.facelets.component.UIRepeat.getDataModel(UIRepeat.java:255) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.facelets.component.UIRepeat.setIndex(UIRepeat.java:523) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.facelets.component.UIRepeat.doVisitChildren(UIRepeat.java:790) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.facelets.component.UIRepeat.visitTree(UIRepeat.java:748) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.facelets.component.UIRepeat.visitTree(UIRepeat.java:754) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at javax.faces.component.UIComponent.visitTree(UIComponent.java:1700) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
> at com.sun.faces.application.view.FormOmittedChecker.check(FormOmittedChecker.java:91) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:445) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:133) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:337) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
> at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:337) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
> at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:337) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
> at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:219) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at javax.faces.webapp.FacesServlet.service(FacesServlet.java:647) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.2.5]
> at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:85) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
> at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:70) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:76) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61)
> at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.server.Connectors.executeRootHandler(Connectors.java:168) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:687) [undertow-core-1.0.0.Final.jar:1.0.0.Final]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_40]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_40]
> at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_40]
> Caused by: javax.el.ELException: //home/lmacko/workspace/richfaces/examples/bootstrap-showcase/target/m2e-wtp/web-resources/resources/taglib.xhtml @81,106 value="#{taglibReader.getDefaultAttributes(tag)}": java.lang.NullPointerException
> at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:114) [jsf-impl-2.2.5-jbossorg-3.jar:]
> at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:112) [javax.el-3.0.0.jar:3.0.0]
> at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226) [javax.el-3.0.0.jar:3.0.0]
> at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) [weld-core-impl-2.1.2.Final.jar:2014-01-09 09:23]
> at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) [weld-core-impl-2.1.2.Final.jar:2014-01-09 09:23]
> at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109) [jsf-impl-2.2.5-jbossorg-3.jar:]
> ... 41 more
> Caused by: javax.el.ELException: java.lang.NullPointerException
> at javax.el.ELUtil.invokeMethod(ELUtil.java:330) [javax.el-3.0.0.jar:3.0.0]
> at javax.el.BeanELResolver.invoke(BeanELResolver.java:536) [javax.el-3.0.0.jar:3.0.0]
> at javax.el.CompositeELResolver.invoke(CompositeELResolver.java:256) [javax.el-3.0.0.jar:3.0.0]
> at com.sun.el.parser.AstValue.getValue(AstValue.java:136) [javax.el-3.0.0.jar:3.0.0]
> at com.sun.el.parser.AstValue.getValue(AstValue.java:204) [javax.el-3.0.0.jar:3.0.0]
> at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226) [javax.el-3.0.0.jar:3.0.0]
> at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) [weld-core-impl-2.1.2.Final.jar:2014-01-09 09:23]
> at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) [weld-core-impl-2.1.2.Final.jar:2014-01-09 09:23]
> at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109) [jsf-impl-2.2.5-jbossorg-3.jar:]
> ... 46 more
> Caused by: java.lang.NullPointerException
> at org.richfaces.bootstrap.demo.TaglibReader.getAllAttributesFromTagName(TaglibReader.java:120) [:]
> at org.richfaces.bootstrap.demo.TaglibReader.initAttributesForTagName(TaglibReader.java:124) [:]
> at org.richfaces.bootstrap.demo.TaglibReader.getDefaultAttributes(TaglibReader.java:100) [:]
> at sun.reflect.GeneratedMethodAccessor711.invoke(Unknown Source) [:1.7.0_40]
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_40]
> at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_40]
> at javax.el.ELUtil.invokeMethod(ELUtil.java:326) [javax.el-3.0.0.jar:3.0.0]
> ... 54 more}}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 9 months
[JBoss JIRA] (RF-13561) Remove PushFilter deprecated in RF 4.1
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13561?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated RF-13561:
----------------------------
Assignee: (was: Lukáš Fryč)
> Remove PushFilter deprecated in RF 4.1
> --------------------------------------
>
> Key: RF-13561
> URL: https://issues.jboss.org/browse/RF-13561
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: component-push/poll
> Affects Versions: 5.0.0.Alpha3
> Reporter: Lukáš Fryč
>
> {code}
> private void logPushFilterWarning(ServletContext servletContext) {
> String message;
> if (servletContext.getMajorVersion() >= 3) {
> message = "PushFilter has been deprecated, you can remove its declaration in Servlets 3 environment";
> } else {
> message = "PushFilter has been deprecated, you should use PushServlet instead";
> }
> LOGGER.warn(message);
> }
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 9 months
[JBoss JIRA] (RF-13561) Remove PushFilter deprecated in RF 4.1
by Lukáš Fryč (JIRA)
Lukáš Fryč created RF-13561:
-------------------------------
Summary: Remove PushFilter deprecated in RF 4.1
Key: RF-13561
URL: https://issues.jboss.org/browse/RF-13561
Project: RichFaces
Issue Type: Task
Security Level: Public (Everyone can see)
Components: component-push/poll
Affects Versions: 5.0.0.Alpha3
Reporter: Lukáš Fryč
Assignee: Lukáš Fryč
{code}
private void logPushFilterWarning(ServletContext servletContext) {
String message;
if (servletContext.getMajorVersion() >= 3) {
message = "PushFilter has been deprecated, you can remove its declaration in Servlets 3 environment";
} else {
message = "PushFilter has been deprecated, you should use PushServlet instead";
}
LOGGER.warn(message);
}
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 9 months