[incubator-netbeans] 01/01: Merge pull request #947 from junichi11/netbeans-1350-replace-php5-text

2018-10-04 Thread tmysik
This is an automated email from the ASF dual-hosted git repository.

tmysik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git

commit 7bbd7cf9e26edf793eff5e92ec6e9b8de8079cda
Merge: 4666978 558ac9a
Author: Tomáš Myšík 
AuthorDate: Fri Oct 5 08:58:38 2018 +0200

Merge pull request #947 from junichi11/netbeans-1350-replace-php5-text

[NETBEANS-1350] Fix "PHP 5" text

 .../org/netbeans/modules/php/project/ui/options/Bundle.properties | 2 +-
 .../netbeans/modules/php/project/ui/options/PhpOptionsPanel.java  | 8 +++-
 .../modules/php/project/ui/resources/emptyPhpProject.html | 2 +-
 .../modules/php/project/ui/resources/existingPhpProject.html  | 2 +-
 .../modules/php/project/ui/resources/remotePhpProject.html| 2 +-
 5 files changed, 7 insertions(+), 9 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[incubator-netbeans] branch master updated (4666978 -> 7bbd7cf)

2018-10-04 Thread tmysik
This is an automated email from the ASF dual-hosted git repository.

tmysik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git.


from 4666978  Merge pull request #935 from 
rtaneja1/rtaneja/module-review-web-jsf
 add 558ac9a  [NETBEANS-1350] Fix "PHP 5" text
 new 7bbd7cf  Merge pull request #947 from 
junichi11/netbeans-1350-replace-php5-text

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/netbeans/modules/php/project/ui/options/Bundle.properties | 2 +-
 .../netbeans/modules/php/project/ui/options/PhpOptionsPanel.java  | 8 +++-
 .../modules/php/project/ui/resources/emptyPhpProject.html | 2 +-
 .../modules/php/project/ui/resources/existingPhpProject.html  | 2 +-
 .../modules/php/project/ui/resources/remotePhpProject.html| 2 +-
 5 files changed, 7 insertions(+), 9 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-723) PHP - Refactor - rename class - not work correctly

2018-10-04 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-723?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16639294#comment-16639294
 ] 

Junichi Yamamoto commented on NETBEANS-723:
---

As I wrote above, please attach a simple sample project(zip file) to reproduce 
it if possible.

> PHP - Refactor - rename class - not work correctly
> --
>
> Key: NETBEANS-723
> URL: https://issues.apache.org/jira/browse/NETBEANS-723
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor, php - Refactoring
>Affects Versions: 9.0
>Reporter: Piotr Hoppe
>Priority: Major
>
> When I put cursor on name of php class and select option "Refactor > Rename" 
> from right menu.
>  Then I see window "Rename" with selected option "Rename Also File With the 
> Declaration"
>  And I press button "Preview" 
>  Then I see "Refactoring" tab and I press button "Do Refactoring"
>  Then refactoring is executed but *class name is not changes.*



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-108) No check of type hinting constistency in overwritten methods

2018-10-04 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-108?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16639260#comment-16639260
 ] 

Junichi Yamamoto commented on NETBEANS-108:
---

As a workaround: I suggest that you create an override method using the code 
generator(Alt + INS) or code completion to prevent it. Thanks.

> No check  of type hinting constistency in overwritten methods
> -
>
> Key: NETBEANS-108
> URL: https://issues.apache.org/jira/browse/NETBEANS-108
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 8.2
> Environment: Both Windows and Mac OS
>Reporter: Alperovitch
>Priority: Major
>
> Let's consider the following code :
> {code}
> class A{
> function test(int $x) : bool{
> return $x>0;
>  }
> }
> class B extends A{
> function test($x){
> return $x>10;
> }
> }
> {code}
> With PHP7.0 or 7.1 default parameters, this code would trigger the following 
> error :
> {code}
> Fatal error: Declaration of B::test($x) must be compatible with A::test(int
> $x): bool 
> {code}
> (and I am even not sure that there is any way to parameter PHP so that it 
> does not trigger such error)
> It would be useful if the Editor would flag this issue as a warning or an
> error on the row of the definition of function test in class B.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-723) PHP - Refactor - rename class - not work correctly

2018-10-04 Thread Piotr Hoppe (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-723?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16639275#comment-16639275
 ] 

Piotr Hoppe commented on NETBEANS-723:
--

Please look at that video: 
https://drive.google.com/file/d/1rcwNRRvDf7yylqY6FRMf5jAsN4fl7L7R/view?usp=sharing

> PHP - Refactor - rename class - not work correctly
> --
>
> Key: NETBEANS-723
> URL: https://issues.apache.org/jira/browse/NETBEANS-723
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor, php - Refactoring
>Affects Versions: 9.0
>Reporter: Piotr Hoppe
>Priority: Major
>
> When I put cursor on name of php class and select option "Refactor > Rename" 
> from right menu.
>  Then I see window "Rename" with selected option "Rename Also File With the 
> Declaration"
>  And I press button "Preview" 
>  Then I see "Refactoring" tab and I press button "Do Refactoring"
>  Then refactoring is executed but *class name is not changes.*



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-56) Code completion disappears while searching for a specific code template

2018-10-04 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto updated NETBEANS-56:
-
Component/s: (was: php - Editor)
 (was: php - Code)
 editor - Completion & Templates

> Code completion disappears while searching for a specific code template
> ---
>
> Key: NETBEANS-56
> URL: https://issues.apache.org/jira/browse/NETBEANS-56
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion & Templates
>Affects Versions: 8.2
>Reporter: Christian Lenz
>Priority: Major
>
> There are several default code template for PHP, like *ifnc* or *pfnc* and 
> some others. When I type: "pu" I see everything what was found for *pu* like 
> *public* or the code template *public function functionName...*. For *if* 
> too. So when I type *p* code completion comes up and when I type *f* after 
> the p, the code completion disappears. It will no finding any result. but 
> this is wrong. When I remove the f with backspace and add it again, then 
> everything is fine. So it is a problem while the first search? When I type 
> *if* or *pf* the code completion never comes up.
> Regards
> Chris



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-108) No check of type hinting constistency in overwritten methods

2018-10-04 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto updated NETBEANS-108:
--
Issue Type: Improvement  (was: Bug)

> No check  of type hinting constistency in overwritten methods
> -
>
> Key: NETBEANS-108
> URL: https://issues.apache.org/jira/browse/NETBEANS-108
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 8.2
> Environment: Both Windows and Mac OS
>Reporter: Alperovitch
>Priority: Major
>
> Let's consider the following code :
> {code}
> class A{
> function test(int $x) : bool{
> return $x>0;
>  }
> }
> class B extends A{
> function test($x){
> return $x>10;
> }
> }
> {code}
> With PHP7.0 or 7.1 default parameters, this code would trigger the following 
> error :
> {code}
> Fatal error: Declaration of B::test($x) must be compatible with A::test(int
> $x): bool 
> {code}
> (and I am even not sure that there is any way to parameter PHP so that it 
> does not trigger such error)
> It would be useful if the Editor would flag this issue as a warning or an
> error on the row of the definition of function test in class B.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-418) Code templates shows up in code completion

2018-10-04 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16639253#comment-16639253
 ] 

Junichi Yamamoto commented on NETBEANS-418:
---

PHP editor does not show code completion items for Code Templates. So I changed 
the Components to editor - Competion & Templates.

> Code templates shows up in code completion
> --
>
> Key: NETBEANS-418
> URL: https://issues.apache.org/jira/browse/NETBEANS-418
> Project: NetBeans
>  Issue Type: Improvement
>  Components: editor - Completion & Templates
>Affects Versions: 9.0
>Reporter: Bo Andersen
>Priority: Minor
>
> When you want to see class methods/properties on an instance after typing ->, 
> you get all the "Code templates" as well. 
>  
> $foo-> // "Popup Completion Window" should only show methods/properties on 
> the object, and not "Code templates"



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-418) Code templates shows up in code completion

2018-10-04 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto updated NETBEANS-418:
--
Component/s: (was: php - Editor)
 editor - Completion & Templates

> Code templates shows up in code completion
> --
>
> Key: NETBEANS-418
> URL: https://issues.apache.org/jira/browse/NETBEANS-418
> Project: NetBeans
>  Issue Type: Improvement
>  Components: editor - Completion & Templates
>Affects Versions: 9.0
>Reporter: Bo Andersen
>Priority: Minor
>
> When you want to see class methods/properties on an instance after typing ->, 
> you get all the "Code templates" as well. 
>  
> $foo-> // "Popup Completion Window" should only show methods/properties on 
> the object, and not "Code templates"



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-418) Code templates shows up in code completion

2018-10-04 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto updated NETBEANS-418:
--
Issue Type: Improvement  (was: Bug)

> Code templates shows up in code completion
> --
>
> Key: NETBEANS-418
> URL: https://issues.apache.org/jira/browse/NETBEANS-418
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 9.0
>Reporter: Bo Andersen
>Priority: Minor
>
> When you want to see class methods/properties on an instance after typing ->, 
> you get all the "Code templates" as well. 
>  
> $foo-> // "Popup Completion Window" should only show methods/properties on 
> the object, and not "Code templates"



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-723) PHP - Refactor - rename class - not work correctly

2018-10-04 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto resolved NETBEANS-723.
---
Resolution: Works for Me

> PHP - Refactor - rename class - not work correctly
> --
>
> Key: NETBEANS-723
> URL: https://issues.apache.org/jira/browse/NETBEANS-723
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor, php - Refactoring
>Affects Versions: 9.0
>Reporter: Piotr Hoppe
>Priority: Major
>
> When I put cursor on name of php class and select option "Refactor > Rename" 
> from right menu.
>  Then I see window "Rename" with selected option "Rename Also File With the 
> Declaration"
>  And I press button "Preview" 
>  Then I see "Refactoring" tab and I press button "Do Refactoring"
>  Then refactoring is executed but *class name is not changes.*



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-723) PHP - Refactor - rename class - not work correctly

2018-10-04 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-723?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16639248#comment-16639248
 ] 

Junichi Yamamoto commented on NETBEANS-723:
---

I cannot reproduce it. Could you attach a sample project to reproduce it?

> PHP - Refactor - rename class - not work correctly
> --
>
> Key: NETBEANS-723
> URL: https://issues.apache.org/jira/browse/NETBEANS-723
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor, php - Refactoring
>Affects Versions: 9.0
>Reporter: Piotr Hoppe
>Priority: Major
>
> When I put cursor on name of php class and select option "Refactor > Rename" 
> from right menu.
>  Then I see window "Rename" with selected option "Rename Also File With the 
> Declaration"
>  And I press button "Preview" 
>  Then I see "Refactoring" tab and I press button "Do Refactoring"
>  Then refactoring is executed but *class name is not changes.*



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[incubator-netbeans] branch master updated (a47d947 -> 4666978)

2018-10-04 Thread rtaneja
This is an automated email from the ASF dual-hosted git repository.

rtaneja pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git.


from a47d947  Merge pull request #946 from 
jlahoda/increment-spec-versions-master
 add 049ea85  [NETBEANS-1074] : module review web.jsf
 add 6d19406  [NETBEANS-1074] Replaced web-facesconfig_1_*.dtd with latest 
having complete license info from 
http://www.oracle.com/webfolder/technetwork/jsc/dtd/index.html, added license 
info in xml.xsd
 new 4666978  Merge pull request #935 from 
