[jira] [Assigned] (NETBEANS-3002) NullPointerExceptions during PHPStan inspection

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto reassigned NETBEANS-3002:
--

Assignee: Junichi Yamamoto

> NullPointerExceptions during PHPStan inspection
> ---
>
> Key: NETBEANS-3002
> URL: https://issues.apache.org/jira/browse/NETBEANS-3002
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code Analysis
>Affects Versions: 11.0, 11.1
> Environment: Windows 10
>Reporter: Czukowski
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: PHPStanException.zip
>
>
> PHPStan code analysis support reports NullPointerExceptions at some 
> occasions. When the exception occurs, the Inspect dialog window is not closed 
> on its own.
> I've been able to reproduce it using the uploaded sample project. Run 
> {{composer install}}, then configure NetBeans to use PHPStan from 
> {{vendor/bin}} and the configuration from {{phpstan.neon}} file in the 
> project root.
> The configuration file contains {{ignoreErrors}} section with a pattern to 
> ignore known errors. The exception seems to depend on whether this pattern is 
> there or not (to disable, comment the line with {{#}}). 
> To reproduce, select the {{app}} folder and run PHPStan inspection with the 
> scope: Current folder (app).
> With the setup above I've encountered two types of the stack traces:
> *Without ignore pattern (commented line)*
> Output:
> {code}
> "C:\Workspace\Test\PHPStanException\vendor\bin\phpstan.bat" "analyse" 
> "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" 
> "--level=5" "--configuration=C:\Workspace\Test\PHPStanException\phpstan.neon" 
> "C:\Workspace\Test\PHPStanException\app"
> 
> 
> 
>   
> 
> 
>   
>   
> 
> 
> Done.
> {code}
> Stack trace:
> {code}
> java.lang.NullPointerException
>   at org.netbeans.modules.php.analysis.util.Mappers.map(Mappers.java:54)
>   at 
> org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.doAnalyze(PHPStanAnalyzerImpl.java:140)
>   at 
> org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.analyze(PHPStanAnalyzerImpl.java:92)
>   at 
> org.netbeans.modules.analysis.RunAnalysis$1$1.doRunAnalyzer(RunAnalysis.java:186)
>   at 
> org.netbeans.modules.analysis.RunAnalysis$1$1.run(RunAnalysis.java:142)
>   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)
> [catch] at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> {code}
> *With ignore pattern*
> Output:
> {code}
> "C:\Workspace\Test\PHPStanException\vendor\bin\phpstan.bat" "analyse" 
> "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" 
> "--level=5" "--configuration=C:\Workspace\Test\PHPStanException\phpstan.neon" 
> "C:\Workspace\Test\PHPStanException\app"
> 
> 
> 
>   
> 
> 
>   
>   
> 
> 
>   
> 
> 
> Done.
> {code}
> Stack trace:
> {code}
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.sanitizeFileName(PHPStanReportParser.java:199)
>   at 
> org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.getCurrentFile(PHPStanReportParser.java:180)
>   at 
> org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.processFileStart(PHPStanReportParser.java:133)
>   at 
> org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.startElement(PHPStanReportParser.java:114)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:510)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:1397)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2710)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:605)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:534)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:888)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:824)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:141)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1216)
>   at 
> 

[jira] [Commented] (NETBEANS-3002) NullPointerExceptions during PHPStan inspection

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-3002:


Reproducible. Thanks for reporting it.

> NullPointerExceptions during PHPStan inspection
> ---
>
> Key: NETBEANS-3002
> URL: https://issues.apache.org/jira/browse/NETBEANS-3002
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code Analysis
>Affects Versions: 11.0, 11.1
> Environment: Windows 10
>Reporter: Czukowski
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: PHPStanException.zip
>
>
> PHPStan code analysis support reports NullPointerExceptions at some 
> occasions. When the exception occurs, the Inspect dialog window is not closed 
> on its own.
> I've been able to reproduce it using the uploaded sample project. Run 
> {{composer install}}, then configure NetBeans to use PHPStan from 
> {{vendor/bin}} and the configuration from {{phpstan.neon}} file in the 
> project root.
> The configuration file contains {{ignoreErrors}} section with a pattern to 
> ignore known errors. The exception seems to depend on whether this pattern is 
> there or not (to disable, comment the line with {{#}}). 
> To reproduce, select the {{app}} folder and run PHPStan inspection with the 
> scope: Current folder (app).
> With the setup above I've encountered two types of the stack traces:
> *Without ignore pattern (commented line)*
> Output:
> {code}
> "C:\Workspace\Test\PHPStanException\vendor\bin\phpstan.bat" "analyse" 
> "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" 
> "--level=5" "--configuration=C:\Workspace\Test\PHPStanException\phpstan.neon" 
> "C:\Workspace\Test\PHPStanException\app"
> 
> 
> 
>   
> 
> 
>   
>   
> 
> 
> Done.
> {code}
> Stack trace:
> {code}
> java.lang.NullPointerException
>   at org.netbeans.modules.php.analysis.util.Mappers.map(Mappers.java:54)
>   at 
> org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.doAnalyze(PHPStanAnalyzerImpl.java:140)
>   at 
> org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.analyze(PHPStanAnalyzerImpl.java:92)
>   at 
> org.netbeans.modules.analysis.RunAnalysis$1$1.doRunAnalyzer(RunAnalysis.java:186)
>   at 
> org.netbeans.modules.analysis.RunAnalysis$1$1.run(RunAnalysis.java:142)
>   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)
> [catch] at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> {code}
> *With ignore pattern*
> Output:
> {code}
> "C:\Workspace\Test\PHPStanException\vendor\bin\phpstan.bat" "analyse" 
> "--no-ansi" "--no-progress" "--no-interaction" "--error-format=checkstyle" 
> "--level=5" "--configuration=C:\Workspace\Test\PHPStanException\phpstan.neon" 
> "C:\Workspace\Test\PHPStanException\app"
> 
> 
> 
>   
> 
> 
>   
>   
> 
> 
>   
> 
> 
> Done.
> {code}
> Stack trace:
> {code}
> java.lang.NullPointerException
>   at 
> org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.sanitizeFileName(PHPStanReportParser.java:199)
>   at 
> org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.getCurrentFile(PHPStanReportParser.java:180)
>   at 
> org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.processFileStart(PHPStanReportParser.java:133)
>   at 
> org.netbeans.modules.php.analysis.parsers.PHPStanReportParser.startElement(PHPStanReportParser.java:114)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:510)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:1397)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2710)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:605)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:534)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:888)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:824)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:141)
>   at 
> java.xml/com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1216)
>   

[jira] [Commented] (NETBEANS-2950) Cannot finish app by stopping debugging

2019-10-22 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-2950:
---

Unfortunately without NETBEANS-3279 it is not possible to completely fix this 
issue.

> Cannot finish app by stopping debugging
> ---
>
> Key: NETBEANS-2950
> URL: https://issues.apache.org/jira/browse/NETBEANS-2950
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
>Affects Versions: 11.0
>Reporter: Jaroslav Tulach
>Assignee: Steven Ingram
>Priority: Minor
>  Labels: EasyFix
>
> When I create Gradle/Java Application and try to debug it, it doesn't stop 
> when I press the "Finish Debugging" button. That is weird and certainly 
> different to behavior of Maven and Ant projects. Example:
> {code:java}
> public class Main {
>     public static void main(String[] args) throws Exception {
>     int cnt = 0;
>     while (true) {
>     Thread.sleep(1000);
>     System.out.println("counting " + ++cnt);
>     }
>     }
>     
> }{code}
> Debug the project. Then press the big red button in the debugger toolbar. The 
> debugger disconnects, but immediately reconnects again and the application 
> continues. I find this unexpected. Output of one of my executions:
> {code:java}
> > Task :compileJava
> > Task :processResources NO-SOURCE
> > Task :classes
> > Task :run
> Listening for transport dt_socket at address: 5005
> counting 1
> counting 2
> counting 3
> counting 4
> counting 5
> Listening for transport dt_socket at address: 5005
> counting 6
> Listening for transport dt_socket at address: 5005
> Listening for transport dt_socket at address: 5005
> counting 7
> counting 8
> BUILD ABORTED{code}
> At the end I pressed the "small red" button in on the left side of the output 
> window and that one terminates the app - e.g. workaround exists.



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

-
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-3279) Provide a way for Plugins to Cancel a Gradle Execution

2019-10-22 Thread Laszlo Kishalmi (Jira)
Laszlo Kishalmi created NETBEANS-3279:
-

 Summary: Provide a way for Plugins to Cancel a Gradle Execution
 Key: NETBEANS-3279
 URL: https://issues.apache.org/jira/browse/NETBEANS-3279
 Project: NetBeans
  Issue Type: Improvement
  Components: projects - Gradle
Reporter: Laszlo Kishalmi
Assignee: Laszlo Kishalmi


Right now it is possible for plugins to execute Gradle task via RunUtils, thoug 
these tasks cannot be cancelled. Provide a RunUtils.cancelGradle method for 
that.



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

-
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-2266) Remote Upload Directory "var" from "Run Configuration" in PHP project.

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-2266:


Please click the "Manage" button then, please confirm "Initial Directory". 

