[VOTE] Release Tobago 4.4.0

2019-03-12 Thread Udo Schnurpfeil
Hello,

We would like to release Tobago 4.4.0.

The demo on http://tobago-vm.apache.org/demo-4-staging/ where updated.

Major changes since last release are:

* A context message can now be added to form-component
* Update to Bootstrap 4.3.1
*  todayButton
* Placeholder attribute for 
* Markups for text
* Bugfixes

For a detail list please consult the release notes at:

https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310273=12344541

The version is available at the staging repository (Nexus) at:

https://repository.apache.org/content/repositories/orgapachemyfaces-1150/

The sources are:

https://repository.apache.org/content/repositories/orgapachemyfaces-1150/org/apache/myfaces/tobago/tobago/4.4.0/tobago-4.4.0-source-release.zip
(sha-256 e02fef25affabd24c54a57cc0c27c6a008872ed0d88ce4c7cf32b9a20020b2ec)


Please vote now! (The vote is open for 72h.)

[ ] +1
[ ] +0
[ ] -1

Regards,

Udo





signature.asc
Description: OpenPGP digital signature


[jira] [Commented] (TOBAGO-1967) Upgrade to Bootstrap 4.3.1

2019-03-12 Thread Hudson (JIRA)


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

Hudson commented on TOBAGO-1967:


SUCCESS: Integrated in Jenkins build Tobago Trunk #1690 (See 
[https://builds.apache.org/job/Tobago%20Trunk/1690/])
TOBAGO-1967 Upgrade to Bootstrap 4.3.1 (hnoeth: rev 
0ec28935f02fe0b7ef052dc759959934d971361a)
* (edit) tobago-theme/tobago-theme-charlotteville/src/main/npm/package-lock.json
* (edit) tobago-theme/tobago-theme-scarborough/src/main/npm/package-lock.json
* (edit) tobago-theme/tobago-theme-speyside/src/main/npm/package-lock.json
* (edit) tobago-theme/pom.xml
* (edit) tobago-theme/tobago-theme-standard/src/main/npm/package-lock.json
* (edit) tobago-theme/tobago-theme-roxborough/src/main/npm/package-lock.json


> Upgrade to Bootstrap 4.3.1
> --
>
> Key: TOBAGO-1967
> URL: https://issues.apache.org/jira/browse/TOBAGO-1967
> Project: MyFaces Tobago
>  Issue Type: Improvement
>  Components: Themes
>Affects Versions: 4.3.2
>Reporter: Henning Noeth
>Assignee: Henning Noeth
>Priority: Major
> Fix For: 4.4.0, 5.0.0
>
>
> https://blog.getbootstrap.com/2019/02/13/bootstrap-4-3-1-and-3-4-1/



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


[Tobago] Preparation for the 4.4.0 release

2019-03-12 Thread Udo Schnurpfeil
|Hi, folks, we plan to build version 4.4.0 of Tobago soon. If you know
any blocking problems with the current SNAPSHOT, give me a hint.
Regards, Udo |



[jira] [Commented] (MYFACES-4282) Incompatibility with DeltaSpike JSF Module 1.x

2019-03-12 Thread Bill Lucy (JIRA)


[ 
https://issues.apache.org/jira/browse/MYFACES-4282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16790557#comment-16790557
 ] 

Bill Lucy commented on MYFACES-4282:


The problem here occurs when DeltaSpike's ViewHandler calls setViewRoot during 
its createView method - which leads to MyFaces clearing out the view map, since 
we believe a view scope has ended.  This is the stack of the clear() that 
destroys ViewScopeModel after it's first built, which leads to the second 
PostConstruct:

    _at 
org.apache.myfaces.view.ViewScopeProxyMap.clear(ViewScopeProxyMap.java:148)_
    _at 
org.apache.myfaces.context.servlet.FacesContextImplBase.setViewRoot(FacesContextImplBase.java:299)_
    _at 
javax.faces.context.FacesContextWrapper.setViewRoot(FacesContextWrapper.java:247)_
    _at 
org.apache.deltaspike.jsf.impl.security.SecurityAwareViewHandler.createView(SecurityAwareViewHandler.java:106)_
    _at 
org.apache.deltaspike.jsf.impl.view.DeltaSpikeViewHandler.createView(DeltaSpikeViewHandler.java:70)_
    _at 
org.apache.myfaces.view.facelets.FaceletViewDeclarationLanguage$FaceletViewMetadata.createMetadataView(FaceletViewDeclarationLanguage.java:2750)_

A potential fix on our side is to skip calling clear() on the view scope map on 
this path - while we're building the view metadata.  I've done a PR at 
[https://github.com/apache/myfaces/pull/46].  [~j-be] I've tested this PR 
against your sample and the behavior appears correct; can you verify this?

> Incompatibility with DeltaSpike JSF Module 1.x
> --
>
> Key: MYFACES-4282
> URL: https://issues.apache.org/jira/browse/MYFACES-4282
> Project: MyFaces Core
>  Issue Type: Bug
>Affects Versions: 2.3.3
> Environment: Tomcat 9.0.14
> OpenWebBeans 2.0.8
> DeltaSpike 1.x (tested 1.0.0, 1.8.2, 1.9.0)
>Reporter: Juri Berlanda
>Assignee: Eduardo Breijo
>Priority: Major
> Fix For: 3.0.0-SNAPSHOT, 2.3.4
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Some change in 2.3.3 causes and incompatibility with Apache DeltaSpike's JSF 
> Module. I am not sure yet what exactly causes it, but MyFaces 2.3.2 is NOT 
> affected.
> The issue arose on our side, as we noticed @PostConstruct of some of our 
> @ViewScope @Model is called twice.
> Mojarra 2.3.8 is NOT affected, which - together with the fact that MyFaces 
> 2.3.2 is not affected either - brings me to the conclusion this is a bug 
> introduced with MyFaces 2.3.3.
> I have a minimal project showing the issue, which I will link here shortly.



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


[GitHub] [myfaces] wtlucy opened a new pull request #46: MYFACES-4282 skip clearing view map during view metadata creation

2019-03-12 Thread GitBox
wtlucy opened a new pull request #46: MYFACES-4282 skip clearing view map 
during view metadata creation
URL: https://github.com/apache/myfaces/pull/46
 
 
   For https://issues.apache.org/jira/browse/MYFACES-4282


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[jira] [Commented] (MYFACES-4281) tag parsing error

2019-03-12 Thread Thomas Andraschko (JIRA)


[ 
https://issues.apache.org/jira/browse/MYFACES-4281?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16790516#comment-16790516
 ] 

Thomas Andraschko commented on MYFACES-4281:


I can't give any tips, maybe Leo can.
If you can teach it to our compiler, that would be a very very cool 
contribution. The compiler is here: 
org.apache.myfaces.view.facelets.compiler.SAXCompiler

> tag parsing error
> -
>
> Key: MYFACES-4281
> URL: https://issues.apache.org/jira/browse/MYFACES-4281
> Project: MyFaces Core
>  Issue Type: Bug
>Reporter: maurel
>Priority: Major
> Attachments: Bildschirmfoto 2019-02-06 um 17.08.30.png
>
>
> see: [mailing 
> list|http://mail-archives.apache.org/mod_mbox/myfaces-users/201901.mbox/%3C371d7273-62ee-0279-2866-5614d72b0460%40gmail.com%3E]
> Using Tobago 4.3.0, I see the below error when I use the following xhtml 
> page. I tried to make this page as small as possible to reproduce the error.
> If I remove one of the  group the error is removed.
> I work on windows 10 and both firefox or opera have the same behaviour.
> Could you please advice or correct me ?
> Regards
> xhtml page:
> ---
> 
> http://java.sun.com/jsf/facelets; 
> xmlns:xs="http://www.w3.org/2001/XMLSchema; 
> xmlns:f="http://java.sun.com/jsf/core; xmlns="http://www.w3.org/1999/xhtml;
>   xmlns:tc="http://myfaces.apache.org/tobago/component; 
> xmlns:xhtml="http://www.w3.org/1999/xhtml;
>  >
>   
>
> 
>  http://www.w3.org/1998/Math/MathML; >
>N
> 
> 
> nombre
> 
>  http://www.w3.org/1998/Math/MathML;>
>C
> 
> 
> constante
> 
>  http://www.w3.org/1998/Math/MathML;>
>   σ
> 
> 
> étendue
>
>   
> 
> ERROR:
> -
> janv. 25, 2019 5:50:57 PM 
> org.apache.myfaces.tobago.internal.webapp.DebugResponseWriterWrapper 
> endElement
> GRAVE: Element end with name='HTML' doesn't match with top element on 
> the stack='BODY'.
> java.lang.IllegalArgumentException
>  at 
> org.apache.myfaces.tobago.internal.webapp.DebugResponseWriterWrapper.endElement(DebugResponseWriterWrapper.java:226)
>  at 
> org.apache.myfaces.tobago.internal.renderkit.renderer.PageRenderer.encodeEnd(PageRenderer.java:366)
>  at 
> javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:675)
>  at 
> javax.faces.component.UIComponentBase.encodeAll(UIComponentBase.java:555)
>  at 
> javax.faces.component.UIComponentBase.encodeAll(UIComponentBase.java:551)
>  at 
> org.apache.myfaces.view.facelets.FaceletViewDeclarationLanguage.renderView(FaceletViewDeclarationLanguage.java:1897)
>  at 
> org.apache.myfaces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:315)
>  at 
> javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:73)
>  at 
> org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:117)
>  at 
> org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:266)
>  at javax.faces.webapp.FacesServlet.service(FacesServlet.java:206)
>  at 
> org.apache.tomee.myfaces.TomEEWorkaroundFacesServlet.service(TomEEWorkaroundFacesServlet.java:47)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at 
> org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at org.apache.openejb.server.httpd.EEFilter.doFilter(EEFilter.java:65)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at 
> org.apache.myfaces.tobago.facelets.FixCharacterEncodingFilter.doFilter(FixCharacterEncodingFilter.java:54)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at 
> org.apache.logging.log4j.web.Log4jServletFilter.doFilter(Log4jServletFilter.java:71)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:199)
>  at 
> 