rtaneja1/rtaneja/module-review-web-jsf

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 enterprise/web.jsf/build.xml   |7 -
 enterprise/web.jsf/external/binaries-list  |2 -
 enterprise/web.jsf/external/glassfish-license.txt  |  274 --
 enterprise/web.jsf/external/w3c-license.txt|   37 -
 enterprise/web.jsf/licenseinfo.xml |   96 +
 .../web/jsf/palette/items/resources/edit.ftl   |   48 +-
 .../web/jsf/palette/items/resources/table.ftl  |   48 +-
 .../web/jsf/palette/items/resources/view.ftl   |   48 +-
 .../web/jsf/resources/facelet-taglib_1_0.dtd   |   74 +
 .../modules/web/jsf/resources/faces-config.xml |   20 +
 .../modules/web/jsf/resources/faces-config_1_2.xml |   20 +
 .../modules/web/jsf/resources/faces-config_2_0.xml |   20 +
 .../modules/web/jsf/resources/faces-config_2_1.xml |   20 +
 .../modules/web/jsf/resources/faces-config_2_2.xml |   20 +
 .../modules/web/jsf/resources/forwardToJSF.jsp |   19 +
 .../modules/web/jsf/resources/javaee_5.xsd | 1784 ++
 .../resources/javaee_web_services_client_1_2.xsd   |  386 ++
 .../web/jsf/resources/templates/JsfUtil.ftl|   54 +-
 .../jsf/resources/templates/PaginationHelper.ftl   |   54 +-
 .../modules/web/jsf/resources/templates/bundle.ftl |   48 +-
 .../web/jsf/resources/templates/controller.ftl |   54 +-
 .../modules/web/jsf/resources/templates/create.ftl |   48 +-
 .../web/jsf/resources/templates/crudtemplate.ftl   |   48 +-
 .../modules/web/jsf/resources/templates/edit.ftl   |   48 +-
 .../modules/web/jsf/resources/templates/list.ftl   |   48 +-
 .../modules/web/jsf/resources/templates/view.ftl   |   48 +-
 .../jsf/resources/web-facelettaglibrary_2_0.xsd|  515 +++
 .../jsf/resources/web-facelettaglibrary_2_2.xsd|  681 
 .../web/jsf/resources/web-facesconfig_1_0.dtd  |  910 +
 .../web/jsf/resources/web-facesconfig_1_1.dtd  |  931 +
 .../web/jsf/resources/web-facesconfig_1_2.xsd  | 2110 +++
 .../web/jsf/resources/web-facesconfig_2_0.xsd  | 2732 +++
 .../web/jsf/resources/web-facesconfig_2_1.xsd  | 2851 +++
 .../web/jsf/resources/web-facesconfig_2_2.xsd  | 3703 
 .../modules/web/jsf/resources/welcomeJSF.jsp   |   19 +
 .../org/netbeans/modules/web/jsf/resources/xml.xsd |  129 +
 .../metamodel/data/faces-config-prettyFaces.xml|   20 +
 .../web/jsf/metamodel/data/faces-config.xml|   20 +
 .../web/jsf/metamodel/data/one.faces-config.xml|   19 +
 .../web/jsf/metamodel/data/three.faces-config.xml  |   19 +
 .../web/jsf/metamodel/data/two.faces-config.xml|   19 +
 .../modules/web/jsf/xdm/model/faces-config-01.xml  |   19 +
 .../modules/web/jsf/xdm/model/faces-config-02.xml  |   19 +
 .../modules/web/jsf/xdm/model/faces-config-03.xml  |   19 +
 .../modules/web/jsf/xdm/model/faces-config-04.xml  |   19 +
 .../modules/web/jsf/xdm/model/faces-config-05.xml  |   20 +
 .../web/jsf/xdm/model/faces-config-100321.xml  |   20 +
 .../web/jsf/xdm/model/faces-config-98276.xml   |   19 +
 .../web/jsf/xdm/model/faces-config-99325-end.xml   |   19 +
 .../jsf/xdm/model/faces-config-99325-middle.xml|   19 +
 .../jsf/xdm/model/faces-config-99325-middle2.xml   |   19 +
 .../web/jsf/xdm/model/faces-config-99325.xml   |   19 +
 .../web/jsf/xdm/model/faces-config-99906.xml   |   19 +
 .../web/jsf/xdm/model/faces-config-application.xml |   19 +
 .../web/jsf/xdm/model/faces-config-component.xml   |   19 +
 .../jsf/xdm/model/faces-config-default-locale.xml  |   19 +
 .../web/jsf/xdm/model/faces-config-description.xml |   19 +
 .../jsf/xdm/model/faces-config-empty-component.xml |   19 +
 .../web/jsf/xdm/model/faces-config-empty.xml   |   19 +
 .../jsf/xdm/model/faces-config-flash-factory.xml   |   20 +
 .../jsf/xdm/model/faces-config-flow-definition.xml |   20 +
 .../model/faces-config-flow-handler-factory.xml|   20 +
 .../jsf/xdm/model/faces-config-jsfjpa-example.xml  |   19 +
 .../jsf/xdm/model/faces-config-jsfjpa-example2.xml |   19 +
 .../jsf/xdm/model/faces-config-jsfjpa-example3.xml |   19 +
 .../jsf/xdm/model/faces-config-jsfjpa-example4.xml |   19 +

[incubator-netbeans] 01/01: Merge pull request #935 from rtaneja1/rtaneja/module-review-web-jsf

2018-10-04 Thread rtaneja
This is an automated email from the ASF dual-hosted git repository.

rtaneja pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git

commit 4666978ea1cb14d1ad61541acc07cefc43f94402
Merge: a47d947 6d19406
Author: Reema Taneja <32299405+rtane...@users.noreply.github.com>
AuthorDate: Fri Oct 5 09:30:19 2018 +0530

Merge pull request #935 from rtaneja1/rtaneja/module-review-web-jsf

[NETBEANS-1074] : module review web.jsf

 enterprise/web.jsf/build.xml   |7 -
 enterprise/web.jsf/external/binaries-list  |2 -
 enterprise/web.jsf/external/glassfish-license.txt  |  274 --
 enterprise/web.jsf/external/w3c-license.txt|   37 -
 enterprise/web.jsf/licenseinfo.xml |   96 +
 .../web/jsf/palette/items/resources/edit.ftl   |   48 +-
 .../web/jsf/palette/items/resources/table.ftl  |   48 +-
 .../web/jsf/palette/items/resources/view.ftl   |   48 +-
 .../web/jsf/resources/facelet-taglib_1_0.dtd   |   74 +
 .../modules/web/jsf/resources/faces-config.xml |   20 +
 .../modules/web/jsf/resources/faces-config_1_2.xml |   20 +
 .../modules/web/jsf/resources/faces-config_2_0.xml |   20 +
 .../modules/web/jsf/resources/faces-config_2_1.xml |   20 +
 .../modules/web/jsf/resources/faces-config_2_2.xml |   20 +
 .../modules/web/jsf/resources/forwardToJSF.jsp |   19 +
 .../modules/web/jsf/resources/javaee_5.xsd | 1784 ++
 .../resources/javaee_web_services_client_1_2.xsd   |  386 ++
 .../web/jsf/resources/templates/JsfUtil.ftl|   54 +-
 .../jsf/resources/templates/PaginationHelper.ftl   |   54 +-
 .../modules/web/jsf/resources/templates/bundle.ftl |   48 +-
 .../web/jsf/resources/templates/controller.ftl |   54 +-
 .../modules/web/jsf/resources/templates/create.ftl |   48 +-
 .../web/jsf/resources/templates/crudtemplate.ftl   |   48 +-
 .../modules/web/jsf/resources/templates/edit.ftl   |   48 +-
 .../modules/web/jsf/resources/templates/list.ftl   |   48 +-
 .../modules/web/jsf/resources/templates/view.ftl   |   48 +-
 .../jsf/resources/web-facelettaglibrary_2_0.xsd|  515 +++
 .../jsf/resources/web-facelettaglibrary_2_2.xsd|  681 
 .../web/jsf/resources/web-facesconfig_1_0.dtd  |  910 +
 .../web/jsf/resources/web-facesconfig_1_1.dtd  |  931 +
 .../web/jsf/resources/web-facesconfig_1_2.xsd  | 2110 +++
 .../web/jsf/resources/web-facesconfig_2_0.xsd  | 2732 +++
 .../web/jsf/resources/web-facesconfig_2_1.xsd  | 2851 +++
 .../web/jsf/resources/web-facesconfig_2_2.xsd  | 3703 
 .../modules/web/jsf/resources/welcomeJSF.jsp   |   19 +
 .../org/netbeans/modules/web/jsf/resources/xml.xsd |  129 +
 .../metamodel/data/faces-config-prettyFaces.xml|   20 +
 .../web/jsf/metamodel/data/faces-config.xml|   20 +
 .../web/jsf/metamodel/data/one.faces-config.xml|   19 +
 .../web/jsf/metamodel/data/three.faces-config.xml  |   19 +
 .../web/jsf/metamodel/data/two.faces-config.xml|   19 +
 .../modules/web/jsf/xdm/model/faces-config-01.xml  |   19 +
 .../modules/web/jsf/xdm/model/faces-config-02.xml  |   19 +
 .../modules/web/jsf/xdm/model/faces-config-03.xml  |   19 +
 .../modules/web/jsf/xdm/model/faces-config-04.xml  |   19 +
 .../modules/web/jsf/xdm/model/faces-config-05.xml  |   20 +
 .../web/jsf/xdm/model/faces-config-100321.xml  |   20 +
 .../web/jsf/xdm/model/faces-config-98276.xml   |   19 +
 .../web/jsf/xdm/model/faces-config-99325-end.xml   |   19 +
 .../jsf/xdm/model/faces-config-99325-middle.xml|   19 +
 .../jsf/xdm/model/faces-config-99325-middle2.xml   |   19 +
 .../web/jsf/xdm/model/faces-config-99325.xml   |   19 +
 .../web/jsf/xdm/model/faces-config-99906.xml   |   19 +
 .../web/jsf/xdm/model/faces-config-application.xml |   19 +
 .../web/jsf/xdm/model/faces-config-component.xml   |   19 +
 .../jsf/xdm/model/faces-config-default-locale.xml  |   19 +
 .../web/jsf/xdm/model/faces-config-description.xml |   19 +
 .../jsf/xdm/model/faces-config-empty-component.xml |   19 +
 .../web/jsf/xdm/model/faces-config-empty.xml   |   19 +
 .../jsf/xdm/model/faces-config-flash-factory.xml   |   20 +
 .../jsf/xdm/model/faces-config-flow-definition.xml |   20 +
 .../model/faces-config-flow-handler-factory.xml|   20 +
 .../jsf/xdm/model/faces-config-jsfjpa-example.xml  |   19 +
 .../jsf/xdm/model/faces-config-jsfjpa-example2.xml |   19 +
 .../jsf/xdm/model/faces-config-jsfjpa-example3.xml |   19 +
 .../jsf/xdm/model/faces-config-jsfjpa-example4.xml |   19 +
 .../jsf/xdm/model/faces-config-jsfjpa-example5.xml |   19 +
 .../web/jsf/xdm/model/faces-config-locale-1.xml|   19 +
 .../web/jsf/xdm/model/faces-config-locale-2.xml|   19 +
 .../web/jsf/xdm/model/faces-config-locale.xml  |   19 +
 .../xdm/model/faces-config-navigation-case-if.xml  |   19 +
 .../jsf/xdm/model/faces-config-navigation-case.xml |   19 +
 .../jsf/xdm/model/faces-con

[jira] [Updated] (NETBEANS-1348) Increment Spec Versions on Release Branch

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi updated NETBEANS-1348:
--
Description: 
Increment spec version of all modules on release100, so marking that it is a 
branch of the master work.

{{Done by:}}
 \{{ ant -Dbranch=true increment-spec-versions}}

  was:
Incrementing spec version of all modules in master, so that master modules are 
definitely "newer" than anything on the release100 branch.

{{Done by:}}
{{ ant -Dbranch=true increment-spec-versions}}


> Increment Spec Versions on Release Branch
> -
>
> Key: NETBEANS-1348
> URL: https://issues.apache.org/jira/browse/NETBEANS-1348
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Priority: Major
> Fix For: 10.0
>
>
> Increment spec version of all modules on release100, so marking that it is a 
> branch of the master work.
> {{Done by:}}
>  \{{ ant -Dbranch=true increment-spec-versions}}



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[incubator-netbeans] branch master updated (6351f39 -> a47d947)

2018-10-04 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git.


