[netbeans-html4j] branch master updated: Excluding modpatch transitive dependencies which have disappeared from the Maven central

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 2ff2696  Excluding modpatch transitive dependencies which have 
disappeared from the Maven central
2ff2696 is described below

commit 2ff269699397d9e193b97a8f7e169cbe3745a21d
Author: Jaroslav Tulach 
AuthorDate: Sun Nov 15 07:46:26 2020 +0100

Excluding modpatch transitive dependencies which have disappeared from the 
Maven central
---
 boot-fx/pom.xml | 16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/boot-fx/pom.xml b/boot-fx/pom.xml
index ecde5f7..25e510f 100644
--- a/boot-fx/pom.xml
+++ b/boot-fx/pom.xml
@@ -94,8 +94,22 @@
 
   webswing-app-toolkit
   org.webswing
-  20.1.3
+  20.1.8
   provided
+  
+
+  jdk.jsobject.modpatch
+  jdk.jsobject.modpatch
+
+
+  java.desktop.modpatch
+  java.desktop.modpatch
+
+
+  org.webswing
+  webswing-api
+
+  
 
   
   A presentation provider to show JavaFX WebView 


-
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-5029) PHP - generate methods as public by default

2020-11-14 Thread ASF GitHub Bot (Jira)


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

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

> PHP - generate methods as public by default
> ---
>
> Key: NETBEANS-5029
> URL: https://issues.apache.org/jira/browse/NETBEANS-5029
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
> Attachments: constructor-generator.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> It is common and recommended practice to use visibility modifier for all 
> members of classes 
> ([PSR-12|https://www.php-fig.org/psr/psr-12/#44-methods-and-functions]).
>  It is useful to tick public modifier when generating 
> constructor/getters/setters.
>  !constructor-generator.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-5029) PHP - generate methods as public by default

2020-11-14 Thread Jira
Tomáš Procházka created NETBEANS-5029:
-

 Summary: PHP - generate methods as public by default
 Key: NETBEANS-5029
 URL: https://issues.apache.org/jira/browse/NETBEANS-5029
 Project: NetBeans
  Issue Type: Improvement
  Components: php - Editor
Affects Versions: 12.2
Reporter: Tomáš Procházka
Assignee: Tomáš Procházka
 Attachments: constructor-generator.png

It is common and recommended practice to use visibility modifier for all 
members of classes 
([PSR-12|https://www.php-fig.org/psr/psr-12/#44-methods-and-functions]).

 It is useful to tick public modifier when generating 
constructor/getters/setters.
 !constructor-generator.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] [Updated] (NETBEANS-5028) PHP - improved display of constant in code completion

2020-11-14 Thread Jira


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

Tomáš Procházka updated NETBEANS-5028:
--
Labels: pull-request-available  (was: )

> PHP - improved display of constant in code completion
> -
>
> Key: NETBEANS-5028
> URL: https://issues.apache.org/jira/browse/NETBEANS-5028
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
> Attachments: netbeans5028-after.png, netbeans5028-before.png
>
>
> Constant containing array has in code completion its content displayed only 
> as question mark character.
> It would be nice to have indication that constant contains array.



--
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-5028) PHP - improved display of constant in code completion

2020-11-14 Thread Jira


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

Tomáš Procházka commented on NETBEANS-5028:
---

Preview of related PR.

Before:
!netbeans5028-before.png! 

After:
!netbeans5028-after.png! 

> PHP - improved display of constant in code completion
> -
>
> Key: NETBEANS-5028
> URL: https://issues.apache.org/jira/browse/NETBEANS-5028
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
> Attachments: netbeans5028-after.png, netbeans5028-before.png
>
>
> Constant containing array has in code completion its content displayed only 
> as question mark character.
> It would be nice to have indication that constant contains array.



--
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-5028) PHP - improved display of constant in code completion

2020-11-14 Thread Jira


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

Tomáš Procházka updated NETBEANS-5028:
--
Attachment: netbeans5028-after.png

> PHP - improved display of constant in code completion
> -
>
> Key: NETBEANS-5028
> URL: https://issues.apache.org/jira/browse/NETBEANS-5028
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
> Attachments: netbeans5028-after.png, netbeans5028-before.png
>
>
> Constant containing array has in code completion its content displayed only 
> as question mark character.
> It would be nice to have indication that constant contains array.



--
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-5028) PHP - improved display of constant in code completion

2020-11-14 Thread Jira


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

Tomáš Procházka updated NETBEANS-5028:
--
Attachment: netbeans5028-before.png

> PHP - improved display of constant in code completion
> -
>
> Key: NETBEANS-5028
> URL: https://issues.apache.org/jira/browse/NETBEANS-5028
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
> Attachments: netbeans5028-after.png, netbeans5028-before.png
>
>
> Constant containing array has in code completion its content displayed only 
> as question mark character.
> It would be nice to have indication that constant contains array.



--
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-5028) PHP - improved display of constant in code completion

2020-11-14 Thread Jira
Tomáš Procházka created NETBEANS-5028:
-

 Summary: PHP - improved display of constant in code completion
 Key: NETBEANS-5028
 URL: https://issues.apache.org/jira/browse/NETBEANS-5028
 Project: NetBeans
  Issue Type: Improvement
  Components: php - Editor
Affects Versions: 12.2
Reporter: Tomáš Procházka
Assignee: Tomáš Procházka


Constant containing array has in code completion its content displayed only as 
question mark character.
It would be nice to have indication that constant contains array.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Yes, I can help: read all the earlier comments in this issue. Then check your 
permissions and make sure you're pointing to the JDK in your etc/netbeans.conf 
file. If you don't understand the previous sentence, please read all the 
earlier comments again.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-5027) PHP - improve display of array parameter default value

2020-11-14 Thread Jira


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

Tomáš Procházka commented on NETBEANS-5027:
---

I prepared PR.

Before: 
!netbeans5027-before.png!

After:
!netbeans5027-after.png!

> PHP - improve display of array parameter default value
> --
>
> Key: NETBEANS-5027
> URL: https://issues.apache.org/jira/browse/NETBEANS-5027
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
> Attachments: netbeans5027-after.png, netbeans5027-before.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Function/method parameter which has array as default value only displays 
> {{array().}}
> It would be useful to use short array form {{[]}} and display part of its 
> content.



--
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-5027) PHP - improve display of array parameter default value

2020-11-14 Thread Jira


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

Tomáš Procházka updated NETBEANS-5027:
--
Attachment: netbeans5027-after.png

> PHP - improve display of array parameter default value
> --
>
> Key: NETBEANS-5027
> URL: https://issues.apache.org/jira/browse/NETBEANS-5027
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
> Attachments: netbeans5027-after.png, netbeans5027-before.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Function/method parameter which has array as default value only displays 
> {{array().}}
> It would be useful to use short array form {{[]}} and display part of its 
> content.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Clock (Jira)


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

Clock commented on NETBEANS-4779:
-

Hi, when i click on Apache NetBeans 12.1.app runs but doesn't load projects 
folder.
while when i launch from command line runs and loads projects folder.

can you help me please? 

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-5027) PHP - improve display of array parameter default value

2020-11-14 Thread Jira


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

Tomáš Procházka updated NETBEANS-5027:
--
Attachment: netbeans5027-before.png

> PHP - improve display of array parameter default value
> --
>
> Key: NETBEANS-5027
> URL: https://issues.apache.org/jira/browse/NETBEANS-5027
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
> Attachments: netbeans5027-before.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Function/method parameter which has array as default value only displays 
> {{array().}}
> It would be useful to use short array form {{[]}} and display part of its 
> content.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Big Cock (Jira)


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

Big Cock commented on NETBEANS-4779:


Hi, when i click on Apache NetBeans 12.1.app runs but doesn't load projects 
folder.
while when i launch from command line runs and loads projects folder.