[jira] [Resolved] (TOBAGO-1950) Websockets are not working

2019-03-12 Thread Henning Noeth (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOBAGO-1950?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Henning Noeth resolved TOBAGO-1950.
---
Resolution: Fixed

> Websockets are not working
> --
>
> Key: TOBAGO-1950
> URL: https://issues.apache.org/jira/browse/TOBAGO-1950
> Project: MyFaces Tobago
>  Issue Type: Bug
>  Components: Core
>Affects Versions: 4.3.0
>Reporter: Carsten Dimmek
>Assignee: Henning Noeth
>Priority: Major
> Fix For: 4.4.0, 5.0.0
>
>
> Websockets are not working with Tobago. Nothing is rendered when using 
> f:websocket
> There should be a websocket example page in Tobago Demo!



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


[jira] [Created] (TOBAGO-1986) Examples for websockets

2019-03-12 Thread Henning Noeth (JIRA)
Henning Noeth created TOBAGO-1986:
-

 Summary: Examples for websockets
 Key: TOBAGO-1986
 URL: https://issues.apache.org/jira/browse/TOBAGO-1986
 Project: MyFaces Tobago
  Issue Type: Improvement
  Components: Demo
Affects Versions: 4.4.1, 5.0.0
Reporter: Henning Noeth


Add an example for websockets to Tobago demo.



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


Re: [VOTE] Release Tobago 2.4.1

2019-03-12 Thread Henning Nöth
+1


Am 11.03.19 um 12:02 schrieb Volker Weber:
> Hi,
> 
> We would like to release
> * Tobago 2.4.1
> 
> This is a bugfix release.
> 
> For a detail list please consult the release notes at:
> 
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310273=12344899
> 
> The version is available at the staging repository (Nexus) at:
> 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1149/
> 
> The sources are:
> 
> https://repository.apache.org/content/repositories/orgapachemyfaces-1149/org/apache/myfaces/tobago/tobago/2.4.1/tobago-2.4.1-source-release.zip
> (sha-256 b589119400730f79a0b1339816b59b497daf41e1e7c94d11e7ba4dd33ab2ce63)
> 
> 
> Please vote now! (The vote is open for 72h.)
> 
> [ ] +1
> [ ] +0
> [ ] -1
> 
> Regards,
> 
>   Volker
> 
> 
> 
> -- 
> inexso - information exchange solutions GmbH
> Ofener Straße 30 | 26121 Oldenburg
> www.inexso.de 


[jira] [Resolved] (TOBAGO-1984) Adjust class structure of UIComponents and optimize Generation

2019-03-12 Thread Udo Schnurpfeil (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOBAGO-1984?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Udo Schnurpfeil resolved TOBAGO-1984.
-
Resolution: Fixed

> Adjust class structure of UIComponents and optimize Generation
> --
>
> Key: TOBAGO-1984
> URL: https://issues.apache.org/jira/browse/TOBAGO-1984
> Project: MyFaces Tobago
>  Issue Type: Task
>  Components: Build, Core
>Reporter: Udo Schnurpfeil
>Assignee: Udo Schnurpfeil
>Priority: Minor
> Fix For: 4.4.0, 5.0.0
>
>
> Some useful rules:
> * every generated UIComponent class should have an explicit abstract parent.
> * Renderers should not use the generated classes directly.



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


[jira] [Commented] (TOBAGO-1974) "update" attribute of doesn't work

2019-03-12 Thread Hudson (JIRA)


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

Hudson commented on TOBAGO-1974:


SUCCESS: Integrated in Jenkins build Tobago 4.x #69 (See 
[https://builds.apache.org/job/Tobago%204.x/69/])
TOBAGO-1974: "update" attribute of  doesn't work (lofwyr: rev 
1664970597ef7f565dd0d03b2ae1810680bf33a2)
* (edit) 
tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-jsf.js
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/PanelRenderer.java
* (edit) 
tobago-example/tobago-example-demo/src/main/webapp/content/20-component/050-container/20-panel/panel.xhtml
* (edit) 
tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago.js
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIPanel.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/SheetRenderer.java
* (edit) 
tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-sheet.js
* (edit) 
tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/PanelController.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java
* (add) 
tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-reload.js
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java
* (edit) 
tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/RendererBase.java


> "update" attribute of  doesn't work
> --
>
> Key: TOBAGO-1974
> URL: https://issues.apache.org/jira/browse/TOBAGO-1974
> Project: MyFaces Tobago
>  Issue Type: Bug
>  Components: Core
>Affects Versions: 4.3.2
>Reporter: Udo Schnurpfeil
>Assignee: Udo Schnurpfeil
>Priority: Minor
> Fix For: 4.4.0, 5.0.0
>
>




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


[jira] [Resolved] (TOBAGO-1974) "update" attribute of doesn't work

2019-03-12 Thread Udo Schnurpfeil (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOBAGO-1974?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Udo Schnurpfeil resolved TOBAGO-1974.
-
Resolution: Fixed

> "update" attribute of  doesn't work
> --
>
> Key: TOBAGO-1974
> URL: https://issues.apache.org/jira/browse/TOBAGO-1974
> Project: MyFaces Tobago
>  Issue Type: Bug
>  Components: Core
>Affects Versions: 4.3.2
>Reporter: Udo Schnurpfeil
>Assignee: Udo Schnurpfeil
>Priority: Minor
> Fix For: 4.4.0, 5.0.0
>
>




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


[jira] [Commented] (MYFACES-4281) tag parsing error

2019-03-12 Thread maurel jean francois (JIRA)


[ 
https://issues.apache.org/jira/browse/MYFACES-4281?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16790297#comment-16790297
 ] 

maurel jean francois commented on MYFACES-4281:
---

Could you please give me pointers on how to :
 * add a new tag (for mathml namespace) or
 * teach the compiler how to deal with mathml

I would like to just copy all tags under mathml namespace

> tag parsing error
> -
>
> Key: MYFACES-4281
> URL: https://issues.apache.org/jira/browse/MYFACES-4281
> Project: MyFaces Core
>  Issue Type: Bug
>Reporter: maurel
>Priority: Major
> Attachments: Bildschirmfoto 2019-02-06 um 17.08.30.png
>
>
> see: [mailing 
> list|http://mail-archives.apache.org/mod_mbox/myfaces-users/201901.mbox/%3C371d7273-62ee-0279-2866-5614d72b0460%40gmail.com%3E]
> Using Tobago 4.3.0, I see the below error when I use the following xhtml 
> page. I tried to make this page as small as possible to reproduce the error.
> If I remove one of the  group the error is removed.
> I work on windows 10 and both firefox or opera have the same behaviour.
> Could you please advice or correct me ?
> Regards
> xhtml page:
> ---
> 
> http://java.sun.com/jsf/facelets; 
> xmlns:xs="http://www.w3.org/2001/XMLSchema; 
> xmlns:f="http://java.sun.com/jsf/core; xmlns="http://www.w3.org/1999/xhtml;
>   xmlns:tc="http://myfaces.apache.org/tobago/component; 
> xmlns:xhtml="http://www.w3.org/1999/xhtml;
>  >
>   
>
> 
>  http://www.w3.org/1998/Math/MathML; >
>N
> 
> 
> nombre
> 
>  http://www.w3.org/1998/Math/MathML;>
>C
> 
> 
> constante
> 
>  http://www.w3.org/1998/Math/MathML;>
>   σ
> 
> 
> étendue
>
>   
> 
> ERROR:
> -
> janv. 25, 2019 5:50:57 PM 
> org.apache.myfaces.tobago.internal.webapp.DebugResponseWriterWrapper 
> endElement
> GRAVE: Element end with name='HTML' doesn't match with top element on 
> the stack='BODY'.
> java.lang.IllegalArgumentException
>  at 
> org.apache.myfaces.tobago.internal.webapp.DebugResponseWriterWrapper.endElement(DebugResponseWriterWrapper.java:226)
>  at 
> org.apache.myfaces.tobago.internal.renderkit.renderer.PageRenderer.encodeEnd(PageRenderer.java:366)
>  at 
> javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:675)
>  at 
> javax.faces.component.UIComponentBase.encodeAll(UIComponentBase.java:555)
>  at 
> javax.faces.component.UIComponentBase.encodeAll(UIComponentBase.java:551)
>  at 
> org.apache.myfaces.view.facelets.FaceletViewDeclarationLanguage.renderView(FaceletViewDeclarationLanguage.java:1897)
>  at 
> org.apache.myfaces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:315)
>  at 
> javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:73)
>  at 
> org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:117)
>  at 
> org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:266)
>  at javax.faces.webapp.FacesServlet.service(FacesServlet.java:206)
>  at 
> org.apache.tomee.myfaces.TomEEWorkaroundFacesServlet.service(TomEEWorkaroundFacesServlet.java:47)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at 
> org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at org.apache.openejb.server.httpd.EEFilter.doFilter(EEFilter.java:65)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at 
> org.apache.myfaces.tobago.facelets.FixCharacterEncodingFilter.doFilter(FixCharacterEncodingFilter.java:54)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at 
> org.apache.logging.log4j.web.Log4jServletFilter.doFilter(Log4jServletFilter.java:71)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
>  at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
>  at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:199)
>  at 
> 