> Remote Upload Directory "var" from "Run Configuration" in PHP project.
> --
>
> Key: NETBEANS-2266
> URL: https://issues.apache.org/jira/browse/NETBEANS-2266
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - FTP Support, php - Project
>Affects Versions: 10.0
>Reporter: Jeong SeongYong
>Priority: Major
> Attachments: 스크린샷, 2019-03-17 21-28-41.png
>
>
> My server does not have a folder called "var".
>  There is a file in "/home/gagebu/www/".
>  I can not do anything because of the "var" folder that is written 
> automatically.



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

-
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-1957) Auto-complete creates an extra space below the fist bracket of a class/interface declaration

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-1957:
---
Issue Type: New Feature  (was: Bug)

> Auto-complete creates an extra space below the fist bracket of a 
> class/interface declaration
> 
>
> Key: NETBEANS-1957
> URL: https://issues.apache.org/jira/browse/NETBEANS-1957
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Formatting  Indentation
>Affects Versions: 10.0
>Reporter: Imb
>Priority: Minor
> Attachments: nb-space-bug.png
>
>
> When using the auto-format feature ({{Alt+Shift+F}}), an extra space is 
> generated by Netbeans (PHP) just below the first *{* (bracket) of a class or 
> interface declaration.
> There appears to be no way to remove this in the current settings.
> (See screenshot for demo)



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

-
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-3266) Code completion, navigation does not work if there is a typo in PHP header

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-3266:
---
Component/s: (was: php - Formatting & Indentation)

> Code completion, navigation does not work if there is a typo in PHP header
> --
>
> Key: NETBEANS-3266
> URL: https://issues.apache.org/jira/browse/NETBEANS-3266
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor, php - Navigation
>Affects Versions: 11.1
> Environment: Product Version: Apache NetBeans IDE 11.1
> Java: 12.0.1; Java HotSpot(TM) 64-Bit Server VM 12.0.1+12
> Runtime: Java(TM) SE Runtime Environment 12.0.1+12
> System: Windows 10 version 10.0
>Reporter: Czukowski
>Priority: Minor
> Attachments: CompletionWithSyntax.zip
>
>
> Please see the attached sample project that illustrates the issue.
> There is a syntax error in {{Class1.php}} - missing space between PHP header 
> and a declaration:
> {code}
>  {code}
> No syntax error is reported, the syntax highlighting still works, but 
> completion and navigation (like Go to declaration of class or method names) 
> does nothing, even though class and method names are still being underlined 
> when moving mouse over them with ctrl key pressed.
> It may take a while for a user to realize where the problem is.



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

-
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-2997) Can not open files by double clicking in the OS file manager

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-2997:
---
Component/s: (was: php - Editor)

> Can not open files by double clicking in the OS file manager
> 
>
> Key: NETBEANS-2997
> URL: https://issues.apache.org/jira/browse/NETBEANS-2997
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Geertjan Wielenga
>Priority: Major
>
> https://netbeans.org/bugzilla/show_bug.cgi?id=138943



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

-
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-3102) Wrong encoding for files in include path

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-3102:


Could you please attach an example php project as zip file to reproduce it?

BTW, can you reproduce it with other extension files(e.g. xxx.java, xxx.txt, 
...)?

> Wrong encoding for files in include path
> 
>
> Key: NETBEANS-3102
> URL: https://issues.apache.org/jira/browse/NETBEANS-3102
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 11.0
> Environment: Windows 7, Java 8 update 211, NetBeans 11.0
>Reporter: Gonçalo Peres
>Priority: Major
>
> I've a PHP Project with a bunch of PHP files on a directory 
> "D:/www/project_php" with Encoding in UTF-8 and PHP Version 7.3.4 .
> I add a directory (D:/www/include_path) with some other PHP files to the 
> include path. These files are in UTF-8 enconding, but show in the Netbeans 
> Editor as ANSI with all the accentuated characters with encoding errors.
> {code:java}
> return array('status'=>0, 'http_code'=>$httpCode, 'msg'=>"Erro: não foi 
> possível obter o código fonte da página.\n", 'html'=>$html);{code}
> {{it should be:}}
> {code:java}
> return array('status'=>0, 'http_code'=>$httpCode, 'msg'=>"Erro: não foi 
> possível obter o código fonte da página.\n", 'html'=>$html);{code}
> Tested this by opening a file on the include path in Notepad++ and converting 
> it to ANSI, it then shows OK on the Netbeans Editor, withou garbage 
> characters, confirming that although the project is in UTF-8 and all files in 
> the project directory are rendered in UTF-8, the Netbeans Editor show the 
> files on the include path as ANSI.
> h4. Workaround:
> Navigate to {{/etc}} and open the 
> {{netbeans.conf}} file. Add " {{-J-Dfile.encoding=UTF-8}}" at the end of the 
> line that starts with {{netbeans_default_options}} (make sure to include the 
> leading space). Restart Netbeans and it should be in UTF-8.
> Anyway, files on the included path of a project should be opened by Netbeans 
> using the same encoding as the project settings.
> Please correct this. Thank you!



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Stephen Bannasch (Jira)


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

Stephen Bannasch closed NETBEANS-3275.
--

> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: choose-jdk.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> See attached screenshot – am running 11.2-beta3. Same behavior is present 
> running 11.1. 
> Next button not enabled when selecting any of the alternate JDK folders. 
>  
>  
> $ ls -l /Library/Java/JavaVirtualMachines/
> total 0
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:14 *adoptopenjdk-11.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 14:58 *adoptopenjdk-12-openj9.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 15:37 *adoptopenjdk-12.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  6 00:56 *jdk-12.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Oct 17 01:42 *jdk-13.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:40 *jdk1.8.0_211.jdk*



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-3275:
-

Yes. So can you close this issue?

> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: choose-jdk.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> See attached screenshot – am running 11.2-beta3. Same behavior is present 
> running 11.1. 
> Next button not enabled when selecting any of the alternate JDK folders. 
>  
>  
> $ ls -l /Library/Java/JavaVirtualMachines/
> total 0
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:14 *adoptopenjdk-11.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 14:58 *adoptopenjdk-12-openj9.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 15:37 *adoptopenjdk-12.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  6 00:56 *jdk-12.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Oct 17 01:42 *jdk-13.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:40 *jdk1.8.0_211.jdk*



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

-
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-2780) Add support for continuous build execution for custom gradle tasks

2019-10-22 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-2780:
---

Right now it is disabled for the reason as it is pretty much can mess up the 
IDE in some cases.

I might put an experimental configuration flag to let it be enabled.

> Add support for continuous build execution for custom gradle tasks
> --
>
> Key: NETBEANS-2780
> URL: https://issues.apache.org/jira/browse/NETBEANS-2780
> Project: NetBeans
>  Issue Type: Wish
>  Components: projects - Gradle
>Affects Versions: 11.0, 11.1
>Reporter: Martin Grzenia
>Priority: Minor
>  Labels: features, patch
>
> Right now, when creating a custom task for a gradle project with "Run Gradle 
> > Tasks...", the "–continuous" command line argument will be ignored. It 
> would be great to see this feature in the gradle integration for NetBeans 11.



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

-
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-3274) PHP: "Go to declaration" and "Highlight occurrences" in some cases not working or working wrong

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-3274:


No problem :) If you can reproduce it in NetBeans 11.2, please feel free to 
reopen it.

> PHP:  "Go to declaration" and "Highlight occurrences" in some cases not 
> working or working wrong
> 
>
> Key: NETBEANS-3274
> URL: https://issues.apache.org/jira/browse/NETBEANS-3274
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 8.2, 9.0, 10.0, 11.0, 11.1
>Reporter: SL EF
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: Test1.php, TestClone2.php
>
>
> This bug seems related only for context methods/properties inside closure 
> when another class has same methods/properties.
>  
> Steps to reproduce described in Test1.php file.
> There you'll find some test cases named as:
>  # ["Highlight occurrences of property" test]
>  # ["Go to declaration of property" test
>  # ["Highlight occurrences of method" test]
>  # ["Go to declaration of property" test]



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

-
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-3278) NetBeans Platform Application only compiles with default JDK

2019-10-22 Thread matteodg (Jira)
matteodg created NETBEANS-3278:
--

 Summary: NetBeans Platform Application only compiles with default 
JDK
 Key: NETBEANS-3278
 URL: https://issues.apache.org/jira/browse/NETBEANS-3278
 Project: NetBeans
  Issue Type: Bug
  Components: apisupport - Harness
Affects Versions: 11.1, 11.0, 11.2
 Environment: Windows 10
Reporter: matteodg


I created from scratch a simple NetBeans Platform Application with a single 
module and I would like to use a Java Platform different than the default one, 
but I can't because I got this error while building the application:
{noformat}
module.taskdefs:
module.common-init:
Warning: nbjdk.active=OpenJDK13 or nbjdk.home=D:\Java\OpenJDK\jdk-13.0.1 is an 
invalid Java platform; ignoring and using D:\Java\OpenJDK
module.projectized-common.basic-init:
module.basic-init:
{noformat}
I'm launching NetBeans IDE with Oracle JDK 13 (default JDK) but I would like to 
compile and run with OpenJDK 13 (which I properly configured in Tools->Java 
Platforms).

I checked and this bug is present in NB 11.0, 11.1 and 11.2-beta3 as well



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

-
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-3277) cleanup the external binary cache