can you help me please? 

 

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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] [Issue Comment Deleted] (NETBEANS-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Big Cock (Jira)


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

Big Cock updated NETBEANS-4779:
---
Comment: was deleted

(was: Hi, when i click on Apache NetBeans 12.1.app runs but doesn't load 
projects folder.
while when i launch from command line runs and loads projects folder.

can you help me please? 

 )

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4987) Disable "Request verification" if plugin's manifest is incomplete

2020-11-14 Thread Jira


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

Jiří Kovalský commented on NETBEANS-4987:
-

Is there any way to see the output of the cron job somewhere?

> Disable "Request verification" if plugin's manifest is incomplete
> -
>
> Key: NETBEANS-4987
> URL: https://issues.apache.org/jira/browse/NETBEANS-4987
> Project: NetBeans
>  Issue Type: Improvement
>  Components: updatecenters - Pluginportal
>Affects Versions: 12.0
>Reporter: Jiří Kovalský
>Assignee: Matthias Bläsing
>Priority: Major
> Attachments: Bildschirmfoto_2020-11-04_22-13-47.png, 
> Screenshoot-PP3-error-user3.png, Screenshot-PP3-catalog-errors.png, 
> Screenshot-PP3-error-user.png, Screenshot-PP3-error-user2.png
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Right now it is possible to publish plugins on Maven Central which do not 
> have all the required attributes in their manifests like 
> {color:#ff8b00}OpenIDE-Module-Name{color} which then breaks generation of 
> module catalog for the whole update center. In order to prevent showstoppers 
> like https://issues.apache.org/jira/browse/NETBEANS-4948 it would be good if 
> [Plugin Portal|https://plugins.netbeans.apache.org/] checks 
> {color:#ff8b00}Info/info.xml{color} file and verifies if that attribute is 
> available. If not, corresponding plugin version would not have *Request 
> verification* button enabled with a link to a Confluence page explaining why 
> and how to fix it.
> In addition to that it would be great if Plugin Portal would open a popup 
> window with standard output of the module catalog generation Ant task. This 
> will streamline finding the root cause of the UC generation problems via the 
> browser in the future.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Julia W (Jira)


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

Julia W commented on NETBEANS-4779:
---

[~geertjan] thx for giving me the permission hint. It really seemed the update 
to Big Sur crashed my root permissions.

I changed this and now its working fine.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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] [Issue Comment Deleted] (NETBEANS-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Juan Jose Collantes (Jira)


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

Juan Jose Collantes updated NETBEANS-4779:
--
Comment: was deleted

(was: I cannot see the link of the Zip file for download.

[http://netbeans.apache.org/download/index.html]

 

 )

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Juan Jose Collantes (Jira)


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

Juan Jose Collantes commented on NETBEANS-4779:
---

I cannot see the link of the Zip file for download.

[http://netbeans.apache.org/download/index.html]

 

 

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


I see… As you can see, I just started studying informatics, that's why some 
things that are obvious for you are not for me… So, once again, thank you! 

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Yes.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


Deleting the # in front of netbeans_jdkhome= in the Netbeans.conf files finally 
worked. Thank you very much!

My last question is the following one: does the # means that it is a commentary 
and has to be removed to be taken in account in the .conf file?

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Maybe updating to Big Sur messed up your permissions.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

And, so, just use “sudo”, if that does the job for you.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Make sure there is no # in front of netbeans_jdkhome.

Make sure it points to the right location of the JDK.

If you can only run NetBeans with “sudo”, make sure you have permissions on the 
NetBeans installation directory.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Julia W (Jira)


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

Julia W updated NETBEANS-4779:
--
Attachment: (was: Screen Shot 2020-11-14 at 20.31.39.png)

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


For me neither the NetBeans in the bin folder or the launch by the Terminal has 
Julia said worked for me…

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof edited comment on NETBEANS-4779 at 11/14/20, 7:47 PM:
---

For me neither the NetBeans in the bin folder or the launch by the Terminal has 
Julia said has worked…


was (Author: ijof):
For me neither the NetBeans in the bin folder or the launch by the Terminal has 
Julia said worked for me…

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Julia W (Jira)


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

Julia W commented on NETBEANS-4779:
---

But before updating to Big Sur I didn't have any problem, I used it every day.

 

java.lang.RuntimeException: Permission denied

at org.eclipse.osgi.framework.internal.core.Framework.(Framework.java:194)

at 
org.eclipse.osgi.framework.internal.core.EquinoxLauncher.internalInit(EquinoxLauncher.java:67)

at 
org.eclipse.osgi.framework.internal.core.EquinoxLauncher.init(EquinoxLauncher.java:37)

at org.eclipse.osgi.launch.Equinox.init(Equinox.java:178)

at org.netbeans.modules.netbinox.Netbinox.init(Netbinox.java:63)

at org.netbeans.core.netigso.Netigso.prepare(Netigso.java:145)

at org.netbeans.NetigsoHandle.turnOn(NetigsoHandle.java:115)

at org.netbeans.ModuleManager.enable(ModuleManager.java:1437)

at org.netbeans.ModuleManager.enable(ModuleManager.java:1254)

at org.netbeans.core.startup.ModuleList.installNew(ModuleList.java:315)

at org.netbeans.core.startup.ModuleList.trigger(ModuleList.java:251)

at org.netbeans.core.startup.ModuleSystem.restore(ModuleSystem.java:298)

at org.netbeans.core.startup.Main.getModuleSystem(Main.java:156)

at org.netbeans.core.startup.Main.getModuleSystem(Main.java:125)

at org.netbeans.core.startup.Main.start(Main.java:282)

at org.netbeans.core.startup.TopThreadGroup.run(TopThreadGroup.java:98)

at java.base/java.lang.Thread.run(Thread.java:832)

Caused by: java.io.IOException: Permission denied

at java.base/java.io.UnixFileSystem.createFileExclusively(Native Method)

at java.base/java.io.File.createTempFile(File.java:2107)

at 
org.eclipse.osgi.storagemanager.StorageManager.initializeInstanceFile(StorageManager.java:188)

at org.eclipse.osgi.storagemanager.StorageManager.open(StorageManager.java:708)

at 
org.eclipse.osgi.internal.baseadaptor.BaseStorage.initFileManager(BaseStorage.java:226)

at 
org.eclipse.osgi.internal.baseadaptor.BaseStorage.initialize(BaseStorage.java:160)

at 
org.eclipse.osgi.baseadaptor.BaseAdaptor.initializeStorage(BaseAdaptor.java:123)

at org.eclipse.osgi.framework.internal.core.Framework.(Framework.java:192)

... 16 more

 

 

This is my terminal output.

I also can't open netbeans using the app icon itself in the Application folder, 
it still crashes during startup.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
> Attachments: Screen Shot 2020-11-14 at 20.31.39.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Julia W (Jira)


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

Julia W edited comment on NETBEANS-4779 at 11/14/20, 7:44 PM:
--

# # Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# Default locations of userdir and cachedir:
# (http://wiki.netbeans.org/FaqWhatIsUserdir)
#
# On Windows ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "\NetBeans" where  is user's
# value of "AppData" key in Windows Registry under
# "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
# and ${DEFAULT_CACHEDIR_ROOT} will be replaced by the launcher
# with "\NetBeans\Cache" where  is user's
# value of "Local AppData" key in Windows Registry under
# "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
#
# On Mac ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "~/Library/Application Support/NetBeans" and
# ${DEFAULT_CACHEDIR_ROOT} with "~/Library/Caches/NetBeans"
#
# On other systems ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "~/.netbeans" and ${DEFAULT_CACHEDIR_ROOT} with "~/.cache/netbeans"
#
# You can also use ${HOME} variable which will be replaced with
# user.home JVM system property value. This variable is valid only in
# netbeans_default_userdir and netbeans_default_cachedir properties.
#
# NOTE: If you specify a non-default userdir path on command line
# (--userdir option) and don't specify a cachedir path (--cachedir option),
# cachedir will be in "/var/cache".
#
# Cachedir must be different from userdir. The same cachedir and userdir
# would cause problems.
#
netbeans_default_userdir="${DEFAULT_USERDIR_ROOT}/12.1"
netbeans_default_cachedir="${DEFAULT_CACHEDIR_ROOT}/12.1"

# Options used by NetBeans launcher by default:
# (can be overridden by explicit command line switches)
#
# Note that default -Xmx is selected for you by the JVM automatically.
# You can find these values in var/log/messages.log file in your userdir.
# The automatically selected value can be overridden by specifying -J-Xmx
# here or on the command line.
#
# JDK 11 made GTK 3 default on Linux. Unfortunately it makes
# NetBeans ugly on Linux with the default GTK+ Look and Feel,
# as a workaround -J-Djdk.gtk.version=2.2 has been added to the
# default command line arguments.
# (see: https://issues.apache.org/jira/browse/NETBEANS-1344)
#
netbeans_default_options="-J-XX:+UseStringDeduplication -J-Xss2m 
-J-Djdk.gtk.version=2.2 -J-Dapple.laf.useScreenMenuBar=true 
-J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true 
-J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true 
-J-Dplugin.manager.check.updates=false 
-J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes 
-J--add-opens=java.base/java.net=ALL-UNNAMED 
-J--add-opens=java.base/java.lang.ref=ALL-UNNAMED 
-J--add-opens=java.base/java.lang=ALL-UNNAMED 
-J--add-opens=java.base/java.security=ALL-UNNAMED 
-J--add-opens=java.base/java.util=ALL-UNNAMED 
-J--add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED 
-J--add-opens=java.desktop/javax.swing.text=ALL-UNNAMED 
-J--add-opens=java.desktop/javax.swing=ALL-UNNAMED 
-J--add-opens=java.desktop/java.awt=ALL-UNNAMED 
-J--add-opens=java.desktop/java.awt.event=ALL-UNNAMED 
-J--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED 
-J--add-opens=jdk.jshell/jdk.jshell=ALL-UNNAMED -J--add-modules=jdk.jshell 
-J--add-exports=java.desktop/sun.awt=ALL-UNNAMED 
-J--add-exports=java.desktop/java.awt.peer=ALL-UNNAMED 
-J--add-exports=java.desktop/com.sun.beans.editors=ALL-UNNAMED 
-J--add-exports=java.desktop/sun.swing=ALL-UNNAMED 
-J--add-exports=java.desktop/sun.awt.im=ALL-UNNAMED 
-J--add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED 
-J--add-exports=java.management/sun.management=ALL-UNNAMED 
-J--add-exports=java.base/sun.reflect.annotation=ALL-UNNAMED 
-J-XX:+IgnoreUnrecognizedVMOptions"

# Default location of JDK:
# (set by installer or commented out if launcher should decide)
#
# It can be overridden on command line by using --jdkhome 
# Be careful when changing jdkhome.
# There are two NetBeans launchers for Windows (32-bit and 64-bit) and
# installer points 

[jira] [Commented] (NETBEANS-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Julia W (Jira)


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

Julia W commented on NETBEANS-4779:
---

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# Default locations of userdir and cachedir:
# (http://wiki.netbeans.org/FaqWhatIsUserdir)
#
# On Windows ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "\NetBeans" where  is user's
# value of "AppData" key in Windows Registry under
# "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
# and ${DEFAULT_CACHEDIR_ROOT} will be replaced by the launcher
# with "\NetBeans\Cache" where  is user's
# value of "Local AppData" key in Windows Registry under
# "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
#
# On Mac ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "~/Library/Application Support/NetBeans" and
# ${DEFAULT_CACHEDIR_ROOT} with "~/Library/Caches/NetBeans"
#
# On other systems ${DEFAULT_USERDIR_ROOT} will be replaced by the launcher
# with "~/.netbeans" and ${DEFAULT_CACHEDIR_ROOT} with "~/.cache/netbeans"
#
# You can also use ${HOME} variable which will be replaced with
# user.home JVM system property value. This variable is valid only in
# netbeans_default_userdir and netbeans_default_cachedir properties.
#
# NOTE: If you specify a non-default userdir path on command line
# (--userdir option) and don't specify a cachedir path (--cachedir option),
# cachedir will be in "/var/cache".
#
# Cachedir must be different from userdir. The same cachedir and userdir
# would cause problems.
#
netbeans_default_userdir="${DEFAULT_USERDIR_ROOT}/12.1"
netbeans_default_cachedir="${DEFAULT_CACHEDIR_ROOT}/12.1"

# Options used by NetBeans launcher by default:
# (can be overridden by explicit command line switches)
#
# Note that default -Xmx is selected for you by the JVM automatically.
# You can find these values in var/log/messages.log file in your userdir.
# The automatically selected value can be overridden by specifying -J-Xmx
# here or on the command line.
#
# JDK 11 made GTK 3 default on Linux. Unfortunately it makes
# NetBeans ugly on Linux with the default GTK+ Look and Feel,
# as a workaround -J-Djdk.gtk.version=2.2 has been added to the
# default command line arguments.
# (see: https://issues.apache.org/jira/browse/NETBEANS-1344)
#
netbeans_default_options="-J-XX:+UseStringDeduplication -J-Xss2m 
-J-Djdk.gtk.version=2.2 -J-Dapple.laf.useScreenMenuBar=true 
-J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true 
-J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true 
-J-Dplugin.manager.check.updates=false 
-J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes 
-J--add-opens=java.base/java.net=ALL-UNNAMED 
-J--add-opens=java.base/java.lang.ref=ALL-UNNAMED 
-J--add-opens=java.base/java.lang=ALL-UNNAMED 
-J--add-opens=java.base/java.security=ALL-UNNAMED 
-J--add-opens=java.base/java.util=ALL-UNNAMED 
-J--add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED 
-J--add-opens=java.desktop/javax.swing.text=ALL-UNNAMED 
-J--add-opens=java.desktop/javax.swing=ALL-UNNAMED 
-J--add-opens=java.desktop/java.awt=ALL-UNNAMED 
-J--add-opens=java.desktop/java.awt.event=ALL-UNNAMED 
-J--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED 
-J--add-opens=jdk.jshell/jdk.jshell=ALL-UNNAMED -J--add-modules=jdk.jshell 
-J--add-exports=java.desktop/sun.awt=ALL-UNNAMED 
-J--add-exports=java.desktop/java.awt.peer=ALL-UNNAMED 
-J--add-exports=java.desktop/com.sun.beans.editors=ALL-UNNAMED 
-J--add-exports=java.desktop/sun.swing=ALL-UNNAMED 
-J--add-exports=java.desktop/sun.awt.im=ALL-UNNAMED 
-J--add-exports=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED 
-J--add-exports=java.management/sun.management=ALL-UNNAMED 
-J--add-exports=java.base/sun.reflect.annotation=ALL-UNNAMED 
-J-XX:+IgnoreUnrecognizedVMOptions"

# Default location of JDK:
# (set by installer or commented out if launcher should decide)
#
# It can be overridden on command line by using --jdkhome 
# Be careful when changing jdkhome.
# There are two NetBeans launchers for Windows (32-bit and 64-bit) and
# installer points to one of those in the NetBeans application shortcut
# 

[jira] [Commented] (NETBEANS-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

If you can only run NetBeans when using “sudo”, that means you have a 
permissions problem somewhere. No fix in  NetBeans can help you then.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
> Attachments: Screen Shot 2020-11-14 at 20.31.39.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Can you copy and paste the content of the etc/netbeans.conf file here?

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
> Attachments: Screen Shot 2020-11-14 at 20.31.39.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Julia W (Jira)


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

Julia W updated NETBEANS-4779:
--
Attachment: Screen Shot 2020-11-14 at 20.31.39.png

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
> Attachments: Screen Shot 2020-11-14 at 20.31.39.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Julia W (Jira)


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

Julia W commented on NETBEANS-4779:
---

Using the Zip file to execute the bin doesn't work either, it crashes with 
runtime exception.

I also tried to use the --jdkhome command, so netbeans has the right java 
library.

But netbeans only starts when I'm using the *sudo* 
*/Users/User/Downloads/netbeans/bin/netbeans --jdkhome 
/Library/Java/JavaVirtualMachines/jdk-15.0.1.jdk/Contents/Home*

After this step, I can use Netbeans as usually as I do. ** 

So, is there a fix yet?

 

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Go to the “bin” folder. Start NetBeans?

No bin folder? You didn’t download the binary ZIP file. Go back to the Download 
page. 

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof edited comment on NETBEANS-4779 at 11/14/20, 7:34 PM:
---

Sorry, I correct my last comment: "what should I do with the UNZIPPED folder?". 
Of course I unzipped it, sorry if it wasn't clear.


was (Author: ijof):
Sorry, I correct my last comment: "what should I do with the UNZIP folder?". Of 
course I unzipped it, sorry if it wasn't clear.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


Sorry, I correct my last comment: "what should I do with the UNZIP folder?". Of 
course I unzipped it, sorry if it wasn't clear.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

1. Go to google.com.
2. Search for “how to unzip a ZIP file”.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


So what should I do with the ZIP folder?

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

So, you did not download the ZIP file. Go back to the Download page and read 
that page. Read it. You will find a ZIP file. That is different to a MacOS dmg 
file.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


I know I am a noob, but I know what is a ZIP file and how to unzip. But don't 
worry, I just thought the .zip contained an .dmg installer file…

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Do you know how to unzip a ZIP file? Do you know the difference between an 
installer and a ZIP file? If not, can you use google.com to find out, please?

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


I thought you made us download the .zip because it was updated with the 
corrections… Apparently not.

So I downloaded the .zip, what should I do next? Thank you once again! :)

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


Ow… this one… Okay I'm downloading it, I hope the .zip version is up to date.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Go to netbeans.apache.org. 

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


Which download page?

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-4779:
-

Can you unzip the ZIP file available from the Download page instead?

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Juan Jose Collantes (Jira)


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

Juan Jose Collantes edited comment on NETBEANS-4779 at 11/14/20, 5:31 PM:
--

Hi John, I also have the same problem and I don't understand how to solve it.

I Used the file : Apache-NetBeans-12.1-bin-macosx.dmg

 

*/Applications/NetBeans/Apache\ NetBeans\ 
12.1.app/Contents/Resources/NetBeans/netbeans/bin/netbeans*

*The operation couldn’t be completed. Unable to locate a Java Runtime that 
supports (null).*

*Please visit http://www.java.com for information on installing Java.*

 

Cannot find java. Please use the --jdkhome switch.

 

I try to start from the command line and that message appears

 


was (Author: jjcollantes):

Hi John, I also have the same problem and I don't understand how to solve it.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread Juan Jose Collantes (Jira)


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

Juan Jose Collantes commented on NETBEANS-4779:
---


Hi John, I also have the same problem and I don't understand how to solve it.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-3303) Modular Gradle project fails to recognize Javadoc and Sources

2020-11-14 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi resolved NETBEANS-3303.
---
Fix Version/s: 12.2
   Resolution: Fixed

> Modular Gradle project fails to recognize Javadoc and Sources
> -
>
> Key: NETBEANS-3303
> URL: https://issues.apache.org/jira/browse/NETBEANS-3303
> Project: NetBeans
>  Issue Type: Sub-task
>Affects Versions: 11.2
> Environment: OpenJDK 13.0.1 on Ubuntu 16.04.6 LTS
>Reporter: John Neffenger
>Assignee: Laszlo Kishalmi
>Priority: Major
> Fix For: 12.2
>
> Attachments: javadoc-window.png
>
>
> In the description below, I'm using the JavaFX sample project for NetBeans 
> defined in the [Modular 
> Gradle|https://github.com/openjfx/samples/tree/master/IDE/NetBeans/Modular/Gradle]
>  directory of the [openjfx/samples|https://github.com/openjfx/samples] 
> repository.
> Even after setting up the Gradle cache as described in the [parent 
> issue|https://issues.apache.org/jira/browse/NETBEANS-3296], the project fails 
> to recognize the Javadoc and Sources. The toolbar buttons to show the 
> documentation in an external Web browser and to open the source in the editor 
> are both disabled.
> !javadoc-window.png!
> Holding down the _Ctrl_ key and clicking a method does nothing. The _Show 
> Javadoc (Alt-F1)_ item in the context menu does nothing.
> The Gradle cache contains the Javadoc and Sources with their original names 
> and with their Linux platform-specific names.
> {code}
> $ cd .gradle/caches/modules-2/files-2.1/org.openjfx/javafx-graphics/13
> $ find * -type f 
> 6f9144cf24ab576d79e3bcdfbd48bdff31d0c509/javafx-graphics-13.pom
> 9dd89f728a41d898591ee9d0fb1dfb2020dab334/javafx-graphics-13-javadoc.jar
> 9dd89f728a41d898591ee9d0fb1dfb2020dab334/javafx-graphics-13-linux-javadoc.jar
> a9407212df2b75d557a509ec14a9e8e282494b4e/javafx-graphics-13.jar
> bbcbc616702a086567585183efcb0ab8eb22a66b/javafx-graphics-13-win.jar
> d407d8267c270f775482a3e05fef7d857b824b47/javafx-graphics-13-sources.jar
> d407d8267c270f775482a3e05fef7d857b824b47/javafx-graphics-13-linux-sources.jar
> d6b0cddb2d9f5c46cf78365b3683b147981321e0/javafx-graphics-13-mac.jar
> d853d12684f60037dfeea1a47e61396e0febfdfd/javafx-graphics-13-linux.jar
> $ cd 9dd89f728a41d898591ee9d0fb1dfb2020dab334
> $ diff -s javafx-graphics-13-javadoc.jar javafx-graphics-13-linux-javadoc.jar
> Files javafx-graphics-13-javadoc.jar and javafx-graphics-13-linux-javadoc.jar 
> are identical
> $ cd ../d407d8267c270f775482a3e05fef7d857b824b47
> $ diff -s diff javafx-graphics-13-linux-sources.jar 
> javafx-graphics-13-sources.jar
> Files javafx-graphics-13-linux-sources.jar and javafx-graphics-13-sources.jar 
> are identical
> {code}



--
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-4975) Cannot Select SourceGroup and Package for a new Java Class in a Gradle Groovy Project

2020-11-14 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi resolved NETBEANS-4975.
---
Fix Version/s: 12.3
   Resolution: Fixed

> Cannot Select SourceGroup and Package for a new Java Class in a Gradle Groovy 
> Project
> -
>
> Key: NETBEANS-4975
> URL: https://issues.apache.org/jira/browse/NETBEANS-4975
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 12.3
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Theoretically every Groovy SourceGroup shall be a java SourceGroup as Java 
> and Groovy classes can be mixed.



--
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-5027) PHP - improve display of array parameter default value

2020-11-14 Thread ASF GitHub Bot (Jira)


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

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

> PHP - improve display of array parameter default value
> --
>
> Key: NETBEANS-5027
> URL: https://issues.apache.org/jira/browse/NETBEANS-5027
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Function/method parameter which has array as default value only displays 
> {{array().}}
> It would be useful to use short array form {{[]}} and display part of its 
> content.



--
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-4649) Codetemplate in Plain php-html

2020-11-14 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-4649:
---
Attachment: netbeans-4649-cc.png

> Codetemplate  in Plain php-html 
> 
>
> Key: NETBEANS-4649
> URL: https://issues.apache.org/jira/browse/NETBEANS-4649
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion  Templates, php - Code, web - 
> HTML Editor
>Reporter: flexJoly
>Priority: Major
> Fix For: 12.0, 11.3
>
> Attachments: OrderList_demo.tpl.php, 
> image-2020-07-28-15-33-13-351.png, image-2020-07-28-15-36-26-205.png, 
> image-2020-07-28-15-39-01-238.png, netbeans-4649-cc.png, 
> netbeans-4649-codetemplates-html-options.png
>
>
> We normally use Smarty. But we are exploring of having our own template 
> engine (togeter with smarty for now)
> So I made a file: *orderlist.tpl.php* (see in attachments)
> I tried to make a code-template: for '' .
> As suggested in: 
> [https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
> !image-2020-07-28-15-33-13-351.png|width=449,height=383!
> I tried to put it in: php, html, plain text etc., with/without context etc
>  Should be easy and it is. But really it WON'T show up in the code.
> Typing 'pe' and ctrl-space >>> no suggestions
> !image-2020-07-28-15-36-26-205.png|width=464,height=417!
>  
> I tried .phtml and other extensions for the file (like: orderlist.phtml). 
> Tried to change the file-type in the options to: text/x-php, html, template 
> etc
>  I cannot get this to work
> In utter desperation I made my first macro in netbeans (never needed it 
> before) and that works very nice (should have done this before :D) but every 
> macro needs an shorcut to work. pppfff
>  
>  
> How to get the codetemplate '' show up in a php/html file ??
>  



--
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-4649) Codetemplate in Plain php-html

2020-11-14 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-4649:


I'm sorry I'm late.
You have to add it to not PHP but HTML. Then, I've improved the Options for 
HTML code templates in NetBeans 12.1.
So, could you give it a try?

 !netbeans-4649-codetemplates-html-options.png! 

 !netbeans-4649-cc.png! 

> Codetemplate  in Plain php-html 
> 
>
> Key: NETBEANS-4649
> URL: https://issues.apache.org/jira/browse/NETBEANS-4649
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion  Templates, php - Code, web - 
> HTML Editor
>Reporter: flexJoly
>Priority: Major
> Fix For: 12.0, 11.3
>
> Attachments: OrderList_demo.tpl.php, 
> image-2020-07-28-15-33-13-351.png, image-2020-07-28-15-36-26-205.png, 
> image-2020-07-28-15-39-01-238.png, netbeans-4649-cc.png, 
> netbeans-4649-codetemplates-html-options.png
>
>
> We normally use Smarty. But we are exploring of having our own template 
> engine (togeter with smarty for now)
> So I made a file: *orderlist.tpl.php* (see in attachments)
> I tried to make a code-template: for '' .
> As suggested in: 
> [https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
> !image-2020-07-28-15-33-13-351.png|width=449,height=383!
> I tried to put it in: php, html, plain text etc., with/without context etc
>  Should be easy and it is. But really it WON'T show up in the code.
> Typing 'pe' and ctrl-space >>> no suggestions
> !image-2020-07-28-15-36-26-205.png|width=464,height=417!
>  
> I tried .phtml and other extensions for the file (like: orderlist.phtml). 
> Tried to change the file-type in the options to: text/x-php, html, template 
> etc
>  I cannot get this to work
> In utter desperation I made my first macro in netbeans (never needed it 
> before) and that works very nice (should have done this before :D) but every 
> macro needs an shorcut to work. pppfff
>  
>  
> How to get the codetemplate '' show up in a php/html file ??
>  



--
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-4649) Codetemplate in Plain php-html

2020-11-14 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-4649:
---
Attachment: netbeans-4649-codetemplates-html-options.png

> Codetemplate  in Plain php-html 
> 
>
> Key: NETBEANS-4649
> URL: https://issues.apache.org/jira/browse/NETBEANS-4649
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion  Templates, php - Code, web - 
> HTML Editor
>Reporter: flexJoly
>Priority: Major
> Fix For: 12.0, 11.3
>
> Attachments: OrderList_demo.tpl.php, 
> image-2020-07-28-15-33-13-351.png, image-2020-07-28-15-36-26-205.png, 
> image-2020-07-28-15-39-01-238.png, netbeans-4649-cc.png, 
> netbeans-4649-codetemplates-html-options.png
>
>
> We normally use Smarty. But we are exploring of having our own template 
> engine (togeter with smarty for now)
> So I made a file: *orderlist.tpl.php* (see in attachments)
> I tried to make a code-template: for '' .
> As suggested in: 
> [https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
> !image-2020-07-28-15-33-13-351.png|width=449,height=383!
> I tried to put it in: php, html, plain text etc., with/without context etc
>  Should be easy and it is. But really it WON'T show up in the code.
> Typing 'pe' and ctrl-space >>> no suggestions
> !image-2020-07-28-15-36-26-205.png|width=464,height=417!
>  
> I tried .phtml and other extensions for the file (like: orderlist.phtml). 
> Tried to change the file-type in the options to: text/x-php, html, template 
> etc
>  I cannot get this to work
> In utter desperation I made my first macro in netbeans (never needed it 
> before) and that works very nice (should have done this before :D) but every 
> macro needs an shorcut to work. pppfff
>  
>  
> How to get the codetemplate '' show up in a php/html file ??
>  



--
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-5023) Netbeans 12 stuck on opening project

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-5023:
-

What do you see in the About box when NetBeans is started up, can you also 
paste that here? Also, please remove the user directory again, reproduce the 
problem again, and then attach the log files here from the user directory.

Note in the users mailing list (see netbeans.apache.org for how to join) 
there’s some discussion on this, however most there seem to be able to start 
and use NetBeans without a problem on the latest Mac OS X release, so another 
way forward is to join the mailing list and discuss further there.

> Netbeans 12 stuck on opening project
> 
>
> Key: NETBEANS-5023
> URL: https://issues.apache.org/jira/browse/NETBEANS-5023
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 12.1
> Environment: MacOS 11.0.1
>Reporter: Bart Kampers
>Priority: Blocker
> Attachments: Reproduction 720p.mov, 
> image-2020-11-13-22-07-19-219.png, messages.log
>
>
> Today I upgraded to MacOS 11.0.1 and since then Netbeans 12 hangs after 
> startup.
> All projects keep initializing forever and cannot be closed.
> I removed and reinstalled Netbeans but this problem remains.
> When I try to create a new project I see this:
> !image-2020-11-13-22-07-19-219.png|width=535,height=380!
> messages.log 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] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-11-14 Thread ASF GitHub Bot (Jira)


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

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

> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> When you want to set a trait in the use-list (directly under the namespace) 
> netbeans will not show the trait in the suggestion.
> h3. Steps to reproduce:
>  * Make a simple trait in php 
> {code:php}
> namespace test;
> trait MyTrait{}{code}
>  * Make a class in php{color:#808080} {color}
> {code:php}
> namespace somewhere;
> class MyClass{}{code}
>  * try to add a use to the trait like: (see first screenshot below)
> {code:php}
> namespace somewhere;
> // add trait here, netbeans does not show your trait in the suggestion list, 
> // you need to type it yourself
> // after you fully typed it, netbeans does recognize it
> use test\MyTrait;
> class MyClass{}{code}
> h3. Expected result
> Show trait in code-completion when adding it as use under the namespace.
> h3. Some screenshots
> Trait not shown codecompletion when adding as use:
> !screenshot-2.png!
> h3. When adding the trait directly in the class, netbeans does help you.
> !screenshot-1.png!  
>  
>  
>  trait recognized in uselist and inside class
>   !screenshot-3.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] [Comment Edited] (NETBEANS-5023) Netbeans 12 stuck on opening project

2020-11-14 Thread Bart Kampers (Jira)


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

Bart Kampers edited comment on NETBEANS-5023 at 11/14/20, 3:21 PM:
---

I added two screen shot movs showing how to reproduce. One shows Starting 
Netbeans with two projects in the Projects view. The second one shows starting 
Netbeans after I deleted directory 12.1 from Library/Application 
Support/Netbeans . The projects view is empty but it is not possible to create 
any new project.

 

The results from the terminal commands are:

{{SV1:bin bartkampers$ /usr/libexec/java_home --version 1.8+}}

{{/Library/Java/JavaVirtualMachines/jdk-15.jdk/Contents/Home}}

 

{{SV1:bin bartkampers$ /usr/libexec/java_home}}

{{/Library/Java/JavaVirtualMachines/jdk-15.jdk/Contents/Home}}


was (Author: bkampers):
I added two screen shot movs showing how to reproduce. One shows Starting 
Netbeans with two projects in the Projects view. The second one shows starting 
Netbeans after I deleted directory 12.1 from Library/Application 
Support/Netbeans 

 

The results from the terminal commands are:

{{SV1:bin bartkampers$ /usr/libexec/java_home --version 1.8+}}

{{/Library/Java/JavaVirtualMachines/jdk-15.jdk/Contents/Home}}

 

{{SV1:bin bartkampers$ /usr/libexec/java_home}}

{{/Library/Java/JavaVirtualMachines/jdk-15.jdk/Contents/Home}}

> Netbeans 12 stuck on opening project
> 
>
> Key: NETBEANS-5023
> URL: https://issues.apache.org/jira/browse/NETBEANS-5023
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 12.1
> Environment: MacOS 11.0.1
>Reporter: Bart Kampers
>Priority: Blocker
> Attachments: Reproduction 720p.mov, 
> image-2020-11-13-22-07-19-219.png, messages.log
>
>
> Today I upgraded to MacOS 11.0.1 and since then Netbeans 12 hangs after 
> startup.
> All projects keep initializing forever and cannot be closed.
> I removed and reinstalled Netbeans but this problem remains.
> When I try to create a new project I see this:
> !image-2020-11-13-22-07-19-219.png|width=535,height=380!
> messages.log 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-5023) Netbeans 12 stuck on opening project

2020-11-14 Thread Bart Kampers (Jira)


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

Bart Kampers commented on NETBEANS-5023:


I added two screen shot movs showing how to reproduce. One shows Starting 
Netbeans with two projects in the Projects view. The second one shows starting 
Netbeans after I deleted directory 12.1 from Library/Application 
Support/Netbeans 

 

The results from the terminal commands are:

{{SV1:bin bartkampers$ /usr/libexec/java_home --version 1.8+}}

{{/Library/Java/JavaVirtualMachines/jdk-15.jdk/Contents/Home}}

 

{{SV1:bin bartkampers$ /usr/libexec/java_home}}

{{/Library/Java/JavaVirtualMachines/jdk-15.jdk/Contents/Home}}

> Netbeans 12 stuck on opening project
> 
>
> Key: NETBEANS-5023
> URL: https://issues.apache.org/jira/browse/NETBEANS-5023
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 12.1
> Environment: MacOS 11.0.1
>Reporter: Bart Kampers
>Priority: Blocker
> Attachments: Reproduction 720p.mov, 
> image-2020-11-13-22-07-19-219.png, messages.log
>
>
> Today I upgraded to MacOS 11.0.1 and since then Netbeans 12 hangs after 
> startup.
> All projects keep initializing forever and cannot be closed.
> I removed and reinstalled Netbeans but this problem remains.
> When I try to create a new project I see this:
> !image-2020-11-13-22-07-19-219.png|width=535,height=380!
> messages.log 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] [Updated] (NETBEANS-5023) Netbeans 12 stuck on opening project

2020-11-14 Thread Bart Kampers (Jira)


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

Bart Kampers updated NETBEANS-5023:
---
Attachment: Reproduction 720p.mov

> Netbeans 12 stuck on opening project
> 
>
> Key: NETBEANS-5023
> URL: https://issues.apache.org/jira/browse/NETBEANS-5023
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 12.1
> Environment: MacOS 11.0.1
>Reporter: Bart Kampers
>Priority: Blocker
> Attachments: Reproduction 720p.mov, 
> image-2020-11-13-22-07-19-219.png, messages.log
>
>
> Today I upgraded to MacOS 11.0.1 and since then Netbeans 12 hangs after 
> startup.
> All projects keep initializing forever and cannot be closed.
> I removed and reinstalled Netbeans but this problem remains.
> When I try to create a new project I see this:
> !image-2020-11-13-22-07-19-219.png|width=535,height=380!
> messages.log 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] [Created] (NETBEANS-5027) PHP - improve display of array parameter default value

2020-11-14 Thread Jira
Tomáš Procházka created NETBEANS-5027:
-

 Summary: PHP - improve display of array parameter default value
 Key: NETBEANS-5027
 URL: https://issues.apache.org/jira/browse/NETBEANS-5027
 Project: NetBeans
  Issue Type: Improvement
  Components: php - Editor
Affects Versions: 12.2
Reporter: Tomáš Procházka
Assignee: Tomáš Procházka


Function/method parameter which has array as default value only displays 
{{array().}}

It would be useful to use short array form {{[]}} and display part of its 
content.



--
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-4763) java.lang.NullPointerException quando inicio o Debug.

2020-11-14 Thread Jira


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

Tomáš Procházka commented on NETBEANS-4763:
---

Hi, please use English for bug description.

> java.lang.NullPointerException quando inicio o Debug.
> -
>
> Key: NETBEANS-4763
> URL: https://issues.apache.org/jira/browse/NETBEANS-4763
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Debugger
>Affects Versions: 11.0, 11.3
>Reporter: Vinicius Cenci Fabris
>Priority: Major
>  Labels: debugging, java.lang.nullPointerException, php
>
> Quando tento debugar um projeto em PHP estou recebendo a seguinte exception:
>  java.lang.NullPointerExceptionjava.lang.NullPointerException at 
> org.netbeans.modules.php.dbgp.URIMapper$BaseMapper.toWebServerURI(URIMapper.java:278)
>  at 
> org.netbeans.modules.php.dbgp.URIMapper$MultiMapper.toWebServerURI(URIMapper.java:326)
>  at org.netbeans.modules.php.dbgp.URIMapper.toWebServerURI(URIMapper.java:54) 
> at org.netbeans.modules.php.dbgp.SessionId.toWebServerURI(SessionId.java:110) 
> at 
> org.netbeans.modules.php.dbgp.packets.BrkpntCommandBuilder.buildLineBreakpoint(BrkpntCommandBuilder.java:47)
>  at 
> org.netbeans.modules.php.dbgp.packets.BrkpntCommandBuilder.buildLineBreakpoint(BrkpntCommandBuilder.java:61)
>  at 
> org.netbeans.modules.php.dbgp.breakpoints.Utils.getCommand(Utils.java:120) at 
> org.netbeans.modules.php.dbgp.packets.InitMessage.setBreakpoints(InitMessage.java:121)
>  at 
> org.netbeans.modules.php.dbgp.packets.InitMessage.process(InitMessage.java:59)
>  at 
> org.netbeans.modules.php.dbgp.DebugSession.handleMessage(DebugSession.java:268)
>  at 
> org.netbeans.modules.php.dbgp.DebugSession.receiveData(DebugSession.java:249) 
> at 
> org.netbeans.modules.php.dbgp.DebugSession.receiveData(DebugSession.java:230)[catch]
>  at org.netbeans.modules.php.dbgp.DebugSession.run(DebugSession.java:116) at 
> java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
>  at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at 
> java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
>  at 
> java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
>  at java.base/java.lang.Thread.run(Thread.java:834).
> Não fiz nenhuma alteração nas configurações do netbeans, e também não 
> encontrei uma solução para esse problema.
>  Começou com o php 11.0, instalei o php 11.3 para ver se resolvia, mas estou 
> tendo o mesmo problema.
>  Debug deste mesmo projeto em outro computador funciona, e o path mapping de 
> ambos está igual.



--
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-5001) namespace circular reference