from 6351f39  [NETBEANS-49] Avoid large scroll pane jumps on Windows (#881)
 add 69fb172  Incrementing spec. versions after the creation of the 
release100 branch.
 new a47d947  Merge pull request #946 from 
jlahoda/increment-spec-versions-master

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 apisupport/apisupport.ant/manifest.mf  | 2 +-
 apisupport/apisupport.installer.maven/manifest.mf  | 2 +-
 apisupport/apisupport.installer/manifest.mf| 2 +-
 apisupport/apisupport.kit/manifest.mf  | 2 +-
 apisupport/apisupport.project/manifest.mf  | 2 +-
 apisupport/apisupport.refactoring/manifest.mf  | 2 +-
 apisupport/apisupport.wizards/manifest.mf  | 2 +-
 apisupport/maven.apisupport/manifest.mf| 2 +-
 apisupport/timers/manifest.mf  | 2 +-
 ergonomics/ide.ergonomics/manifest.mf  | 2 +-
 ergonomics/performance.ergonomics/manifest.mf  | 2 +-
 extide/o.apache.tools.ant.module/nbproject/project.properties  | 2 +-
 extide/options.java/manifest.mf| 2 +-
 groovy/groovy.antproject/manifest.mf   | 2 +-
 groovy/groovy.editor/manifest.mf   | 2 +-
 groovy/groovy.gsp/manifest.mf  | 2 +-
 groovy/groovy.kit/manifest.mf  | 2 +-
 groovy/groovy.refactoring/manifest.mf  | 2 +-
 groovy/groovy.samples/manifest.mf  | 2 +-
 groovy/groovy.support/manifest.mf  | 2 +-
 groovy/libs.groovy/manifest.mf | 2 +-
 groovy/maven.groovy/manifest.mf| 2 +-
 harness/apisupport.harness/manifest.mf | 2 +-
 harness/jellytools.platform/manifest.mf| 2 +-
 harness/jemmy/manifest.mf  | 2 +-
 harness/libs.nbi.ant/manifest.mf   | 2 +-
 harness/libs.nbi.engine/manifest.mf| 2 +-
 harness/nbjunit/manifest.mf| 2 +-
 harness/o.n.insane/nbproject/project.properties| 2 +-
 ide/api.debugger/manifest.mf   | 2 +-
 ide/api.java.classpath/manifest.mf | 2 +-
 ide/api.xml.ui/manifest.mf | 2 +-
 ide/api.xml/manifest.mf| 2 +-
 ide/bugtracking.bridge/manifest.mf | 2 +-
 ide/bugtracking.commons/manifest.mf| 2 +-
 ide/bugtracking/manifest.mf| 2 +-
 ide/bugzilla/manifest.mf   | 2 +-
 ide/c.jcraft.jzlib/nbproject/project.properties| 2 +-
 ide/code.analysis/manifest.mf  | 2 +-
 ide/core.browser.webview/nbproject/project.properties  | 2 +-
 ide/core.browser/nbproject/project.properties  | 2 +-
 ide/core.ide/manifest.mf   | 2 +-
 ide/core.multitabs.project/nbproject/project.properties| 2 +-
 ide/csl.api/nbproject/project.properties   | 2 +-
 ide/csl.types/manifest.mf  | 2 +-
 ide/css.editor/manifest.mf | 2 +-
 ide/css.lib/manifest.mf| 2 +-
 ide/css.model/manifest.mf  | 2 +-
 ide/css.prep/manifest.mf   | 2 +-
 ide/css.visual/manifest.mf | 2 +-
 ide/db.core/manifest.mf| 2 +-
 ide/db.dataview/manifest.mf| 2 +-
 ide/db.drivers/manifest.mf | 2 +-
 ide/db.kit/manifest.mf | 2 +-
 ide/db.metadata.model/manifest.mf  | 2 +-
 ide/db.mysql/nbproject/project.properties  | 2 +-
 ide/db.sql.editor/nbproject/project.properties | 2 +-
 ide/db.sql.visualeditor

[incubator-netbeans] 01/01: Merge pull request #946 from jlahoda/increment-spec-versions-master

2018-10-04 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git

commit a47d94751e63112f97751c7fdff4cbf9706c3c88
Merge: 6351f39 69fb172
Author: Laszlo Kishalmi 
AuthorDate: Thu Oct 4 17:26:00 2018 -0700

Merge pull request #946 from jlahoda/increment-spec-versions-master

Incrementing spec. versions after the creation of the release100 branch.

 apisupport/apisupport.ant/manifest.mf  | 2 +-
 apisupport/apisupport.installer.maven/manifest.mf  | 2 +-
 apisupport/apisupport.installer/manifest.mf| 2 +-
 apisupport/apisupport.kit/manifest.mf  | 2 +-
 apisupport/apisupport.project/manifest.mf  | 2 +-
 apisupport/apisupport.refactoring/manifest.mf  | 2 +-
 apisupport/apisupport.wizards/manifest.mf  | 2 +-
 apisupport/maven.apisupport/manifest.mf| 2 +-
 apisupport/timers/manifest.mf  | 2 +-
 ergonomics/ide.ergonomics/manifest.mf  | 2 +-
 ergonomics/performance.ergonomics/manifest.mf  | 2 +-
 extide/o.apache.tools.ant.module/nbproject/project.properties  | 2 +-
 extide/options.java/manifest.mf| 2 +-
 groovy/groovy.antproject/manifest.mf   | 2 +-
 groovy/groovy.editor/manifest.mf   | 2 +-
 groovy/groovy.gsp/manifest.mf  | 2 +-
 groovy/groovy.kit/manifest.mf  | 2 +-
 groovy/groovy.refactoring/manifest.mf  | 2 +-
 groovy/groovy.samples/manifest.mf  | 2 +-
 groovy/groovy.support/manifest.mf  | 2 +-
 groovy/libs.groovy/manifest.mf | 2 +-
 groovy/maven.groovy/manifest.mf| 2 +-
 harness/apisupport.harness/manifest.mf | 2 +-
 harness/jellytools.platform/manifest.mf| 2 +-
 harness/jemmy/manifest.mf  | 2 +-
 harness/libs.nbi.ant/manifest.mf   | 2 +-
 harness/libs.nbi.engine/manifest.mf| 2 +-
 harness/nbjunit/manifest.mf| 2 +-
 harness/o.n.insane/nbproject/project.properties| 2 +-
 ide/api.debugger/manifest.mf   | 2 +-
 ide/api.java.classpath/manifest.mf | 2 +-
 ide/api.xml.ui/manifest.mf | 2 +-
 ide/api.xml/manifest.mf| 2 +-
 ide/bugtracking.bridge/manifest.mf | 2 +-
 ide/bugtracking.commons/manifest.mf| 2 +-
 ide/bugtracking/manifest.mf| 2 +-
 ide/bugzilla/manifest.mf   | 2 +-
 ide/c.jcraft.jzlib/nbproject/project.properties| 2 +-
 ide/code.analysis/manifest.mf  | 2 +-
 ide/core.browser.webview/nbproject/project.properties  | 2 +-
 ide/core.browser/nbproject/project.properties  | 2 +-
 ide/core.ide/manifest.mf   | 2 +-
 ide/core.multitabs.project/nbproject/project.properties| 2 +-
 ide/csl.api/nbproject/project.properties   | 2 +-
 ide/csl.types/manifest.mf  | 2 +-
 ide/css.editor/manifest.mf | 2 +-
 ide/css.lib/manifest.mf| 2 +-
 ide/css.model/manifest.mf  | 2 +-
 ide/css.prep/manifest.mf   | 2 +-
 ide/css.visual/manifest.mf | 2 +-
 ide/db.core/manifest.mf| 2 +-
 ide/db.dataview/manifest.mf| 2 +-
 ide/db.drivers/manifest.mf | 2 +-
 ide/db.kit/manifest.mf | 2 +-
 ide/db.metadata.model/manifest.mf  | 2 +-
 ide/db.mysql/nbproject/project.properties  | 2 +-
 ide/db.sql.editor/nbproject/project.properties | 2 +-
 ide/db.sql.visualeditor/nbproject/project.properties   | 2 +-
 ide/db/nbproject/project.properties| 2 +-
 ide/dbapi/nbproject/project.properties | 2 +-
 ide/defaults/manif

[jira] [Created] (NETBEANS-1351) Increment Spec Versions on Master Baranch

2018-10-04 Thread Laszlo Kishalmi (JIRA)
Laszlo Kishalmi created NETBEANS-1351:
-

 Summary: Increment Spec Versions on Master Baranch
 Key: NETBEANS-1351
 URL: https://issues.apache.org/jira/browse/NETBEANS-1351
 Project: NetBeans
  Issue Type: Sub-task
Reporter: Laszlo Kishalmi


Incrementing spec version of all modules in master, so that master modules are 
definitely "newer" than anything on the release100 branch.

{{Done by:}}
 \{{ ant increment-spec-versions}}



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1348) Increment Spec Versions on Release Branch

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi updated NETBEANS-1348:
--
Summary: Increment Spec Versions on Release Branch  (was: Increment Spec 
Versions)

> Increment Spec Versions on Release Branch
> -
>
> Key: NETBEANS-1348
> URL: https://issues.apache.org/jira/browse/NETBEANS-1348
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Priority: Major
> Fix For: 10.0
>
>
> Incrementing spec version of all modules in master, so that master modules 
> are definitely "newer" than anything on the release100 branch.
> {{Done by:}}
> {{ ant -Dbranch=true increment-spec-versions}}



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1002) Add a support for Gnome Keyring 3 API

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi updated NETBEANS-1002:
--
Summary: Add a support for Gnome Keyring 3 API  (was: Add a support for 
Gnome Keyrong 3 API)

> Add a support for Gnome Keyring 3 API
> -
>
> Key: NETBEANS-1002
> URL: https://issues.apache.org/jira/browse/NETBEANS-1002
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Keyring
>Reporter: Laszlo Kishalmi
>Priority: Minor
>
> Add a support to communicate with the new Keyring API part of Gnome 3.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1294) Fix code completion tests for Groovy

2018-10-04 Thread ASF GitHub Bot (JIRA)


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

ASF GitHub Bot updated NETBEANS-1294:
-
Labels: pull-request-available  (was: )

> Fix code completion tests for Groovy
> 
>
> Key: NETBEANS-1294
> URL: https://issues.apache.org/jira/browse/NETBEANS-1294
> Project: NetBeans
>  Issue Type: Improvement
>  Components: groovy - Editor
>Reporter: Sven Reimers
>Assignee: Sven Reimers
>Priority: Major
>  Labels: pull-request-available
>
> Due to upgrading and other fixes Groovy code completion tests are out of sync
>  * filter unnecessary packages (e.g. apple is only visible on OS X)
>  * upgrade golden files



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1350) Fix "PHP 5" text

2018-10-04 Thread ASF GitHub Bot (JIRA)


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

ASF GitHub Bot updated NETBEANS-1350:
-
Labels: pull-request-available  (was: )

> Fix "PHP 5" text
> 
>
> Key: NETBEANS-1350
> URL: https://issues.apache.org/jira/browse/NETBEANS-1350
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Project
>Affects Versions: 9.0
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
>
> When we create a new PHP project, "Creates a new PHP 5 application in a 
> standard IDE project." is shown in the description area.
> We provide support for not only PHP 5 but also PHP 7. So, we should replace 
> "PHP 5" with "PHP" or "PHP 5+".



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-1145) Automate build of Windows Launchers

2018-10-04 Thread Eirik Bakke (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638957#comment-16638957
 ] 

Eirik Bakke edited comment on NETBEANS-1145 at 10/4/18 10:14 PM:
-

My notes from building the Windows launchers, in case it is of any help:
 * The windows EXE files can be built on Linux. No Windows machine is necessary 
except for testing purposes.
 * The windows EXE files can also be built on WSL, i.e. Windows Subsystem for 
Linux. (Cue theme music from the movie "Inception".)
 * On Windows WSL Ubuntu, I used "sudo apt-get install gcc g++ cmake gdb 
qt4-qmake g++-mingw-w64-x86-64 g++-mingw mingw-w64 openjdk-8-jdk" to get all 
the relevant packages installed. I assume it would be something similar on 
regular Ubuntu.
 * The launchers are in the following directories:
 harness/apisupport.harness/windows-launcher-src
 platform/o.n.bootstrap/launcher/windows
 nb/ide.launcher/windows
 * For each of the above directories, do "make -f Makefile.mingw". That should 
build the EXE file in each case.


was (Author: ebakke):
My notes from building the Windows launchers, in case it is of any help:
 * The windows EXE files can be built on Linux. No Windows machine is necessary 
