[GitHub] [myfaces-tobago] henningn opened a new pull request #193: Fix select one choice inside in

2021-01-18 Thread GitBox


henningn opened a new pull request #193:
URL: https://github.com/apache/myfaces-tobago/pull/193


   * add a getComponentCss() method for LabelLayoutRendererBase
   * selectOneChoice is now rendered with surrounding container 
(tobago-select-one-choice) inside input group
   * fix styling
   * adjust unit test
   * implement jasmine test
   * rebuild theme



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




[jira] [Resolved] (MYFACES-4375) ResourceLoaderUtils - connection not close for FileURLConnection

2021-01-18 Thread Thomas Andraschko (Jira)


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

Thomas Andraschko resolved MYFACES-4375.

Resolution: Fixed

> ResourceLoaderUtils - connection not close for FileURLConnection
> 
>
> Key: MYFACES-4375
> URL: https://issues.apache.org/jira/browse/MYFACES-4375
> Project: MyFaces Core
>  Issue Type: Bug
>  Components: General
>Affects Versions: 3.0.0-RC1, 2.3-next-M3, 2.3-next-M4, 3.0.0, 4.0.0-RC1
>Reporter: Milan Siebenbürger
>Assignee: Thomas Andraschko
>Priority: Critical
> Fix For: 2.3-next-M5, 4.0.0-RC1, 2.3.8, 3.0.0
>
>
> Hello,
> we are facing problem with non-closed connection in ResourceLoaderUtils. 
> Since this change (pull request> https://github.com/apache/myfaces/pull/90)
> in method ResourceLoaderUtils.getResourceLastModification(URL url) is 
> connection opened, but it is never closed (assuming it is not instance of 
> JarURLConnection, which is closed correctly).
> If URLConnection is FileURLConnection (our case), it is not closed, and 
> afterwards file is locked in file system and can't be accessed (for deleting, 
> etc)...
> Method ResourceLoaderUtils.getResourceLastModification is called at 
> ResourceImpl:316.
>  
> Do you have any solution or workaround for this case, or could it be fixed 
> somehow (ie same as JarURLConnection)?
> Thanks
> Milan Siebenbürger
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [myfaces] tandraschko closed pull request #143: Only Support Faces Version 3.0 During Validations

2021-01-18 Thread GitBox


tandraschko closed pull request #143:
URL: https://github.com/apache/myfaces/pull/143


   



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




[GitHub] [myfaces] tandraschko commented on pull request #143: Only Support Faces Version 3.0 During Validations

2021-01-18 Thread GitBox


tandraschko commented on pull request #143:
URL: https://github.com/apache/myfaces/pull/143#issuecomment-762274722


   closing in favor of #144



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




[GitHub] [myfaces] tandraschko merged pull request #148: prefer secureRandom over random

2021-01-18 Thread GitBox


tandraschko merged pull request #148:
URL: https://github.com/apache/myfaces/pull/148


   



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




[GitHub] [myfaces] tandraschko merged pull request #149: prefer secureRandom over random

2021-01-18 Thread GitBox


tandraschko merged pull request #149:
URL: https://github.com/apache/myfaces/pull/149


   



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




[GitHub] [myfaces] tandraschko merged pull request #150: prefer secureRandom over random

2021-01-18 Thread GitBox


tandraschko merged pull request #150:
URL: https://github.com/apache/myfaces/pull/150


   



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




[GitHub] [myfaces] tandraschko merged pull request #151: prefer secureRandom over random

2021-01-18 Thread GitBox


tandraschko merged pull request #151:
URL: https://github.com/apache/myfaces/pull/151


   



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




[jira] [Comment Edited] (MYFACES-4375) ResourceLoaderUtils - connection not close for FileURLConnection

2021-01-18 Thread Thomas Andraschko (Jira)


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

Thomas Andraschko edited comment on MYFACES-4375 at 1/18/21, 1:07 PM:
--

It seems that the underlying IS is closed 
https://github.com/apache/myfaces/blob/8bb2ddf9f0dce365f4082a03d3d3272710854e11/impl/src/main/java/org/apache/myfaces/resource/ResourceLoaderUtils.java#L101

is that enough for the JAR case?

In non-jar case, it isnt closed, right.



was (Author: tandraschko):
It seems that the underlying IS is closed 
https://github.com/apache/myfaces/blob/8bb2ddf9f0dce365f4082a03d3d3272710854e11/impl/src/main/java/org/apache/myfaces/resource/ResourceLoaderUtils.java#L101

isnt that enough?


> ResourceLoaderUtils - connection not close for FileURLConnection
> 
>
> Key: MYFACES-4375
> URL: https://issues.apache.org/jira/browse/MYFACES-4375
> Project: MyFaces Core
>  Issue Type: Bug
>  Components: General
>Affects Versions: 3.0.0-RC1, 2.3-next-M3, 2.3-next-M4, 3.0.0, 4.0.0-RC1
>Reporter: Milan Siebenbürger
>Priority: Critical
>
> Hello,
> we are facing problem with non-closed connection in ResourceLoaderUtils. 
> Since this change (pull request> https://github.com/apache/myfaces/pull/90)
> in method ResourceLoaderUtils.getResourceLastModification(URL url) is 
> connection opened, but it is never closed (assuming it is not instance of 
> JarURLConnection, which is closed correctly).
> If URLConnection is FileURLConnection (our case), it is not closed, and 
> afterwards file is locked in file system and can't be accessed (for deleting, 
> etc)...
> Method ResourceLoaderUtils.getResourceLastModification is called at 
> ResourceImpl:316.
>  
> Do you have any solution or workaround for this case, or could it be fixed 
> somehow (ie same as JarURLConnection)?
> Thanks
> Milan Siebenbürger
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (MYFACES-4375) ResourceLoaderUtils - connection not close for FileURLConnection