2020-11-14 Thread Daniel Peder (Jira)


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

Daniel Peder updated NETBEANS-5001:
---
Description: 
namespace circular reference

 

class in sub namespace extending same named class is confusing netbeans, for 
better illustration see printscreen

 

must be specific setup:
 parent namespace name is same as last component of subclass namespace and both 
classes must be same name

ie:
 parent namespace: \Na
 subclass namespace: \Sub\Na
 both class names: Ca

how I came to it:

this setup made netbeans to freeze for very long time when autocomplete  
inserting function name

the main window responding to resize etc..., OS fine, not issues, just all 
netbeans memory used and all processor cores near to 99% usage

log yells "out of heap memory", also it shows repeating call to resolving 
function name overrides until it fails on "out of heap memory"

sorry no logs, no dump

attaching screenshot and netbeans project isolating this issue

 

  was:
namespace circular reference

 

class in sub namespace extending same named class is confusing netbeans, for 
better illustration see printscreen

 

must be specific setup:
parent namespace name is same as last component of subclass namespace and both 
classes must be same name

ie:
parent namespace: \Na
subclass namespace: \Sub\Na
both class names: Ca

how I came to it:

this setup made netbeans to freeze for very long time when autocomplete  
inserting function name

the main window responding to resize etc..., OS fine, not issues, just all 
netbeans memory used and all processor cores near to 99% usage