except for testing purposes.
 * The windows EXE files can also be built on WSL, i.e. Windows Subsystem for 
Linux. (Cue theme music from the movie "Inception".)
 * On Windows WSL Ubuntu, I used "sudo apt-get install gcc g++ cmake gdb 
qt4-qmake g++-mingw-w64-x86-64 g++-mingw mingw-w64 openjdk-8-jdk" to get all 
the relevant packages installed. I assume it would be something similar on 
regular Ubuntu.
 * The launchers are in the following directories:
 harness/apisupport.harness/windows-launcher-src
 platform/o.n.bootstrap/launcher/windows
 nb/ide.launcher/windows
 * For each of the above directories, do "make -f Makefile.mingw". That should 
build the EXE file.

> Automate build of Windows Launchers
> ---
>
> Key: NETBEANS-1145
> URL: https://issues.apache.org/jira/browse/NETBEANS-1145
> Project: NetBeans
>  Issue Type: Improvement
>  Components: apisupport - Harness, platform - Launchers&CLI
>Reporter: Svatopluk Dedic
>Priority: Minor
>
> See comments in 
> [https://github.com/apache/incubator-netbeans/pull/573#pullrequestreview-147108327]
>  :
> The envisioned build process should monitor:
>  * apisupport.harness/lwindows-launcher-src
>  * ide/launcher/windows
>  * o.n.bootstrap/launcher/windows
> and rebuild netbeans or application launchers. I am not so sure about 
> automatic upload to the extbin, the number of artifact from automated builds 
> could reach quite high.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1145) Automate build of Windows Launchers

2018-10-04 Thread Eirik Bakke (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638957#comment-16638957
 ] 

Eirik Bakke commented on NETBEANS-1145:
---

My notes from building the Windows launchers, in case it is of any help:
 * The windows EXE files can be built on Linux. No Windows machine is necessary 
except for testing purposes.
 * The windows EXE files can also be built on WSL, i.e. Windows Subsystem for 
Linux. (Cue theme music from the movie "Inception".)
 * On Windows WSL Ubuntu, I used "sudo apt-get install gcc g++ cmake gdb 
qt4-qmake g++-mingw-w64-x86-64 g++-mingw mingw-w64 openjdk-8-jdk" to get all 
the relevant packages installed. I assume it would be something similar on 
regular Ubuntu.
 * The launchers are in the following directories:
 harness/apisupport.harness/windows-launcher-src
 platform/o.n.bootstrap/launcher/windows
 nb/ide.launcher/windows
 * For each of the above directories, do "make -f Makefile.mingw". That should 
build the EXE file.

> Automate build of Windows Launchers
> ---
>
> Key: NETBEANS-1145
> URL: https://issues.apache.org/jira/browse/NETBEANS-1145
> Project: NetBeans
>  Issue Type: Improvement
>  Components: apisupport - Harness, platform - Launchers&CLI
>Reporter: Svatopluk Dedic
>Priority: Minor
>
> See comments in 
> [https://github.com/apache/incubator-netbeans/pull/573#pullrequestreview-147108327]
>  :
> The envisioned build process should monitor:
>  * apisupport.harness/lwindows-launcher-src
>  * ide/launcher/windows
>  * o.n.bootstrap/launcher/windows
> and rebuild netbeans or application launchers. I am not so sure about 
> automatic upload to the extbin, the number of artifact from automated builds 
> could reach quite high.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-1350) Fix "PHP 5" text

2018-10-04 Thread Junichi Yamamoto (JIRA)
Junichi Yamamoto created NETBEANS-1350:
--

 Summary: Fix "PHP 5" text
 Key: NETBEANS-1350
 URL: https://issues.apache.org/jira/browse/NETBEANS-1350
 Project: NetBeans
  Issue Type: Bug
  Components: php - Project
Affects Versions: 9.0
Reporter: Junichi Yamamoto
Assignee: Junichi Yamamoto


When we create a new PHP project, "Creates a new PHP 5 application in a 
standard IDE project." is shown in the description area.
We provide support for not only PHP 5 but also PHP 7. So, we should replace 
"PHP 5" with "PHP" or "PHP 5+".



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-1342) I get this error when I preview Options -> HTML/Js -> Mobile Platform

2018-10-04 Thread Los Vitaly (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638894#comment-16638894
 ] 

Los Vitaly edited comment on NETBEANS-1342 at 10/4/18 9:29 PM:
---

It is newbie for Jira and here, so I don't really understand how to right 
format and give report. 

If it's important, I give another reports, while testing netbeans 10. 

I'm not sure, maybe it's problem on my ubuntu

Have I  report you everything errors here?


was (Author: vitalykk1983):
It is newbie for Jira and here, so I don't really understand how to right 
format and give report. 

If it's important, I give another reports, while testing netbeans 10. 

> I get this error when I preview Options -> HTML/Js -> Mobile Platform
> -
>
> Key: NETBEANS-1342
> URL: https://issues.apache.org/jira/browse/NETBEANS-1342
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: ubuntu 16.04
>Reporter: Los Vitaly
>Priority: Major
> Fix For: 10.0
>
>
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsPanel.load(MobilePlatformsPanel.java:276)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController$1.run(MobilePlatformsOptionsPanelController.java:55)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController.update(MobilePlatformsOptionsPanelController.java:52)
>  at 
> org.netbeans.modules.options.TabbedController.handleTabSwitched(TabbedController.java:213)
>  at 
> org.netbeans.modules.options.TabbedController.access$200(TabbedController.java:59)
>  at 
> org.netbeans.modules.options.TabbedController$2.stateChanged(TabbedController.java:86)
>  at javax.swing.JTabbedPane.fireStateChanged(JTabbedPane.java:416)
>  at javax.swing.JTabbedPane$ModelListener.stateChanged(JTabbedPane.java:270)
>  at 
> javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:132)
>  at 
> javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:67)
>  at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:616)
>  at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:591)
>  at 
> javax.swing.plaf.basic.BasicTabbedPaneUI$Handler.mousePressed(BasicTabbedPaneUI.java:3647)
>  at 
> javax.swing.plaf.synth.SynthTabbedPaneUI$1.mousePressed(SynthTabbedPaneUI.java:312)
>  at java.awt.Component.processMouseEvent(Component.java:6536)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6304)
>  at java.awt.Container.processEvent(Container.java:2239)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2297)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4532)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
>  at java.awt.Container.dispatchEventImpl(Container.java:2283)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84)
>  at java.awt.EventQueue$4.run(EventQueue.java:733)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at java.awt.EventQueue.dispatchEvent(EventQueue.java:730)
>  at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>  at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
>  at 
> jav

[jira] [Commented] (NETBEANS-1342) I get this error when I preview Options -> HTML/Js -> Mobile Platform

2018-10-04 Thread Los Vitaly (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638894#comment-16638894
 ] 

Los Vitaly commented on NETBEANS-1342:
--

It is newbie for Jira and here, so I don't really understand how to right 
format and give report. 

If it's important, I give another reports, while testing netbeans 10. 

> I get this error when I preview Options -> HTML/Js -> Mobile Platform
> -
>
> Key: NETBEANS-1342
> URL: https://issues.apache.org/jira/browse/NETBEANS-1342
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: ubuntu 16.04
>Reporter: Los Vitaly
>Priority: Major
> Fix For: 10.0
>
>
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsPanel.load(MobilePlatformsPanel.java:276)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController$1.run(MobilePlatformsOptionsPanelController.java:55)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController.update(MobilePlatformsOptionsPanelController.java:52)
>  at 
> org.netbeans.modules.options.TabbedController.handleTabSwitched(TabbedController.java:213)
>  at 
> org.netbeans.modules.options.TabbedController.access$200(TabbedController.java:59)
>  at 
> org.netbeans.modules.options.TabbedController$2.stateChanged(TabbedController.java:86)
>  at javax.swing.JTabbedPane.fireStateChanged(JTabbedPane.java:416)
>  at javax.swing.JTabbedPane$ModelListener.stateChanged(JTabbedPane.java:270)
>  at 
> javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:132)
>  at 
> javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:67)
>  at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:616)
>  at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:591)
>  at 
> javax.swing.plaf.basic.BasicTabbedPaneUI$Handler.mousePressed(BasicTabbedPaneUI.java:3647)
>  at 
> javax.swing.plaf.synth.SynthTabbedPaneUI$1.mousePressed(SynthTabbedPaneUI.java:312)
>  at java.awt.Component.processMouseEvent(Component.java:6536)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6304)
>  at java.awt.Container.processEvent(Container.java:2239)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2297)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4532)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
>  at java.awt.Container.dispatchEventImpl(Container.java:2283)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84)
>  at java.awt.EventQueue$4.run(EventQueue.java:733)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at java.awt.EventQueue.dispatchEvent(EventQueue.java:730)
>  at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>  at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
>  at 
> java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
>  at 
> java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
> [catch] at java.awt.Ev

[jira] [Resolved] (NETBEANS-1347) Adjust Update Centers

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi resolved NETBEANS-1347.
---
   Resolution: Done
Fix Version/s: 10.0

> Adjust Update Centers
> -
>
> Key: NETBEANS-1347
> URL: https://issues.apache.org/jira/browse/NETBEANS-1347
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Priority: Major
> Fix For: 10.0
>
>
> The update centers needs to be updated to the upcoming release.
> See the linked PR how to do that.
> Thank you Jan!



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[incubator-netbeans] branch release100 updated (9ba333f -> 03bd7b0)

2018-10-04 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a change to branch release100
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git.


from 9ba333f  Merge pull request #945 from 
jlahoda/increment-spec-versions-release100
 add 72074dc  Adjusting update centers for NetBeans 10
 new 03bd7b0  Merge pull request #944 from jlahoda/update-centers-for-nb10

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../modules/updatecenters/resources/Bundle.properties|  9 +++--
 .../modules/updatecenters/resources/mf-layer.xml | 16 +++-
 2 files changed, 6 insertions(+), 19 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[incubator-netbeans] 01/01: Merge pull request #944 from jlahoda/update-centers-for-nb10

2018-10-04 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch release100
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git

commit 03bd7b02a34d998a3cd3758daee6f3aa919579d4
Merge: 9ba333f 72074dc
Author: Laszlo Kishalmi 
AuthorDate: Thu Oct 4 14:24:06 2018 -0700

Merge pull request #944 from jlahoda/update-centers-for-nb10

Adjusting update centers for NetBeans 10

 .../modules/updatecenters/resources/Bundle.properties|  9 +++--
 .../modules/updatecenters/resources/mf-layer.xml | 16 +++-
 2 files changed, 6 insertions(+), 19 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638849#comment-16638849
 ] 

Michal Rama edited comment on NETBEANS-1343 at 10/4/18 8:49 PM:


In earlier versions of Java, it was not necessary to do it (this was done 
automatically) because javaFX was part of Java. Since version 11, this is not 
possible because JavaFX is no longer part of it and must be downloaded 
separately.

[https://openjfx.io|http://example.com]

But the question is how do I put it into operation?


was (Author: michal_cat):
In earlier versions of Java, it was not necessary to do it (this was done 
automatically) because javaFX was part of Java. Since version 11, this is not 
possible because JavaFX is no longer part of it and must be downloaded 
separately.

 

But the question is how do I put it into operation?

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Geertjan Wielenga (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638853#comment-16638853
 ] 

Geertjan Wielenga commented on NETBEANS-1343:
-

I don't know. You need to add JavaFX to your JDK 11 installation, I guess. I 
don't know. Maybe use JDK 9 or 10 when doing JavaFX.

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638849#comment-16638849
 ] 

Michal Rama edited comment on NETBEANS-1343 at 10/4/18 8:48 PM:


In earlier versions of Java, it was not necessary to do it (this was done 
automatically) because javaFX was part of Java. Since version 11, this is not 
possible because JavaFX is no longer part of it and must be downloaded 
separately.

 

But the question is how do I put it into operation?


was (Author: michal_cat):
In earlier versions of Java, it was not necessary to do it (this was done 
automatically) because javaFX was part of Java. Since version 11, this is not 
possible because JavaFX is no longer part of it and must be downloaded 
separately.