2019-10-22 Thread ASF GitHub Bot (Jira)


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

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

> cleanup the external binary cache
> -
>
> Key: NETBEANS-3277
> URL: https://issues.apache.org/jira/browse/NETBEANS-3277
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Brad Walker
>Assignee: Brad Walker
>Priority: Major
>  Labels: pull-request-available
>
> Historically,  NetBeans has cached external binaries in a directory called 
> _~/.hgexternalcache_.
> This change changes the name to _nb_external_cache_.
> It also moves it out of the users home directory and into the ._netbeans_ 
> directory. This puts it into a place where it should be since things like 
> this need to live in the ._netbeans_ directory.



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

-
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-3277) cleanup the external binary cache

2019-10-22 Thread Brad Walker (Jira)
Brad Walker created NETBEANS-3277:
-

 Summary: cleanup the external binary cache
 Key: NETBEANS-3277
 URL: https://issues.apache.org/jira/browse/NETBEANS-3277
 Project: NetBeans
  Issue Type: Improvement
Reporter: Brad Walker
Assignee: Brad Walker


Historically,  NetBeans has cached external binaries in a directory called 
_~/.hgexternalcache_.

This change changes the name to _nb_external_cache_.

It also moves it out of the users home directory and into the ._netbeans_ 
directory. This puts it into a place where it should be since things like this 
need to live in the ._netbeans_ directory.



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

-
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-3276) NPE in WebProjectBrowserProvider.

2019-10-22 Thread Shevek (Jira)
Shevek created NETBEANS-3276:


 Summary: NPE in WebProjectBrowserProvider.
 Key: NETBEANS-3276
 URL: https://issues.apache.org/jira/browse/NETBEANS-3276
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
Reporter: Shevek


java.lang.NullPointerException
at 
org.netbeans.modules.gradle.javaee.web.WebProjectBrowserProvider.getPreferences(WebProjectBrowserProvider.java:119)
at 
org.netbeans.modules.gradle.javaee.web.WebProjectBrowserProvider.removePropertyChangeListener(WebProjectBrowserProvider.java:106)
at 
org.netbeans.modules.web.clientproject.browser.ActiveBrowserAction.activeProjectChanged(ActiveBrowserAction.java:320)
at 
org.netbeans.modules.web.clientproject.browser.ActiveBrowserAction.refreshView(ActiveBrowserAction.java:305)
at 
org.netbeans.modules.web.clientproject.browser.ActiveBrowserAction.access$700(ActiveBrowserAction.java:86)
at 
org.netbeans.modules.web.clientproject.browser.ActiveBrowserAction$8.run(ActiveBrowserAction.java:295)
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)
[catch] at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)




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

-
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-3234) Apache NetBeans running on JDK 11 cannot access package classes

2019-10-22 Thread Boris Heithecker (Jira)


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

Boris Heithecker commented on NETBEANS-3234:


Are your sure your solution passes with the fix and does not without it?

I've tried it and changed my test case according to your suggestion. If I 
comment out the ProxyClassLoader.findClass(String name) override, the test 
still passes, regardless if run with java 8 or 11.0.4.

(I did some digging in the existing sources before as well, and, though I may 
not have been thorough enough, it seems to me that you can't easily create a 
unit test for this fix. You'd have have to change more code in ProxyClassLoader 
only for the sake of testing.)

> Apache NetBeans running on JDK 11 cannot access package classes
> ---
>
> Key: NETBEANS-3234
> URL: https://issues.apache.org/jira/browse/NETBEANS-3234
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Boris Heithecker
>Priority: Critical
>  Labels: pull-request-available
> Fix For: 11.3
>
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> If a package-info element is defined in some package, it cannot be properly 
> accessed at runtime:  
>  
> java.lang.Package p = AnyClass.class.getPackage();
>  
> should return a package object representing the actual package-info element 
> of that package. It is, for example, used by the JAXB runtime to read 
> XmlSchema annotations at package level. 
>  
> This has been tested in oracle jdk11.0.4. Class java.lang.Package in Java 11 
> has a private field called "packageInfo" of type "Class", which should 
> hold a reference to the actual package-info class object, i.e. 
> AnyPackage.package-info. In NetBeans, always wrongly references 
> "java.lang.Package$1PackageInfoProxy", which is a fallback reference set if 
> no actual package-info could be found. 
>  
> The reason is most likely that neither 
>  
> org.netbeans.JarClassLoader
> nor org.netbeans.ProxyClassLoader
> nor org.netbeans.StandardModule$OneModuleClassLoader (all in 
> platform/o.n.bootstrap)
>  
> override method "java.lang.ClassLoader.findClass(String name)". The default 
> implementation throws an exceptions which causes the above fallback reference 
> to be set. 
>  
> This is a serious issue. If it is not fixed, the platform will not be fully 
> comptabile, among others, with the JAXB RI and also JAX-WS RI. 



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Stephen Bannasch (Jira)


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

Stephen Bannasch edited comment on NETBEANS-3275 at 10/22/19 8:09 PM:
--

On macos have to navigate deeper into JDK directory to get to the actual JDK.

 

Example: /Library/Java/JavaVirtualMachines/jdk1.8.0_211.jdk/Contents/Home


was (Author: stepheneb):
On macos have to navigate deeper JDK directory: Contents/Home

> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: choose-jdk.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> See attached screenshot – am running 11.2-beta3. Same behavior is present 
> running 11.1. 
> Next button not enabled when selecting any of the alternate JDK folders. 
>  
>  
> $ ls -l /Library/Java/JavaVirtualMachines/
> total 0
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:14 *adoptopenjdk-11.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 14:58 *adoptopenjdk-12-openj9.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 15:37 *adoptopenjdk-12.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  6 00:56 *jdk-12.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Oct 17 01:42 *jdk-13.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:40 *jdk1.8.0_211.jdk*



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Stephen Bannasch (Jira)


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

Stephen Bannasch resolved NETBEANS-3275.

Resolution: Not A Bug

> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: choose-jdk.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> See attached screenshot – am running 11.2-beta3. Same behavior is present 
> running 11.1. 
> Next button not enabled when selecting any of the alternate JDK folders. 
>  
>  
> $ ls -l /Library/Java/JavaVirtualMachines/
> total 0
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:14 *adoptopenjdk-11.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 14:58 *adoptopenjdk-12-openj9.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 15:37 *adoptopenjdk-12.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  6 00:56 *jdk-12.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Oct 17 01:42 *jdk-13.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:40 *jdk1.8.0_211.jdk*



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Stephen Bannasch (Jira)


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

Stephen Bannasch commented on NETBEANS-3275:


On macos have to navigate deeper JDK directory: Contents/Home

> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: choose-jdk.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> See attached screenshot – am running 11.2-beta3. Same behavior is present 
> running 11.1. 
> Next button not enabled when selecting any of the alternate JDK folders. 
>  
>  
> $ ls -l /Library/Java/JavaVirtualMachines/
> total 0
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:14 *adoptopenjdk-11.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 14:58 *adoptopenjdk-12-openj9.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 15:37 *adoptopenjdk-12.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  6 00:56 *jdk-12.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Oct 17 01:42 *jdk-13.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:40 *jdk1.8.0_211.jdk*



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Stephen Bannasch (Jira)


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

Stephen Bannasch updated NETBEANS-3275:
---
Attachment: (was: image-2019-10-22-14-51-18-595.png)

> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: choose-jdk.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> See attached screenshot – am running 11.2-beta3. Same behavior is present 
> running 11.1. 
> Next button not enabled when selecting any of the alternate JDK folders. 
>  
>  
> $ ls -l /Library/Java/JavaVirtualMachines/
> total 0
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:14 *adoptopenjdk-11.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 14:58 *adoptopenjdk-12-openj9.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 15:37 *adoptopenjdk-12.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  6 00:56 *jdk-12.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Oct 17 01:42 *jdk-13.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:40 *jdk1.8.0_211.jdk*



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Stephen Bannasch (Jira)


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

Stephen Bannasch updated NETBEANS-3275:
---
Description: 
"Next" button not enabled after selecting JDK platform in "Choose Platform 
Folder" dialog.

See attached screenshot – am running 11.2-beta3. Same behavior is present 
running 11.1. 

Next button not enabled when selecting any of the alternate JDK folders. 

 

 

$ ls -l /Library/Java/JavaVirtualMachines/

total 0

drwxr-xr-x  3 root  wheel  96 Jul  5 16:14 *adoptopenjdk-11.jdk*

drwxr-xr-x  3 root  wheel  96 Jul  5 14:58 *adoptopenjdk-12-openj9.jdk*

drwxr-xr-x  3 root  wheel  96 Jul  5 15:37 *adoptopenjdk-12.jdk*

drwxr-xr-x  3 root  wheel  96 Jul  6 00:56 *jdk-12.0.1.jdk*

drwxr-xr-x  3 root  wheel  96 Oct 17 01:42 *jdk-13.0.1.jdk*

drwxr-xr-x  3 root  wheel  96 Jul  5 16:40 *jdk1.8.0_211.jdk*

  was:
"Next" button not enabled after selecting JDK platform in "Choose Platform 
Folder" dialog.

See attached screenshot – am running 11.2-beta3. Same behavior is present 
running 11.1. 

 

 


> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: choose-jdk.png, image-2019-10-22-14-51-18-595.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> See attached screenshot – am running 11.2-beta3. Same behavior is present 
> running 11.1. 
> Next button not enabled when selecting any of the alternate JDK folders. 
>  
>  
> $ ls -l /Library/Java/JavaVirtualMachines/
> total 0
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:14 *adoptopenjdk-11.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 14:58 *adoptopenjdk-12-openj9.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 15:37 *adoptopenjdk-12.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  6 00:56 *jdk-12.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Oct 17 01:42 *jdk-13.0.1.jdk*
> drwxr-xr-x  3 root  wheel  96 Jul  5 16:40 *jdk1.8.0_211.jdk*



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Stephen Bannasch (Jira)


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

Stephen Bannasch updated NETBEANS-3275:
---
 Attachment: choose-jdk.png
Description: 
"Next" button not enabled after selecting JDK platform in "Choose Platform 
Folder" dialog.

See attached screenshot – am running 11.2-beta3. Same behavior is present 
running 11.1. 

 

 

  was:
"Next" button not enabled after selecting JDK platform in "Choose Platform 
Folder" dialog.

Screenshot is running 11.2-beta3. Same problem is present running 11.1. 

 

!image-2019-10-22-14-51-18-595.png!


> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: choose-jdk.png, image-2019-10-22-14-51-18-595.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> See attached screenshot – am running 11.2-beta3. Same behavior is present 
> running 11.1. 
>  
>  



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

-
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-3275) Next button not enabled after selecting JDK platform

2019-10-22 Thread Stephen Bannasch (Jira)


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

Stephen Bannasch updated NETBEANS-3275:
---
Summary: Next button not enabled after selecting JDK platform  (was: Can't 
select)

> Next button not enabled after selecting JDK platform
> 
>
> Key: NETBEANS-3275
> URL: https://issues.apache.org/jira/browse/NETBEANS-3275
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1, 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2-beta3
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
> User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
> Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
>Reporter: Stephen Bannasch
>Priority: Major
> Attachments: image-2019-10-22-14-51-18-595.png
>
>
> "Next" button not enabled after selecting JDK platform in "Choose Platform 
> Folder" dialog.
> Screenshot is running 11.2-beta3. Same problem is present running 11.1. 
>  
> !image-2019-10-22-14-51-18-595.png!



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

-
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-3275) Can't select

2019-10-22 Thread Stephen Bannasch (Jira)
Stephen Bannasch created NETBEANS-3275:
--

 Summary: Can't select
 Key: NETBEANS-3275
 URL: https://issues.apache.org/jira/browse/NETBEANS-3275
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1, 11.2
 Environment: Product Version: Apache NetBeans IDE 11.2-beta3
Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
Runtime: Java(TM) SE Runtime Environment 13.0.1+9
System: Mac OS X version 10.15 running on x86_64; UTF-8; en_US (nb)
User directory: /Users/stephen/Library/Application Support/NetBeans/11.2-beta3
Cache directory: /Users/stephen/Library/Caches/NetBeans/11.2-beta3
Reporter: Stephen Bannasch
 Attachments: image-2019-10-22-14-51-18-595.png

"Next" button not enabled after selecting JDK platform in "Choose Platform 
Folder" dialog.

Screenshot is running 11.2-beta3. Same problem is present running 11.1. 

 

!image-2019-10-22-14-51-18-595.png!



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

-
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-3270) Webapp not correctly recognised as Java EE

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3270:


I can confirm the issue Maven/Gradle Web application (irrespective of the 
selected server type) but works fine in Ant Web Application.

> Webapp not correctly recognised as Java EE
> --
>
> Key: NETBEANS-3270
> URL: https://issues.apache.org/jira/browse/NETBEANS-3270
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project, projects - Maven
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
>
> Steps to reproduce:
> 1. Clean install of Netbeans 11.1 or 11.2 Beta 3 with all modules activated 
> and Payara 5.192 added.
> 2. File -> New Project -> Maven -> Web Application
> 3. Accept defaults for project except: Server: Payara  Server Java EE 
> version: Java EE 7 Web -> Finish
> 4. File -> New -> Other -> Persistence -> Persistence Unit -> Next
> Expected Outcome:
> Provider and Database Dialog should show EE options, i.e. "Use Java 
> Transaction APIs" and server JNDI datasources in the "Data Source" drop down.
> Actual Outcome:
> Dialog only shows SE options; no server data sources and to JTA checkbox.



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

-
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-3270) Webapp not correctly recognised as Java EE

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-3270 at 10/22/19 5:12 PM:
--

I can confirm the issue for Maven/Gradle Web application (irrespective of the 
selected server type) but works fine in Ant Web Application.


was (Author: jgauravgupta):
I can confirm the issue Maven/Gradle Web application (irrespective of the 
selected server type) but works fine in Ant Web Application.

> Webapp not correctly recognised as Java EE
> --
>
> Key: NETBEANS-3270
> URL: https://issues.apache.org/jira/browse/NETBEANS-3270
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Web Project, projects - Maven
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
>
> Steps to reproduce:
> 1. Clean install of Netbeans 11.1 or 11.2 Beta 3 with all modules activated 
> and Payara 5.192 added.
> 2. File -> New Project -> Maven -> Web Application
> 3. Accept defaults for project except: Server: Payara  Server Java EE 
> version: Java EE 7 Web -> Finish
> 4. File -> New -> Other -> Persistence -> Persistence Unit -> Next
> Expected Outcome:
> Provider and Database Dialog should show EE options, i.e. "Use Java 
> Transaction APIs" and server JNDI datasources in the "Data Source" drop down.
> Actual Outcome:
> Dialog only shows SE options; no server data sources and to JTA checkbox.



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Thomas McWork (Jira)


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

Thomas McWork closed NETBEANS-2995.
---
  Assignee: (was: Geertjan Wielenga)
Resolution: Cannot Reproduce

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Priority: Major
> Attachments: api-operations.yml
>
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Thomas McWork (Jira)


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

Thomas McWork commented on NETBEANS-2995:
-

> It's enough to only add a single character.

It was only just that.

I've repeated the setup without importing the settings of my previous 
installation of netbeans – and now it's working fine! So thank you for having a 
look into this!

And thank you for the whole thing!

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Assignee: Geertjan Wielenga
>Priority: Major
> Attachments: api-operations.yml
>
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Thomas McWork (Jira)


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

Thomas McWork edited comment on NETBEANS-2995 at 10/22/19 3:49 PM:
---

{quote}It's enough to only add a single character.
{quote}
It was only just that.

I've repeated the setup without importing the settings of my previous 
installation of netbeans – and now it's working fine! So thank you for having a 
look into this!

And thank you for the whole thing!


was (Author: thomas.mc.work):
> It's enough to only add a single character.

It was only just that.

I've repeated the setup without importing the settings of my previous 
installation of netbeans – and now it's working fine! So thank you for having a 
look into this!

And thank you for the whole thing!

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Assignee: Geertjan Wielenga
>Priority: Major
> Attachments: api-operations.yml
>
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2995:
-

Please don't assign issues to others. :-)

I can scroll through that file easily and edit it, no problem. You're going to 
need to define in detail what I must do to see your problem.

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Assignee: Geertjan Wielenga
>Priority: Major
> Attachments: api-operations.yml
>
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2995:
-

Maybe try other JDKs to see if that matters. My environment:

Product Version: Apache NetBeans IDE 11.2
Java: 11; Java HotSpot(TM) 64-Bit Server VM 11+28
Runtime: Java(TM) SE Runtime Environment 11+28
System: Mac OS X version 10.13.6 running on x86_64; UTF-8; en_NL (nb)


> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Assignee: Geertjan Wielenga
>Priority: Major
> Attachments: api-operations.yml
>
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Thomas McWork (Jira)


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

Thomas McWork reassigned NETBEANS-2995:
---

Assignee: Geertjan Wielenga

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Assignee: Geertjan Wielenga
>Priority: Major
> Attachments: api-operations.yml
>
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Thomas McWork (Jira)


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

Thomas McWork commented on NETBEANS-2995:
-

I can reproduce the problem with 11.2-vc1. I had to shorten the document a bit, 
which also reduces the excessive load times. But I hope this will give you an 
idea. If not, then I need to revise the whole document for not leaking any 
internal information.

 

btw: I've had serious problems writing this and attaching the file with Mozilla 
Firefox. I was forced to finally use Chromium to write this.

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Priority: Major
> Attachments: api-operations.yml
>
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Thomas McWork (Jira)


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

Thomas McWork updated NETBEANS-2995:

Attachment: api-operations.yml

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Priority: Major
> Attachments: api-operations.yml
>
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2918) ANSI colors stopped working since Netbeans 11.0

2019-10-22 Thread Marco Herrn (Jira)


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

Marco Herrn commented on NETBEANS-2918:
---

I could narrow the problem down. It is not directly related to Netbeans >= 11.

The output coloring works well when using the bundled maven (3.3.9).

The coloring breaks when using a custom maven 3.6.0.

When calling the same commandline netbeans uses, the coloring works when doing 
starting the application from the linux console for both, the bundled and the 
custom maven.

So it seems that the bundled maven correctly gets the color while a custom 
maven doesn't.