Re: [VOTE] Release Tobago 2.4.1

2019-03-12 Thread Hazem Saleh
+1

Thanks and Best Regards

> On Mar 12, 2019, at 3:02 AM, Werner Punz  wrote:
> 
> +1
> 
> Werner
> 
> 
>> Am Di., 12. März 2019 um 08:00 Uhr schrieb Udo Schnurpfeil 
>> :
>> +1
>> 
>>> Am 11.03.19 um 12:02 schrieb Volker Weber:
>>> Hi,
>>> 
>>> We would like to release
>>> * Tobago 2.4.1
>>> 
>>> This is a bugfix release.
>>> 
>>> For a detail list please consult the release notes at:
>>> 
>>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310273=12344899
>>> 
>>> The version is available at the staging repository (Nexus) at:
>>> 
>>> https://repository.apache.org/content/repositories/orgapachemyfaces-1149/
>>> 
>>> The sources are:
>>> 
>>> https://repository.apache.org/content/repositories/orgapachemyfaces-1149/org/apache/myfaces/tobago/tobago/2.4.1/tobago-2.4.1-source-release.zip
>>> (sha-256 b589119400730f79a0b1339816b59b497daf41e1e7c94d11e7ba4dd33ab2ce63)
>>> 
>>> 
>>> Please vote now! (The vote is open for 72h.)
>>> 
>>> [ ] +1
>>> [ ] +0
>>> [ ] -1
>>> 
>>> Regards,
>>> 
>>>   Volker
>>> 
>>> 
>>> 
>>> -- 
>>> inexso - information exchange solutions GmbH
>>> Ofener Straße 30 | 26121 Oldenburg
>>> www.inexso.de


