Re: Perform MyFaces 2.3.1 release?

2018-04-26 Thread Dennis Kieselhorst
Feel free. Could be also a chance to see if everything on Git is working...

Regards
Dennis


Re: Migrate all MyFaces projects to Git

2018-04-26 Thread Dennis Kieselhorst

> > I tried to convert the existing svn repo to git, but unfortunately there
> > are historical svn authors like royalts, dave, o_rossmueller,  How
> > to map them? Are there corresponding Apache committer names or should I use
> > dev-n...@apache.org for them?

I found out that those usernames are SourceForge usernames. I was able to map 
them :D

royalts = Thomas Spiegl
dave = Anton Koinov
o_rossmueller = Oliver Rossmueller
tinytoony = Martin Marinschek
prophecyslides = Travis Reeder 


Re: Perform MyFaces 2.3.1 release?

2018-04-26 Thread Paul Nicolucci

+1 here as well.

Thanks,

Paul



From:   Thomas Andraschko 
To: MyFaces Development 
Date:   04/26/2018 11:46 AM
Subject:Re: Perform MyFaces 2.3.1 release?



+1 and move the open issue to 2.3.2

Am Donnerstag, 26. April 2018 schrieb Eduardo B :
  Hello,

  I just wanted to start the conversation with the community to check if we
  should start performing the release for MyFaces 2.3.1?

  We have fixed 18 JIRA issues, most of them are API signature methods, and
  some JS improvements as well. The following link would contain the
  release notes:

  
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600=12342790

  We have only one open JIRA issue which seems a minor improvement:
  https://issues.apache.org/jira/browse/MYFACES-4214

  I'd like to start this soon, perhaps before the move to git so we can get
  a release out that includes these important changes.

  Any objections?

  Regards,
  Eduardo M. Breijo



Re: Perform MyFaces 2.3.1 release?

2018-04-26 Thread Thomas Andraschko
+1 and move the open issue to 2.3.2

Am Donnerstag, 26. April 2018 schrieb Eduardo B :

> Hello,
>
> I just wanted to start the conversation with the community to check if we
> should start performing the release for MyFaces 2.3.1?
>
> We have fixed 18 JIRA issues, most of them are API signature methods, and
> some JS improvements as well. The following link would contain the release
> notes:
>
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=10600=12342790
>
> We have only one open JIRA issue which seems a minor improvement:
> https://issues.apache.org/jira/browse/MYFACES-4214
>
> I'd like to start this soon, perhaps before the move to git so we can get
> a release out that includes these important changes.
>
> Any objections?
>
> Regards,
> Eduardo M. Breijo
>


Perform MyFaces 2.3.1 release?

2018-04-26 Thread Eduardo B
Hello,

I just wanted to start the conversation with the community to check if we
should start performing the release for MyFaces 2.3.1?

We have fixed 18 JIRA issues, most of them are API signature methods, and
some JS improvements as well. The following link would contain the release
notes:

https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10600=12342790

We have only one open JIRA issue which seems a minor improvement:
https://issues.apache.org/jira/browse/MYFACES-4214

I'd like to start this soon, perhaps before the move to git so we can get a
release out that includes these important changes.

Any objections?

Regards,
Eduardo M. Breijo


Re: Migrate all MyFaces projects to Git

2018-04-26 Thread Thomas Andraschko
+1 for dev-null

2018-04-26 14:47 GMT+02:00 Dennis Kieselhorst :

> > I've opened an INFRA issue to get the repos ready:
> https://issues.apache.org/jira/browse/INFRA-16402
>
> Got feedback from INFRA, plan is to update existing myfaces repo first and
> then migrate it to Gitbox.
>
> I tried to convert the existing svn repo to git, but unfortunately there
> are historical svn authors like royalts, dave, o_rossmueller,  How
> to map them? Are there corresponding Apache committer names or should I use
> dev-n...@apache.org for them?
>
> Does anyone know if there's a flag to tell git-svn to default to this
> entry if the key is not in the authors file? I'm using:
> https://git-wip-us.apache.org/authors.txt
>
> Regards
> Dennis
>