> ANSI colors stopped working since Netbeans 11.0
> ---
>
> Key: NETBEANS-2918
> URL: https://issues.apache.org/jira/browse/NETBEANS-2918
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Output Window
>Affects Versions: 11.0, 11.1
> Environment: Linux (Debian Buster) 
>Reporter: Marco Herrn
>Priority: Minor
> Attachments: color.png, mono.png
>
>
> Log4j2 supports printing log entries with ANSI coloring.
> This did work in Netbeans up to version 10.0. However since 11.0 those colors 
> aren't displayed anymore.
> Please find attached the screenshots for the output window in netbeans 10.0 
> (color) and 11.0 (mono).
> However, colors from Maven or Stacktraces are still color coded.



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

-
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-3189) IP-CLEARANCE for Dukescript presenter

2019-10-22 Thread Eric Barboni (Jira)


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

Eric Barboni closed NETBEANS-3189.
--
Resolution: Fixed

> IP-CLEARANCE for Dukescript presenter
> -
>
> Key: NETBEANS-3189
> URL: https://issues.apache.org/jira/browse/NETBEANS-3189
> Project: NetBeans
>  Issue Type: Task
>  Components: platform - HTML4J
>Affects Versions: Next
>Reporter: Eric Barboni
>Assignee: Geertjan Wielenga
>Priority: Major
>
> This ticket is to manage ip clearance for the DukeScript presenters (IP) 
> Clearance Status.
> The file for tracking is over here:
> [https://incubator.apache.org/ip-clearance/netbeans-dukescript-presenters.html]
>  
> Currently waiting for a commit hash to have a donation point. mail sent to 
> [~monacotoni] and [~jtulach]
> Maybe clarification on what is dukescript (a nickname for [~monacotoni] , or 
> a company that own rights)
>  
> Regards
>  



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

-
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-2409) Very Slow Operations on Windows

2019-10-22 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-2409:
---

I'd mark this issue resolved there were a number of issues tackled regarding 
this. The most visible improvement is definitely coming from Jan's PR for 
NETBEANS-2661 speeding up the find usages and other refactoring by rewriting 
the BinaryForSource query. Also the NIO2 file watcher and the 
ArchiveRootProvider caching shall help a bit.

Though the biggest performance hit is the Windows Defender.

> Very Slow  Operations on Windows
> 
>
> Key: NETBEANS-2409
> URL: https://issues.apache.org/jira/browse/NETBEANS-2409
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0, 11.0
> Environment: Windows
>Reporter: Laszlo Kishalmi
>Priority: Critical
>  Labels: Performance, Windows
> Attachments: NB11_autocomplete.nps, NB11_getHint.nps, 
> WinFilesystemSlow.png
>
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> What is the best course of action for reporting slowness?  I can’t share my 
> project.
> I’m not certain how to give step-by-step instructions when the problem is 
> basically one step in most cases.  E.g. invoke auto-complete - nothing 
> happens for several seconds.  Invoke rename - dialog doesn’t appear for 
> several seconds.  Find usages - extremely slow > 5 second delay on a private 
> member of a class less than 100 lines.
> In general it seems NB 11 is noticeably slower than NB 8.2. Not good 
> considering slowness was already my #1 complaint about NB 8.2.  I have so far 
> found the benefits of NB outweigh the fact that it is much slower than other 
> IDEs for the same operations, but the slowness of NB 11 is tipping the scale. 
>  I don’t want to switch IDEs, pease don’t interpret this as some sort of 
> threat to do so. I would like to help find the issues in NB.  But I don’t 
> have the bandwidth to debug NB and not being about to share my project makes 
> it difficult to provide helpful reports :-(
> Are others seeing the slowness?
> Find usages, renames, call-hierarchy, auto-complete… things I use all the 
> time, I often have to wait 5 to 10 seconds for a response from the IDE, 
> sometimes more.
> I’ve already deleted user dir and cache and restarted. 
> I’m using Gradle-based Java projects, running NB 11.0 with JDK 8u202.



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

-
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-2507) Slow Java code completion

2019-10-22 Thread Anthony Vanelverdinghe (Jira)


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

Anthony Vanelverdinghe commented on NETBEANS-2507:
--

Where can I download 11.2-vc1 for Windows? I don't see where to download the 
produced .zip at [https://builds.apache.org/job/netbeans-windows/] and 
[https://github.com/apache/netbeans/releases/tag/11.2-vc1] only has source zips 
as well.

> Slow Java code completion
> -
>
> Key: NETBEANS-2507
> URL: https://issues.apache.org/jira/browse/NETBEANS-2507
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Editor
>Affects Versions: 11.0
> Environment: Product Version: Apache NetBeans IDE 11.0 (Build 
> incubator-netbeans-release-404-on-20190319)
> Java: 12.0.1; OpenJDK 64-Bit Server VM 12.0.1+12
> Runtime: OpenJDK Runtime Environment 12.0.1+12
> System: Windows 10 version 10.0 running on amd64; UTF-8; en_GB (nb)
>Reporter: Anthony Vanelverdinghe
>Priority: Major
> Attachments: selfsampler.npss
>
>
> There are serious issues with code completion in recent NetBeans versions. 
> Attached is a profiling snapshot: all I did was triggering autocompletion at 
> "java.nio.file.Files."
> Of the 2 "Code Completion" threads with the most CPU time:
>  * one spends over 9 seconds in 
> [FastJar::list|https://github.com/apache/netbeans/blob/master/java/java.source.base/src/org/netbeans/modules/java/source/parsing/FastJar.java#L154]
>  * the other involves a call to 
> org.netbeans.modules.j2ee.persistence.editor.completion.JPACodeCompletionProvider$JPACodeCompletionQuery.query
>  () even though the code completion had nothing to do with JPA and neither 
> the project nor the class use JPA



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

-
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-2409) Very Slow Operations on Windows

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2409:
-

Any updates from anyone re 11.2 in this regard, either latest beta or voting 
candidate (bit.ly/apache-netbeans-11-2-vc-1).

> Very Slow  Operations on Windows
> 
>
> Key: NETBEANS-2409
> URL: https://issues.apache.org/jira/browse/NETBEANS-2409
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0, 11.0
> Environment: Windows
>Reporter: Laszlo Kishalmi
>Priority: Critical
>  Labels: Performance, Windows
> Attachments: NB11_autocomplete.nps, NB11_getHint.nps, 
> WinFilesystemSlow.png
>
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> What is the best course of action for reporting slowness?  I can’t share my 
> project.
> I’m not certain how to give step-by-step instructions when the problem is 
> basically one step in most cases.  E.g. invoke auto-complete - nothing 
> happens for several seconds.  Invoke rename - dialog doesn’t appear for 
> several seconds.  Find usages - extremely slow > 5 second delay on a private 
> member of a class less than 100 lines.
> In general it seems NB 11 is noticeably slower than NB 8.2. Not good 
> considering slowness was already my #1 complaint about NB 8.2.  I have so far 
> found the benefits of NB outweigh the fact that it is much slower than other 
> IDEs for the same operations, but the slowness of NB 11 is tipping the scale. 
>  I don’t want to switch IDEs, pease don’t interpret this as some sort of 
> threat to do so. I would like to help find the issues in NB.  But I don’t 
> have the bandwidth to debug NB and not being about to share my project makes 
> it difficult to provide helpful reports :-(
> Are others seeing the slowness?
> Find usages, renames, call-hierarchy, auto-complete… things I use all the 
> time, I often have to wait 5 to 10 seconds for a response from the IDE, 
> sometimes more.
> I’ve already deleted user dir and cache and restarted. 
> I’m using Gradle-based Java projects, running NB 11.0 with JDK 8u202.



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

-
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-2507) Slow Java code completion

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2507:
-

Can you reproduce this as well with the latest NetBeans releases, e.g., 11.1 or 
11.2 (to be released soon).

> Slow Java code completion
> -
>
> Key: NETBEANS-2507
> URL: https://issues.apache.org/jira/browse/NETBEANS-2507
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Editor
>Affects Versions: 11.0
> Environment: Product Version: Apache NetBeans IDE 11.0 (Build 
> incubator-netbeans-release-404-on-20190319)
> Java: 12.0.1; OpenJDK 64-Bit Server VM 12.0.1+12
> Runtime: OpenJDK Runtime Environment 12.0.1+12
> System: Windows 10 version 10.0 running on amd64; UTF-8; en_GB (nb)
>Reporter: Anthony Vanelverdinghe
>Priority: Major
> Attachments: selfsampler.npss
>
>
> There are serious issues with code completion in recent NetBeans versions. 
> Attached is a profiling snapshot: all I did was triggering autocompletion at 
> "java.nio.file.Files."
> Of the 2 "Code Completion" threads with the most CPU time:
>  * one spends over 9 seconds in 
> [FastJar::list|https://github.com/apache/netbeans/blob/master/java/java.source.base/src/org/netbeans/modules/java/source/parsing/FastJar.java#L154]
>  * the other involves a call to 
> org.netbeans.modules.j2ee.persistence.editor.completion.JPACodeCompletionProvider$JPACodeCompletionQuery.query
>  () even though the code completion had nothing to do with JPA and neither 
> the project nor the class use JPA



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

-
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-3060) Slowness experienced in NetBeans 11.0 while switching between the tabs

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga updated NETBEANS-3060:

Component/s: (was: cnd - Navigation)
 ide - Performance

> Slowness experienced in NetBeans 11.0 while switching between the tabs
> --
>
> Key: NETBEANS-3060
> URL: https://issues.apache.org/jira/browse/NETBEANS-3060
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance
>Affects Versions: 11.1
>Reporter: Farhad P.
>Priority: Major
>
> Below is the IDE log
> ---
> >Log Session: Wednesday, September 4, 2019 7:51:22 PM PDT
> >System Info: 
>   Product Version = Apache NetBeans IDE 11.0 (Build 
> incubator-netbeans-release-404-on-20190319)
>   Operating System= Windows 7 version 6.1 running on amd64
>   Java; VM; Vendor= 1.8.0_201; Java HotSpot(TM) 64-Bit Server VM 
> 25.201-b09; Oracle Corporation
>   Runtime = Java(TM) SE Runtime Environment 1.8.0_201-b09
>   Java Home   = C:\Program Files\Java\jdk1.8.0_201\jre
>   System Locale; Encoding = en_US (nb); Cp1252
>   Home Directory  = C:\Users\fpagdiwala
>   Current Directory   = C:\Netbeans-Src\netbeans\bin
>   User Directory  = C:\Users\fpagdiwala\AppData\Roaming\NetBeans\11.0
>   Cache Directory = 
> C:\Users\fpagdiwala\AppData\Local\NetBeans\Cache\11.0
>   Installation= C:\Netbeans-Src\netbeans\nb
> C:\Netbeans-Src\netbeans\ergonomics
> C:\Netbeans-Src\netbeans\ide
> C:\Netbeans-Src\netbeans\extide
> C:\Netbeans-Src\netbeans\java
> C:\Netbeans-Src\netbeans\apisupport
> C:\Netbeans-Src\netbeans\webcommon
> C:\Netbeans-Src\netbeans\websvccommon
> C:\Netbeans-Src\netbeans\enterprise
> C:\Netbeans-Src\netbeans\profiler
> C:\Netbeans-Src\netbeans\php
> C:\Netbeans-Src\netbeans\harness
> C:\Netbeans-Src\netbeans\groovy
> C:\Netbeans-Src\netbeans\javafx
> C:\Netbeans-Src\netbeans\platform
>   Boot & Ext. Classpath   = C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\resources.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\rt.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\sunrsasign.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\jsse.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\jce.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\charsets.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\jfr.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\classes;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\access-bridge-64.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\cldrdata.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\dnsns.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\jaccess.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\jfxrt.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\localedata.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\nashorn.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\sunec.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\sunjce_provider.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\sunmscapi.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\sunpkcs11.jar;C:\Program 
> Files\Java\jdk1.8.0_201\jre\lib\ext\zipfs.jar
>   Application Classpath   = 
> C:\Netbeans-Src\netbeans\platform\lib\boot.jar;C:\Netbeans-Src\netbeans\platform\lib\org-openide-modules.jar;C:\Netbeans-Src\netbeans\platform\lib\org-openide-util-lookup.jar;C:\Netbeans-Src\netbeans\platform\lib\org-openide-util-ui.jar;C:\Netbeans-Src\netbeans\platform\lib\org-openide-util.jar;C:\Program
>  Files\Java\jdk1.8.0_201\lib\dt.jar;C:\Program 
> Files\Java\jdk1.8.0_201\lib\tools.jar
>   Startup Classpath   = 
> C:\Netbeans-Src\netbeans\platform\core\asm-all-5.0.1.jar;C:\Netbeans-Src\netbeans\platform\core\core-base.jar;C:\Netbeans-Src\netbeans\platform\core\core.jar;C:\Netbeans-Src\netbeans\platform\core\org-netbeans-libs-asm.jar;C:\Netbeans-Src\netbeans\platform\core\org-openide-filesystems-compat8.jar;C:\Netbeans-Src\netbeans\platform\core\org-openide-filesystems.jar;C:\Netbeans-Src\netbeans\nb\core\org-netbeans-upgrader.jar;C:\Netbeans-Src\netbeans\nb\core\locale\core_nb.jar
> ---
> INFO [org.netbeans.modules.netbinox]: Install area set to 
> file:/C:/Netbeans-Src/netbeans/
> WARNING 

[jira] [Updated] (NETBEANS-2620) Every time, very slow javadoc index search when there are several sources declared. Javadoc index search can take about 1m+

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga updated NETBEANS-2620:

Component/s: java - Javadoc

> Every time, very slow javadoc index search when there are several sources 
> declared. Javadoc index search can take about 1m+
> ---
>
> Key: NETBEANS-2620
> URL: https://issues.apache.org/jira/browse/NETBEANS-2620
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> 20190531-unknown-revn)
> Java: 12.0.1; OpenJDK 64-Bit Server VM 12.0.1+12
> Runtime: OpenJDK Runtime Environment 12.0.1+12
> System: Linux version 5.1.4-1-default running on amd64; UTF-8; ru_UA (nb)
>Reporter: user124
>Priority: Critical
> Attachments: Screenshot_20190531_163948.png
>
>
> Every time, very slow javadoc index search when there are several sources 
> declared. Javadoc index search can take about 1m+



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

-
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-3065) Indent length update is very slow

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga updated NETBEANS-3065:

Component/s: php - Editor

> Indent length update is very slow
> -
>
> Key: NETBEANS-3065
> URL: https://issues.apache.org/jira/browse/NETBEANS-3065
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
> Environment: Netbeans, Windows, PHP
>Reporter: Michael Vorisek
>Priority: Major
>
> Currently the change of indentation length is VERY slow.
>  
> Example and how to reproduce:
>  # open some regular PHP file with at least 1000 lines
>  # select all text (ctrl + a)
>  # change the indentation length (tab OR shift + tab)
> currently one single change (one press of tab or shift + tab) takes tens of 
> seconds with 100% CPU usage



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2995:
-

Also, if you can provide the YAML file itself or a similar one that reproduces 
the problem?

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Priority: Major
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-2995) Unusable slow when editing YAML files

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2995:
-

Can you try to reproduce with 11.2 (currently in beta and a voting candidate 
available): bit.ly/apache-netbeans-11-2-vc-1

> Unusable slow when editing YAML files
> -
>
> Key: NETBEANS-2995
> URL: https://issues.apache.org/jira/browse/NETBEANS-2995
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2, 11.0, 11.1
> Environment: - Intel Core i5 processor with 8 GB of RAM and an SSD 
> hard disk
> - Xubuntu 18.04.3
> - OpenJDK 8 + 11
>Reporter: Thomas McWork
>Priority: Major
>
> My Maven based Java EE web project also consist of YAML files which contain 
> the OpenAPI specification. As soon as I start editing one of these YAML files 
> the IDE is getting incredibly unusable slow. It's enough to only add a single 
> character. While being in this close to freeze condition I can see that the 
> view Navigator window is cyclical scrolling from the top to the bottom. After 
> a certain amount of time (maybe a minute) everything seems to be fine again 
> and the IDE gets responsible again. I haven't encountered any other 
> performance bottlenecks on my development machine.
>  
> Also I couldn't see any related Exception in the IDE log.
>  
> I'm happy to provide anything which might help to track down / solve this 
> problem!



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

-
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-3065) Indent length update is very slow

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-3065:
-

Which version of NetBeans? 11.2 (currently in beta and voting candidate)?

> Indent length update is very slow
> -
>
> Key: NETBEANS-3065
> URL: https://issues.apache.org/jira/browse/NETBEANS-3065
> Project: NetBeans
>  Issue Type: Bug
> Environment: Netbeans, Windows, PHP
>Reporter: Michael Vorisek
>Priority: Major
>
> Currently the change of indentation length is VERY slow.
>  
> Example and how to reproduce:
>  # open some regular PHP file with at least 1000 lines
>  # select all text (ctrl + a)
>  # change the indentation length (tab OR shift + tab)
> currently one single change (one press of tab or shift + tab) takes tens of 
> seconds with 100% CPU usage



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

-
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-2304) Netbeans freeze while downloading javadoc for the prompt

2019-10-22 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2304:
-

Can this still be reproduced in 11.2 (beta available as well as voting 
candidate)?

> Netbeans freeze while downloading javadoc for the prompt
> 
>
> Key: NETBEANS-2304
> URL: https://issues.apache.org/jira/browse/NETBEANS-2304
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 10.0
> Environment: Windows 10 Pro 64-bit.
> Dell Precision 5520, CPU - i7-7820HQ
> 32GB RAM
>Reporter: Gary Greenberg
>Priority: Critical
> Attachments: anotherFreeze.jpg, nb-dump.txt, nb-freeze.JPG, 
> nb-version.JPG, threadDump.txt, threadDump2.txt
>
>
> After I selected addAll function for the List variable from the prompt, 
> Netbeans generated this function call in the code and freezes.
> "Downloading HTTP Javadoc" message is on the bottom bar.
> It happened couple more times before and I could only kill IDE through the 
> task manager.
> Nothing is in the log file, though.
> Thread dump is attached.



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

-
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-3274) PHP: "Go to declaration" and "Highlight occurrences" in some cases not working or working wrong

2019-10-22 Thread SL EF (Jira)


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

SL EF commented on NETBEANS-3274:
-

Thank you very much.