[název odkazu|http://example.com]https://openjfx.io

But the question is how do I put it into operation?

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638849#comment-16638849
 ] 

Michal Rama commented on NETBEANS-1343:
---

In earlier versions of Java, it was not necessary to do it (this was done 
automatically) because javaFX was part of Java. Since version 11, this is not 
possible because JavaFX is no longer part of it and must be downloaded 
separately.

[JavaFX|openjfx.io]

But the question is how do I put it into operation?

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638849#comment-16638849
 ] 

Michal Rama edited comment on NETBEANS-1343 at 10/4/18 8:47 PM:


In earlier versions of Java, it was not necessary to do it (this was done 
automatically) because javaFX was part of Java. Since version 11, this is not 
possible because JavaFX is no longer part of it and must be downloaded 
separately.

[název odkazu|http://example.com]https://openjfx.io

But the question is how do I put it into operation?


was (Author: michal_cat):
In earlier versions of Java, it was not necessary to do it (this was done 
automatically) because javaFX was part of Java. Since version 11, this is not 
possible because JavaFX is no longer part of it and must be downloaded 
separately.

[JavaFX|openjfx.io]

But the question is how do I put it into operation?

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-1349) http://services.netbeans.org is down

2018-10-04 Thread Joshua McLean (JIRA)
Joshua McLean created NETBEANS-1349:
---

 Summary: http://services.netbeans.org is down
 Key: NETBEANS-1349
 URL: https://issues.apache.org/jira/browse/NETBEANS-1349
 Project: NetBeans
  Issue Type: Bug
 Environment: Google Chrome
Reporter: Joshua McLean


Cannot send email to web master either because 
[http://services.netbeans.org|http://services.netbeans.org/] is down. So the 
only way I can report the issue is here.

I'm trying to access [http://services.netbeans.org/downloads/dev.php] to 
download an older version of Netbeans

I get the following

 
h1. ERROR
h2. The requested URL could not be retrieved

The following error was encountered while trying to retrieve the URL: 
[http://services.netbeans.org/downloads/dev.php]
{quote}*Read Error*
{quote}
The system returned: _(104) Connection reset by peer_

An error condition occurred while reading data from the network. Please retry 
your request.

 

https://downforeveryoneorjustme.com/services.netbeans.org



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Geertjan Wielenga (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638833#comment-16638833
 ] 

Geertjan Wielenga commented on NETBEANS-1343:
-

I don't believe JavaFX is supported in JDK 11 at all, if you're using JDK 11. 
I.e., you need to set the 'JavaFX Platform' in the 'New JavaFX Application' 
dialog to JDK 9, for example.

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638827#comment-16638827
 ] 

Michal Rama commented on NETBEANS-1343:
---

The problem is related to JavaFX only.

The "Standard" Java project can be created and run without problems.

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-1348) Increment Spec Versions

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi resolved NETBEANS-1348.
---
   Resolution: Done
Fix Version/s: 10.0

> Increment Spec Versions
> ---
>
> Key: NETBEANS-1348
> URL: https://issues.apache.org/jira/browse/NETBEANS-1348
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Priority: Major
> Fix For: 10.0
>
>
> Incrementing spec version of all modules in master, so that master modules 
> are definitely "newer" than anything on the release100 branch.
> {{Done by:}}
> {{ ant -Dbranch=true increment-spec-versions}}



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[incubator-netbeans] 01/01: Merge pull request #945 from jlahoda/increment-spec-versions-release100

2018-10-04 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch release100
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git

commit 9ba333f7f68e6af305e14ad47c29ead892f2e742
Merge: a14ddb2 4fd8b4b
Author: Laszlo Kishalmi 
AuthorDate: Thu Oct 4 13:26:03 2018 -0700

Merge pull request #945 from jlahoda/increment-spec-versions-release100

Increment spec versions release100

 apisupport/apisupport.ant/manifest.mf  | 2 +-
 apisupport/apisupport.installer.maven/manifest.mf  | 2 +-
 apisupport/apisupport.installer/manifest.mf| 2 +-
 apisupport/apisupport.kit/manifest.mf  | 2 +-
 apisupport/apisupport.project/manifest.mf  | 2 +-
 apisupport/apisupport.refactoring/manifest.mf  | 2 +-
 apisupport/apisupport.wizards/manifest.mf  | 2 +-
 apisupport/maven.apisupport/manifest.mf| 2 +-
 apisupport/timers/manifest.mf  | 2 +-
 ergonomics/ide.ergonomics/manifest.mf  | 2 +-
 ergonomics/performance.ergonomics/manifest.mf  | 2 +-
 extide/o.apache.tools.ant.module/nbproject/project.properties  | 2 +-
 extide/options.java/manifest.mf| 2 +-
 groovy/groovy.antproject/manifest.mf   | 2 +-
 groovy/groovy.editor/manifest.mf   | 2 +-
 groovy/groovy.gsp/manifest.mf  | 2 +-
 groovy/groovy.kit/manifest.mf  | 2 +-
 groovy/groovy.refactoring/manifest.mf  | 2 +-
 groovy/groovy.samples/manifest.mf  | 2 +-
 groovy/groovy.support/manifest.mf  | 2 +-
 groovy/libs.groovy/manifest.mf | 2 +-
 groovy/maven.groovy/manifest.mf| 2 +-
 harness/apisupport.harness/manifest.mf | 2 +-
 harness/jellytools.platform/manifest.mf| 2 +-
 harness/jemmy/manifest.mf  | 2 +-
 harness/libs.nbi.ant/manifest.mf   | 2 +-
 harness/libs.nbi.engine/manifest.mf| 2 +-
 harness/nbjunit/manifest.mf| 2 +-
 harness/o.n.insane/nbproject/project.properties| 2 +-
 ide/api.debugger/manifest.mf   | 2 +-
 ide/api.java.classpath/manifest.mf | 2 +-
 ide/api.xml.ui/manifest.mf | 2 +-
 ide/api.xml/manifest.mf| 2 +-
 ide/bugtracking.bridge/manifest.mf | 2 +-
 ide/bugtracking.commons/manifest.mf| 2 +-
 ide/bugtracking/manifest.mf| 2 +-
 ide/bugzilla/manifest.mf   | 2 +-
 ide/c.jcraft.jzlib/nbproject/project.properties| 2 +-
 ide/code.analysis/manifest.mf  | 2 +-
 ide/core.browser.webview/nbproject/project.properties  | 2 +-
 ide/core.browser/nbproject/project.properties  | 2 +-
 ide/core.ide/manifest.mf   | 2 +-
 ide/core.multitabs.project/nbproject/project.properties| 2 +-
 ide/csl.api/nbproject/project.properties   | 2 +-
 ide/csl.types/manifest.mf  | 2 +-
 ide/css.editor/manifest.mf | 2 +-
 ide/css.lib/manifest.mf| 2 +-
 ide/css.model/manifest.mf  | 2 +-
 ide/css.prep/manifest.mf   | 2 +-
 ide/css.visual/manifest.mf | 2 +-
 ide/db.core/manifest.mf| 2 +-
 ide/db.dataview/manifest.mf| 2 +-
 ide/db.drivers/manifest.mf | 2 +-
 ide/db.kit/manifest.mf | 2 +-
 ide/db.metadata.model/manifest.mf  | 2 +-
 ide/db.mysql/nbproject/project.properties  | 2 +-
 ide/db.sql.editor/nbproject/project.properties | 2 +-
 ide/db.sql.visualeditor/nbproject/project.properties   | 2 +-
 ide/db/nbproject/project.properties| 2 +-
 ide/dbapi/nbproject/project.properties | 2 +-
 ide/defaults/manifest.mf

[incubator-netbeans] branch release100 updated (a14ddb2 -> 9ba333f)

2018-10-04 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a change to branch release100
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git.


from a14ddb2  Updating version in titlebar of Apache NetBeans 10
 add 4fd8b4b  Incrementing spec. versions for the release100 branch.
 new 9ba333f  Merge pull request #945 from 
jlahoda/increment-spec-versions-release100

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 apisupport/apisupport.ant/manifest.mf  | 2 +-
 apisupport/apisupport.installer.maven/manifest.mf  | 2 +-
 apisupport/apisupport.installer/manifest.mf| 2 +-
 apisupport/apisupport.kit/manifest.mf  | 2 +-
 apisupport/apisupport.project/manifest.mf  | 2 +-
 apisupport/apisupport.refactoring/manifest.mf  | 2 +-
 apisupport/apisupport.wizards/manifest.mf  | 2 +-
 apisupport/maven.apisupport/manifest.mf| 2 +-
 apisupport/timers/manifest.mf  | 2 +-
 ergonomics/ide.ergonomics/manifest.mf  | 2 +-
 ergonomics/performance.ergonomics/manifest.mf  | 2 +-
 extide/o.apache.tools.ant.module/nbproject/project.properties  | 2 +-
 extide/options.java/manifest.mf| 2 +-
 groovy/groovy.antproject/manifest.mf   | 2 +-
 groovy/groovy.editor/manifest.mf   | 2 +-
 groovy/groovy.gsp/manifest.mf  | 2 +-
 groovy/groovy.kit/manifest.mf  | 2 +-
 groovy/groovy.refactoring/manifest.mf  | 2 +-
 groovy/groovy.samples/manifest.mf  | 2 +-
 groovy/groovy.support/manifest.mf  | 2 +-
 groovy/libs.groovy/manifest.mf | 2 +-
 groovy/maven.groovy/manifest.mf| 2 +-
 harness/apisupport.harness/manifest.mf | 2 +-
 harness/jellytools.platform/manifest.mf| 2 +-
 harness/jemmy/manifest.mf  | 2 +-
 harness/libs.nbi.ant/manifest.mf   | 2 +-
 harness/libs.nbi.engine/manifest.mf| 2 +-
 harness/nbjunit/manifest.mf| 2 +-
 harness/o.n.insane/nbproject/project.properties| 2 +-
 ide/api.debugger/manifest.mf   | 2 +-
 ide/api.java.classpath/manifest.mf | 2 +-
 ide/api.xml.ui/manifest.mf | 2 +-
 ide/api.xml/manifest.mf| 2 +-
 ide/bugtracking.bridge/manifest.mf | 2 +-
 ide/bugtracking.commons/manifest.mf| 2 +-
 ide/bugtracking/manifest.mf| 2 +-
 ide/bugzilla/manifest.mf   | 2 +-
 ide/c.jcraft.jzlib/nbproject/project.properties| 2 +-
 ide/code.analysis/manifest.mf  | 2 +-
 ide/core.browser.webview/nbproject/project.properties  | 2 +-
 ide/core.browser/nbproject/project.properties  | 2 +-
 ide/core.ide/manifest.mf   | 2 +-
 ide/core.multitabs.project/nbproject/project.properties| 2 +-
 ide/csl.api/nbproject/project.properties   | 2 +-
 ide/csl.types/manifest.mf  | 2 +-
 ide/css.editor/manifest.mf | 2 +-
 ide/css.lib/manifest.mf| 2 +-
 ide/css.model/manifest.mf  | 2 +-
 ide/css.prep/manifest.mf   | 2 +-
 ide/css.visual/manifest.mf | 2 +-
 ide/db.core/manifest.mf| 2 +-
 ide/db.dataview/manifest.mf| 2 +-
 ide/db.drivers/manifest.mf | 2 +-
 ide/db.kit/manifest.mf | 2 +-
 ide/db.metadata.model/manifest.mf  | 2 +-
 ide/db.mysql/nbproject/project.properties  | 2 +-
 ide/db.sql.editor/nbproject/project.properties | 2 +-
 ide/db.sql.visualeditor/nbproject/project.pro

[jira] [Commented] (NETBEANS-1342) I get this error when I preview Options -> HTML/Js -> Mobile Platform

2018-10-04 Thread Geertjan Wielenga (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638811#comment-16638811
 ] 

Geertjan Wielenga commented on NETBEANS-1342:
-

I think the solution for the moment is to hide that panel, i.e., explicitly 
state that we're not supporting Cordova for the moment, until we can find time 
(or you can take a look or someone who has the time) to investigate what the 
problem with the Cordova support is.