log yells "out of heap memory", also it shows repeating call to resolving 
function name overrides until it fails on of heap memory

sorry no logs, no dump

attaching screenshot and netbeans project isolating this issue

 


> namespace circular reference
> 
>
> Key: NETBEANS-5001
> URL: https://issues.apache.org/jira/browse/NETBEANS-5001
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
> Environment: Product Version: Apache NetBeans IDE 12.1
> Java: 11.0.9; OpenJDK 64-Bit Server VM 11.0.9+11-Ubuntu-0ubuntu1.18.04.1
> Runtime: OpenJDK Runtime Environment 11.0.9+11-Ubuntu-0ubuntu1.18.04.1
> System: Linux version 5.4.0-52-generic running on amd64; UTF-8; en_US (nb)
>Reporter: Daniel Peder
>Priority: Critical
> Attachments: DeepinScreenshot_select-area_20201108133734.png, 
> bug-namespace-circular-reference.tar, upload-1604836570-1.img.png
>
>
> namespace circular reference
>  
> class in sub namespace extending same named class is confusing netbeans, for 
> better illustration see printscreen
>  
> must be specific setup:
>  parent namespace name is same as last component of subclass namespace and 
> both classes must be same name
> ie:
>  parent namespace: \Na
>  subclass namespace: \Sub\Na
>  both class names: Ca
> how I came to it:
> this setup made netbeans to freeze for very long time when autocomplete  
> inserting function name
> the main window responding to resize etc..., OS fine, not issues, just all 
> netbeans memory used and all processor cores near to 99% usage
> log yells "out of heap memory", also it shows repeating call to resolving 
> function name overrides until it fails on "out of heap memory"
> sorry no logs, no dump
> attaching screenshot and netbeans project isolating this issue
>  