> PHP:  "Go to declaration" and "Highlight occurrences" in some cases not 
> working or working wrong
> 
>
> Key: NETBEANS-3274
> URL: https://issues.apache.org/jira/browse/NETBEANS-3274
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 8.2, 9.0, 10.0, 11.0, 11.1
>Reporter: SL EF
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: Test1.php, TestClone2.php
>
>
> This bug seems related only for context methods/properties inside closure 
> when another class has same methods/properties.
>  
> Steps to reproduce described in Test1.php file.
> There you'll find some test cases named as:
>  # ["Highlight occurrences of property" test]
>  # ["Go to declaration of property" test
>  # ["Highlight occurrences of method" test]
>  # ["Go to declaration of property" test]



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

-
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-3274) PHP: "Go to declaration" and "Highlight occurrences" in some cases not working or working wrong

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-3274.

Resolution: Duplicate

This should be fixed with NETBEANS-2992. So please try to use NetBeans 11.2 
beta. Thanks.

> PHP:  "Go to declaration" and "Highlight occurrences" in some cases not 
> working or working wrong
> 
>
> Key: NETBEANS-3274
> URL: https://issues.apache.org/jira/browse/NETBEANS-3274
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 8.2, 9.0, 10.0, 11.0, 11.1
>Reporter: SL EF
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: Test1.php, TestClone2.php
>
>
> This bug seems related only for context methods/properties inside closure 
> when another class has same methods/properties.
>  
> Steps to reproduce described in Test1.php file.
> There you'll find some test cases named as:
>  # ["Highlight occurrences of property" test]
>  # ["Go to declaration of property" test
>  # ["Highlight occurrences of method" test]
>  # ["Go to declaration of property" test]



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

-
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-3274) PHP: "Go to declaration" and "Highlight occurrences" in some cases not working or working wrong

2019-10-22 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto reassigned NETBEANS-3274:
--

Assignee: Junichi Yamamoto

> PHP:  "Go to declaration" and "Highlight occurrences" in some cases not 
> working or working wrong
> 
>
> Key: NETBEANS-3274
> URL: https://issues.apache.org/jira/browse/NETBEANS-3274
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 8.2, 9.0, 10.0, 11.0, 11.1
>Reporter: SL EF
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: Test1.php, TestClone2.php
>
>
> This bug seems related only for context methods/properties inside closure 
> when another class has same methods/properties.
>  
> Steps to reproduce described in Test1.php file.
> There you'll find some test cases named as:
>  # ["Highlight occurrences of property" test]
>  # ["Go to declaration of property" test
>  # ["Highlight occurrences of method" test]
>  # ["Go to declaration of property" test]



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

-
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-2509) Unable to connect to docker via socket

2019-10-22 Thread Paul Court (Jira)


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

Paul Court commented on NETBEANS-2509:
--

Version:-
{code:java}
⚡ docker --version
Docker version 19.03.2, build 6a30dfca03 {code}
Repo:-
{code:java}
⚡ cat /etc/apt/sources.list.d/docker.list
# deb [arch=amd64] https://download.docker.com/linux/ubuntu eoan nightly  {code}

> Unable to connect to docker via socket
> --
>
> Key: NETBEANS-2509
> URL: https://issues.apache.org/jira/browse/NETBEANS-2509
> Project: NetBeans
>  Issue Type: Bug
>  Components: docker - UI
>Affects Versions: 11.0
>Reporter: Bartosz Tomasik
>Assignee: Bartosz Tomasik
>Priority: Minor
>  Labels: pull-request-available
> Fix For: Next
>
> Attachments: image-2019-10-18-10-56-48-182.png, messages.log
>
>  Time Spent: 7h 40m
>  Remaining Estimate: 0h
>
> "Add Docker instance" dialog ismissing option to connect via unix socket.
> This is probably due to following lines commented out: 
> [https://github.com/apache/netbeans/blame/master/ide/docker.api/src/org/netbeans/modules/docker/api/DockerSupport.java#L133-L137]



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

-
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-2509) Unable to connect to docker via socket

2019-10-22 Thread Bartosz Tomasik (Jira)


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

Bartosz Tomasik commented on NETBEANS-2509:
---

[~paulcourt101]I know except that when I messed with /var and /run it magically 
started working here... anyway one more question: what's your docker version 
and package source (repo)?

> Unable to connect to docker via socket
> --
>
> Key: NETBEANS-2509
> URL: https://issues.apache.org/jira/browse/NETBEANS-2509
> Project: NetBeans
>  Issue Type: Bug
>  Components: docker - UI
>Affects Versions: 11.0
>Reporter: Bartosz Tomasik
>Assignee: Bartosz Tomasik
>Priority: Minor
>  Labels: pull-request-available
> Fix For: Next
>
> Attachments: image-2019-10-18-10-56-48-182.png, messages.log
>
>  Time Spent: 7h 40m
>  Remaining Estimate: 0h
>
> "Add Docker instance" dialog ismissing option to connect via unix socket.
> This is probably due to following lines commented out: 
> [https://github.com/apache/netbeans/blame/master/ide/docker.api/src/org/netbeans/modules/docker/api/DockerSupport.java#L133-L137]



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

-
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-3274) PHP: "Go to declaration" and "Highlight occurrences" in some cases not working or working wrong

2019-10-22 Thread SL EF (Jira)


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

SL EF commented on NETBEANS-3274:
-

feel free to ask additional information

> PHP:  "Go to declaration" and "Highlight occurrences" in some cases not 
> working or working wrong
> 
>
> Key: NETBEANS-3274
> URL: https://issues.apache.org/jira/browse/NETBEANS-3274
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 8.2, 9.0, 10.0, 11.0, 11.1
>Reporter: SL EF
>Priority: Major
> Attachments: Test1.php, TestClone2.php
>
>
> This bug seems related only for context methods/properties inside closure 
> when another class has same methods/properties.
>  
> Steps to reproduce described in Test1.php file.
> There you'll find some test cases named as:
>  # ["Highlight occurrences of property" test]
>  # ["Go to declaration of property" test
>  # ["Highlight occurrences of method" test]
>  # ["Go to declaration of property" test]



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

-
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-3274) PHP: "Go to declaration" and "Highlight occurrences" in some cases not working or working wrong

2019-10-22 Thread SL EF (Jira)
SL EF created NETBEANS-3274:
---

 Summary: PHP:  "Go to declaration" and "Highlight occurrences" in 
some cases not working or working wrong
 Key: NETBEANS-3274
 URL: https://issues.apache.org/jira/browse/NETBEANS-3274
 Project: NetBeans
  Issue Type: Bug
  Components: php - Editor
Affects Versions: 11.1, 11.0, 10.0, 9.0, 8.2
Reporter: SL EF
 Attachments: Test1.php, TestClone2.php

This bug seems related only for context methods/properties inside closure when 
another class has same methods/properties.

 

Steps to reproduce described in Test1.php file.

There you'll find some test cases named as:
 # ["Highlight occurrences of property" test]
 # ["Go to declaration of property" test
 # ["Highlight occurrences of method" test]
 # ["Go to declaration of property" test]



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

-
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-3271) Choosing Java EE 8 causes EJB project to become Webapp.

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-3271 at 10/22/19 8:27 AM:
--

Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

The issue is related to the maven archetype (instead of the selected server) as 
only Web Application archetype is available for Java EE 8 application.


was (Author: jgauravgupta):
Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

** The issue is related to the maven archetype (instead of the selected server) 
as only Web Application archetype is available for Java EE 8 application.

> Choosing Java EE 8 causes EJB project to become Webapp.
> ---
>
> Key: NETBEANS-3271
> URL: https://issues.apache.org/jira/browse/NETBEANS-3271
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - EJB Project
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Assignee: Josh Juneau
>Priority: Major
>
> Steps to reproduce:
> # Clean install of NB 11.1 with Payara 5.192 server added
> # File -> New Project -> Maven -> EJB Module
> # Select project name and location -> Next
> # Select Payara Server and Java EE 8 -> Finish
> Expected Outcome:
> New EJB project with correct icon, ejb packaging type
> Actual Outcome:
> New (incomplete) Web project with some web related folders war packing type 
> and web icon.



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

-
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-3271) Choosing Java EE 8 causes EJB project to become Webapp.

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta edited comment on NETBEANS-3271 at 10/22/19 8:27 AM:
--

Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

** The issue is related to the maven archetype (instead of the selected server) 
as only Web Application archetype is available for Java EE 8 application.


was (Author: jgauravgupta):
Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

> Choosing Java EE 8 causes EJB project to become Webapp.
> ---
>
> Key: NETBEANS-3271
> URL: https://issues.apache.org/jira/browse/NETBEANS-3271
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - EJB Project
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Assignee: Josh Juneau
>Priority: Major
>
> Steps to reproduce:
> # Clean install of NB 11.1 with Payara 5.192 server added
> # File -> New Project -> Maven -> EJB Module
> # Select project name and location -> Next
> # Select Payara Server and Java EE 8 -> Finish
> Expected Outcome:
> New EJB project with correct icon, ejb packaging type
> Actual Outcome:
> New (incomplete) Web project with some web related folders war packing type 
> and web icon.



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

-
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-3271) Choosing Java EE 8 causes EJB project to become Webapp.

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta reassigned NETBEANS-3271:
--

Assignee: Josh Juneau