> I get this error when I preview Options -> HTML/Js -> Mobile Platform
> -
>
> Key: NETBEANS-1342
> URL: https://issues.apache.org/jira/browse/NETBEANS-1342
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: ubuntu 16.04
>Reporter: Los Vitaly
>Priority: Major
> Fix For: 10.0
>
>
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsPanel.load(MobilePlatformsPanel.java:276)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController$1.run(MobilePlatformsOptionsPanelController.java:55)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController.update(MobilePlatformsOptionsPanelController.java:52)
>  at 
> org.netbeans.modules.options.TabbedController.handleTabSwitched(TabbedController.java:213)
>  at 
> org.netbeans.modules.options.TabbedController.access$200(TabbedController.java:59)
>  at 
> org.netbeans.modules.options.TabbedController$2.stateChanged(TabbedController.java:86)
>  at javax.swing.JTabbedPane.fireStateChanged(JTabbedPane.java:416)
>  at javax.swing.JTabbedPane$ModelListener.stateChanged(JTabbedPane.java:270)
>  at 
> javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:132)
>  at 
> javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:67)
>  at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:616)
>  at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:591)
>  at 
> javax.swing.plaf.basic.BasicTabbedPaneUI$Handler.mousePressed(BasicTabbedPaneUI.java:3647)
>  at 
> javax.swing.plaf.synth.SynthTabbedPaneUI$1.mousePressed(SynthTabbedPaneUI.java:312)
>  at java.awt.Component.processMouseEvent(Component.java:6536)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6304)
>  at java.awt.Container.processEvent(Container.java:2239)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2297)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4532)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
>  at java.awt.Container.dispatchEventImpl(Container.java:2283)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84)
>  at java.awt.EventQueue$4.run(EventQueue.java:733)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at java.awt.EventQueue.dispatchEvent(EventQueue.java:730)
>  at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>  at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
>  at 
> java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
>  at 
> java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchTh

[jira] [Created] (NETBEANS-1348) Increment Spec Versions

2018-10-04 Thread Laszlo Kishalmi (JIRA)
Laszlo Kishalmi created NETBEANS-1348:
-

 Summary: Increment Spec Versions
 Key: NETBEANS-1348
 URL: https://issues.apache.org/jira/browse/NETBEANS-1348
 Project: NetBeans
  Issue Type: Sub-task
Reporter: Laszlo Kishalmi


Incrementing spec version of all modules in master, so that master modules are 
definitely "newer" than anything on the release100 branch.

{{Done by:}}
{{ ant -Dbranch=true increment-spec-versions}}



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1342) I get this error when I preview Options -> HTML/Js -> Mobile Platform

2018-10-04 Thread Geertjan Wielenga (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638809#comment-16638809
 ] 

Geertjan Wielenga commented on NETBEANS-1342:
-

I can reproduce it. I don't understand why you're not making this a blocker? 
This is a really serious problem, why are you so shy about that? :-) 

> I get this error when I preview Options -> HTML/Js -> Mobile Platform
> -
>
> Key: NETBEANS-1342
> URL: https://issues.apache.org/jira/browse/NETBEANS-1342
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: ubuntu 16.04
>Reporter: Los Vitaly
>Priority: Major
> Fix For: 10.0
>
>
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsPanel.load(MobilePlatformsPanel.java:276)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController$1.run(MobilePlatformsOptionsPanelController.java:55)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController.update(MobilePlatformsOptionsPanelController.java:52)
>  at 
> org.netbeans.modules.options.TabbedController.handleTabSwitched(TabbedController.java:213)
>  at 
> org.netbeans.modules.options.TabbedController.access$200(TabbedController.java:59)
>  at 
> org.netbeans.modules.options.TabbedController$2.stateChanged(TabbedController.java:86)
>  at javax.swing.JTabbedPane.fireStateChanged(JTabbedPane.java:416)
>  at javax.swing.JTabbedPane$ModelListener.stateChanged(JTabbedPane.java:270)
>  at 
> javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:132)
>  at 
> javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:67)
>  at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:616)
>  at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:591)
>  at 
> javax.swing.plaf.basic.BasicTabbedPaneUI$Handler.mousePressed(BasicTabbedPaneUI.java:3647)
>  at 
> javax.swing.plaf.synth.SynthTabbedPaneUI$1.mousePressed(SynthTabbedPaneUI.java:312)
>  at java.awt.Component.processMouseEvent(Component.java:6536)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6304)
>  at java.awt.Container.processEvent(Container.java:2239)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2297)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4532)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
>  at java.awt.Container.dispatchEventImpl(Container.java:2283)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84)
>  at java.awt.EventQueue$4.run(EventQueue.java:733)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at java.awt.EventQueue.dispatchEvent(EventQueue.java:730)
>  at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>  at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
>  at 
> java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
>  at 
> java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
> [catch] at java.awt.EventDispatc

[jira] [Created] (NETBEANS-1347) Adjust Update Centers

2018-10-04 Thread Laszlo Kishalmi (JIRA)
Laszlo Kishalmi created NETBEANS-1347:
-

 Summary: Adjust Update Centers
 Key: NETBEANS-1347
 URL: https://issues.apache.org/jira/browse/NETBEANS-1347
 Project: NetBeans
  Issue Type: Sub-task
Reporter: Laszlo Kishalmi


The update centers needs to be updated to the upcoming release.

See the linked PR how to do that.

Thank you Jan!



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-1330) Create first vote candidate

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi resolved NETBEANS-1330.
---
   Resolution: Done
Fix Version/s: 10.0

> Create first vote candidate
> ---
>
> Key: NETBEANS-1330
> URL: https://issues.apache.org/jira/browse/NETBEANS-1330
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
> Fix For: 10.0
>
>
> Create the first vote candidate upon the document here: 
> https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+Release+README



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1330) Create first vote candidate

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi updated NETBEANS-1330:
--
Description: Create the first vote candidate upon the document here: 
https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+Release+README

> Create first vote candidate
> ---
>
> Key: NETBEANS-1330
> URL: https://issues.apache.org/jira/browse/NETBEANS-1330
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
> Fix For: 10.0
>
>
> Create the first vote candidate upon the document here: 
> https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+Release+README



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1342) I get this error when I preview Options -> HTML/Js -> Mobile Platform

2018-10-04 Thread Christian Lenz (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638780#comment-16638780
 ] 

Christian Lenz commented on NETBEANS-1342:
--

I changed from minor to major, I wanted to change it to critical but I don't 
know. For me it is mor than minor and acutally more than major.

> I get this error when I preview Options -> HTML/Js -> Mobile Platform
> -
>
> Key: NETBEANS-1342
> URL: https://issues.apache.org/jira/browse/NETBEANS-1342
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: ubuntu 16.04
>Reporter: Los Vitaly
>Priority: Major
> Fix For: 10.0
>
>
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsPanel.load(MobilePlatformsPanel.java:276)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController$1.run(MobilePlatformsOptionsPanelController.java:55)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController.update(MobilePlatformsOptionsPanelController.java:52)
>  at 
> org.netbeans.modules.options.TabbedController.handleTabSwitched(TabbedController.java:213)
>  at 
> org.netbeans.modules.options.TabbedController.access$200(TabbedController.java:59)
>  at 
> org.netbeans.modules.options.TabbedController$2.stateChanged(TabbedController.java:86)
>  at javax.swing.JTabbedPane.fireStateChanged(JTabbedPane.java:416)
>  at javax.swing.JTabbedPane$ModelListener.stateChanged(JTabbedPane.java:270)
>  at 
> javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:132)
>  at 
> javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:67)
>  at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:616)
>  at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:591)
>  at 
> javax.swing.plaf.basic.BasicTabbedPaneUI$Handler.mousePressed(BasicTabbedPaneUI.java:3647)
>  at 
> javax.swing.plaf.synth.SynthTabbedPaneUI$1.mousePressed(SynthTabbedPaneUI.java:312)
>  at java.awt.Component.processMouseEvent(Component.java:6536)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6304)
>  at java.awt.Container.processEvent(Container.java:2239)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2297)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4532)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
>  at java.awt.Container.dispatchEventImpl(Container.java:2283)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84)
>  at java.awt.EventQueue$4.run(EventQueue.java:733)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at java.awt.EventQueue.dispatchEvent(EventQueue.java:730)
>  at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>  at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
>  at 
> java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
>  at 
> java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
> [catch] at java.awt.EventDispatchThread.run(

[jira] [Commented] (NETBEANS-1342) I get this error when I preview Options -> HTML/Js -> Mobile Platform

2018-10-04 Thread Christian Lenz (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638776#comment-16638776
 ] 

Christian Lenz commented on NETBEANS-1342:
--

IMHO this is of course not a minor. The PHP cluster depends on the webcommon 
cluster, which is HTML5/JS and lot more.

I can confirm this bug and this is not only an ugly, minor bug. Even if we not 
have a tribe for testing HTML5/JS of all features, everything should still work 
fine what was working before. Because a lof of people will notice, that 
HTML5/JS is activated and they will use it and if this is not working well, 
this is not good. But as I said, IMHO.

> I get this error when I preview Options -> HTML/Js -> Mobile Platform
> -
>
> Key: NETBEANS-1342
> URL: https://issues.apache.org/jira/browse/NETBEANS-1342
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: ubuntu 16.04
>Reporter: Los Vitaly
>Priority: Minor
> Fix For: 10.0
>
>
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsPanel.load(MobilePlatformsPanel.java:276)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController$1.run(MobilePlatformsOptionsPanelController.java:55)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController.update(MobilePlatformsOptionsPanelController.java:52)
>  at 
> org.netbeans.modules.options.TabbedController.handleTabSwitched(TabbedController.java:213)
>  at 
> org.netbeans.modules.options.TabbedController.access$200(TabbedController.java:59)
>  at 
> org.netbeans.modules.options.TabbedController$2.stateChanged(TabbedController.java:86)
>  at javax.swing.JTabbedPane.fireStateChanged(JTabbedPane.java:416)
>  at javax.swing.JTabbedPane$ModelListener.stateChanged(JTabbedPane.java:270)
>  at 
> javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:132)
>  at 
> javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:67)
>  at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:616)
>  at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:591)
>  at 
> javax.swing.plaf.basic.BasicTabbedPaneUI$Handler.mousePressed(BasicTabbedPaneUI.java:3647)
>  at 
> javax.swing.plaf.synth.SynthTabbedPaneUI$1.mousePressed(SynthTabbedPaneUI.java:312)
>  at java.awt.Component.processMouseEvent(Component.java:6536)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6304)
>  at java.awt.Container.processEvent(Container.java:2239)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2297)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4532)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
>  at java.awt.Container.dispatchEventImpl(Container.java:2283)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84)
>  at java.awt.EventQueue$4.run(EventQueue.java:733)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at java.awt.EventQueue.dispatchEvent(EventQueue.java:730)
>  at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>  at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
>  at 
> java.awt.EventDispatchThread.pumpEvents

[jira] [Updated] (NETBEANS-1342) I get this error when I preview Options -> HTML/Js -> Mobile Platform

2018-10-04 Thread Christian Lenz (JIRA)


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

Christian Lenz updated NETBEANS-1342:
-
Priority: Major  (was: Minor)