--
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-5001) namespace circular reference

2020-11-14 Thread Jira


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

Tomáš Procházka updated NETBEANS-5001:
--
Component/s: php - Editor

> namespace circular reference
> 
>
> Key: NETBEANS-5001
> URL: https://issues.apache.org/jira/browse/NETBEANS-5001
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
> Environment: Product Version: Apache NetBeans IDE 12.1
> Java: 11.0.9; OpenJDK 64-Bit Server VM 11.0.9+11-Ubuntu-0ubuntu1.18.04.1
> Runtime: OpenJDK Runtime Environment 11.0.9+11-Ubuntu-0ubuntu1.18.04.1
> System: Linux version 5.4.0-52-generic running on amd64; UTF-8; en_US (nb)
>Reporter: Daniel Peder
>Priority: Critical
> Attachments: DeepinScreenshot_select-area_20201108133734.png, 
> bug-namespace-circular-reference.tar, upload-1604836570-1.img.png
>
>
> namespace circular reference
>  
> class in sub namespace extending same named class is confusing netbeans, for 
> better illustration see printscreen
>  
> must be specific setup:
> parent namespace name is same as last component of subclass namespace and 
> both classes must be same name
> ie:
> parent namespace: \Na
> subclass namespace: \Sub\Na
> both class names: Ca
> how I came to it:
> this setup made netbeans to freeze for very long time when autocomplete  
> inserting function name
> the main window responding to resize etc..., OS fine, not issues, just all 
> netbeans memory used and all processor cores near to 99% usage
> log yells "out of heap memory", also it shows repeating call to resolving 
> function name overrides until it fails on of heap memory
> sorry no logs, no dump
> attaching screenshot and netbeans project isolating this issue
>  



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