Re: [VOTE] Release Tobago 2.4.1

2019-03-12 Thread Werner Punz
+1

Werner


Am Di., 12. März 2019 um 08:00 Uhr schrieb Udo Schnurpfeil <
lof...@apache.org>:

> +1
> Am 11.03.19 um 12:02 schrieb Volker Weber:
>
> Hi,
>
> We would like to release
> * Tobago 2.4.1
>
> This is a bugfix release.
>
> For a detail list please consult the release notes at:
>
>
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310273=12344899
>
> The version is available at the staging repository (Nexus) at:
>
> https://repository.apache.org/content/repositories/orgapachemyfaces-1149/
>
> The sources are:
>
>
> https://repository.apache.org/content/repositories/orgapachemyfaces-1149/org/apache/myfaces/tobago/tobago/2.4.1/tobago-2.4.1-source-release.zip
> (sha-256 b589119400730f79a0b1339816b59b497daf41e1e7c94d11e7ba4dd33ab2ce63)
>
>
> Please vote now! (The vote is open for 72h.)
>
> [ ] +1
> [ ] +0
> [ ] -1
>
> Regards,
>
>   Volker
>
>
>
> --
> inexso - information exchange solutions GmbH
> Ofener Straße 30 | 26121 Oldenburg
> www.inexso.de
>
>


Re: [VOTE] Release Tobago 2.4.1

2019-03-12 Thread Udo Schnurpfeil
+1

Am 11.03.19 um 12:02 schrieb Volker Weber:
> Hi,
>
> We would like to release
> * Tobago 2.4.1
>
> This is a bugfix release.
>
> For a detail list please consult the release notes at:
>
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310273=12344899
>
> The version is available at the staging repository (Nexus) at:
>
> https://repository.apache.org/content/repositories/orgapachemyfaces-1149/
>
> The sources are:
>
> https://repository.apache.org/content/repositories/orgapachemyfaces-1149/org/apache/myfaces/tobago/tobago/2.4.1/tobago-2.4.1-source-release.zip
> (sha-256 b589119400730f79a0b1339816b59b497daf41e1e7c94d11e7ba4dd33ab2ce63)
>
>
> Please vote now! (The vote is open for 72h.)
>
> [ ] +1
> [ ] +0
> [ ] -1
>
> Regards,
>
>   Volker
>
>
>
> -- 
> inexso - information exchange solutions GmbH
> Ofener Straße 30 | 26121 Oldenburg
> www.inexso.de 


signature.asc
Description: OpenPGP digital signature