> Choosing Java EE 8 causes EJB project to become Webapp.
> ---
>
> Key: NETBEANS-3271
> URL: https://issues.apache.org/jira/browse/NETBEANS-3271
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - EJB Project
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Assignee: Josh Juneau
>Priority: Major
>
> Steps to reproduce:
> # Clean install of NB 11.1 with Payara 5.192 server added
> # File -> New Project -> Maven -> EJB Module
> # Select project name and location -> Next
> # Select Payara Server and Java EE 8 -> Finish
> Expected Outcome:
> New EJB project with correct icon, ejb packaging type
> Actual Outcome:
> New (incomplete) Web project with some web related folders war packing type 
> and web icon.



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

-
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-3271) Choosing Java EE 8 causes EJB project to become Webapp.

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta commented on NETBEANS-3271:


Duplicate of https://issues.apache.org/jira/browse/NETBEANS-2861.

> Choosing Java EE 8 causes EJB project to become Webapp.
> ---
>
> Key: NETBEANS-3271
> URL: https://issues.apache.org/jira/browse/NETBEANS-3271
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - EJB Project
>Affects Versions: 11.1, 11.2
>Reporter: Stephen Parry
>Priority: Major
>
> Steps to reproduce:
> # Clean install of NB 11.1 with Payara 5.192 server added
> # File -> New Project -> Maven -> EJB Module
> # Select project name and location -> Next
> # Select Payara Server and Java EE 8 -> Finish
> Expected Outcome:
> New EJB project with correct icon, ejb packaging type
> Actual Outcome:
> New (incomplete) Web project with some web related folders war packing type 
> and web icon.



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

-
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-3265) Module catalog not updated after verification of plugin

2019-10-22 Thread Jira


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

Jiří Kovalský closed NETBEANS-3265.
---

OK, thanks Honzo. I will keep an eye on this.

> Module catalog not updated after verification of plugin
> ---
>
> Key: NETBEANS-3265
> URL: https://issues.apache.org/jira/browse/NETBEANS-3265
> Project: NetBeans
>  Issue Type: Bug
>  Components: updatecenters - Pluginportal
>Affects Versions: 3.0
>Reporter: Jiří Kovalský
>Assignee: Jan Pirek
>Priority: Critical
> Fix For: 3.0
>
>
> For some reason automatic update of module catalogue when a plugin gets two 
> Go verification votes is broken. On 10/18 Geertjan verified SpringBoot plugin 
> [1] for all available NetBeans versions and when I added my second Go vote on 
> 10/21, none of the UCs like [2] didn't get updated.
> [1] [http://netbeans-vm.apache.org/pluginportal/catalogue/?id=58]
> [2] [http://netbeans-vm.apache.org/pluginportal/data/10.0/catalog.xml]



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

-
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-1965) Export public & friend packages for Payara Plugin

2019-10-22 Thread Gaurav Gupta (Jira)


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

Gaurav Gupta closed NETBEANS-1965.
--
Resolution: Won't Do

This ticket can be closed in favour of Payara plugin's donation:

[https://github.com/apache/netbeans/pull/1290]

[https://github.com/apache/netbeans/pull/1297]

> Export public & friend packages for Payara Plugin
> -
>
> Key: NETBEANS-1965
> URL: https://issues.apache.org/jira/browse/NETBEANS-1965
> Project: NetBeans
>  Issue Type: Task
>Affects Versions: 10.0
>Reporter: Gaurav Gupta
>Assignee: Gaurav Gupta
>Priority: Minor
>  Labels: Export-Package, Exported-Packages
> Fix For: Next
>
>  Time Spent: 3h 10m
>  Remaining Estimate: 0h
>




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

-
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-2509) Unable to connect to docker via socket

2019-10-22 Thread Paul Court (Jira)


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

Paul Court commented on NETBEANS-2509:
--

I've been trying with both - just in-case.

But {{/var/run}} is just a symlink to {{/run}} anyway.

> Unable to connect to docker via socket
> --
>
> Key: NETBEANS-2509
> URL: https://issues.apache.org/jira/browse/NETBEANS-2509
> Project: NetBeans
>  Issue Type: Bug
>  Components: docker - UI
>Affects Versions: 11.0
>Reporter: Bartosz Tomasik
>Assignee: Bartosz Tomasik
>Priority: Minor
>  Labels: pull-request-available
> Fix For: Next
>
> Attachments: image-2019-10-18-10-56-48-182.png, messages.log
>
>  Time Spent: 7h 40m
>  Remaining Estimate: 0h
>
> "Add Docker instance" dialog ismissing option to connect via unix socket.
> This is probably due to following lines commented out: 
> [https://github.com/apache/netbeans/blame/master/ide/docker.api/src/org/netbeans/modules/docker/api/DockerSupport.java#L133-L137]



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

-
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-3265) Module catalog not updated after verification of plugin

2019-10-22 Thread Jan Pirek (Jira)


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

Jan Pirek edited comment on NETBEANS-3265 at 10/22/19 6:47 AM:
---

I have tried the process locally and it seems to work. I noticed wrong 
filesystem permission on 10.0/catalog.xml.gz and this one did not get updated. 
I have fixed that. It was left incorrect after I switched sources to 
apache/netbbeans-tools repo and moved data files around.

Also if you looked at that .xml in browser it could be cached, hard to say now. 
Anyway I did not find the problem, so I suggest to wait for next verification 
and let's see.

 

BTW I rebuilt catalog from admin UI and it now shows up.


was (Author: jpirek):
I have tried the process locally and it seems to work. I noticed wrong 
filesystem permission on 10.0/catalog.xml.gz and this one did not get updated. 
I have fixed that. It was left incorrect after I switched sources to 
apache/netbbeans-tools repo and moved data files around.

Also if you looked at that .xml in browser it could be cached, hard to say now. 
Anyway I did not find the problem, so I suggest to wait for next verification 
and let's see.

> Module catalog not updated after verification of plugin
> ---
>
> Key: NETBEANS-3265
> URL: https://issues.apache.org/jira/browse/NETBEANS-3265
> Project: NetBeans
>  Issue Type: Bug
>  Components: updatecenters - Pluginportal
>Affects Versions: 3.0
>Reporter: Jiří Kovalský
>Assignee: Jan Pirek
>Priority: Critical
>
> For some reason automatic update of module catalogue when a plugin gets two 
> Go verification votes is broken. On 10/18 Geertjan verified SpringBoot plugin 
> [1] for all available NetBeans versions and when I added my second Go vote on 
> 10/21, none of the UCs like [2] didn't get updated.
> [1] [http://netbeans-vm.apache.org/pluginportal/catalogue/?id=58]
> [2] [http://netbeans-vm.apache.org/pluginportal/data/10.0/catalog.xml]



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

-
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-3265) Module catalog not updated after verification of plugin

2019-10-22 Thread Jan Pirek (Jira)


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

Jan Pirek commented on NETBEANS-3265:
-

I have tried the process locally and it seems to work. I noticed wrong 
filesystem permission on 10.0/catalog.xml.gz and this one did not get updated. 
I have fixed that. It was left incorrect after I switched sources to 
apache/netbbeans-tools repo and moved data files around.

Also if you looked at that .xml in browser it could be cached, hard to say now. 
Anyway I did not find the problem, so I suggest to wait for next verification 
and let's see.

> Module catalog not updated after verification of plugin
> ---
>
> Key: NETBEANS-3265
> URL: https://issues.apache.org/jira/browse/NETBEANS-3265
> Project: NetBeans
>  Issue Type: Bug
>  Components: updatecenters - Pluginportal
>Affects Versions: 3.0
>Reporter: Jiří Kovalský
>Assignee: Jan Pirek
>Priority: Critical
>
> For some reason automatic update of module catalogue when a plugin gets two 
> Go verification votes is broken. On 10/18 Geertjan verified SpringBoot plugin 
> [1] for all available NetBeans versions and when I added my second Go vote on 
> 10/21, none of the UCs like [2] didn't get updated.
> [1] [http://netbeans-vm.apache.org/pluginportal/catalogue/?id=58]
> [2] [http://netbeans-vm.apache.org/pluginportal/data/10.0/catalog.xml]



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

-
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-3265) Module catalog not updated after verification of plugin

2019-10-22 Thread Jan Pirek (Jira)


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

Jan Pirek resolved NETBEANS-3265.
-
Fix Version/s: 3.0
   Resolution: Fixed

> Module catalog not updated after verification of plugin
> ---
>
> Key: NETBEANS-3265
> URL: https://issues.apache.org/jira/browse/NETBEANS-3265
> Project: NetBeans
>  Issue Type: Bug
>  Components: updatecenters - Pluginportal
>Affects Versions: 3.0
>Reporter: Jiří Kovalský
>Assignee: Jan Pirek
>Priority: Critical
> Fix For: 3.0
>
>
> For some reason automatic update of module catalogue when a plugin gets two 
> Go verification votes is broken. On 10/18 Geertjan verified SpringBoot plugin 
> [1] for all available NetBeans versions and when I added my second Go vote on 
> 10/21, none of the UCs like [2] didn't get updated.
> [1] [http://netbeans-vm.apache.org/pluginportal/catalogue/?id=58]
> [2] [http://netbeans-vm.apache.org/pluginportal/data/10.0/catalog.xml]



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

-
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