Thank you. I don't get the meaning of $ before a line. 

After the first line or the second line, I have the same result:

{{/Library/Java/JavaVirtualMachines/jdk-15.0.1.jdk/Contents/Home}}

 

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-5023) Netbeans 12 stuck on opening project

2020-11-14 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-5023:
-

Can you provide the complete steps to be taken to reproduce the problem.

Can you run the following 2 commands separately from the terminal and put the 
results here:

/usr/libexec/java_home --version 1.8+

/usr/libexec/java_home

> Netbeans 12 stuck on opening project
> 
>
> Key: NETBEANS-5023
> URL: https://issues.apache.org/jira/browse/NETBEANS-5023
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 12.1
> Environment: MacOS 11.0.1
>Reporter: Bart Kampers
>Priority: Blocker
> Attachments: image-2020-11-13-22-07-19-219.png, messages.log
>
>
> Today I upgraded to MacOS 11.0.1 and since then Netbeans 12 hangs after 
> startup.
> All projects keep initializing forever and cannot be closed.
> I removed and reinstalled Netbeans but this problem remains.
> When I try to create a new project I see this:
> !image-2020-11-13-22-07-19-219.png|width=535,height=380!
> messages.log 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-4092) package.json icon is to big

2020-11-14 Thread Christian Lenz (Jira)


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

