[jira] [Created] (NETBEANS-2198) No console output for NetBeans Platform project when doing a "Run" using JDK11.0.2

2019-03-01 Thread Wei Qi Ong (JIRA)
Wei Qi Ong created NETBEANS-2198:


 Summary: No console output for NetBeans Platform project when 
doing a "Run" using JDK11.0.2
 Key: NETBEANS-2198
 URL: https://issues.apache.org/jira/browse/NETBEANS-2198
 Project: NetBeans
  Issue Type: Bug
  Components: apisupport - Harness, projects - Ant Project
Affects Versions: 10.0
 Environment: Oracle JDK 11.0.2 64-bit, Windows 7 64-bit
Reporter: Wei Qi Ong


in harness/run.xml, the 64-bit check does not work for JDK11.0.2 (Windows) as 
the file does not exist.

    
    
     

As a result nbexec is used instead of nbexec64, resulting in no console output 
when running using 64-bit JDK.

Workaround is to manually change to use nbexec64 for now



--
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] [Closed] (NETBEANS-379) Versioning Labels don't display outgoing/incoming commits anymore

2019-03-01 Thread Tobias Oelgarte (JIRA)


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

Tobias Oelgarte closed NETBEANS-379.

   Resolution: Fixed
Fix Version/s: 11.0
   10.0

{color:#33}Seems to be fixed for a while now. No reason to leave this issue 
open.{color}

> Versioning Labels don't display outgoing/incoming commits anymore
> -
>
> Key: NETBEANS-379
> URL: https://issues.apache.org/jira/browse/NETBEANS-379
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Generic Projects UI
>Affects Versions: 9.0
> Environment: Windows 7 64-bit, JDK 9.0.4
>Reporter: Tobias Oelgarte
>Priority: Major
> Fix For: 10.0, 11.0
>
> Attachments: outgoing commit negative.png
>
>
> The versioning labels (enabled through Tools > Options > Team > Versioning > 
> General > Show Version Labels) do not show outgoing/incoming commits anymore. 
> The tooltip displays the number of outgoing commits as "-1".
> Did work in incubator-netbeans-linux-238, but does not work anymore in 
> incubator-netbeans-linux-343.



--
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-2197) Missing code completion and Javadocs in maven projects with classifier.

2019-03-01 Thread Tobias Oelgarte (JIRA)


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

Tobias Oelgarte updated NETBEANS-2197:
--
Description: 
If a maven artifact uses classifiers, then Netbeans isn't able to provide code 
completion or to display Javadocs.

To avoid duplication, sources and javadocs usually belong to the 'parent' 
artifact, which has no classifier. But the actually used jar archive (the 
library) resides within the artifact with classifier.