> I get this error when I preview Options -> HTML/Js -> Mobile Platform
> -
>
> Key: NETBEANS-1342
> URL: https://issues.apache.org/jira/browse/NETBEANS-1342
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: ubuntu 16.04
>Reporter: Los Vitaly
>Priority: Major
> Fix For: 10.0
>
>
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsPanel.load(MobilePlatformsPanel.java:276)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController$1.run(MobilePlatformsOptionsPanelController.java:55)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>  at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
>  at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
>  at 
> org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController.update(MobilePlatformsOptionsPanelController.java:52)
>  at 
> org.netbeans.modules.options.TabbedController.handleTabSwitched(TabbedController.java:213)
>  at 
> org.netbeans.modules.options.TabbedController.access$200(TabbedController.java:59)
>  at 
> org.netbeans.modules.options.TabbedController$2.stateChanged(TabbedController.java:86)
>  at javax.swing.JTabbedPane.fireStateChanged(JTabbedPane.java:416)
>  at javax.swing.JTabbedPane$ModelListener.stateChanged(JTabbedPane.java:270)
>  at 
> javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:132)
>  at 
> javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:67)
>  at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:616)
>  at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:591)
>  at 
> javax.swing.plaf.basic.BasicTabbedPaneUI$Handler.mousePressed(BasicTabbedPaneUI.java:3647)
>  at 
> javax.swing.plaf.synth.SynthTabbedPaneUI$1.mousePressed(SynthTabbedPaneUI.java:312)
>  at java.awt.Component.processMouseEvent(Component.java:6536)
>  at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
>  at java.awt.Component.processEvent(Component.java:6304)
>  at java.awt.Container.processEvent(Container.java:2239)
>  at java.awt.Component.dispatchEventImpl(Component.java:4889)
>  at java.awt.Container.dispatchEventImpl(Container.java:2297)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904)
>  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4532)
>  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
>  at java.awt.Container.dispatchEventImpl(Container.java:2283)
>  at java.awt.Window.dispatchEventImpl(Window.java:2746)
>  at java.awt.Component.dispatchEvent(Component.java:4711)
>  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760)
>  at java.awt.EventQueue.access$500(EventQueue.java:97)
>  at java.awt.EventQueue$3.run(EventQueue.java:709)
>  at java.awt.EventQueue$3.run(EventQueue.java:703)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84)
>  at java.awt.EventQueue$4.run(EventQueue.java:733)
>  at java.awt.EventQueue$4.run(EventQueue.java:731)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
>  at java.awt.EventQueue.dispatchEvent(EventQueue.java:730)
>  at 
> org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
>  at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
>  at 
> java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
>  at 
> java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
>  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
> [catch] at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)



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

-
To un

[jira] [Updated] (NETBEANS-1328) Re-Configure the Release job on Jenkins

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi updated NETBEANS-1328:
--
Description: 
There can be modules and clusters that won't be released as not passed the 
license clearance.

Make sure that the release job: [incubator-netbeans-release 
[Jenkins]|https://builds.apache.org/job/incubator-netbeans-release/] follows 
the new release100 branch and produce the right delivery packages.

  was:There can be modules and clusters that won't be released as not passed 
the license clearance.


> Re-Configure the Release job on Jenkins
> ---
>
> Key: NETBEANS-1328
> URL: https://issues.apache.org/jira/browse/NETBEANS-1328
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
> Fix For: 10.0
>
>
> There can be modules and clusters that won't be released as not passed the 
> license clearance.
> Make sure that the release job: [incubator-netbeans-release 
> [Jenkins]|https://builds.apache.org/job/incubator-netbeans-release/] follows 
> the new release100 branch and produce the right delivery packages.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1345) NB 10.0 still imports settings from 8.2

2018-10-04 Thread Christian Lenz (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638768#comment-16638768
 ] 

Christian Lenz commented on NETBEANS-1345:
--

Can confirm that.

> NB 10.0 still imports settings from 8.2
> ---
>
> Key: NETBEANS-1345
> URL: https://issues.apache.org/jira/browse/NETBEANS-1345
> Project: NetBeans
>  Issue Type: Task
>  Components: platform - Options&Settings
>Affects Versions: 10.0
>Reporter: Aldo Brucale
>Priority: Critical
>
> The netbeans 9.0 userdir is ignored at the first run.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-1328) Re-Configure the Release job on Jenkins

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi resolved NETBEANS-1328.
---
   Resolution: Done
Fix Version/s: 10.0

> Re-Configure the Release job on Jenkins
> ---
>
> Key: NETBEANS-1328
> URL: https://issues.apache.org/jira/browse/NETBEANS-1328
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
> Fix For: 10.0
>
>
> There can be modules and clusters that won't be released as not passed the 
> license clearance.
> Make sure that the release job: [incubator-netbeans-release 
> [Jenkins]|https://builds.apache.org/job/incubator-netbeans-release/] follows 
> the new release100 branch and produce the right delivery packages.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1328) Re-Configure the Release job on Jenkins

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi updated NETBEANS-1328:
--
Summary: Re-Configure the Release job on Jenkins  (was: Clean-up release100 
branch.)

> Re-Configure the Release job on Jenkins
> ---
>
> Key: NETBEANS-1328
> URL: https://issues.apache.org/jira/browse/NETBEANS-1328
> Project: NetBeans
>  Issue Type: Sub-task
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
>
> There can be modules and clusters that won't be released as not passed the 
> license clearance.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Geertjan Wielenga (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638696#comment-16638696
 ] 

Geertjan Wielenga commented on NETBEANS-1343:
-

Are you able to create standard Java projects? 

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638651#comment-16638651
 ] 

Michal Rama commented on NETBEANS-1343:
---

Yes. But now it has returned to the original (bad) state.

It is not possible to create a JavaFX project - picture 3

The solution can not be used because it is made on the old version of NetBeans, 
where the JavaFX tab - picture 4 is not in the current version - picture 5.

Please advise.

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)


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

Michal Rama updated NETBEANS-1343:
--
Attachment: picture5.png
picture4.png
picture3.png

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png, 
> picture5.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-1346) NPE at first run

2018-10-04 Thread Aldo Brucale (JIRA)
Aldo Brucale created NETBEANS-1346:
--

 Summary: NPE at first run
 Key: NETBEANS-1346
 URL: https://issues.apache.org/jira/browse/NETBEANS-1346
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 10.0
Reporter: Aldo Brucale
 Fix For: 10.0
 Attachments: messages.log

See the attached logfile



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1344) NetBeans looks Ugly on Java 11 on Linux

2018-10-04 Thread Laszlo Kishalmi (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1344?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638507#comment-16638507
 ] 

Laszlo Kishalmi commented on NETBEANS-1344:
---

Added documentation to the Wiki: 
https://cwiki.apache.org/confluence/display/NETBEANS/Look+and+Feel+Issues

> NetBeans looks Ugly on Java 11 on Linux
> ---
>
> Key: NETBEANS-1344
> URL: https://issues.apache.org/jira/browse/NETBEANS-1344
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Laszlo Kishalmi
>Priority: Major
>  Labels: Java11, Linux
> Attachments: Screenshot from 2018-10-04 09-11-28.png
>
>
> Well actually Java 11 the defaults Gnome3 on Linux, resulting poor rendering 
> on the default GTK look and feel. Using other Look and feel (Nimbus, Darcula) 
> does not suffer from this issue.
>  Forcing to use GTK 2.2 fixes the GTK look and feel.
> To force gnome we need to pass: {{-Djdk.gtk.version=2.2}} to the Java



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-1345) NB 10.0 still imports settings from 8.2

2018-10-04 Thread Aldo Brucale (JIRA)
Aldo Brucale created NETBEANS-1345:
--

 Summary: NB 10.0 still imports settings from 8.2
 Key: NETBEANS-1345
 URL: https://issues.apache.org/jira/browse/NETBEANS-1345
 Project: NetBeans
  Issue Type: Task
  Components: platform - Options&Settings
Affects Versions: 10.0
Reporter: Aldo Brucale


The netbeans 9.0 userdir is ignored at the first run.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1344) NetBeans looks Ugly on Java 11 on Linux

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi updated NETBEANS-1344:
--
Description: 
Well actually Java 11 the defaults Gnome3 on Linux, resulting poor rendering on 
the default GTK look and feel. Using other Look and feel (Nimbus, Darcula) does 
not suffer from this issue.
 Forcing to use GTK 2.2 fixes the GTK look and feel.

To force gnome we need to pass: {{-Djdk.gtk.version=2.2}} to the Java

  was:
Well actually Java 11 the defaults Gnome3 on Linux, resulting poor rendering on 
the default GTK look and feel. Using other Look and feel (Nimbus, Darcula) does 
not suffer from this issue.
Forcing to use GTK 2.2 fixes the GTK look and feel.

 


> NetBeans looks Ugly on Java 11 on Linux
> ---
>
> Key: NETBEANS-1344
> URL: https://issues.apache.org/jira/browse/NETBEANS-1344
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Laszlo Kishalmi
>Priority: Major
>  Labels: Java11, Linux
> Attachments: Screenshot from 2018-10-04 09-11-28.png
>
>
> Well actually Java 11 the defaults Gnome3 on Linux, resulting poor rendering 
> on the default GTK look and feel. Using other Look and feel (Nimbus, Darcula) 
> does not suffer from this issue.
>  Forcing to use GTK 2.2 fixes the GTK look and feel.
> To force gnome we need to pass: {{-Djdk.gtk.version=2.2}} to the Java



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1145) Automate build of Windows Launchers

2018-10-04 Thread Eric Barboni (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638451#comment-16638451
 ] 

Eric Barboni commented on NETBEANS-1145:


Hi, 

maybe the profiler lib are also part of this ?

I'm not sure it can help but can we consider asking for a 
incubator-apache-netbeans-native git repository and set build for linux and 
windows in a simpler way ? And only using external in the 
incubator-apache-netbeans git ?



> Automate build of Windows Launchers
> ---
>
> Key: NETBEANS-1145
> URL: https://issues.apache.org/jira/browse/NETBEANS-1145
> Project: NetBeans
>  Issue Type: Improvement
>  Components: apisupport - Harness, platform - Launchers&CLI
>Reporter: Svatopluk Dedic
>Priority: Minor
>
> See comments in 
> [https://github.com/apache/incubator-netbeans/pull/573#pullrequestreview-147108327]
>  :
> The envisioned build process should monitor:
>  * apisupport.harness/lwindows-launcher-src
>  * ide/launcher/windows
>  * o.n.bootstrap/launcher/windows
> and rebuild netbeans or application launchers. I am not so sure about 
> automatic upload to the extbin, the number of artifact from automated builds 
> could reach quite high.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-1344) NetBeans looks Ugly on Java 11 on Linux

2018-10-04 Thread Laszlo Kishalmi (JIRA)
Laszlo Kishalmi created NETBEANS-1344:
-

 Summary: NetBeans looks Ugly on Java 11 on Linux
 Key: NETBEANS-1344
 URL: https://issues.apache.org/jira/browse/NETBEANS-1344
 Project: NetBeans
  Issue Type: Improvement
Reporter: Laszlo Kishalmi
 Attachments: Screenshot from 2018-10-04 09-11-28.png

Well actually Java 11 the defaults Gnome3 on Linux, resulting poor rendering on 
the default GTK look and feel. Using other Look and feel (Nimbus, Darcula) does 
not suffer from this issue.
Forcing to use GTK 2.2 fixes the GTK look and feel.

 



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-733) The New JAVA LTS Phenomenon and Netbeans

2018-10-04 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi resolved NETBEANS-733.
--
   Resolution: Information Provided
Fix Version/s: (was: Next)

> The New JAVA LTS Phenomenon and Netbeans
> 
>
> Key: NETBEANS-733
> URL: https://issues.apache.org/jira/browse/NETBEANS-733
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 9.0, Next
>Reporter: sagar
>Priority: Major
>  Labels: Java11, JavaLTS
>
> Java now has a new release cycle and a new terminology LTS.
> Java 11 to be released in September 2018 will be designated as a LTS release.
> Should NETBEANS also follow and Jump to an LTS based release cycle and have a 
> Netbeans 11 LTS?
> Can we have a NETBEANS 11 LTS release as early as January 2019?
>  
>  



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1310) Jira plugin en Netbeans

2018-10-04 Thread Christian Lenz (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638423#comment-16638423
 ] 

Christian Lenz commented on NETBEANS-1310:
--

Hi [~NestorAcevedo] please right in english, this is a global Issue tracker 
where everyone should understand your problem. Thx.

> Jira plugin en Netbeans
> ---
>
> Key: NETBEANS-1310
> URL: https://issues.apache.org/jira/browse/NETBEANS-1310
> Project: NetBeans
>  Issue Type: Task
>Affects Versions: 9.0
>Reporter: Néstor Acevedo
>Priority: Minor
>  Labels: documentation
>
> De acuerdo a la documentación: 
> [https://cwiki.apache.org/confluence/display/NETBEANS/Submitting+issues+in+JIRA]
>  se debe instalar el plugin Jira para reportar las incidencias del IDE. El 
> problema está en que el plugin no está disponible en algún lado.
>  
> ¿en qué repositorio se encuentra dicho plugin?



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1337) Add multiline support for breadcrumbs

