[jira] [Created] (NETBEANS-5008) Support finalization of "Pattern matching instance of" JDK16

2020-11-10 Thread Akhilesh Singh (Jira)
Akhilesh Singh created NETBEANS-5008:


 Summary: Support finalization of "Pattern matching instance of" 
JDK16
 Key: NETBEANS-5008
 URL: https://issues.apache.org/jira/browse/NETBEANS-5008
 Project: NetBeans
  Issue Type: Improvement
  Components: java - Editor, java - Hints
 Environment: JDK 16 all OS versions
Reporter: Akhilesh Singh






--
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-5007) No restart of language server after change of JDK home

2020-11-10 Thread Jaroslav Tulach (Jira)
Jaroslav Tulach created NETBEANS-5007:
-

 Summary: No restart of language server after change of JDK home
 Key: NETBEANS-5007
 URL: https://issues.apache.org/jira/browse/NETBEANS-5007
 Project: NetBeans
  Issue Type: Bug
  Components: vscode
Affects Versions: 12.2
Reporter: Jaroslav Tulach
Assignee: Svatopluk Dedic
 Fix For: 12.2


Choose File/Preferences/Settings and change the value of

 
{color:#9cdcfe}"netbeans.jdkhome"{color}{color:#d4d4d4}: 
{color}{color:#ce9178}""{color}{color:#d4d4d4},{color}
 

while the Apache NetBeans Language Server VSCode extension is running. The 
{{nbcode}} backend shall be killed and restarted on the new JDK. However it 
goes into strange loop and then stops listening for changes in the property 
completely. Example of output:
{code:java}
Initiating server activation
extension.js:184
Request to kill LSP server.
extension.js:190
Cannot kill: current process is None
extension.js:212
LSP server launching: 27193
extension.js:252
LSP server 27193 terminated with 0
extension.js:277
Initiating server activation
extension.js:184
Request to kill LSP server.
extension.js:190
Killing LSP server 27193
extension.js:201
rejected promise not handled within 1 second: Cannot kill
extensionHostProcess.js:1059
Server activation requested repeatedly, ignoring...
extension.js:173
Server activation requested repeatedly, ignoring...
extension.js:173
Server activation requested repeatedly, ignoring... {code}
[~sdedic]  has already addressed this issue in 
[PR-2531|https://github.com/apache/netbeans/pull/2531].



--
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-5006) design mode / form / properties "lock" in jframe form

2020-11-10 Thread Roberto do Valle Goncalves (Jira)
Roberto do Valle Goncalves created NETBEANS-5006:


 Summary: design mode / form / properties "lock" in jframe form 
 Key: NETBEANS-5006
 URL: https://issues.apache.org/jira/browse/NETBEANS-5006
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 12.0
Reporter: Roberto do Valle Goncalves


i don't know how i managed to do this but suddenly the editing of the form 
properties in drawing mode started to be
disabled (as locked for editing).
How to re-edit
properties in design mode have been disabled. Where can I restore the editing 
of the properties of the jframe form?
(netbeans 12.0)

thanks!



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



[netbeans-tools] branch master updated: Add option to force regeneration of catalogs

2020-11-10 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 4ea7246  Add option to force regeneration of catalogs
4ea7246 is described below

commit 4ea724675d36a65ebc2c07f7df3795e2f56391e6
Author: Matthias Bläsing 
AuthorDate: Tue Nov 10 21:13:52 2020 +0100

Add option to force regeneration of catalogs
---
 pp3/module/Application/config/module.config.php.dist | 2 +-
 .../Application/src/Application/Controller/CliController.php | 9 ++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/pp3/module/Application/config/module.config.php.dist 
b/pp3/module/Application/config/module.config.php.dist
index d5c3fba..5dafbfb 100755
--- a/pp3/module/Application/config/module.config.php.dist
+++ b/pp3/module/Application/config/module.config.php.dist
@@ -258,7 +258,7 @@ return array(
 'routes' => array(
 'generate-catalogs' => array(
 'options' => array(
-'route' => 'generate-catalogs',
+'route' => 'generate-catalogs [--force]',
 'defaults' => array(
 '__NAMESPACE__' => 'Application\Controller',
 'controller' => 'Cli',
diff --git 
a/pp3/module/Application/src/Application/Controller/CliController.php 
b/pp3/module/Application/src/Application/Controller/CliController.php
index d50bb88..6f9f3df 100644
--- a/pp3/module/Application/src/Application/Controller/CliController.php
+++ b/pp3/module/Application/src/Application/Controller/CliController.php
@@ -48,18 +48,19 @@ class CliController extends BaseController {
 }
 
 public function generateCatalogsAction() {
+$force = $this->request->getParams()->get('force');
 printf("Regenerating catalogs " . ((new 
\DateTime('now'))->format("Y-m-d\TH:i:sO")). "\n");
 $versions = 
$this->_nbVersionRepository->getEntityRepository()->findAll();
 foreach ($versions as $v) {
-$this->createCatalog($v, true);
-$this->createCatalog($v, false);
+$this->createCatalog($v, true, $force);
+$this->createCatalog($v, false, $force);
 
 $v->markCatalogRebuild();
 $this->_nbVersionRepository->persist($v);
 }
 }
 
-private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental) {
+private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental, $force) {
 if ($experimental) {
 $items = 
$this->_pluginVersionRepository->getNonVerifiedVersionsByNbVersion($version->getVersion(),
 true);
 } else {
@@ -83,6 +84,8 @@ class CliController extends BaseController {
 
 $rebuildNeeded |= (! $catalog->catalogFileExits());
 
+$rebuildNeeded |= $force;
+
 if (! $rebuildNeeded) {
 printf("Skipping %scatalog for %s\n", $experimental ? 
'experimental ' : '', $version->getVersion());
 return;


-
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



[netbeans-tools] branch master updated: Add option to force regeneration of catalogs

2020-11-10 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 4ea7246  Add option to force regeneration of catalogs
4ea7246 is described below

commit 4ea724675d36a65ebc2c07f7df3795e2f56391e6
Author: Matthias Bläsing 
AuthorDate: Tue Nov 10 21:13:52 2020 +0100

Add option to force regeneration of catalogs
---
 pp3/module/Application/config/module.config.php.dist | 2 +-
 .../Application/src/Application/Controller/CliController.php | 9 ++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/pp3/module/Application/config/module.config.php.dist 
b/pp3/module/Application/config/module.config.php.dist
index d5c3fba..5dafbfb 100755
--- a/pp3/module/Application/config/module.config.php.dist
+++ b/pp3/module/Application/config/module.config.php.dist
@@ -258,7 +258,7 @@ return array(
 'routes' => array(
 'generate-catalogs' => array(
 'options' => array(
-'route' => 'generate-catalogs',
+'route' => 'generate-catalogs [--force]',
 'defaults' => array(
 '__NAMESPACE__' => 'Application\Controller',
 'controller' => 'Cli',
diff --git 
a/pp3/module/Application/src/Application/Controller/CliController.php 
b/pp3/module/Application/src/Application/Controller/CliController.php
index d50bb88..6f9f3df 100644
--- a/pp3/module/Application/src/Application/Controller/CliController.php
+++ b/pp3/module/Application/src/Application/Controller/CliController.php
@@ -48,18 +48,19 @@ class CliController extends BaseController {
 }
 
 public function generateCatalogsAction() {
+$force = $this->request->getParams()->get('force');
 printf("Regenerating catalogs " . ((new 
\DateTime('now'))->format("Y-m-d\TH:i:sO")). "\n");
 $versions = 
$this->_nbVersionRepository->getEntityRepository()->findAll();
 foreach ($versions as $v) {
-$this->createCatalog($v, true);
-$this->createCatalog($v, false);
+$this->createCatalog($v, true, $force);
+$this->createCatalog($v, false, $force);
 
 $v->markCatalogRebuild();
 $this->_nbVersionRepository->persist($v);
 }
 }
 
-private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental) {
+private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental, $force) {
 if ($experimental) {
 $items = 
$this->_pluginVersionRepository->getNonVerifiedVersionsByNbVersion($version->getVersion(),
 true);
 } else {
@@ -83,6 +84,8 @@ class CliController extends BaseController {
 
 $rebuildNeeded |= (! $catalog->catalogFileExits());
 
+$rebuildNeeded |= $force;
+
 if (! $rebuildNeeded) {
 printf("Skipping %scatalog for %s\n", $experimental ? 
'experimental ' : '', $version->getVersion());
 return;


-
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



[netbeans-tools] branch master updated: Add option to force regeneration of catalogs

2020-11-10 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 4ea7246  Add option to force regeneration of catalogs
4ea7246 is described below

commit 4ea724675d36a65ebc2c07f7df3795e2f56391e6
Author: Matthias Bläsing 
AuthorDate: Tue Nov 10 21:13:52 2020 +0100

Add option to force regeneration of catalogs
---
 pp3/module/Application/config/module.config.php.dist | 2 +-
 .../Application/src/Application/Controller/CliController.php | 9 ++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/pp3/module/Application/config/module.config.php.dist 
b/pp3/module/Application/config/module.config.php.dist
index d5c3fba..5dafbfb 100755
--- a/pp3/module/Application/config/module.config.php.dist
+++ b/pp3/module/Application/config/module.config.php.dist
@@ -258,7 +258,7 @@ return array(
 'routes' => array(
 'generate-catalogs' => array(
 'options' => array(
-'route' => 'generate-catalogs',
+'route' => 'generate-catalogs [--force]',
 'defaults' => array(
 '__NAMESPACE__' => 'Application\Controller',
 'controller' => 'Cli',
diff --git 
a/pp3/module/Application/src/Application/Controller/CliController.php 
b/pp3/module/Application/src/Application/Controller/CliController.php
index d50bb88..6f9f3df 100644
--- a/pp3/module/Application/src/Application/Controller/CliController.php
+++ b/pp3/module/Application/src/Application/Controller/CliController.php
@@ -48,18 +48,19 @@ class CliController extends BaseController {
 }
 
 public function generateCatalogsAction() {
+$force = $this->request->getParams()->get('force');
 printf("Regenerating catalogs " . ((new 
\DateTime('now'))->format("Y-m-d\TH:i:sO")). "\n");
 $versions = 
$this->_nbVersionRepository->getEntityRepository()->findAll();
 foreach ($versions as $v) {
-$this->createCatalog($v, true);
-$this->createCatalog($v, false);
+$this->createCatalog($v, true, $force);
+$this->createCatalog($v, false, $force);
 
 $v->markCatalogRebuild();
 $this->_nbVersionRepository->persist($v);
 }
 }
 
-private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental) {
+private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental, $force) {
 if ($experimental) {
 $items = 
$this->_pluginVersionRepository->getNonVerifiedVersionsByNbVersion($version->getVersion(),
 true);
 } else {
@@ -83,6 +84,8 @@ class CliController extends BaseController {
 
 $rebuildNeeded |= (! $catalog->catalogFileExits());
 
+$rebuildNeeded |= $force;
+
 if (! $rebuildNeeded) {
 printf("Skipping %scatalog for %s\n", $experimental ? 
'experimental ' : '', $version->getVersion());
 return;


-
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



[netbeans-tools] branch master updated: Add option to force regeneration of catalogs

2020-11-10 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 4ea7246  Add option to force regeneration of catalogs
4ea7246 is described below

commit 4ea724675d36a65ebc2c07f7df3795e2f56391e6
Author: Matthias Bläsing 
AuthorDate: Tue Nov 10 21:13:52 2020 +0100

Add option to force regeneration of catalogs
---
 pp3/module/Application/config/module.config.php.dist | 2 +-
 .../Application/src/Application/Controller/CliController.php | 9 ++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/pp3/module/Application/config/module.config.php.dist 
b/pp3/module/Application/config/module.config.php.dist
index d5c3fba..5dafbfb 100755
--- a/pp3/module/Application/config/module.config.php.dist
+++ b/pp3/module/Application/config/module.config.php.dist
@@ -258,7 +258,7 @@ return array(
 'routes' => array(
 'generate-catalogs' => array(
 'options' => array(
-'route' => 'generate-catalogs',
+'route' => 'generate-catalogs [--force]',
 'defaults' => array(
 '__NAMESPACE__' => 'Application\Controller',
 'controller' => 'Cli',
diff --git 
a/pp3/module/Application/src/Application/Controller/CliController.php 
b/pp3/module/Application/src/Application/Controller/CliController.php
index d50bb88..6f9f3df 100644
--- a/pp3/module/Application/src/Application/Controller/CliController.php
+++ b/pp3/module/Application/src/Application/Controller/CliController.php
@@ -48,18 +48,19 @@ class CliController extends BaseController {
 }
 
 public function generateCatalogsAction() {
+$force = $this->request->getParams()->get('force');
 printf("Regenerating catalogs " . ((new 
\DateTime('now'))->format("Y-m-d\TH:i:sO")). "\n");
 $versions = 
$this->_nbVersionRepository->getEntityRepository()->findAll();
 foreach ($versions as $v) {
-$this->createCatalog($v, true);
-$this->createCatalog($v, false);
+$this->createCatalog($v, true, $force);
+$this->createCatalog($v, false, $force);
 
 $v->markCatalogRebuild();
 $this->_nbVersionRepository->persist($v);
 }
 }
 
-private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental) {
+private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental, $force) {
 if ($experimental) {
 $items = 
$this->_pluginVersionRepository->getNonVerifiedVersionsByNbVersion($version->getVersion(),
 true);
 } else {
@@ -83,6 +84,8 @@ class CliController extends BaseController {
 
 $rebuildNeeded |= (! $catalog->catalogFileExits());
 
+$rebuildNeeded |= $force;
+
 if (! $rebuildNeeded) {
 printf("Skipping %scatalog for %s\n", $experimental ? 
'experimental ' : '', $version->getVersion());
 return;


-
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



[netbeans-tools] branch master updated: Add option to force regeneration of catalogs

2020-11-10 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 4ea7246  Add option to force regeneration of catalogs
4ea7246 is described below

commit 4ea724675d36a65ebc2c07f7df3795e2f56391e6
Author: Matthias Bläsing 
AuthorDate: Tue Nov 10 21:13:52 2020 +0100

Add option to force regeneration of catalogs
---
 pp3/module/Application/config/module.config.php.dist | 2 +-
 .../Application/src/Application/Controller/CliController.php | 9 ++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/pp3/module/Application/config/module.config.php.dist 
b/pp3/module/Application/config/module.config.php.dist
index d5c3fba..5dafbfb 100755
--- a/pp3/module/Application/config/module.config.php.dist
+++ b/pp3/module/Application/config/module.config.php.dist
@@ -258,7 +258,7 @@ return array(
 'routes' => array(
 'generate-catalogs' => array(
 'options' => array(
-'route' => 'generate-catalogs',
+'route' => 'generate-catalogs [--force]',
 'defaults' => array(
 '__NAMESPACE__' => 'Application\Controller',
 'controller' => 'Cli',
diff --git 
a/pp3/module/Application/src/Application/Controller/CliController.php 
b/pp3/module/Application/src/Application/Controller/CliController.php
index d50bb88..6f9f3df 100644
--- a/pp3/module/Application/src/Application/Controller/CliController.php
+++ b/pp3/module/Application/src/Application/Controller/CliController.php
@@ -48,18 +48,19 @@ class CliController extends BaseController {
 }
 
 public function generateCatalogsAction() {
+$force = $this->request->getParams()->get('force');
 printf("Regenerating catalogs " . ((new 
\DateTime('now'))->format("Y-m-d\TH:i:sO")). "\n");
 $versions = 
$this->_nbVersionRepository->getEntityRepository()->findAll();
 foreach ($versions as $v) {
-$this->createCatalog($v, true);
-$this->createCatalog($v, false);
+$this->createCatalog($v, true, $force);
+$this->createCatalog($v, false, $force);
 
 $v->markCatalogRebuild();
 $this->_nbVersionRepository->persist($v);
 }
 }
 
-private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental) {
+private function createCatalog(\Application\Entity\NbVersion $version, 
$experimental, $force) {
 if ($experimental) {
 $items = 
$this->_pluginVersionRepository->getNonVerifiedVersionsByNbVersion($version->getVersion(),
 true);
 } else {
@@ -83,6 +84,8 @@ class CliController extends BaseController {
 
 $rebuildNeeded |= (! $catalog->catalogFileExits());
 
+$rebuildNeeded |= $force;
+
 if (! $rebuildNeeded) {
 printf("Skipping %scatalog for %s\n", $experimental ? 
'experimental ' : '', $version->getVersion());
 return;


-
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



[netbeans-tools] branch master updated: Fix version incompatibilities (Testsystem has too recent version of PHP to notice)

2020-11-10 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 1416247  Fix version incompatibilities (Testsystem has too recent 
version of PHP to notice)
1416247 is described below

commit 1416247f809f59a536df39455423d188afcb2e50
Author: Matthias Bläsing 
AuthorDate: Tue Nov 10 21:00:42 2020 +0100

Fix version incompatibilities (Testsystem has too recent version of PHP to 
notice)
---
 pp3/module/Application/src/Application/Controller/CliController.php | 2 +-
 pp3/module/Application/src/Application/Entity/Base/NbVersion.php| 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/pp3/module/Application/src/Application/Controller/CliController.php 
b/pp3/module/Application/src/Application/Controller/CliController.php
index 9d24b07..d50bb88 100644
--- a/pp3/module/Application/src/Application/Controller/CliController.php
+++ b/pp3/module/Application/src/Application/Controller/CliController.php
@@ -48,7 +48,7 @@ class CliController extends BaseController {
 }
 
 public function generateCatalogsAction() {
-printf("Regenerating catalogs " . ((new 
\DateTime('now'))->format(\DateTimeInterface::ISO8601)). "\n");
+printf("Regenerating catalogs " . ((new 
\DateTime('now'))->format("Y-m-d\TH:i:sO")). "\n");
 $versions = 
$this->_nbVersionRepository->getEntityRepository()->findAll();
 foreach ($versions as $v) {
 $this->createCatalog($v, true);
diff --git a/pp3/module/Application/src/Application/Entity/Base/NbVersion.php 
b/pp3/module/Application/src/Application/Entity/Base/NbVersion.php
index 00a3d83..9ccfa8a 100644
--- a/pp3/module/Application/src/Application/Entity/Base/NbVersion.php
+++ b/pp3/module/Application/src/Application/Entity/Base/NbVersion.php
@@ -83,7 +83,7 @@ class NbVersion {
 return $this->nbVersionsPluginVersions;
 }
 
-function getCatalogRebuildRequested(): \DateTime {
+function getCatalogRebuildRequested() {
 return $this->catalog_rebuild_requested;
 }
 
@@ -91,7 +91,7 @@ class NbVersion {
 $this->catalog_rebuild_requested = $catalog_rebuild_requested;
 }
 
-function getCatalogRebuild(): \DateTime {
+function getCatalogRebuild() {
 return $this->catalog_rebuild;
 }
 


-
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-5005) There is no KeyStoreProvider for built in trusted certificates

2020-11-10 Thread Austin Stephens (Jira)
Austin Stephens created NETBEANS-5005:
-

 Summary: There is no KeyStoreProvider for built in trusted 
certificates
 Key: NETBEANS-5005
 URL: https://issues.apache.org/jira/browse/NETBEANS-5005
 Project: NetBeans
  Issue Type: Bug
  Components: platform - Autoupdate
Affects Versions: 12.0, Next, 12.1, 12.2, 12.3
 Environment: All
Reporter: Austin Stephens


Java has a keystore that it uses to verify signatures when it loads classes 
(last I checked) as well for other things. This keystore is not considered when 
checking signatures on nbm files and updates. This results in a properly signed 
jar with a well known certificate root appearing as self signed when doing an 
update. This is rather troubling if one was releasing a platform application 
and was expecting the auto-update logic to consider such things as properly 
signed.



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



[netbeans-tools] branch master updated: Add missing dtd files for autoupdate info (version 2.0, 2.2 + 2.3)

2020-11-10 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new d4b540a  Add missing dtd files for autoupdate info (version 2.0, 2.2 + 
2.3)
d4b540a is described below

commit d4b540a8bc119f4d5ef95f8258d8e611dc59c886
Author: Matthias Bläsing 
AuthorDate: Tue Nov 10 20:50:36 2020 +0100

Add missing dtd files for autoupdate info (version 2.0, 2.2 + 2.3)
---
 .../Application/src/Application/Pp/Catalog.php |  6 ++
 pp3/public/dtd/autoupdate-info-2_0.dtd | 68 +
 pp3/public/dtd/autoupdate-info-2_2.dtd | 70 +
 pp3/public/dtd/autoupdate-info-2_3.dtd | 71 ++
 4 files changed, 215 insertions(+)

diff --git a/pp3/module/Application/src/Application/Pp/Catalog.php 
b/pp3/module/Application/src/Application/Pp/Catalog.php
index f3abdf3..0c0f216 100644
--- a/pp3/module/Application/src/Application/Pp/Catalog.php
+++ b/pp3/module/Application/src/Application/Pp/Catalog.php
@@ -114,6 +114,12 @@ class Catalog {
 function ($public, $system, $context) {
 if($public === '-//NetBeans//DTD Autoupdate Catalog 2.8//EN') {
 return __DIR__ . 
"/../../../../../public/dtd/autoupdate-catalog-2_8.dtd";
+} else if($public === '-//NetBeans//DTD Autoupdate Module Info 
2.0//EN') {
+return __DIR__ . 
"/../../../../../public/dtd/autoupdate-info-2_0.dtd";
+} else if($public === '-//NetBeans//DTD Autoupdate Module Info 
2.2//EN') {
+return __DIR__ . 
"/../../../../../public/dtd/autoupdate-info-2_2.dtd";
+} else if($public === '-//NetBeans//DTD Autoupdate Module Info 
2.3//EN') {
+return __DIR__ . 
"/../../../../../public/dtd/autoupdate-info-2_3.dtd";
 } else if($public === '-//NetBeans//DTD Autoupdate Module Info 
2.4//EN') {
 return __DIR__ . 
"/../../../../../public/dtd/autoupdate-info-2_4.dtd";
 } else if($public === '-//NetBeans//DTD Autoupdate Module Info 
2.5//EN') {
diff --git a/pp3/public/dtd/autoupdate-info-2_0.dtd 
b/pp3/public/dtd/autoupdate-info-2_0.dtd
new file mode 100644
index 000..a1d7bd1
--- /dev/null
+++ b/pp3/public/dtd/autoupdate-info-2_0.dtd
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pp3/public/dtd/autoupdate-info-2_2.dtd 
b/pp3/public/dtd/autoupdate-info-2_2.dtd
new file mode 100644
index 000..ae681c5
--- /dev/null
+++ b/pp3/public/dtd/autoupdate-info-2_2.dtd
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pp3/public/dtd/autoupdate-info-2_3.dtd 
b/pp3/public/dtd/autoupdate-info-2_3.dtd
new file mode 100644
index 000..5ca63c5
--- /dev/null
+++ b/pp3/public/dtd/autoupdate-info-2_3.dtd
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+


-
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



[netbeans-tools] branch master updated (5db6098 -> 566c5ff)

2020-11-10 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


from 5db6098  Merge pull request #35 from 
matthiasblaesing/pp3-update-edit-date-version-edit
 new 8cb6e31  [NETBEANS-4987] Decouple building plugin catalog from UI 
actions
 new b5bc6a1  [NETBEANS-4987] Show details for errors from catalog 
generation in admin area
 new a558377  [NETBEANS-4987] Store errors from verification and make the 
available to plugin owner
 new 819c3de  [NETBEANS-4987] Rebuild catalogs also if the corresponding 
disc file is missing
 new 566c5ff  Merge pull request #36 from 
matthiasblaesing/pp3_stabilize_catalog_building

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


Summary of changes:
 pp3/config/pp3.sql |   3 +
 .../config/cron-rebuild-catalog-crond.dist |   2 +
 .../Application/config/module.config.php.dist  |  16 ++-
 .../src/Application/Controller/AdminController.php |  82 ---
 .../src/Application/Controller/CliController.php   | 151 +
 .../Application/Controller/PluginController.php|  19 +--
 .../Controller/PluginVersionController.php |  24 ++--
 .../Controller/VerificationController.php  |  16 +--
 .../src/Application/Entity/Base/NbVersion.php  |  22 +++
 .../src/Application/Entity/Base/PluginVersion.php  |  16 ++-
 .../src/Application/Entity/NbVersion.php   |   7 +
 ...trollerFactory.php => CliControllerFactory.php} |  37 ++---
 .../Factory/VerificationControllerFactory.php  |   8 +-
 .../Application/src/Application/Pp/Catalog.php |  93 +
 .../Application/Repository/NbVersionRepository.php |  11 ++
 .../Repository/PluginVersionRepository.php |  16 ++-
 .../view/application/admin/_plugin-listrow.phtml   |  14 +-
 .../_pluginVersion-error-report.phtml} |  28 ++--
 .../plugin-version/_pluginVersion-form.phtml   |   4 +-
 .../view/application/plugin-version/edit.phtml |   8 ++
 .../view/application/plugin/_plugin-listrow.phtml  |  16 ++-
 pp3/module/Application/view/layout/flash.phtml |   4 +-
 ...ate-catalog-2_8.dtd => autoupdate-info-2_4.dtd} |  48 ++-
 ...ate-catalog-2_8.dtd => autoupdate-info-2_5.dtd} |  33 +
 ...ate-catalog-2_8.dtd => autoupdate-info-2_7.dtd} |  32 +
 25 files changed, 478 insertions(+), 232 deletions(-)
 create mode 100644 
pp3/module/Application/config/cron-rebuild-catalog-crond.dist
 create mode 100644 
pp3/module/Application/src/Application/Controller/CliController.php
 copy 
pp3/module/Application/src/Application/Factory/{PluginControllerFactory.php => 
CliControllerFactory.php} (64%)
 mode change 100755 => 100644
 copy pp3/module/Application/view/application/{plugin/list.phtml => 
plugin-version/_pluginVersion-error-report.phtml} (63%)
 copy pp3/public/dtd/{autoupdate-catalog-2_8.dtd => autoupdate-info-2_4.dtd} 
(61%)
 copy pp3/public/dtd/{autoupdate-catalog-2_8.dtd => autoupdate-info-2_5.dtd} 
(74%)
 copy pp3/public/dtd/{autoupdate-catalog-2_8.dtd => autoupdate-info-2_7.dtd} 
(76%)


-
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-4926) completely Stops after debugging

2020-11-10 Thread maria (Jira)


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

maria resolved NETBEANS-4926.
-
Fix Version/s: 11.0
   Resolution: Fixed

Hola

Estaba creando una applet pero no se, de un momento a otro dejo de funcionar 
asi que decidi cerrar el programa y vorvelo a abrir, pero cuando fui a abrir el 
trabajo que estoy haciendo no me deja abrirlo no tampoco crear uno nuevo, nada..

 

> completely Stops after debugging
> 
>
> Key: NETBEANS-4926
> URL: https://issues.apache.org/jira/browse/NETBEANS-4926
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Linux MInt Ulyana 
> NetBeans FlatPack
> Windows 7
>Reporter: Jorge M Morales
>Priority: Critical
> Fix For: 11.0
>
> Attachments: Payroll.java, messages.log, messages.log.1
>
>
> After closing the debugged Java program sometimes the NetBeans UI freezes 
> completely



--
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-4926) completely Stops after debugging

2020-11-10 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-4926:
---

Oh. Then you need to get the exception. BTW it is possible to completely freeze 
the UI from a debugging session. Especially if you are debugging some AWT/UI 
related code. Usually the OS UI event handling is happening on a single thread 
which can be occasionally blocked. (Just happened with me on the last weekend). 
There is no way the IDE code can prevent that.

The easiest workaround is to have the debugee and the debugger application  run 
on different computers. You can use a VM for that as well. A bit hassle to set 
up at the beginning, but can work really well.

> completely Stops after debugging
> 
>
> Key: NETBEANS-4926
> URL: https://issues.apache.org/jira/browse/NETBEANS-4926
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Linux MInt Ulyana 
> NetBeans FlatPack
> Windows 7
>Reporter: Jorge M Morales
>Priority: Critical
> Attachments: Payroll.java, messages.log, messages.log.1
>
>
> After closing the debugged Java program sometimes the NetBeans UI freezes 
> completely



--
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-4926) completely Stops after debugging

2020-11-10 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-4926:
---

Java 8 is not NetBeans 8. The best would be to try it with Java 7!

> completely Stops after debugging
> 
>
> Key: NETBEANS-4926
> URL: https://issues.apache.org/jira/browse/NETBEANS-4926
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Linux MInt Ulyana 
> NetBeans FlatPack
> Windows 7
>Reporter: Jorge M Morales
>Priority: Critical
> Attachments: Payroll.java, messages.log, messages.log.1
>
>
> After closing the debugged Java program sometimes the NetBeans UI freezes 
> completely



--
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-4926) completely Stops after debugging

2020-11-10 Thread Roberto Mariottini (Jira)


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

Roberto Mariottini edited comment on NETBEANS-4926 at 11/10/20, 4:42 PM:
-

Sorry if I was not clear, now I'm using Java 8 for my project, and it happens 
again.

I'll try with Java 15 and let you know.


was (Author: robertom):
Sorry if I was not clear, now I'm using Java 8, and it happens again.

I'll try with Java 15 and let you know.

> completely Stops after debugging
> 
>
> Key: NETBEANS-4926
> URL: https://issues.apache.org/jira/browse/NETBEANS-4926
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Linux MInt Ulyana 
> NetBeans FlatPack
> Windows 7
>Reporter: Jorge M Morales
>Priority: Critical
> Attachments: Payroll.java, messages.log, messages.log.1
>
>
> After closing the debugged Java program sometimes the NetBeans UI freezes 
> completely



--
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-4926) completely Stops after debugging

2020-11-10 Thread Roberto Mariottini (Jira)


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

Roberto Mariottini commented on NETBEANS-4926:
--

Sorry if I was not clear, now I'm using Java 8, and it happens again.

I'll try with Java 15 and let you know.

> completely Stops after debugging
> 
>
> Key: NETBEANS-4926
> URL: https://issues.apache.org/jira/browse/NETBEANS-4926
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Linux MInt Ulyana 
> NetBeans FlatPack
> Windows 7
>Reporter: Jorge M Morales
>Priority: Critical
> Attachments: Payroll.java, messages.log, messages.log.1
>
>
> After closing the debugged Java program sometimes the NetBeans UI freezes 
> completely



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



[netbeans-website] branch master updated: Updated .htaccess for NetBeans 12.2

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

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


The following commit(s) were added to refs/heads/master by this push:
 new e66f82b  Updated .htaccess for NetBeans 12.2
e66f82b is described below

commit e66f82b4744b313cbce0c1e96985246e40d1d3b7
Author: Laszlo Kishalmi 
AuthorDate: Tue Nov 10 08:10:05 2020 -0800

Updated .htaccess for NetBeans 12.2
---
 netbeans.apache.org/src/content/.htaccess | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/netbeans.apache.org/src/content/.htaccess 
b/netbeans.apache.org/src/content/.htaccess
index d3d5db8..013d1ac 100644
--- a/netbeans.apache.org/src/content/.htaccess
+++ b/netbeans.apache.org/src/content/.htaccess
@@ -15,7 +15,9 @@ Redirect 302 /nb/updates/12.0/ 
https://netbeans-vm.apache.org/uc/12.0/
 Redirect 302 /nb/plugins/12.0/ https://plugins.netbeans.apache.org/data/12.0/
 Redirect 302 /nb/updates/12.1/ https://netbeans-vm.apache.org/uc/12.1/
 Redirect 302 /nb/plugins/12.1/ https://plugins.netbeans.apache.org/data/12.0/
-Redirect 302 /nb/updates/dev/ https://netbeans-vm.apache.org/uc/12.1/
+Redirect 302 /nb/updates/12.2/ https://netbeans-vm.apache.org/uc/12.2/
+Redirect 302 /nb/plugins/12.2/ https://plugins.netbeans.apache.org/data/12.0/
+Redirect 302 /nb/updates/dev/ https://netbeans-vm.apache.org/uc/12.2/
 Redirect 302 /nb/plugins/dev/ https://plugins.netbeans.apache.org/data/12.0/
 Redirect 302 /nb/issues_redirect.html 
https://issues.apache.org/jira/projects/NETBEANS/issues
 Redirect 302 /nb/report-issue 
https://issues.apache.org/jira/projects/NETBEANS/issues


-
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



[netbeans-website] branch master updated: Updated .htaccess for NetBeans 12.2

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

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


The following commit(s) were added to refs/heads/master by this push:
 new e66f82b  Updated .htaccess for NetBeans 12.2
e66f82b is described below

commit e66f82b4744b313cbce0c1e96985246e40d1d3b7
Author: Laszlo Kishalmi 
AuthorDate: Tue Nov 10 08:10:05 2020 -0800

Updated .htaccess for NetBeans 12.2
---
 netbeans.apache.org/src/content/.htaccess | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/netbeans.apache.org/src/content/.htaccess 
b/netbeans.apache.org/src/content/.htaccess
index d3d5db8..013d1ac 100644
--- a/netbeans.apache.org/src/content/.htaccess
+++ b/netbeans.apache.org/src/content/.htaccess
@@ -15,7 +15,9 @@ Redirect 302 /nb/updates/12.0/ 
https://netbeans-vm.apache.org/uc/12.0/
 Redirect 302 /nb/plugins/12.0/ https://plugins.netbeans.apache.org/data/12.0/
 Redirect 302 /nb/updates/12.1/ https://netbeans-vm.apache.org/uc/12.1/
 Redirect 302 /nb/plugins/12.1/ https://plugins.netbeans.apache.org/data/12.0/
-Redirect 302 /nb/updates/dev/ https://netbeans-vm.apache.org/uc/12.1/
+Redirect 302 /nb/updates/12.2/ https://netbeans-vm.apache.org/uc/12.2/
+Redirect 302 /nb/plugins/12.2/ https://plugins.netbeans.apache.org/data/12.0/
+Redirect 302 /nb/updates/dev/ https://netbeans-vm.apache.org/uc/12.2/
 Redirect 302 /nb/plugins/dev/ https://plugins.netbeans.apache.org/data/12.0/
 Redirect 302 /nb/issues_redirect.html 
https://issues.apache.org/jira/projects/NETBEANS/issues
 Redirect 302 /nb/report-issue 
https://issues.apache.org/jira/projects/NETBEANS/issues


-
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-4926) completely Stops after debugging

2020-11-10 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-4926:
---

Well, it does not count what JDK, you are using for NetBeans. Use a NetBeans 
which supports Java 7 which might be the old Oracle NetBeans 8.2.

I'd put this issue in won't fix as Java 7 is only available for paid support 
only.

> completely Stops after debugging
> 
>
> Key: NETBEANS-4926
> URL: https://issues.apache.org/jira/browse/NETBEANS-4926
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Linux MInt Ulyana 
> NetBeans FlatPack
> Windows 7
>Reporter: Jorge M Morales
>Priority: Critical
> Attachments: Payroll.java, messages.log, messages.log.1
>
>
> After closing the debugged Java program sometimes the NetBeans UI freezes 
> completely



--
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-4926) completely Stops after debugging

2020-11-10 Thread Roberto Mariottini (Jira)


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

Roberto Mariottini commented on NETBEANS-4926:
--

I've since set the JDK as JDK 8 RI and today it happened again.

I've uploaded a new log, this time no exception is reported.

Let me know if you need more data.

> completely Stops after debugging
> 
>
> Key: NETBEANS-4926
> URL: https://issues.apache.org/jira/browse/NETBEANS-4926
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Linux MInt Ulyana 
> NetBeans FlatPack
> Windows 7
>Reporter: Jorge M Morales
>Priority: Critical
> Attachments: Payroll.java, messages.log, messages.log.1
>
>
> After closing the debugged Java program sometimes the NetBeans UI freezes 
> completely



--
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-4926) completely Stops after debugging

2020-11-10 Thread Roberto Mariottini (Jira)


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

Roberto Mariottini updated NETBEANS-4926:
-
Attachment: messages.log

> completely Stops after debugging
> 
>
> Key: NETBEANS-4926
> URL: https://issues.apache.org/jira/browse/NETBEANS-4926
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.1
> Environment: Linux MInt Ulyana 
> NetBeans FlatPack
> Windows 7
>Reporter: Jorge M Morales
>Priority: Critical
> Attachments: Payroll.java, messages.log, messages.log.1
>
>
> After closing the debugged Java program sometimes the NetBeans UI freezes 
> completely



--
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-5004) Netbeans not allowed to access personnal files and folder under macOS

2020-11-10 Thread Remi Venant (Jira)
Remi Venant created NETBEANS-5004:
-

 Summary: Netbeans not allowed to access personnal files and folder 
under macOS
 Key: NETBEANS-5004
 URL: https://issues.apache.org/jira/browse/NETBEANS-5004
 Project: NetBeans
  Issue Type: Bug
  Components: core
Affects Versions: 12.1, 12.0.1
 Environment: macOS Catalina 10.15.7 (MacBook Pro mid-2015)
JDK 11.0.9
Netbeans 12.1 / Netbeans 12.0.1
Reporter: Remi Venant
 Attachments: sanbox_error_1.log

With the new *privacy and security features enforced macOS Catalina*, Netbeans 
and any of its subprocesses are *not allowed to access any of the personnal 
files and folders* (e.g.: Downloads, Documents...).

Normally, a system prompt should ask the user when the application attempts to 
access such files, but here nothing happens. For instance, when I try to access 
the Document directory through the "Open file..." menu, this directory appears 
empty.

The bug seems to be related to the fact that the shell script used to launch 
Netbeans (/bin/sh [/Applications/NetBeans/Apache NetBeans) is  sandboxed.

Giving full disk access to Netbeans in system preferences did not solve the 
issue.

The system console error related to this bug is attached to this ticket.



--
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-5003) Exception thrown while using 'pattern matching instance of' finalization in JDK16.

2020-11-10 Thread Akhilesh Singh (Jira)
Akhilesh Singh created NETBEANS-5003:


 Summary: Exception thrown while using 'pattern matching instance 
of' finalization in JDK16.
 Key: NETBEANS-5003
 URL: https://issues.apache.org/jira/browse/NETBEANS-5003
 Project: NetBeans
  Issue Type: Bug
  Components: java - Editor
 Environment: 
Product Version: Apache NetBeans IDE DEV (Build 
dev-0b4f99558376e32461217a83611de4d0787b6ad9)
Java: 16-internal; Java HotSpot(TM) 64-Bit Server VM 
16-internal+0-2020-10-29-1334179
Runtime: Java(TM) SE Runtime Environment 16-internal+0-2020-10-29-1334179
System: Windows 10 version 10.0 running on amd64; Cp1252; en_IN (nb)
User directory: C:\projects\netbeans\main1\netbeans\nbbuild\testuserdir
Cache directory: 
C:\projects\netbeans\main1\netbeans\nbbuild\testuserdir\var\cache
Reporter: Akhilesh Singh


Write below code on java editor and save

-

 

{{public class PatternMatchingFinalizationTest {}}{{/**}}
{{ * @param args the command line arguments}}
{{ */}}
{{ public static void main(String[] args) {}}
{{ // TODO code application logic here }}
{{ Object o = new String("Hello Java ");}}
{{ if(o instanceof String s){}}
{{ System.out.println(s);}}
{{ }}}
{{ }}}

{{}}}

---

Below exception thrown on editor

-

java.lang.NullPointerException: Cannot invoke "Object.toString()" because the 
return value of 
"org.netbeans.modules.java.editor.base.semantic.TreeShims.getBinding(com.sun.source.tree.Tree)"
 is nulljava.lang.NullPointerException: Cannot invoke "Object.toString()" 
because the return value of 
"org.netbeans.modules.java.editor.base.semantic.TreeShims.getBinding(com.sun.source.tree.Tree)"
 is null at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:1017)
 at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:280)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:94) 
at 
jdk.compiler/com.sun.source.util.TreeScanner.visitInstanceOf(TreeScanner.java:677)
 at 
jdk.compiler/com.sun.tools.javac.tree.JCTree$JCInstanceOf.accept(JCTree.java:2178)
 at 
jdk.compiler/com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:86) 
at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:1021)
 at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:280)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.visitParenthesized(TreeScanner.java:595)
 at 
jdk.compiler/com.sun.tools.javac.tree.JCTree$JCParens.accept(JCTree.java:1970) 
at 
jdk.compiler/com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:86) 
at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:1021)
 at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:280)
 at jdk.compiler/com.sun.source.util.TreeScanner.visitIf(TreeScanner.java:441) 
at jdk.compiler/com.sun.tools.javac.tree.JCTree$JCIf.accept(JCTree.java:1513) 
at 
jdk.compiler/com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:86) 
at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:1021)
 at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:280)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:94) 
at jdk.compiler/com.sun.source.util.TreeScanner.scan(TreeScanner.java:109) at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:78)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.visitBlock(TreeScanner.java:254) 
at 
jdk.compiler/com.sun.tools.javac.tree.JCTree$JCBlock.accept(JCTree.java:1059) 
at 
jdk.compiler/com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:86) 
at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.editor.base.semantic.SemanticHighlighterBase$DetectorVisitor.scan(SemanticHighlighterBase.java:1021)
 at