[jira] [Created] (TOBAGO-1895) Attributes of segment layout may not be read correctly if using core tags

2018-04-26 Thread Henning Noeth (JIRA)
Henning Noeth created TOBAGO-1895:
-

 Summary: Attributes of segment layout may not be read correctly if 
using core tags
 Key: TOBAGO-1895
 URL: https://issues.apache.org/jira/browse/TOBAGO-1895
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 4.2.0
Reporter: Henning Noeth


Under specific circumstances, segment layout attributes cannot be read.
This is if core tags are used with an old MyFaces version (like 2.0.2).

See the following example:
1. open the page
2. click on tab 2
3. click a second time on tab 2
result: the CSS classes for segment layout are not rendered
 
{code:xml}
  

  

  
  
  
  

  

  
{code}
{code:java}@SessionScoped
@Named
public class DynamicTabsController implements Serializable {

  private static final long serialVersionUID = 1L;

  private List akten = new ArrayList<>();
  private int selected = 0;

  public DynamicTabsController() {
akten.add("Tab 1");
akten.add("Tab 2");
  }

  public List getItems() {
return this.akten;
  }

  public int getSelected() {
return this.selected;
  }

  public void setSelected(int selected) {
this.selected = selected;
  }
}{code}



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


Re: Migrate all MyFaces projects to Git

2018-04-26 Thread Dennis Kieselhorst
> I've opened an INFRA issue to get the repos ready: 
> https://issues.apache.org/jira/browse/INFRA-16402

Got feedback from INFRA, plan is to update existing myfaces repo first and then 
migrate it to Gitbox.

I tried to convert the existing svn repo to git, but unfortunately there are 
historical svn authors like royalts, dave, o_rossmueller,  How to map 
them? Are there corresponding Apache committer names or should I use 
dev-n...@apache.org for them?

Does anyone know if there's a flag to tell git-svn to default to this entry if 
the key is not in the authors file? I'm using: 
https://git-wip-us.apache.org/authors.txt

Regards
Dennis


[jira] [Commented] (TOBAGO-1894) , , , , should support customClass of

2018-04-26 Thread Hudson (JIRA)

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

Hudson commented on TOBAGO-1894:


SUCCESS: Integrated in Jenkins build Tobago Trunk #1407 (See 
[https://builds.apache.org/job/Tobago%20Trunk/1407/])
TOBAGO-1894: , , , (lofwyr: rev 
54ee0caf91b69e2cf187dea768be8c3c03ab77be)
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/TreeMenuTagDeclaration.java


> , , , , 
>  should support customClass of 
> -
>
> Key: TOBAGO-1894
> URL: https://issues.apache.org/jira/browse/TOBAGO-1894
> Project: MyFaces Tobago
>  Issue Type: Task
>Reporter: Udo Schnurpfeil
>Assignee: Udo Schnurpfeil
>Priority: Major
> Fix For: 4.2.1
>
>




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


[jira] [Commented] (TOBAGO-1843) Demo: Enhancements for Tobago 4.x

2018-04-26 Thread Hudson (JIRA)

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

Hudson commented on TOBAGO-1843:


SUCCESS: Integrated in Jenkins build Tobago Trunk #1407 (See 
[https://builds.apache.org/job/Tobago%20Trunk/1407/])
TOBAGO-1843: Demo (lofwyr: rev 8b488c898658c92985fe19026d84eda8feec5716)
* (delete) 
tobago-example/tobago-example-demo/src/main/webapp/content/40-test/9-attic/box/box-box-relative.xhtml
* (delete) 
tobago-example/tobago-example-demo/src/main/webapp/content/40-test/9-attic/box/box-box-auto.xhtml
* (delete) 
tobago-example/tobago-example-demo/src/main/webapp/content/40-test/9-attic/box/box.xhtml


> Demo: Enhancements for Tobago 4.x
> -
>
> Key: TOBAGO-1843
> URL: https://issues.apache.org/jira/browse/TOBAGO-1843
> Project: MyFaces Tobago
>  Issue Type: Task
>  Components: Demo
>Reporter: Udo Schnurpfeil
>Priority: Minor
> Fix For: 4.3.0
>
>
> * Check, if there is an example to open a popup in a sheet cell.
> * Add an example with two times tc:out on one side in an input group.
> * Add an example with tc:sheet where sorting and filtering is possible.
> * Add a test for login.xhtml
> * Documentation for TOBAGO-1695
> * On IE11, the Source Code cannot be hidden.
> * Leafs of the navigation tree on the left side should be collapsible. (/)
> * ...



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


[jira] [Commented] (TOBAGO-1662) Tree in menu mode doesn't render an icon

2018-04-26 Thread Udo Schnurpfeil (JIRA)

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

Udo Schnurpfeil commented on TOBAGO-1662:
-

BTW:  is deprecated and replaced by the "normal" 

> Tree in menu mode doesn't render an icon
> 
>
> Key: TOBAGO-1662
> URL: https://issues.apache.org/jira/browse/TOBAGO-1662
> Project: MyFaces Tobago
>  Issue Type: Bug
>  Components: Themes
>Affects Versions: 3.0.0-beta-1
>Reporter: Udo Schnurpfeil
>Priority: Minor
> Fix For: 4.2.1
>
>
> Notice: Needs to be implemented in 
> org.apache.myfaces.tobago.internal.renderkit.renderer.TreeNodeRenderer



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


[jira] [Resolved] (TOBAGO-1662) Tree in menu mode doesn't render an icon

2018-04-26 Thread Udo Schnurpfeil (JIRA)

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

Udo Schnurpfeil resolved TOBAGO-1662.
-
Resolution: Fixed

This can be easily solved by using 
{code}
 
  

{code}
inside of the  (after e.g. the 

> Tree in menu mode doesn't render an icon
> 
>
> Key: TOBAGO-1662
> URL: https://issues.apache.org/jira/browse/TOBAGO-1662
> Project: MyFaces Tobago
>  Issue Type: Bug
>  Components: Themes
>Affects Versions: 3.0.0-beta-1
>Reporter: Udo Schnurpfeil
>Priority: Minor
> Fix For: 4.2.1
>
>
> Notice: Needs to be implemented in 
> org.apache.myfaces.tobago.internal.renderkit.renderer.TreeNodeRenderer



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


[jira] [Commented] (TOBAGO-1894) , , , , should support customClass of

2018-04-26 Thread Hudson (JIRA)

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

Hudson commented on TOBAGO-1894:


SUCCESS: Integrated in Jenkins build Tobago Trunk #1406 (See 
[https://builds.apache.org/job/Tobago%20Trunk/1406/])
TOBAGO-1894: , , , (lofwyr: rev 
f30f08dd63538f51688a9a7d3f3478aba25e0477)
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/TreeNodeRenderer.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/TreeSelectRenderer.java
* (edit) 
tobago-example/tobago-example-demo/src/main/webapp/content/20-component/090-tree/03-menu/tree-menu.xhtml
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/TreeIconRenderer.java
* (edit) 
tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/NavigationState.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/TreeIndentRenderer.java
* (edit) 
tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/TreeLabelRenderer.java


> , , , , 
>  should support customClass of 
> -
>
> Key: TOBAGO-1894
> URL: https://issues.apache.org/jira/browse/TOBAGO-1894
> Project: MyFaces Tobago
>  Issue Type: Task
>Reporter: Udo Schnurpfeil
>Assignee: Udo Schnurpfeil
>Priority: Major
> Fix For: 4.2.1
>
>




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


[jira] [Created] (TOBAGO-1894) , , , , should support customClass of

2018-04-26 Thread Udo Schnurpfeil (JIRA)
Udo Schnurpfeil created TOBAGO-1894:
---

 Summary: , , , 
,  should support customClass of 
 Key: TOBAGO-1894
 URL: https://issues.apache.org/jira/browse/TOBAGO-1894
 Project: MyFaces Tobago
  Issue Type: Task
Reporter: Udo Schnurpfeil
Assignee: Udo Schnurpfeil






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