Christian Lenz commented on NETBEANS-4092:
--

Ahh ok. I should have look into the svg. I thought that was an other problem, 
because it worked before. Thx for the hint :)

> package.json icon is to big
> ---
>
> Key: NETBEANS-4092
> URL: https://issues.apache.org/jira/browse/NETBEANS-4092
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Generic Projects UI
>Affects Versions: 11.2, 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3
> Java: 9.0.4; Java HotSpot(TM) 64-Bit Server VM 9.0.4+11
> Runtime: Java(TM) SE Runtime Environment 9.0.4+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; de_DE (nb)
> User directory: C:\Projekte\Netbeans Plugins\MinifierBeans\build\testuserdir
> Cache directory: C:\Projekte\Netbeans 
> Plugins\MinifierBeans\build\testuserdir\var\cache
>Reporter: Christian Lenz
>Priority: Major
> Attachments: image-2020-03-31-14-40-41-931.png, 
> image-2020-03-31-14-41-47-408.png
>
>
> In my current IDE 11.1 there is no problem with the npm icon for the 
> package.json file. You can see it in this my attached file  
> image-2020-03-31-14-43-07-177.png. it is 16x16 px small. When I use 11.3 the 
> icon is bigger see image-2020-03-31-14-40-41-931. I also tested ith with 11.2 
> and there is the same problem. So smth changed from 11.1 to 11.2 with icons 
> or HiDPI maybe?
> Steps to reprocuce:
> * open a project with a package.json file
> * open the tree nodes in the project view to see the package.json file
> * Icon is to big.
> Both IDEs are running on JDK 9.0.4, same PC (Surface Book 1 with HiDPI 
> resolution)