A good example for this is JavaFX. The artifact 
[javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
is an empty shell and depending on the operating system the platform dependent 
library is used, by utilizing classifiers. In the case of linux this would be 
the _javafx-base-11.0.2-linux.jar_.

Netbeans will not find the corresponding sources or javadoc archives, because 
it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
{color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't look 
for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
{color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.

As a temporary solution i created symlinks to the existing sources and javadoc 
archives. But this solution also doesn't work as excepted. The sources are 
found, but the Javadocs for a field or method can only be displayed as long all 
parameters and return types belong to the same artifact.

!code-completion-ok.png!

!code-completion-failed.png!

  was:
If a maven artifact project uses classifiers, then Netbeans isn't able to 
provide code completion or to display Javadocs.

To avoid duplication, sources and javadocs usually belong to the 'parent' 
artifact, which has no classifier. But the actually used jar archive (the 
library) resides within the artifact with classifier.

A good example for this is JavaFX. The artifact 
[javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
is an empty shell and depending on the operating system the platform dependent 
library is used, by utilizing classifiers. In the case of linux this would be 
the _javafx-base-11.0.2-linux.jar_.

Netbeans will not find the corresponding sources or javadoc archives, because 
it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
{color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't look 
for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
{color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.

As a temporary solution i created symlinks to the existing sources and javadoc 
archives. But this solution also doesn't work as excepted. The sources are 
found, but the Javadocs for a field or method can only be displayed as long all 
parameters and return types belong to the same artifact.


 !code-completion-ok.png!


 !code-completion-failed.png!


> Missing code completion and Javadocs in maven projects with classifier.
> ---
>
> Key: NETBEANS-2197
> URL: https://issues.apache.org/jira/browse/NETBEANS-2197
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion & Templates
>Affects Versions: 11.0
> Environment: All platforms
>Reporter: Tobias Oelgarte
>Priority: Major
>  Labels: maven, usability
> Attachments: code-completion-failed.png, code-completion-ok.png
>
>
> If a maven artifact uses classifiers, then Netbeans isn't able to provide 
> code completion or to display Javadocs.
> To avoid duplication, sources and javadocs usually belong to the 'parent' 
> artifact, which has no classifier. But the actually used jar archive (the 
> library) resides within the artifact with classifier.
> A good example for this is JavaFX. The artifact 
> [javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
> is an empty shell and depending on the operating system the platform 
> dependent library is used, by utilizing classifiers. In the case of linux 
> this would be the _javafx-base-11.0.2-linux.jar_.
> Netbeans will not find the corresponding sources or javadoc archives, because 
> it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
> {color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't 
> look for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
> {color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.
> As a temporary solution i created symlinks to the existing sources and 
> javadoc archives. But this solution also doesn't work as excepted. The 
> sources are found, but the Javadocs for a field or method can only be 
> displayed as long all parameters and return types belong to the same artifact.
> !code-completion-ok.png!
> !code-completion-failed.png!



--
This message wa

[jira] [Updated] (NETBEANS-2197) Missing code completion and Javadocs in maven projects with classifier.

2019-03-01 Thread Tobias Oelgarte (JIRA)


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

Tobias Oelgarte updated NETBEANS-2197:
--
Description: 
If a maven artifact project uses classifiers, then Netbeans isn't able to 
provide code completion or to display Javadocs.

To avoid duplication, sources and javadocs usually belong to the 'parent' 
artifact, which has no classifier. But the actually used jar archive (the 
library) resides within the artifact with classifier.

A good example for this is JavaFX. The artifact 
[javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
is an empty shell and depending on the operating system the platform dependent 
library is used, by utilizing classifiers. In the case of linux this would be 
the _javafx-base-11.0.2-linux.jar_.

Netbeans will not find the corresponding sources or javadoc archives, because 
it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
{color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't look 
for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
{color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.

As a temporary solution i created symlinks to the existing sources and javadoc 
archives. But this solution also doesn't work as excepted. The sources are 
found, but the Javadocs for a field or method can only be displayed as long all 
parameters and return types belong to the same artifact.


 !code-completion-ok.png!


 !code-completion-failed.png!

  was:
If a maven artifact project uses classifiers, then Netbeans isn't able to 
provide code completion or to display Javadocs.

To avoid duplication, sources and javadocs usually belong to the 'parent' 
artifact, which has no classifier. But the actually used jar archive (the 
library) resides within the artifact with classifier.

A good example for this is JavaFX. The artifact 
[javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
is an empty shell and depending on the operating system the platform dependent 
library is used, by utilizing classifiers. In the case of linux this would be 
the _javafx-base-11.0.2-linux.jar_.

Netbeans will not find the corresponding sources or javadoc archives, because 
it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
{color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't look 
for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
{color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.

As a temporary solution i created symlinks to the existing sources and javadoc 
archives. But this solution also doesn't work as excepted. The sources are 
found, but the Javadocs for a field or method can only be displayed as long all 
parameters and return types belong to the same artifact.
 !code-completion-ok.png! 
 !code-completion-failed.png! 


> Missing code completion and Javadocs in maven projects with classifier.
> ---
>
> Key: NETBEANS-2197
> URL: https://issues.apache.org/jira/browse/NETBEANS-2197
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion & Templates
>Affects Versions: 11.0
> Environment: All platforms
>Reporter: Tobias Oelgarte
>Priority: Major
>  Labels: maven, usability
> Attachments: code-completion-failed.png, code-completion-ok.png
>
>
> If a maven artifact project uses classifiers, then Netbeans isn't able to 
> provide code completion or to display Javadocs.
> To avoid duplication, sources and javadocs usually belong to the 'parent' 
> artifact, which has no classifier. But the actually used jar archive (the 
> library) resides within the artifact with classifier.
> A good example for this is JavaFX. The artifact 
> [javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
> is an empty shell and depending on the operating system the platform 
> dependent library is used, by utilizing classifiers. In the case of linux 
> this would be the _javafx-base-11.0.2-linux.jar_.
> Netbeans will not find the corresponding sources or javadoc archives, because 
> it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
> {color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't 
> look for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
> {color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.
> As a temporary solution i created symlinks to the existing sources and 
> javadoc archives. But this solution also doesn't work as excepted. The 
> sources are found, but the Javadocs for a field or method can only be 
> displayed as long all parameters and return types belong to the same artifact.
>  !code-completion-ok.png!
>  !code-completion-failed.png!


[jira] [Updated] (NETBEANS-2197) Missing code completion and Javadocs in maven projects with classifier.

2019-03-01 Thread Tobias Oelgarte (JIRA)


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

Tobias Oelgarte updated NETBEANS-2197:
--
Description: 
If a maven artifact project uses classifiers, then Netbeans isn't able to 
provide code completion or to display Javadocs.

To avoid duplication, sources and javadocs usually belong to the 'parent' 
artifact, which has no classifier. But the actually used jar archive (the 
library) resides within the artifact with classifier.

A good example for this is JavaFX. The artifact 
[javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
is an empty shell and depending on the operating system the platform dependent 
library is used, by utilizing classifiers. In the case of linux this would be 
the _javafx-base-11.0.2-linux.jar_.

Netbeans will not find the corresponding sources or javadoc archives, because 
it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
{color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't look 
for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
{color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.

As a temporary solution i created symlinks to the existing sources and javadoc 
archives. But this solution also doesn't work as excepted. The sources are 
found, but the Javadocs for a field or method can only be displayed as long all 
parameters and return types belong to the same artifact.
 !code-completion-ok.png! 
 !code-completion-failed.png! 

  was:
If a maven artifact project uses classifiers, then Netbeans isn't able to 
provide code completion or to display Javadocs.

To avoid duplication, sources and javadocs usually belong to the 'parent' 
artifact, which has no classifier. But the actually used jar archive (the 
library) resides within the artifact with classifier.

A good example for this is JavaFX. The artifact 
[javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
is an empty shell and depending on the operating system the platform dependent 
library is used, by utilizing classifiers. In the case of linux this would be 
the _javafx-base-11.0.2-linux.jar_.

Netbeans will not find the corresponding sources or javadoc archives, because 
it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
{color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't look 
for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
{color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.

As a temporary solution i created symlinks to the existing sources and javadoc 
archives. But this solution also doesn't work as excepted. The sources are 
found, but the Javadocs for a field or method can only be displayed as long all 
parameters and return types belong to the same artifact.



> Missing code completion and Javadocs in maven projects with classifier.
> ---
>
> Key: NETBEANS-2197
> URL: https://issues.apache.org/jira/browse/NETBEANS-2197
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion & Templates
>Affects Versions: 11.0
> Environment: All platforms
>Reporter: Tobias Oelgarte
>Priority: Major
>  Labels: maven, usability
> Attachments: code-completion-failed.png, code-completion-ok.png
>
>
> If a maven artifact project uses classifiers, then Netbeans isn't able to 
> provide code completion or to display Javadocs.
> To avoid duplication, sources and javadocs usually belong to the 'parent' 
> artifact, which has no classifier. But the actually used jar archive (the 
> library) resides within the artifact with classifier.
> A good example for this is JavaFX. The artifact 
> [javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
> is an empty shell and depending on the operating system the platform 
> dependent library is used, by utilizing classifiers. In the case of linux 
> this would be the _javafx-base-11.0.2-linux.jar_.
> Netbeans will not find the corresponding sources or javadoc archives, because 
> it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
> {color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't 
> look for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
> {color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.
> As a temporary solution i created symlinks to the existing sources and 
> javadoc archives. But this solution also doesn't work as excepted. The 
> sources are found, but the Javadocs for a field or method can only be 
> displayed as long all parameters and return types belong to the same artifact.
>  !code-completion-ok.png! 
>  !code-completion-failed.png! 



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

[jira] [Updated] (NETBEANS-2197) Missing code completion and Javadocs in maven projects with classifier.

2019-03-01 Thread Tobias Oelgarte (JIRA)


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

Tobias Oelgarte updated NETBEANS-2197:
--
Attachment: code-completion-failed.png

> Missing code completion and Javadocs in maven projects with classifier.
> ---
>
> Key: NETBEANS-2197
> URL: https://issues.apache.org/jira/browse/NETBEANS-2197
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion & Templates
>Affects Versions: 11.0
> Environment: All platforms
>Reporter: Tobias Oelgarte
>Priority: Major
>  Labels: maven, usability
> Attachments: code-completion-failed.png, code-completion-ok.png
>
>
> If a maven artifact project uses classifiers, then Netbeans isn't able to 
> provide code completion or to display Javadocs.
> To avoid duplication, sources and javadocs usually belong to the 'parent' 
> artifact, which has no classifier. But the actually used jar archive (the 
> library) resides within the artifact with classifier.
> A good example for this is JavaFX. The artifact 
> [javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
> is an empty shell and depending on the operating system the platform 
> dependent library is used, by utilizing classifiers. In the case of linux 
> this would be the _javafx-base-11.0.2-linux.jar_.
> Netbeans will not find the corresponding sources or javadoc archives, because 
> it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
> {color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't 
> look for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
> {color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.
> As a temporary solution i created symlinks to the existing sources and 
> javadoc archives. But this solution also doesn't work as excepted. The 
> sources are found, but the Javadocs for a field or method can only be 
> displayed as long all parameters and return types belong to the same artifact.



--
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-2197) Missing code completion and Javadocs in maven projects with classifier.

2019-03-01 Thread Tobias Oelgarte (JIRA)


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

Tobias Oelgarte updated NETBEANS-2197:
--
Attachment: code-completion-ok.png

> Missing code completion and Javadocs in maven projects with classifier.
> ---
>
> Key: NETBEANS-2197
> URL: https://issues.apache.org/jira/browse/NETBEANS-2197
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion & Templates
>Affects Versions: 11.0
> Environment: All platforms
>Reporter: Tobias Oelgarte
>Priority: Major
>  Labels: maven, usability
> Attachments: code-completion-failed.png, code-completion-ok.png
>
>
> If a maven artifact project uses classifiers, then Netbeans isn't able to 
> provide code completion or to display Javadocs.
> To avoid duplication, sources and javadocs usually belong to the 'parent' 
> artifact, which has no classifier. But the actually used jar archive (the 
> library) resides within the artifact with classifier.
> A good example for this is JavaFX. The artifact 
> [javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
> is an empty shell and depending on the operating system the platform 
> dependent library is used, by utilizing classifiers. In the case of linux 
> this would be the _javafx-base-11.0.2-linux.jar_.
> Netbeans will not find the corresponding sources or javadoc archives, because 
> it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
> {color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't 
> look for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
> {color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.
> As a temporary solution i created symlinks to the existing sources and 
> javadoc archives. But this solution also doesn't work as excepted. The 
> sources are found, but the Javadocs for a field or method can only be 
> displayed as long all parameters and return types belong to the same artifact.



--
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-2197) Missing code completion and Javadocs in maven projects with classifier.

2019-03-01 Thread Tobias Oelgarte (JIRA)
Tobias Oelgarte created NETBEANS-2197:
-

 Summary: Missing code completion and Javadocs in maven projects 
with classifier.
 Key: NETBEANS-2197
 URL: https://issues.apache.org/jira/browse/NETBEANS-2197
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Completion & Templates
Affects Versions: 11.0
 Environment: All platforms
Reporter: Tobias Oelgarte
 Attachments: code-completion-failed.png, code-completion-ok.png

If a maven artifact project uses classifiers, then Netbeans isn't able to 
provide code completion or to display Javadocs.

To avoid duplication, sources and javadocs usually belong to the 'parent' 
artifact, which has no classifier. But the actually used jar archive (the 
library) resides within the artifact with classifier.

A good example for this is JavaFX. The artifact 
[javafx-base|http://central.maven.org/maven2/org/openjfx/javafx-base/11.0.2/] 
is an empty shell and depending on the operating system the platform dependent 
library is used, by utilizing classifiers. In the case of linux this would be 
the _javafx-base-11.0.2-linux.jar_.

Netbeans will not find the corresponding sources or javadoc archives, because 
it looks for {color:#14892c}_javafx-base-11.0.2-linux-sources.jar_{color} and 
{color:#14892c}_javafx-base-11.0.2-linux-javadoc.jar_{color}, but it won't look 
for {color:#f79232}_javafx-base-11.0.2-sources.jar_{color} and 
{color:#f79232}_javafx-base-11.0.2-javadoc.jar_{color}.

As a temporary solution i created symlinks to the existing sources and javadoc 
archives. But this solution also doesn't work as excepted. The sources are 
found, but the Javadocs for a field or method can only be displayed as long all 
parameters and return types belong to the same artifact.




--
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-2196) Move field "database" below "user name" & "password" on the new database connection wizard

2019-03-01 Thread Christian Lenz (JIRA)


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

Christian Lenz commented on NETBEANS-2196:
--

I added the current UI and an wanted/expected UI. It was not changed inside of 
the code, only with paint. And as you can see, there is no default value for 
Database anymore, which is not needed, because the other/new feature will fetch 
the databases when I click inside the input field of databases. And the input 
field for the database is not only an input field and not only a combobox, it 
is a auto completion combo box. But this is the new feature, which will be 
handled in an other ticket. I will link it to this ticket.

> Move field "database" below "user name" & "password" on the new database 
> connection wizard
> --
>
> Key: NETBEANS-2196
> URL: https://issues.apache.org/jira/browse/NETBEANS-2196
> Project: NetBeans
>  Issue Type: Improvement
>  Components: db - Code
>Affects Versions: Next
>Reporter: Christian Lenz
>Priority: Major
>  Labels: UX
> Attachments: current behaviour.png, wanted behaviour.png
>
>
> To make it clear, it is not that I don't like the Database field above the 
> user credentials, it is that it doesn't make sense for a specific context, 
> which will be handled in an other ticket. First I will choose the connection: 
> localhost + port. This is the first one. There is no login, so I don't know 
> the available databases. Now I want to add my credentials and after it, I 
> want to choose my database which can be known by asking the server to fetch 
> the databases to make it visible inside of the auto completion combo box 
> which is common these days to have this if you have a lot of entries.
> So this ticket is only to moving the field Databases below the credentials 
> because of a new feature coming later. It doesn't make sense to add the 
> database name, before filling all the credentials first. You can't see 
> databases if you not logged into phpmyadmin for example.



--
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-2196) Move field "database" below "user name" & "password" on the new database connection wizard

2019-03-01 Thread Christian Lenz (JIRA)


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

Christian Lenz updated NETBEANS-2196:
-
Attachment: wanted behaviour.png

> Move field "database" below "user name" & "password" on the new database 
> connection wizard
> --
>
> Key: NETBEANS-2196
> URL: https://issues.apache.org/jira/browse/NETBEANS-2196
> Project: NetBeans
>  Issue Type: Improvement
>  Components: db - Code
>Affects Versions: Next
>Reporter: Christian Lenz
>Priority: Major
>  Labels: UX
> Attachments: current behaviour.png, wanted behaviour.png
>
>
> To make it clear, it is not that I don't like the Database field above the 
> user credentials, it is that it doesn't make sense for a specific context, 
> which will be handled in an other ticket. First I will choose the connection: 
> localhost + port. This is the first one. There is no login, so I don't know 
> the available databases. Now I want to add my credentials and after it, I 
> want to choose my database which can be known by asking the server to fetch 
> the databases to make it visible inside of the auto completion combo box 
> which is common these days to have this if you have a lot of entries.
> So this ticket is only to moving the field Databases below the credentials 
> because of a new feature coming later. It doesn't make sense to add the 
> database name, before filling all the credentials first. You can't see 
> databases if you not logged into phpmyadmin for example.



--
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-2196) Move field "database" below "user name" & "password" on the new database connection wizard

2019-03-01 Thread Christian Lenz (JIRA)


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

Christian Lenz updated NETBEANS-2196:
-
Attachment: (was: wanted behaviour.png)

> Move field "database" below "user name" & "password" on the new database 
> connection wizard
> --
>
> Key: NETBEANS-2196
> URL: https://issues.apache.org/jira/browse/NETBEANS-2196
> Project: NetBeans
>  Issue Type: Improvement
>  Components: db - Code
>Affects Versions: Next
>Reporter: Christian Lenz
>Priority: Major
>  Labels: UX
> Attachments: current behaviour.png, wanted behaviour.png
>
>
> To make it clear, it is not that I don't like the Database field above the 
> user credentials, it is that it doesn't make sense for a specific context, 
> which will be handled in an other ticket. First I will choose the connection: 
> localhost + port. This is the first one. There is no login, so I don't know 
> the available databases. Now I want to add my credentials and after it, I 
> want to choose my database which can be known by asking the server to fetch 
> the databases to make it visible inside of the auto completion combo box 
> which is common these days to have this if you have a lot of entries.
> So this ticket is only to moving the field Databases below the credentials 
> because of a new feature coming later. It doesn't make sense to add the 
> database name, before filling all the credentials first. You can't see 
> databases if you not logged into phpmyadmin for example.



--
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-2196) Move field "database" below "user name" & "password" on the new database connection wizard

2019-03-01 Thread Christian Lenz (JIRA)


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

Christian Lenz updated NETBEANS-2196:
-
Attachment: wanted behaviour.png

> Move field "database" below "user name" & "password" on the new database 
> connection wizard
> --
>
> Key: NETBEANS-2196
> URL: https://issues.apache.org/jira/browse/NETBEANS-2196
> Project: NetBeans
>  Issue Type: Improvement
>  Components: db - Code
>Affects Versions: Next
>Reporter: Christian Lenz
>Priority: Major
>  Labels: UX
> Attachments: current behaviour.png, wanted behaviour.png
>
>
> To make it clear, it is not that I don't like the Database field above the 
> user credentials, it is that it doesn't make sense for a specific context, 
> which will be handled in an other ticket. First I will choose the connection: 
> localhost + port. This is the first one. There is no login, so I don't know 
> the available databases. Now I want to add my credentials and after it, I 
> want to choose my database which can be known by asking the server to fetch 
> the databases to make it visible inside of the auto completion combo box 
> which is common these days to have this if you have a lot of entries.
> So this ticket is only to moving the field Databases below the credentials 
> because of a new feature coming later. It doesn't make sense to add the 
> database name, before filling all the credentials first. You can't see 
> databases if you not logged into phpmyadmin for example.



--
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-2196) Move field "database" below "user name" & "password" on the new database connection wizard

2019-03-01 Thread Christian Lenz (JIRA)
Christian Lenz created NETBEANS-2196:


 Summary: Move field "database" below "user name" & "password" on 
the new database connection wizard
 Key: NETBEANS-2196
 URL: https://issues.apache.org/jira/browse/NETBEANS-2196
 Project: NetBeans
  Issue Type: Improvement
  Components: db - Code
Affects Versions: Next
Reporter: Christian Lenz
 Attachments: current behaviour.png

To make it clear, it is not that I don't like the Database field above the user 
credentials, it is that it doesn't make sense for a specific context, which 
will be handled in an other ticket. First I will choose the connection: 
localhost + port. This is the first one. There is no login, so I don't know the 
available databases. Now I want to add my credentials and after it, I want to 
choose my database which can be known by asking the server to fetch the 
databases to make it visible inside of the auto completion combo box which is 
common these days to have this if you have a lot of entries.

So this ticket is only to moving the field Databases below the credentials 
because of a new feature coming later. It doesn't make sense to add the 
database name, before filling all the credentials first. You can't see 
databases if you not logged into phpmyadmin for example.



--
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-2196) Move field "database" below "user name" & "password" on the new database connection wizard

2019-03-01 Thread Christian Lenz (JIRA)


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

Christian Lenz updated NETBEANS-2196:
-
Attachment: current behaviour.png

> Move field "database" below "user name" & "password" on the new database 
> connection wizard
> --
>
> Key: NETBEANS-2196
> URL: https://issues.apache.org/jira/browse/NETBEANS-2196
> Project: NetBeans
>  Issue Type: Improvement
>  Components: db - Code
>Affects Versions: Next
>Reporter: Christian Lenz
>Priority: Major
>  Labels: UX
> Attachments: current behaviour.png
>
>
> To make it clear, it is not that I don't like the Database field above the 
> user credentials, it is that it doesn't make sense for a specific context, 
> which will be handled in an other ticket. First I will choose the connection: 
> localhost + port. This is the first one. There is no login, so I don't know 
> the available databases. Now I want to add my credentials and after it, I 
> want to choose my database which can be known by asking the server to fetch 
> the databases to make it visible inside of the auto completion combo box 
> which is common these days to have this if you have a lot of entries.
> So this ticket is only to moving the field Databases below the credentials 
> because of a new feature coming later. It doesn't make sense to add the 
> database name, before filling all the credentials first. You can't see 
> databases if you not logged into phpmyadmin for example.



--
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-2195) Database Drivers/Servers/Databases should have the explicit icon from the provider

2019-03-01 Thread Christian Lenz (JIRA)
Christian Lenz created NETBEANS-2195:


 Summary: Database Drivers/Servers/Databases should have the 
explicit icon from the provider
 Key: NETBEANS-2195
 URL: https://issues.apache.org/jira/browse/NETBEANS-2195
 Project: NetBeans
  Issue Type: Improvement
  Components: db - Code, db - DB schema
Affects Versions: Next
Reporter: Christian Lenz
 Attachments: supported-databases.datagrip.png

Each connection, each Database, each driver should have their own icon. MySQL 
driver should have the MySQL icon which is the dolphin to recognice it while 
seeing the icon. PostgreSQL should have the elephant and so on. So while adding 
the driver, NetBeans should know the driver by the driver class name (ie. 
org.sqlite.class) and matches the name to the correct icon. See my attachment, 
this is from JetBrains DataGrip. There you can see everything has his own icon 
and can be well recogniced what is what.



--
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] [Assigned] (NETBEANS-2193) Formatting options for text/x-apache-conf files

2019-03-01 Thread Christian Lenz (JIRA)


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

Christian Lenz reassigned NETBEANS-2193:


Assignee: Christian Lenz

> Formatting options for text/x-apache-conf files
> ---
>
> Key: NETBEANS-2193
> URL: https://issues.apache.org/jira/browse/NETBEANS-2193
> Project: NetBeans
>  Issue Type: New Feature
>  Components: editor - Formatting & Indentation
>Affects Versions: Next
>Reporter: Christian Lenz
>Assignee: Christian Lenz
>Priority: Major
>
> Unfortunately, there are no formatting options and no formattings for the an 
> apache conf file with the mimetype text/x-apache-conf. Formatting options are 
> needed to format the file inside of the editor.



--
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] [Assigned] (NETBEANS-2193) Formatting options for text/x-apache-conf files

2019-03-01 Thread Christian Lenz (JIRA)


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

Christian Lenz reassigned NETBEANS-2193:


Assignee: (was: Christian Lenz)

> Formatting options for text/x-apache-conf files
> ---
>
> Key: NETBEANS-2193
> URL: https://issues.apache.org/jira/browse/NETBEANS-2193
> Project: NetBeans
>  Issue Type: New Feature
>  Components: editor - Formatting & Indentation
>Affects Versions: Next
>Reporter: Christian Lenz
>Priority: Major
>
> Unfortunately, there are no formatting options and no formattings for the an 
> apache conf file with the mimetype text/x-apache-conf. Formatting options are 
> needed to format the file inside of the editor.



--
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-2191) Code completion for text/x-apache-conf files

2019-03-01 Thread Christian Lenz (JIRA)
Christian Lenz created NETBEANS-2191:


 Summary: Code completion for text/x-apache-conf files
 Key: NETBEANS-2191
 URL: https://issues.apache.org/jira/browse/NETBEANS-2191
 Project: NetBeans
  Issue Type: Improvement
  Components: editor - Completion & Templates
Affects Versions: Next
Reporter: Christian Lenz


In an apache conf file, with a mimetype called text/x-apache-conf, there is 
still syntax highlighting, which is great, but there is no code completion for 
the keywords or tags like ,  etc. 
So please implement code completion for keywords and XML like tags.



--
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-2194) Code folding for Tags inside text/x-apache-conf files

2019-03-01 Thread Christian Lenz (JIRA)
Christian Lenz created NETBEANS-2194:


 Summary: Code folding for Tags inside text/x-apache-conf files
 Key: NETBEANS-2194
 URL: https://issues.apache.org/jira/browse/NETBEANS-2194
 Project: NetBeans
  Issue Type: Improvement
  Components: editor - Code folding
Affects Versions: Next
Reporter: Christian Lenz


Unfortunately, there is no code folding for tags inside apache conf files. This 
would be a nice to have.



--
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-2184) Exception while using autoinsertion

2019-03-01 Thread Christian Lenz (JIRA)


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

Christian Lenz commented on NETBEANS-2184:
--

Hi [~alexx7676] please add specific steps to reproduce otherwise we will close 
the ticket. Thx.

> Exception while using autoinsertion
> ---
>
> Key: NETBEANS-2184
> URL: https://issues.apache.org/jira/browse/NETBEANS-2184
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Alexander
>Priority: Major
> Attachments: messages.log
>
>




--
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-2193) Formatting options for text/x-apache-conf files

2019-03-01 Thread Christian Lenz (JIRA)
Christian Lenz created NETBEANS-2193:


 Summary: Formatting options for text/x-apache-conf files
 Key: NETBEANS-2193
 URL: https://issues.apache.org/jira/browse/NETBEANS-2193
 Project: NetBeans
  Issue Type: New Feature
  Components: editor - Formatting & Indentation
Affects Versions: Next
Reporter: Christian Lenz


Unfortunately, there are no formatting options and no formattings for the an 
apache conf file with the mimetype text/x-apache-conf. Formatting options are 
needed to format the file inside of the editor.



--
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-2192) Tag matching for text/x-apache-conf files

2019-03-01 Thread Christian Lenz (JIRA)
Christian Lenz created NETBEANS-2192:


 Summary: Tag matching for text/x-apache-conf files
 Key: NETBEANS-2192
 URL: https://issues.apache.org/jira/browse/NETBEANS-2192
 Project: NetBeans
  Issue Type: Improvement
  Components: editor - Completion & Templates
Affects Versions: Next
Reporter: Christian Lenz


When I type  or  I expect after typing >, that the closing 
tag will be added immediately. Unfortunately there is no Code completion but 
this will be handled in an other ticket.



--
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-2190) WARNING: package com.sun.tools.javadoc.main not in jdk.javadoc

2019-03-01 Thread Rami Swailem (JIRA)
Rami Swailem created NETBEANS-2190:
--

 Summary: WARNING: package com.sun.tools.javadoc.main not in 
jdk.javadoc
 Key: NETBEANS-2190
 URL: https://issues.apache.org/jira/browse/NETBEANS-2190
 Project: NetBeans
  Issue Type: Bug
  Components: ide - Code
Affects Versions: 11.0
Reporter: Rami Swailem


When I start my IDE, I get the following warning: 

{code:java}
WARNING: package com.sun.tools.javadoc.main not in jdk.javadoc
{code}

{code:java}

rami@iMac ~/NetBeansProjects/netbeans $ sh bin/netbeans
WARNING: package com.sun.tools.javadoc.main not in jdk.javadoc
---
>Log Session: Friday, March 1, 2019 at 10:47:37 AM Central European Standard 
>Time
>System Info: 
  Product Version = Apache NetBeans IDE Dev (Build 
20190301-5f7d8481d15b) (#5f7d8481d15b)
  Operating System= Mac OS X version 10.13.6 running on x86_64
  Java; VM; Vendor= 13-ea; OpenJDK 64-Bit Server VM 13-ea+10; Oracle 
Corporation
  Runtime = OpenJDK Runtime Environment 13-ea+10
  Java Home   = 
/Library/Java/JavaVirtualMachines/jdk-13.jdk/Contents/Home
  System Locale; Encoding = en_DE (nb); UTF-8
  Home Directory  = /Users/rami
  Current Directory   = /Users/rami/NetBeansProjects/netbeans
  User Directory  = /Users/rami/Library/Application Support/NetBeans/dev
  Cache Directory = /Users/rami/Library/Caches/NetBeans/dev

{code}




--
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-2185) NullPointerException after close program

2019-03-01 Thread Rami Swailem (JIRA)


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

Rami Swailem commented on NETBEANS-2185:


I have the same:

 
{code:java}

Product Version: Apache NetBeans IDE Dev (Build 20190301-5f7d8481d15b)
Updates: Updates available
Java: 13-ea; OpenJDK 64-Bit Server VM 13-ea+10
Runtime: OpenJDK Runtime Environment 13-ea+10
System: Mac OS X version 10.13.6 running on x86_64; UTF-8; en_DE (nb)
User directory: /Users/rami/Library/Application Support/NetBeans/dev
Cache directory: /Users/rami/Library/Caches/NetBeans/dev
{code}


 
{code:java}
SEVERE [org.openide.util.RequestProcessor]: Error in RequestProcessor 
org.netbeans.modules.lsp.client.LSPBindings$Cleanup

java.lang.NullPointerException

at org.netbeans.modules.lsp.client.LSPBindings$Cleanup.run(LSPBindings.java:243)

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.core.startup.NbStartStop.startClose(NbStartStop.java:119)

at org.netbeans.core.startup.NbInstaller.closeAsync(NbInstaller.java:707)

at org.netbeans.ModuleManager.shutDownAsync(ModuleManager.java:2302)

at org.netbeans.core.startup.ModuleSystem.shutDownAsync(ModuleSystem.java:346)

at org.netbeans.core.NbLifeExit.doExit(NbLifeExit.java:114)

at org.netbeans.core.NbLifeExit.run(NbLifeExit.java:71)

at 
java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)

at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770)

at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)

at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715)

at 
java.base/java.security.AccessController.doPrivileged(AccessController.java:391)

at 
java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85)

at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740)

at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)

at 
java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)

at 
java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)

at 
java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)

at 
java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)

at 
java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)

[catch] at 
java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)

WARNING [org.netbeans.TopSecurityManager]: use of system property netbeans.user 
has been obsoleted in favor of InstalledFileLocator/Places at 
org.netbeans.modules.websvc.saas.model.SaasServicesModel.(SaasServicesModel.java:46)

INFO [org.netbeans.core.netigso.Netigso]: bundle 
org.eclipse.osgi@3.9.1.v20140110-1610 256

INFO [org.netbeans.core.netigso.Netigso]: bundle 
org.eclipse.osgi@3.9.1.v20140110-1610 stopped

INFO [org.netbeans.core.netigso.Netigso]: bundle 
org.eclipse.osgi@3.9.1.v20140110-1610 stopped
{code}

> NullPointerException after close program
> 
>
> Key: NETBEANS-2185
> URL: https://issues.apache.org/jira/browse/NETBEANS-2185
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems
>Affects Versions: 10.0
> Environment: Windows 10, Incubator NetBeans Linux 1018, Java 12 Early 
> Access 32
>Reporter: Michal Rama
>Assignee: Jan Lahoda
>Priority: Minor
>  Labels: close, netbeans
>
> Hello,
> An error will pop up when the program closes.
> Sometimes it only appears for a fraction of a second, barely noticeable. 
> Sometimes it will also appear for a few seconds. I've copied it a few times 
> and the bug always writes the same thing.
> {code:java}
> java.lang.NullPointerException
> at 
> org.netbeans.modules.lsp.client.LSPBindings$Cleanup.run(LSPBindings.java:243)
> 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.ut

[incubator-netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 624

2019-03-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new 6e74a8f  Automated site publishing by Jenkins build 624
6e74a8f is described below

commit 6e74a8ff501bb536f6825dc644c7e281b1e85e71
Author: jenkins 
AuthorDate: Fri Mar 1 10:04:13 2019 +

Automated site publishing by Jenkins build 624
---
 content/kb/docs/java/code-inspect.html | 95 --
 1 file changed, 56 insertions(+), 39 deletions(-)

diff --git a/content/kb/docs/java/code-inspect.html 
b/content/kb/docs/java/code-inspect.html
index db187c5..eaeea4e 100644
--- a/content/kb/docs/java/code-inspect.html
+++ b/content/kb/docs/java/code-inspect.html
@@ -101,10 +101,10 @@
 Setting Up the Tutorial 
Environment
 Using Predefined 
Configurations
 
-Running All Analyzers
-Verifying Java 
Code against NetBeans Java Hints
-Finding 
Potential Problems in Java Code with FindBugs
-Customizing a Default 
Configuration
+Running All Analyzers
+Verifying Java Code against NetBeans Java Hints
+Finding Potential Problems in Java Code with 
FindBugs
+Customizing a Default Configuration
 
 
 Creating and Deleting 
Configurations
@@ -165,8 +165,8 @@
 
 If using another NetBeans project, http://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/2.0.0/jsr305-2.0.0.jar";>jsr305-2.0.0.jar
 should be downloaded and added to the Libraries folder of the your project in 
the IDE as follows:
 
-
-
+
+
 
 Right-click the Libraries folder and choose the Add JAR/Folder from the 
popup menu.
 
@@ -193,10 +193,13 @@
 
 The https://netbeans.org/projects/samples/downloads/download/Samples/Java/library.zip";>library.zip
 file should be unzipped into your NetBeans project folder and opened in the 
NetBeans IDE.
 
-
+
+
+
 The FindBugs plugin should be downloaded and installed into the NetBeans 
IDE as follows:
+
 
-
+
 
 Choose Source > Inspect from the main IDE’s menu.
 
@@ -205,9 +208,6 @@
 
 
 
-
-
-
 
 
 
@@ -218,7 +218,7 @@
 
 
 
-
+
 
 In the Installer dialog box, click Next to proceed with the 
installation.
 
@@ -234,7 +234,7 @@
 
 
 
-
+
 
 Review the license agreement, select the license agreement option, and 
click Install.
 
@@ -268,7 +268,7 @@
 
 
 
-Running All Analyzers
+Running All Analyzers
 
 The  All Analyzers  configuration deploys all static code 
analysis tools available in the IDE.
 
@@ -310,7 +310,7 @@ You need to install the FindBugs 
plugin to run this config
 
 
 
-
+
 
 Click Inspect.
 The results of the analysis are displayed in the Inspector Window as a tree 
view on the left.
@@ -345,7 +345,8 @@ The results of the analysis are displayed in the Inspector 
Window as a tree view
 
 
 
-If you want to leave some part of your code that is reported as problematic as 
is, the IDE allows you to suppress the warning for this code to leave it 
without any changes. You can double-click a warning in the tree view of the 
Inspector Window to go to the Source Editor. Press Alt-Enter, click the black 
arrow pointing to the right at the end of the displayed hint, and choose  
SuppressWarning - (warning name) .
+If you want to leave some part of your code that is reported as problematic as 
is, the IDE allows you to suppress the warning for this code to leave it 
without any changes. You can double-click a warning in the tree view of the 
Inspector Window to go to the Source Editor.
+Press Alt+Enter, click the 
black arrow pointing to the right at the end of the displayed hint, and choose  
SuppressWarning - (warning name) .
 
 
 
@@ -361,7 +362,7 @@ If you want to leave some part of your code that is 
reported as problematic as i
 
 
 
-Verifying Java Code 
against NetBeans Java Hints
+Verifying Java Code against NetBeans Java Hints
 
 The  NetBeans Java Hints  configuration available in the IDE 
enables you to verify if the predefined coding standard rules are satisfied by 
the source code under consideration. In other words, it applies a set of 
NetBeans Java Hints (also known as code inspections) to your Java source 
files.
 
@@ -391,7 +392,7 @@ You can define a scope (a file, package, or project(s)) for 
the  NetBeans
 
 
 
-
+
 
 Select the Configuration radio button and choose  NetBeans Java 
Hints  in the drop-down list.
 
@@ -407,7 +408,7 @@ You can define a scope (a file, package, or project(s)) for 
the  NetBeans
 
 
 
-
+
 
 Click Inspect.
 The IDE displays the tree view with the results of the analysis with the  
NetBeans Java Hints  configuration in the Inspector Window.
@@ -420,7 +421,7 @@ The IDE displays the tree view with the results of the 
analysis with the  
 
 
 
-
+
 
 In the Inspector Window, click the Categorize 
button in the toolbar on the left to view the problems grouped into 
categories.
 
@@ -447,22 +448,38 @@ The IDE displays the tree view with the results of the 
analysis with th

[incubator-netbeans-website] branch master updated: Updated numbering, shortcuts, anchor, table images (#331)

2019-03-01 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new e7cf999  Updated numbering, shortcuts, anchor, table images (#331)
e7cf999 is described below

commit e7cf99978f4b3bff03a1fb4d24f924436439ec19
Author: Brian Cowell <18186433+cu...@users.noreply.github.com>
AuthorDate: Fri Mar 1 21:02:05 2019 +1100

Updated numbering, shortcuts, anchor, table images (#331)

Fixed numbered lists.
Updated keyboard short cuts from text to graphics.
Fixed page anchoring. (were broken)
Fixed table images - missing "a" attribute outside of row.
---
 .../src/content/kb/docs/java/code-inspect.asciidoc | 144 -
 1 file changed, 83 insertions(+), 61 deletions(-)

diff --git a/netbeans.apache.org/src/content/kb/docs/java/code-inspect.asciidoc 
b/netbeans.apache.org/src/content/kb/docs/java/code-inspect.asciidoc
index 42c55a4..efa9652 100644
--- a/netbeans.apache.org/src/content/kb/docs/java/code-inspect.asciidoc
+++ b/netbeans.apache.org/src/content/kb/docs/java/code-inspect.asciidoc
@@ -28,6 +28,7 @@
 :toc-title:
 :description: Static Code Analysis in the NetBeans IDE Java Editor - Apache 
NetBeans
 :keywords: Apache NetBeans, Tutorials, Static Code Analysis in the NetBeans 
IDE Java Editor
+:experimental:
 
 The NetBeans IDE Java Editor has a static code analysis feature, which is a 
tool for finding potential problems and detecting inconsistencies in your 
source code.
 
@@ -48,9 +49,9 @@ In this tutorial, you will learn how to perform static 
analysis of your Java cod
 NOTE: ``jsr305-2.0.0.jar``  is included into  ``library.zip``  for the 
purposes of this tutorial.
 
 If using another NetBeans project, 
link:http://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/2.0.0/jsr305-2.0.0.jar[+jsr305-2.0.0.jar+]
 should be downloaded and added to the Libraries folder of the your project in 
the IDE as follows:
-
-1. Right-click the Libraries folder and choose the Add JAR/Folder from the 
popup menu.
-2. In the Add JAR/Folder dialog box, specify the path to the downloaded  
``jsr305-2.0.0.jar``  file and click Open.
+[lowerroman, start=1]
+. Right-click the Libraries folder and choose the Add JAR/Folder from the 
popup menu.
+. In the Add JAR/Folder dialog box, specify the path to the downloaded  
``jsr305-2.0.0.jar``  file and click Open.
 
 image::images/jar.png[]
 
@@ -59,24 +60,27 @@ image::images/jar.png[]
 In addition to the required software listed above you should have the 
following installed on your computer:
 
 * The 
link:https://netbeans.org/projects/samples/downloads/download/Samples/Java/library.zip[+library.zip+]
 file should be unzipped into your NetBeans project folder and opened in the 
NetBeans IDE.
-* The FindBugs plugin should be downloaded and installed into the NetBeans IDE 
as follows:
-1. Choose Source > Inspect from the main IDE's menu.
-2. In the Inspect dialog box, click Install.
+
+The FindBugs plugin should be downloaded and installed into the NetBeans IDE 
as follows:
+
+[arabic, start=1]
+. Choose Source > Inspect from the main IDE's menu.
+. In the Inspect dialog box, click Install.
 
 [.feature]
 --
 image::images/inspect-small.png[role="left", link="images/inspect.png"]
 --
-
-3. In the Installer dialog box, click Next to proceed with the installation.
+[start=3]
+. In the Installer dialog box, click Next to proceed with the installation.
 
 [.feature]
 --
 image::images/plugin-small.png[role="left", link="images/plugin.png"]
 --
-
-4. Review the license agreement, select the license agreement option, and 
click Install.
-5. When the installation is complete, click Finish.
+[start=4]
+. Review the license agreement, select the license agreement option, and click 
Install.
+. When the installation is complete, click Finish.
 
 == Using Predefined Configurations
 
@@ -87,15 +91,16 @@ You can use the following predefined configurations when 
inspecting your code in
 * <>
 * <>
 
+[[all]]
 === Running All Analyzers
 
 The  ``All Analyzers``  configuration deploys all static code analysis tools 
available in the IDE.
 
 *To run the  ``All Analyzers``  configuration, complete the following steps:*
 
-1. Choose Source > Inspect from the main IDE's toolbar.
-2. In the Scope drop-down list of the Inspect dialog box, select  ``Current 
Project (library)`` .
-3. In the Configuration drop-down list, select the  ``All Analyzers``  
configuration.
+. Choose Source > Inspect from the main IDE's toolbar.
+. In the Scope drop-down list of the Inspect dialog box, select  ``Current 
Project (library)`` .
+. In the Configuration drop-down list, select the  ``All Analyzers``  
configuration.
 
 [.feature]
 --
@@ -104,7 +109,8 @@ image::images/allconfig-small.png[role="left", 
link="images/allconfig.png"]
 
 NOTE: You need to install the <> plugin to run thi

[jira] [Created] (NETBEANS-2189) MinGW TDM Bug for fixing and temp workaround ("No shell found. Cannot proceed. Please install either CYGWIN or Msys.")

2019-03-01 Thread Daes Mond (JIRA)
Daes Mond created NETBEANS-2189:
---

 Summary: MinGW TDM Bug for fixing and temp workaround ("No shell 
found. Cannot proceed. Please install either CYGWIN or Msys.")
 Key: NETBEANS-2189
 URL: https://issues.apache.org/jira/browse/NETBEANS-2189
 Project: NetBeans
  Issue Type: Bug
  Components: third-party - Other
Affects Versions: 10.0
 Environment: Windows 10 Pro 64 bit with Msys/MinGW32 installed and 
MinGW-TDM-64bit
Reporter: Daes Mond


Problem using MinGW-TDM compiler

"No shell found. Cannot proceed. Please install either CYGWIN or Msys."

A work around is to choose MinGW (The 32-bit compatible version being use by 
netbeans previous versions), then rebuild the project, switch back to 
MinGW-TDM-64 bit and rebuild the project.  It will now work. Then when netbeans 
10 restarted back to same old routine to be able to use TDM.

[video of 
bug|http://topline2019.000webhostapp.com/nb10_mingw_tdm_bug_work_around_for_fix.mp4]



--
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