[netbeans] branch delivery updated: NETBEANS-5906: treat custom actions as enabled (#3105)

2021-08-22 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/delivery by this push:
 new 145f06a  NETBEANS-5906: treat custom actions as enabled (#3105)
145f06a is described below

commit 145f06ae1dcd6cedc91d0ce12f515eb91712c319
Author: Svatopluk Dedic 
AuthorDate: Sun Aug 22 21:38:26 2021 +0200

NETBEANS-5906: treat custom actions as enabled (#3105)

* [NETBEANS-5918] listener for gradle.properties creation was weak-refed 
and GCed

* [NETBEANS-5919] [NETBEANS-5906] Custom actions are always on. Report 
custom actions as supported.
---
 .../modules/gradle/ActionProviderImpl.java | 10 ++---
 .../modules/gradle/actions/ActionToTaskUtils.java  | 41 --
 .../actions/ConfigurableActionsProviderImpl.java   |  7 +--
 .../ConfigurableActionsProviderImplTest.java   | 50 ++
 4 files changed, 92 insertions(+), 16 deletions(-)

diff --git 
a/extide/gradle/src/org/netbeans/modules/gradle/ActionProviderImpl.java 
b/extide/gradle/src/org/netbeans/modules/gradle/ActionProviderImpl.java
index 3bf4d48..d11d1ed 100644
--- a/extide/gradle/src/org/netbeans/modules/gradle/ActionProviderImpl.java
+++ b/extide/gradle/src/org/netbeans/modules/gradle/ActionProviderImpl.java
@@ -121,11 +121,7 @@ public class ActionProviderImpl implements ActionProvider {
 
 @Override
 public String[] getSupportedActions() {
-List providers = 
ActionToTaskUtils.actionProviders(project);
-Set actions = new HashSet<>();
-for (GradleActionsProvider provider : providers) {
-actions.addAll(provider.getSupportedActions());
-}
+Set actions = new 
HashSet<>(ActionToTaskUtils.getAllSupportedActions(project));
 // add a fixed 'prime build' action
 actions.add(ActionProvider.COMMAND_PRIME);
 actions.add(COMMAND_DL_SOURCES);
@@ -184,7 +180,7 @@ public class ActionProviderImpl implements ActionProvider {
 LOG.log(Level.FINEST, "Priming build action for {0} is: {1}", new 
Object[] { project, enabled });
 return enabled;
 }
-return ActionToTaskUtils.isActionEnabled(command, project, context);
+return ActionToTaskUtils.isActionEnabled(command, null, project, 
context);
 }
 
 @NbBundle.Messages({
@@ -259,7 +255,7 @@ public class ActionProviderImpl implements ActionProvider {
 LOG.log(Level.FINE, "Attempt to run a config-disabled action: 
{0}", action);
 return false;
 }
-if (!ActionToTaskUtils.isActionEnabled(action, project, context)) {
+if (!ActionToTaskUtils.isActionEnabled(action, mapping, project, 
context)) {
 LOG.log(Level.FINE, "Attempt to run action that is not enabled: 
{0}", action);
 return false;
 }
diff --git 
a/extide/gradle/src/org/netbeans/modules/gradle/actions/ActionToTaskUtils.java 
b/extide/gradle/src/org/netbeans/modules/gradle/actions/ActionToTaskUtils.java
index 98c55c6..5c2939d 100644
--- 
a/extide/gradle/src/org/netbeans/modules/gradle/actions/ActionToTaskUtils.java
+++ 
b/extide/gradle/src/org/netbeans/modules/gradle/actions/ActionToTaskUtils.java
@@ -23,7 +23,9 @@ import 
org.netbeans.modules.gradle.spi.actions.ProjectActionMappingProvider;
 import org.netbeans.modules.gradle.api.execute.ActionMapping;
 import org.netbeans.modules.gradle.spi.actions.GradleActionsProvider;
 import java.util.ArrayList;
+import java.util.HashSet;
 import java.util.List;
+import java.util.Set;
 import org.netbeans.api.annotations.common.NonNull;
 import org.netbeans.api.project.Project;
 import org.netbeans.modules.gradle.api.execute.GradleExecConfiguration;
@@ -47,10 +49,43 @@ public final class ActionToTaskUtils {
 
providers.addAll(Lookup.getDefault().lookupAll(GradleActionsProvider.class));
 return providers;
 }
-
-public static boolean isActionEnabled(String action, Project project, 
Lookup lookup) {
-ActionMapping mapping = getActiveMapping(action, project, lookup);
+
+public static Set getAllSupportedActions(@NonNull Project project) 
{
+Set actions = new HashSet<>();
+for (GradleActionsProvider provider : actionProviders(project)) {
+actions.addAll(provider.getSupportedActions());
+}
+ProjectActionMappingProvider projectProvider = 
project.getLookup().lookup(ProjectActionMappingProvider.class);
+ConfigurableActionProvider contextProvider = 
project.getLookup().lookup(ConfigurableActionProvider.class);
+ProjectConfigurationProvider pcp = 
project.getLookup().lookup(ProjectConfigurationProvider.class);
+if (contextProvider == null || projectProvider == null) {
+return actions;
+}
+if (pcp == null || contextProvider == null) {
+

[jira] [Created] (NETBEANS-5941) Gradle Navigator can't execute Tasks any more

2021-08-22 Thread Laszlo Kishalmi (Jira)
Laszlo Kishalmi created NETBEANS-5941:
-

 Summary: Gradle Navigator can't execute Tasks any more
 Key: NETBEANS-5941
 URL: https://issues.apache.org/jira/browse/NETBEANS-5941
 Project: NetBeans
  Issue Type: Bug
Reporter: Laszlo Kishalmi
Assignee: Laszlo Kishalmi


This is a regression happened with enabled state added to Gradle actions.



--
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-5349) Update Netbeans Codebase to Account for deprecated/removed API in Java 11/15

2021-08-22 Thread Eric Bresie (Jira)


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

Eric Bresie updated NETBEANS-5349:
--
Labels: deprecation  (was: )

> Update Netbeans Codebase to Account for deprecated/removed API in Java 11/15
> 
>
> Key: NETBEANS-5349
> URL: https://issues.apache.org/jira/browse/NETBEANS-5349
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
> Environment: As this is Java emphasis this should impact each OS 
> environment and involve the applicable Java involved (i.e. as of a given Java 
> version, the API may no longer be available and require replacements to newer 
> APIs)
>Reporter: Eric Bresie
>Priority: Major
>  Labels: deprecation
> Attachments: Java-Deprecated-RemovedApis(11-15).csv
>
>
> In more recent Java releases, efforts have been made to deprecate and remove 
> unused or out of data APIs.  This ticket is a parent ticket to address future 
> updates to applicable projects where the NetBeans codebase utilized these 
> deprecated and/or removed interfaces. 
> This ticket has emphasis on Java 11 depreciations but similar type of work 
> could be done on newer java releases going forward (i.e. each LTS release)
> For items related as of Java 11 see 
> [https://docs.oracle.com/en/java/javase/11/docs/api/deprecated-list.html]
> As part of this work, it will requiring analysis of each project code base 
> and identify where depreciated or removed API are in used,  For each of the 
> given occurrences the 
> When changes are implemented, this will impact the build source (and possible 
> target) dependencies (i.e. changes will be needed anyplace where 
> javac.source, javac.target) may be impacted.  These would have to be updated 
> to be version relative to the applicable version.
> For items related as of Java 15 See
> [https://docs.oracle.com/en/java/javase/15/docs/api/deprecated-list.html]
>  



--
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-5940) found a bug in the application!

2021-08-22 Thread mmx233 (Jira)


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

mmx233 updated NETBEANS-5940:
-
Attachment: uigestures.1

> found a bug in the application!
> ---
>
> Key: NETBEANS-5940
> URL: https://issues.apache.org/jira/browse/NETBEANS-5940
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 12.0
> Environment: System Info: 
>  Product Version = Apache NetBeans IDE 12.0
>  Operating System = Windows 7 version 6.1 running on amd64
>  Java; VM; Vendor = 1.8.0_91; Java HotSpot(TM) 64-Bit Server VM 25.91-b14; 
> Oracle Corporation
>  Runtime = Java(TM) SE Runtime Environment 1.8.0_91-b14
>  Java Home = C:\Program Files\Java\jdk1.8.0_91\jre
>  System Locale; Encoding = en_US (nb); Cp1252
>Reporter: mmx233
>Priority: Minor
> Attachments: messages.log, messages.log.1, messages.log.2, 
> uigestures, uigestures.1
>
>
> h3. You have found a bug in the application!
> Please help Apache NetBeans by reporting this problem to our bug tracking 
> system. Click _View Data_ button, copy the exception and submit it together 
> with detailed information about what you were trying to achieve before the 
> problem occurred in 
> [JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].
> Thank you for helping us make Apache NetBeans better!
>  



--
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-5940) found a bug in the application!

2021-08-22 Thread mmx233 (Jira)


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

mmx233 updated NETBEANS-5940:
-
Attachment: uigestures

> found a bug in the application!
> ---
>
> Key: NETBEANS-5940
> URL: https://issues.apache.org/jira/browse/NETBEANS-5940
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 12.0
> Environment: System Info: 
>  Product Version = Apache NetBeans IDE 12.0
>  Operating System = Windows 7 version 6.1 running on amd64
>  Java; VM; Vendor = 1.8.0_91; Java HotSpot(TM) 64-Bit Server VM 25.91-b14; 
> Oracle Corporation
>  Runtime = Java(TM) SE Runtime Environment 1.8.0_91-b14
>  Java Home = C:\Program Files\Java\jdk1.8.0_91\jre
>  System Locale; Encoding = en_US (nb); Cp1252
>Reporter: mmx233
>Priority: Minor
> Attachments: messages.log, messages.log.1, messages.log.2, 
> uigestures, uigestures.1
>
>
> h3. You have found a bug in the application!
> Please help Apache NetBeans by reporting this problem to our bug tracking 
> system. Click _View Data_ button, copy the exception and submit it together 
> with detailed information about what you were trying to achieve before the 
> problem occurred in 
> [JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].
> Thank you for helping us make Apache NetBeans better!
>  



--
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-5940) found a bug in the application!

2021-08-22 Thread mmx233 (Jira)


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

mmx233 updated NETBEANS-5940:
-
Attachment: messages.log.2

> found a bug in the application!
> ---
>
> Key: NETBEANS-5940
> URL: https://issues.apache.org/jira/browse/NETBEANS-5940
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 12.0
> Environment: System Info: 
>  Product Version = Apache NetBeans IDE 12.0
>  Operating System = Windows 7 version 6.1 running on amd64
>  Java; VM; Vendor = 1.8.0_91; Java HotSpot(TM) 64-Bit Server VM 25.91-b14; 
> Oracle Corporation
>  Runtime = Java(TM) SE Runtime Environment 1.8.0_91-b14
>  Java Home = C:\Program Files\Java\jdk1.8.0_91\jre
>  System Locale; Encoding = en_US (nb); Cp1252
>Reporter: mmx233
>Priority: Minor
> Attachments: messages.log, messages.log.1, messages.log.2, uigestures
>
>
> h3. You have found a bug in the application!
> Please help Apache NetBeans by reporting this problem to our bug tracking 
> system. Click _View Data_ button, copy the exception and submit it together 
> with detailed information about what you were trying to achieve before the 
> problem occurred in 
> [JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].
> Thank you for helping us make Apache NetBeans better!
>  



--
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-5940) found a bug in the application!

2021-08-22 Thread mmx233 (Jira)


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

mmx233 updated NETBEANS-5940:
-
Attachment: messages.log

> found a bug in the application!
> ---
>
> Key: NETBEANS-5940
> URL: https://issues.apache.org/jira/browse/NETBEANS-5940
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 12.0
> Environment: System Info: 
>  Product Version = Apache NetBeans IDE 12.0
>  Operating System = Windows 7 version 6.1 running on amd64
>  Java; VM; Vendor = 1.8.0_91; Java HotSpot(TM) 64-Bit Server VM 25.91-b14; 
> Oracle Corporation
>  Runtime = Java(TM) SE Runtime Environment 1.8.0_91-b14
>  Java Home = C:\Program Files\Java\jdk1.8.0_91\jre
>  System Locale; Encoding = en_US (nb); Cp1252
>Reporter: mmx233
>Priority: Minor
> Attachments: messages.log, messages.log.1, messages.log.2, uigestures
>
>
> h3. You have found a bug in the application!
> Please help Apache NetBeans by reporting this problem to our bug tracking 
> system. Click _View Data_ button, copy the exception and submit it together 
> with detailed information about what you were trying to achieve before the 
> problem occurred in 
> [JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].
> Thank you for helping us make Apache NetBeans better!
>  



--
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-5940) found a bug in the application!

2021-08-22 Thread mmx233 (Jira)


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

mmx233 updated NETBEANS-5940:
-
Attachment: messages.log.1

> found a bug in the application!
> ---
>
> Key: NETBEANS-5940
> URL: https://issues.apache.org/jira/browse/NETBEANS-5940
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 12.0
> Environment: System Info: 
>  Product Version = Apache NetBeans IDE 12.0
>  Operating System = Windows 7 version 6.1 running on amd64
>  Java; VM; Vendor = 1.8.0_91; Java HotSpot(TM) 64-Bit Server VM 25.91-b14; 
> Oracle Corporation
>  Runtime = Java(TM) SE Runtime Environment 1.8.0_91-b14
>  Java Home = C:\Program Files\Java\jdk1.8.0_91\jre
>  System Locale; Encoding = en_US (nb); Cp1252
>Reporter: mmx233
>Priority: Minor
> Attachments: messages.log, messages.log.1, messages.log.2, uigestures
>
>
> h3. You have found a bug in the application!
> Please help Apache NetBeans by reporting this problem to our bug tracking 
> system. Click _View Data_ button, copy the exception and submit it together 
> with detailed information about what you were trying to achieve before the 
> problem occurred in 
> [JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].
> Thank you for helping us make Apache NetBeans better!
>  



--
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-5940) found a bug in the application!

2021-08-22 Thread mmx233 (Jira)


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

mmx233 updated NETBEANS-5940:
-
Description: 
h3. You have found a bug in the application!

Please help Apache NetBeans by reporting this problem to our bug tracking 
system. Click _View Data_ button, copy the exception and submit it together 
with detailed information about what you were trying to achieve before the 
problem occurred in 
[JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].

Thank you for helping us make Apache NetBeans better!

 

  was:
h3. You have found a bug in the application!

Please help Apache NetBeans by reporting this problem to our bug tracking 
system. Click _View Data_ button, copy the exception and submit it together 
with detailed information about what you were trying to achieve before the 
problem occurred in 
[JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].

Thank you for helping us make Apache NetBeans better!

[^messages.log]

^[^messages.log.1]^

^[^messages.log.2]^

^[^uigestures]^

^[^uigestures.1]^


> found a bug in the application!
> ---
>
> Key: NETBEANS-5940
> URL: https://issues.apache.org/jira/browse/NETBEANS-5940
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 12.0
> Environment: System Info: 
>  Product Version = Apache NetBeans IDE 12.0
>  Operating System = Windows 7 version 6.1 running on amd64
>  Java; VM; Vendor = 1.8.0_91; Java HotSpot(TM) 64-Bit Server VM 25.91-b14; 
> Oracle Corporation
>  Runtime = Java(TM) SE Runtime Environment 1.8.0_91-b14
>  Java Home = C:\Program Files\Java\jdk1.8.0_91\jre
>  System Locale; Encoding = en_US (nb); Cp1252
>Reporter: mmx233
>Priority: Minor
>
> h3. You have found a bug in the application!
> Please help Apache NetBeans by reporting this problem to our bug tracking 
> system. Click _View Data_ button, copy the exception and submit it together 
> with detailed information about what you were trying to achieve before the 
> problem occurred in 
> [JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].
> Thank you for helping us make Apache NetBeans better!
>  



--
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-5940) found a bug in the application!

2021-08-22 Thread mmx233 (Jira)
mmx233 created NETBEANS-5940:


 Summary: found a bug in the application!
 Key: NETBEANS-5940
 URL: https://issues.apache.org/jira/browse/NETBEANS-5940
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Editor
Affects Versions: 12.0
 Environment: System Info: 
 Product Version = Apache NetBeans IDE 12.0
 Operating System = Windows 7 version 6.1 running on amd64
 Java; VM; Vendor = 1.8.0_91; Java HotSpot(TM) 64-Bit Server VM 25.91-b14; 
Oracle Corporation
 Runtime = Java(TM) SE Runtime Environment 1.8.0_91-b14
 Java Home = C:\Program Files\Java\jdk1.8.0_91\jre
 System Locale; Encoding = en_US (nb); Cp1252
Reporter: mmx233


h3. You have found a bug in the application!

Please help Apache NetBeans by reporting this problem to our bug tracking 
system. Click _View Data_ button, copy the exception and submit it together 
with detailed information about what you were trying to achieve before the 
problem occurred in 
[JIRA|https://issues.apache.org/jira/projects/NETBEANS/issues].

Thank you for helping us make Apache NetBeans better!

[^messages.log]

^[^messages.log.1]^

^[^messages.log.2]^

^[^uigestures]^

^[^uigestures.1]^



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

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

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



[jira] [Updated] (NETBEANS-5939) xmltools4netbeans plugin - should be made available in the default plugin center of current IDE version 12.x or better

2021-08-22 Thread Qingtian Wang (Jira)


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

Qingtian Wang updated NETBEANS-5939:

Description: 
The plugin remains very useful when working with XML-based tasks.

 

It's a pity one has to google and scour the internet to get it. There is also 
one desktop manager related library being out of date with the latest IDE 
version; hopefully that's a quick and easy fix.

  was:The plugin remains very useful when working with XML-based tasks. It's a 
pity one has to google and scour the internet to find get it.


> xmltools4netbeans plugin - should be made available in the default plugin 
> center of current IDE version 12.x or better
> --
>
> Key: NETBEANS-5939
> URL: https://issues.apache.org/jira/browse/NETBEANS-5939
> Project: NetBeans
>  Issue Type: Wish
>  Components: xml - Text-Edit
>Affects Versions: Next
> Environment: Windows 10 64 bit
>Reporter: Qingtian Wang
>Assignee: Geertjan Wielenga
>Priority: Major
>
> The plugin remains very useful when working with XML-based tasks.
>  
> It's a pity one has to google and scour the internet to get it. There is also 
> one desktop manager related library being out of date with the latest IDE 
> version; hopefully that's a quick and easy fix.



--
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-5939) xmltools4netbeans plugin - should be made available in the default plugin center of current IDE version 12.x or better

2021-08-22 Thread Qingtian Wang (Jira)


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

Qingtian Wang updated NETBEANS-5939:

Description: The plugin remains very useful when working with XML-based 
tasks. It's a pity one has to google and scour the internet to find get it.  
(was: The plugin remains very useful when working with XML-based tasks.)

> xmltools4netbeans plugin - should be made available in the default plugin 
> center of current IDE version 12.x or better
> --
>
> Key: NETBEANS-5939
> URL: https://issues.apache.org/jira/browse/NETBEANS-5939
> Project: NetBeans
>  Issue Type: Wish
>  Components: xml - Text-Edit
>Affects Versions: Next
> Environment: Windows 10 64 bit
>Reporter: Qingtian Wang
>Assignee: Geertjan Wielenga
>Priority: Major
>
> The plugin remains very useful when working with XML-based tasks. It's a pity 
> one has to google and scour the internet to find get it.



--
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-5939) xmltools4netbeans plugin - should be made available in the default plugin center of current IDE version 12.x or better

2021-08-22 Thread Qingtian Wang (Jira)


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

Qingtian Wang updated NETBEANS-5939:

Affects Version/s: (was: 11.1)
   Next

> xmltools4netbeans plugin - should be made available in the default plugin 
> center of current IDE version 12.x or better
> --
>
> Key: NETBEANS-5939
> URL: https://issues.apache.org/jira/browse/NETBEANS-5939
> Project: NetBeans
>  Issue Type: Wish
>  Components: xml - Text-Edit
>Affects Versions: Next
> Environment: Windows 10 64 bit
>Reporter: Qingtian Wang
>Assignee: Geertjan Wielenga
>Priority: Major
>
> The plugin remains very useful when working with XML-based tasks.



--
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-5939) xmltools4netbeans plugin - should be made available in the default plugin center of current IDE version 12.x or better

2021-08-22 Thread Qingtian Wang (Jira)


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

Qingtian Wang updated NETBEANS-5939:

Description: The plugin remains very useful when working with XML-based 
tasks.  (was: This plugin

[http://plugins.netbeans.org/plugin/40292/xmltools4netbeans]

 

installs OK with version 11, but won't install in version 11.1

 

 

See attachment for error.)

> xmltools4netbeans plugin - should be made available in the default plugin 
> center of current IDE version 12.x or better
> --
>
> Key: NETBEANS-5939
> URL: https://issues.apache.org/jira/browse/NETBEANS-5939
> Project: NetBeans
>  Issue Type: Wish
>  Components: xml - Text-Edit
>Affects Versions: 11.1
> Environment: Windows 10 64 bit
>Reporter: Qingtian Wang
>Assignee: Geertjan Wielenga
>Priority: Major
>
> The plugin remains very useful when working with XML-based tasks.



--
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-5939) xmltools4netbeans plugin - should be made available in the default plugin center of current IDE version 12.x or better

2021-08-22 Thread Qingtian Wang (Jira)
Qingtian Wang created NETBEANS-5939:
---

 Summary: xmltools4netbeans plugin - should be made available in 
the default plugin center of current IDE version 12.x or better
 Key: NETBEANS-5939
 URL: https://issues.apache.org/jira/browse/NETBEANS-5939
 Project: NetBeans
  Issue Type: Wish
  Components: xml - Text-Edit
Affects Versions: 11.1
 Environment: Windows 10 64 bit
Reporter: Qingtian Wang
Assignee: Geertjan Wielenga


This plugin

[http://plugins.netbeans.org/plugin/40292/xmltools4netbeans]

 

installs OK with version 11, but won't install in version 11.1

 

 

See attachment for error.



--
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-5938) Full support of WSL on the IDE base level

2021-08-22 Thread Qingtian Wang (Jira)


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

Qingtian Wang updated NETBEANS-5938:

Description: 
There are bugs and issues opened on various features of the IDE not working 
with projects located in the WSL system.

 

The wish/request is that the IDE support WSL on the base level:

 

Transparent to the user, if a project is located on WSL file system, the IDE 
should be using the runtime profile (JDK, terminal, etc...) of the Linux distro 
of the WSL, instead of that of Windows, to work with the project. This includes 
but not limited to using the Linux installations of JDK, Maven, Gradle, git, 
docker,... i.e. the entire dev profile of the Linux distro, while the IDE is 
running in Windows. 

 

It would be similar to Visual Studio Code's remote debug feature for WSL, or 
IntelliJ IDEA's WSL support. Other than the IDE software itself, the runtime 
profile should completely and transparently switch to the Linux/WSL distro when 
working with a WSL based project. 

  was:
There are bugs and issues opened on various features of the IDE not working 
with projects located in the WSL system.

 

The wish/request is that the IDE support WSL on the base level:

 

Transparent to the user, if a project is located on WSL file system, the IDE 
should be using the runtimes (JDK, terminal, etc...) of the Linux distro of the 
WSL to work with the project. This includes but not limited to using the Linux 
installations of JDK, Maven, Gradle, git, docker,... i.e. the entire dev 
profile of the Linux distro, while the IDE is running in Windows. 

 

It would be similar to Visual Studio Code's remote debug feature for WSL, or 
IntelliJ IDEA's WSL support. Other than the IDE software itself, the runtime 
profile should completely and transparently switch to the Linux/WSL distro when 
working with a WSL based project. 


> Full support of WSL on the IDE base level
> -
>
> Key: NETBEANS-5938
> URL: https://issues.apache.org/jira/browse/NETBEANS-5938
> Project: NetBeans
>  Issue Type: Wish
>  Components: ide - Features On Demand
> Environment: Windows WSL 2
>Reporter: Qingtian Wang
>Priority: Major
>
> There are bugs and issues opened on various features of the IDE not working 
> with projects located in the WSL system.
>  
> The wish/request is that the IDE support WSL on the base level:
>  
> Transparent to the user, if a project is located on WSL file system, the IDE 
> should be using the runtime profile (JDK, terminal, etc...) of the Linux 
> distro of the WSL, instead of that of Windows, to work with the project. This 
> includes but not limited to using the Linux installations of JDK, Maven, 
> Gradle, git, docker,... i.e. the entire dev profile of the Linux distro, 
> while the IDE is running in Windows. 
>  
> It would be similar to Visual Studio Code's remote debug feature for WSL, or 
> IntelliJ IDEA's WSL support. Other than the IDE software itself, the runtime 
> profile should completely and transparently switch to the Linux/WSL distro 
> when working with a WSL based project. 



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