--
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-5023) Netbeans 12 stuck on opening project

2020-11-14 Thread Bart Kampers (Jira)


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

Bart Kampers updated NETBEANS-5023:
---
Description: 
Today I upgraded to MacOS 11.0.1 and since then Netbeans 12 hangs after startup.

All projects keep initializing forever and cannot be closed.

I removed and reinstalled Netbeans but this problem remains.

When I try to create a new project I see this:

!image-2020-11-13-22-07-19-219.png|width=535,height=380!

messages.log attached.

 

  was:
Today I upgraded to MacOS 11.0.1 and since then Netbeans 12 hangs after startup.

All projects keep initializing forever and cannot be closed.

I removed and reinstalled Netbeans but this problem remains.

When I try to create a new project I see this:

!image-2020-11-13-22-07-19-219.png|width=535,height=380!

messages.log:

-->Log
 Session: Friday, November 13, 2020 9:47:50 PM CET>System Info:   Product 
Version         = Apache NetBeans IDE 12.1  Operating System        = Mac OS X 
version 10.16 running on x86_64  Java; VM; Vendor        = 1.8.0_261; Java 
HotSpot(TM) 64-Bit Server VM 25.261-b12; Oracle Corporation  Runtime            
     = Java(TM) SE Runtime Environment 1.8.0_261-b12  Java Home               = 
/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home  System 
Locale; Encoding = nl_NL (nb); UTF-8  Home Directory          = 
/Users/bartkampers  Current Directory       = /  User Directory          = 
/Users/bartkampers/Library/Application Support/NetBeans/12.1  Cache Directory   
      = /Users/bartkampers/Library/Caches/NetBeans/12.1  Installation           
 = /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/nb                            
/Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/ergonomics                        
    /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/ide                            
/Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/extide                            
/Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/java                            
/Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/apisupport                        
    /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/webcommon                         
   /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/websvccommon                      
      /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/enterprise                        
    /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/profiler                          
  /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/php                            
/Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/harness                           
 /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/cpplite                           
 /Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/groovy                            
/Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/javafx                            
/Applications/NetBeans/Apache NetBeans 
12.1.app/Contents/Resources/NetBeans/netbeans/platform  Boot & Ext. Classpath   
= /Library/Internet 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/resources.jar:/Library/Internet
 Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/rt.jar:/Library/Internet 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/sunrsasign.jar:/Library/Internet
 Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jsse.jar:/Library/Internet 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jce.jar:/Library/Internet 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/charsets.jar:/Library/Internet
 Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jfr.jar:/Library/Internet 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/classes:/Library/Internet 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/sunec.jar:/Library/Internet
 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/nashorn.jar:/Library/Internet
 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/cldrdata.jar:/Library/Internet
 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/jfxrt.jar:/Library/Internet
 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/dnsns.jar:/Library/Internet
 
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/localedata.jar:/Library/Internet
 

[jira] [Updated] (NETBEANS-5023) Netbeans 12 stuck on opening project

2020-11-14 Thread Bart Kampers (Jira)


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

Bart Kampers updated NETBEANS-5023:
---
Attachment: messages.log

> Netbeans 12 stuck on opening project
> 
>
> Key: NETBEANS-5023
> URL: https://issues.apache.org/jira/browse/NETBEANS-5023
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 12.1
> Environment: MacOS 11.0.1
>Reporter: Bart Kampers
>Priority: Blocker
> Attachments: image-2020-11-13-22-07-19-219.png, messages.log
>
>
> Today I upgraded to MacOS 11.0.1 and since then Netbeans 12 hangs after 
> startup.
> All projects keep initializing forever and cannot be closed.
> I removed and reinstalled Netbeans but this problem remains.
> When I try to create a new project I see this:
> !image-2020-11-13-22-07-19-219.png|width=535,height=380!
> messages.log:
> -->Log
>  Session: Friday, November 13, 2020 9:47:50 PM CET>System Info:   Product 
> Version         = Apache NetBeans IDE 12.1  Operating System        = Mac OS 
> X version 10.16 running on x86_64  Java; VM; Vendor        = 1.8.0_261; Java 
> HotSpot(TM) 64-Bit Server VM 25.261-b12; Oracle Corporation  Runtime          
>        = Java(TM) SE Runtime Environment 1.8.0_261-b12  Java Home             
>   = /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home  System 
> Locale; Encoding = nl_NL (nb); UTF-8  Home Directory          = 
> /Users/bartkampers  Current Directory       = /  User Directory          = 
> /Users/bartkampers/Library/Application Support/NetBeans/12.1  Cache Directory 
>         = /Users/bartkampers/Library/Caches/NetBeans/12.1  Installation       
>      = /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/nb                            
> /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/ergonomics                      
>       /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/ide                            
> /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/extide                          
>   /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/java                            
> /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/apisupport                      
>       /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/webcommon                       
>      /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/websvccommon                    
>         /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/enterprise                      
>       /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/profiler                        
>     /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/php                            
> /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/harness                         
>    /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/cpplite                         
>    /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/groovy                          
>   /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/javafx                          
>   /Applications/NetBeans/Apache NetBeans 
> 12.1.app/Contents/Resources/NetBeans/netbeans/platform  Boot & Ext. Classpath 
>   = /Library/Internet 
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/resources.jar:/Library/Internet
>  Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/rt.jar:/Library/Internet 
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/sunrsasign.jar:/Library/Internet
>  
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jsse.jar:/Library/Internet 
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jce.jar:/Library/Internet 
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/charsets.jar:/Library/Internet
>  Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jfr.jar:/Library/Internet 
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/classes:/Library/Internet 
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/sunec.jar:/Library/Internet
>  
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/nashorn.jar:/Library/Internet
>  
> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext/cldrdata.jar:/Library/Internet
>  
> 

[jira] [Commented] (NETBEANS-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread John McDonnell (Jira)


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

John McDonnell commented on NETBEANS-4779:
--

Take out the $ and try the 2 commands again...

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread iJof (Jira)


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

iJof commented on NETBEANS-4779:


Thank you! But when I type it on the Terminal, I only have:

{{-bash: $: command not found}}

But I don't understand how to get the corrected installer.

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



--
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-4779) Apache NetBeans cant be installed on Mac OS Big Sur

2020-11-14 Thread John McDonnell (Jira)


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

John McDonnell commented on NETBEANS-4779:
--

Hi [~iJof] 

Can you run the following 2 commands from the terminal and send on the results:

$ /usr/libexec/java_home --version 1.8+

$ /usr/libexec/java_home

This issue was raised because during the installation process on a mac before 
BigSur the top line worked correctly, but the way this command worked changed 
in BigSur...  As a result the version flag stopped working.  We got around this 
in the installer by removing that flag: 
[https://github.com/apache/netbeans/pull/2353/files]

Since the assumption is in this day and age 99% of people would have Java 8+

Maybe the IDE has the same check somewhere?  Although I know there have been 
other users in the BigSur beta who haven't had an issue opening projects...

> Apache NetBeans cant be installed on Mac OS Big Sur
> ---
>
> Key: NETBEANS-4779
> URL: https://issues.apache.org/jira/browse/NETBEANS-4779
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - installer
>Reporter: John McDonnell
>Assignee: John McDonnell
>Priority: Major
> Fix For: 12.1
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> As part of of the Apache NetBeans 12.1 release, it was found that the current 
> mac os installer doesn't work on Big Sur due to changes in the 
> `/usr/libexec/java_home` script.
> The fix will be to remove the version flag from the installer.



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