2018-10-04 Thread Christian Lenz (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638415#comment-16638415
 ] 

Christian Lenz commented on NETBEANS-1337:
--

I would prefer to scroll this area, like the tab section if you have tons of 
tabs open or make it optional. For me, I don't want that it breaks 
automatically.

> Add multiline support for breadcrumbs
> -
>
> Key: NETBEANS-1337
> URL: https://issues.apache.org/jira/browse/NETBEANS-1337
> Project: NetBeans
>  Issue Type: Wish
>  Components: java - Editor
>Reporter: Austin Stephens
>Priority: Major
> Attachments: Screen Shot 2018-10-02 at 11.33.33 AM.png
>
>
> It would be nice if the contents of the breadcrumbs component wrapped onto 
> another line if it wouldn't fit normally. This would likely happen if one 
> wanted to have multiple files open side-by-side (see attached image). The 
> bread crumbs component is not wide enough to display all of the items.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Geertjan Wielenga (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-1343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638402#comment-16638402
 ] 

Geertjan Wielenga commented on NETBEANS-1343:
-

You appear to have the Darcula plugin installed. Can you start from scratch, 
fresh user directory, no plugins, and then create your Java project? 

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)


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

Michal Rama updated NETBEANS-1343:
--
Environment: Windows 10, Incubator NetBeans Linux 857, Java 11  (was: 
Windows 10, NetBeans Linux 857, Java 11)

> It is not possible to create a project in Java or in JavaFX
> ---
>
> Key: NETBEANS-1343
> URL: https://issues.apache.org/jira/browse/NETBEANS-1343
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 857, Java 11
>Reporter: Michal Rama
>Priority: Critical
> Attachments: picture1.png, picture2.png
>
>
> Hello,
> Unable to create projects.
> New Java Project - picture 1 in attachment
> New JavaFX project - picture 2 in attachment
> Please advise.
> Thank you
> PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-1343) It is not possible to create a project in Java or in JavaFX

2018-10-04 Thread Michal Rama (JIRA)
Michal Rama created NETBEANS-1343:
-

 Summary: It is not possible to create a project in Java or in 
JavaFX
 Key: NETBEANS-1343
 URL: https://issues.apache.org/jira/browse/NETBEANS-1343
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 10.0
 Environment: Windows 10, NetBeans Linux 857, Java 11
Reporter: Michal Rama
 Attachments: picture1.png, picture2.png

Hello,

Unable to create projects.

New Java Project - picture 1 in attachment

New JavaFX project - picture 2 in attachment

Please advise.

Thank you

PS. Projects in HTML / CSS / JS / PHP can be created without any problem.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-1147) Enabling fragment has to enable host bundle first

2018-10-04 Thread Svatopluk Dedic (JIRA)


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

Svatopluk Dedic resolved NETBEANS-1147.
---
   Resolution: Fixed
Fix Version/s: Next

> Enabling fragment has to enable host bundle first
> -
>
> Key: NETBEANS-1147
> URL: https://issues.apache.org/jira/browse/NETBEANS-1147
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Module System
>Reporter: Jaroslav Tulach
>Assignee: Svatopluk Dedic
>Priority: Major
>  Labels: pull-request-available
> Fix For: Next
>
>  Time Spent: 1h 50m
>  Remaining Estimate: 0h
>
> While working on 
> [PR-715|https://github.com/apache/incubator-netbeans/pull/715] it turned out 
> that enabling nbjavac sooner than its API leads to:
> {code}
> ClassNotFoundException: Will not load class com.sun.source.tree.Tree 
> arbitrarily from one of [org.netbeans.libs.javacapi] and 
> [org.netbeans.modules.nbjavac.api]
> {code}
> This is a result of enabling the fragment first and host later. That is 
> strange situation - the fragment should have a dependency on the host, right?
> This is the hotfix: 
> https://github.com/apache/incubator-netbeans/pull/715/commits/ac944a13f57816970556b0b8e2e3971ea94bb3e5
>  but proper fix with a test in {{o.n.bootstrap}} is needed.



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-1342) I get this error when I preview Options -> HTML/Js -> Mobile Platform

2018-10-04 Thread Los Vitaly (JIRA)
Los Vitaly created NETBEANS-1342:


 Summary: I get this error when I preview Options -> HTML/Js -> 
Mobile Platform
 Key: NETBEANS-1342
 URL: https://issues.apache.org/jira/browse/NETBEANS-1342
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 10.0
 Environment: ubuntu 16.04
Reporter: Los Vitaly
 Fix For: 10.0


java.lang.NullPointerException
 at 
org.netbeans.modules.cordova.options.MobilePlatformsPanel.load(MobilePlatformsPanel.java:276)
 at 
org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController$1.run(MobilePlatformsOptionsPanelController.java:55)
 at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
 at org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
 at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
 at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
 at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
 at 
org.netbeans.modules.cordova.options.MobilePlatformsOptionsPanelController.update(MobilePlatformsOptionsPanelController.java:52)
 at 
org.netbeans.modules.options.TabbedController.handleTabSwitched(TabbedController.java:213)
 at 
org.netbeans.modules.options.TabbedController.access$200(TabbedController.java:59)
 at 
org.netbeans.modules.options.TabbedController$2.stateChanged(TabbedController.java:86)
 at javax.swing.JTabbedPane.fireStateChanged(JTabbedPane.java:416)
 at javax.swing.JTabbedPane$ModelListener.stateChanged(JTabbedPane.java:270)
 at 
javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:132)
 at 
javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:67)
 at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:616)
 at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:591)
 at 
javax.swing.plaf.basic.BasicTabbedPaneUI$Handler.mousePressed(BasicTabbedPaneUI.java:3647)
 at 
javax.swing.plaf.synth.SynthTabbedPaneUI$1.mousePressed(SynthTabbedPaneUI.java:312)
 at java.awt.Component.processMouseEvent(Component.java:6536)
 at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
 at java.awt.Component.processEvent(Component.java:6304)
 at java.awt.Container.processEvent(Container.java:2239)
 at java.awt.Component.dispatchEventImpl(Component.java:4889)
 at java.awt.Container.dispatchEventImpl(Container.java:2297)
 at java.awt.Component.dispatchEvent(Component.java:4711)
 at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4904)
 at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4532)
 at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4476)
 at java.awt.Container.dispatchEventImpl(Container.java:2283)
 at java.awt.Window.dispatchEventImpl(Window.java:2746)
 at java.awt.Component.dispatchEvent(Component.java:4711)
 at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:760)
 at java.awt.EventQueue.access$500(EventQueue.java:97)
 at java.awt.EventQueue$3.run(EventQueue.java:709)
 at java.awt.EventQueue$3.run(EventQueue.java:703)
 at java.security.AccessController.doPrivileged(Native Method)
 at 
java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
 at 
java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:84)
 at java.awt.EventQueue$4.run(EventQueue.java:733)
 at java.awt.EventQueue$4.run(EventQueue.java:731)
 at java.security.AccessController.doPrivileged(Native Method)
 at 
java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:730)
 at 
org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
 at 
java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
 at 
java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
 at 
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
[catch] at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)



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

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-1341) NullPointerException NBJavadocMemberEnter.java:97

2018-10-04 Thread JIRA
Tomáš Poledný created NETBEANS-1341:
---

 Summary: NullPointerException NBJavadocMemberEnter.java:97
 Key: NETBEANS-1341
 URL: https://issues.apache.org/jira/browse/NETBEANS-1341
 Project: NetBeans
  Issue Type: Bug
  Components: java - Editor
Affects Versions: 10.0
Reporter: Tomáš Poledný


It looks like a problem with nbjavac. Stacktrace is here:
{noformat}
java.lang.NullPointerException
at 
org.netbeans.lib.nbjavac.services.NBJavadocMemberEnter.visitVarDef(NBJavadocMemberEnter.java:97)
at 
com.sun.tools.javac.tree.JCTree$JCVariableDecl.accept(JCTree.java:962)
at 
com.sun.tools.javac.comp.MemberEnter.memberEnter(MemberEnter.java:171)
at com.sun.tools.javac.comp.Attr.visitVarDef(Attr.java:1171)
at 
com.sun.tools.javac.tree.JCTree$JCVariableDecl.accept(JCTree.java:962)
at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:736)
at com.sun.tools.javac.comp.Attr.attribStats(Attr.java:760)
at com.sun.tools.javac.comp.Attr.visitBlock(Attr.java:1337)
at org.netbeans.lib.nbjavac.services.NBAttr.visitBlock(NBAttr.java:73)
at com.sun.tools.javac.tree.JCTree$JCBlock.accept(JCTree.java:1026)
at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:736)
at com.sun.tools.javac.comp.Attr.visitIf(Attr.java:1814)
at com.sun.tools.javac.tree.JCTree$JCIf.accept(JCTree.java:1427)
at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:736)
at com.sun.tools.javac.comp.Attr.attribStats(Attr.java:760)
at com.sun.tools.javac.comp.Attr.visitBlock(Attr.java:1337)
at org.netbeans.lib.nbjavac.services.NBAttr.visitBlock(NBAttr.java:73)
at com.sun.tools.javac.tree.JCTree$JCBlock.accept(JCTree.java:1026)
at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:736)
at com.sun.tools.javac.comp.Attr.attribStatToTree(Attr.java:420)
at 
com.sun.tools.javac.api.JavacTrees.attribStatToTree(JavacTrees.java:1013)
at 
com.sun.tools.javac.api.JavacTrees.getAttrContext(JavacTrees.java:972)
at com.sun.tools.javac.api.JavacTrees.getScope(JavacTrees.java:831)
at com.sun.tools.javac.api.JavacTrees.getScope(JavacTrees.java:170)
at 
org.netbeans.api.java.source.TreeUtilities.scopeFor(TreeUtilities.java:761)
at 
org.netbeans.modules.editor.java.JavaCodeTemplateProcessor$6.run(JavaCodeTemplateProcessor.java:1080)
at 
org.netbeans.modules.progress.ui.RunOffEDTImpl$1.run(RunOffEDTImpl.java:146)
at 
org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to
at org.openide.util.RequestProcessor.post(RequestProcessor.java:395)
at 
org.netbeans.modules.progress.ui.RunOffEDTImpl.runOffEventDispatchThreadImpl(RunOffEDTImpl.java:140)
at 
org.netbeans.modules.progress.ui.RunOffEDTImpl.runOffEventDispatchThread(RunOffEDTImpl.java:83)
at 
org.netbeans.api.progress.BaseProgressUtils.runOffEventDispatchThread(BaseProgressUtils.java:90)
at 
org.netbeans.api.progress.ProgressUtils.runOffEventDispatchThread(ProgressUtils.java:67)
at 
org.netbeans.modules.editor.java.JavaCodeTemplateProcessor.initParsing(JavaCodeTemplateProcessor.java:1065)
at 
org.netbeans.modules.editor.java.JavaCodeTemplateProcessor.(JavaCodeTemplateProcessor.java:104)
at 
org.netbeans.modules.editor.java.JavaCodeTemplateProcessor.(JavaCodeTemplateProcessor.java:54)
at 
org.netbeans.modules.editor.java.JavaCodeTemplateProcessor$Factory.createProcessor(JavaCodeTemplateProcessor.java:1152)
at 
org.netbeans.lib.editor.codetemplates.CodeTemplateInsertHandler.(CodeTemplateInsertHandler.java:132)
at 
org.netbeans.lib.editor.codetemplates.CodeTemplateManagerOperation.insert(CodeTemplateManagerOperation.java:272)
at 
org.netbeans.lib.editor.codetemplates.api.CodeTemplate.insert(CodeTemplate.java:82)
at 
org.netbeans.modules.editor.java.JavaCompletionItem.process(JavaCompletionItem.java:566)
at 
org.netbeans.modules.editor.java.JavaCompletionItem.defaultAction(JavaCompletionItem.java:286)
at 
org.netbeans.modules.editor.completion.CompletionImpl.dispatchKeyEvent(CompletionImpl.java:785)
at 
org.netbeans.modules.editor.completion.CompletionImpl.keyPressed(Complet