2021-01-18 Thread Thomas Andraschko (Jira)


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

Thomas Andraschko commented on MYFACES-4375:


It seems that the underlying IS is closed 
https://github.com/apache/myfaces/blob/8bb2ddf9f0dce365f4082a03d3d3272710854e11/impl/src/main/java/org/apache/myfaces/resource/ResourceLoaderUtils.java#L101

isnt that enough?


> ResourceLoaderUtils - connection not close for FileURLConnection
> 
>
> Key: MYFACES-4375
> URL: https://issues.apache.org/jira/browse/MYFACES-4375
> Project: MyFaces Core
>  Issue Type: Bug
>  Components: General
>Affects Versions: 3.0.0-RC1, 2.3-next-M3, 2.3-next-M4, 3.0.0, 4.0.0-RC1
>Reporter: Milan Siebenbürger
>Priority: Critical
>
> Hello,
> we are facing problem with non-closed connection in ResourceLoaderUtils. 
> Since this change (pull request> https://github.com/apache/myfaces/pull/90)
> in method ResourceLoaderUtils.getResourceLastModification(URL url) is 
> connection opened, but it is never closed (assuming it is not instance of 
> JarURLConnection, which is closed correctly).
> If URLConnection is FileURLConnection (our case), it is not closed, and 
> afterwards file is locked in file system and can't be accessed (for deleting, 
> etc)...
> Method ResourceLoaderUtils.getResourceLastModification is called at 
> ResourceImpl:316.
>  
> Do you have any solution or workaround for this case, or could it be fixed 
> somehow (ie same as JarURLConnection)?
> Thanks
> Milan Siebenbürger
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (MYFACES-4375) ResourceLoaderUtils - connection not close for FileURLConnection

2021-01-18 Thread Jira
Milan Siebenbürger created MYFACES-4375:
---

 Summary: ResourceLoaderUtils - connection not close for 
FileURLConnection
 Key: MYFACES-4375
 URL: https://issues.apache.org/jira/browse/MYFACES-4375
 Project: MyFaces Core
  Issue Type: Bug
  Components: General
Affects Versions: 3.0.0, 2.3-next-M4, 2.3-next-M3, 3.0.0-RC1
Reporter: Milan Siebenbürger


Hello,

we are facing problem with non-closed connection in ResourceLoaderUtils. Since 
this change (pull request> https://github.com/apache/myfaces/pull/90)
in method ResourceLoaderUtils.getResourceLastModification(URL url) is 
connection opened, but it is never closed (assuming it is not instance of 
JarURLConnection, which is closed correctly).

If URLConnection is FileURLConnection (our case), it is not closed, and 
afterwards file is locked in file system and can't be accessed (for deleting, 
etc)...

Method ResourceLoaderUtils.getResourceLastModification is called at 
ResourceImpl:316.

 

Do you have any solution or workaround for this case, or could it be fixed 
somehow (ie same as JarURLConnection)?

Thanks

Milan Siebenbürger

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


Re: Your project's website

2021-01-18 Thread Bernd Bohmann
Hello Andrew

We are using Apache CMS?
We are building our pages with maven and with docsify. Which parts we are
using will be decommissioned?

Regards

Bernd

On Sat, Jan 16, 2021 at 3:17 PM Andrew Wetmore  wrote:

> Hi, and Happy New Year!
>
> Can you update me on progress you are making to migrate your website off
> the Apache CMS system and onto one of the alternatives Infra recommends (or
> to some other option)?
>
> Thanks!
>
> Andrew
>
> On 2020/08/05 12:38:21, Andrew Wetmore  wrote:
> > Hi:
> >
> > I am part of the Infrastructure team, and am writing to ask whether your
> > project is still using the Apache CMS for your project website. As you
> > know, the CMS is reaching end-of-life, and we need projects to move their
> > websites onto a different option within the next few weeks.
> >
> > There are several alternatives available, including those listed on this
> > page [1] on managing project websites. Infra is assembling a Wiki page
> [2]
> > on migrating a website from the CMS, and is looking forward to helping
> > projects with this transition.
> >
> > Please let me know whether your site is still on the Apache CMS and, if
> so,
> > who will be the project point-of-contact with Infra for the migration.
> >
> > Thank you!
> >
> >
> >
> >
> > [1] https://infra.apache.org/project-site.html
> >
> > [2]
> >
> https://cwiki.apache.org/confluence/display/INFRA/Migrate+your+project+website+from+the+Apache+CMS
> >
> >
> >
> > --
> > Andrew Wetmore
> > Technical Writer-Editor
> > Infra
> > *Apache Software Foundation*
> > andr...@apache.org
> >
> > <
> https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail
> >
> > Virus-free.
> > www.avast.com
> > <
> https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail
> >
> > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> >
>