(netbeans-antora-ui) branch dependabot/npm_and_yarn/all-dependencies-51088fa365 created (now 4518491)

2024-04-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/all-dependencies-51088fa365
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git


  at 4518491  Bump sass from 1.74.1 to 1.75.0 in the all-dependencies group

No new revisions were added by this update.


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

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



(netbeans) branch revert-6866-jtulach/TruffleBreakpoints created (now e19ed990d4)

2024-04-11 Thread mbien
This is an automated email from the ASF dual-hosted git repository.

mbien pushed a change to branch revert-6866-jtulach/TruffleBreakpoints
in repository https://gitbox.apache.org/repos/asf/netbeans.git


  at e19ed990d4 Revert "Allow user to manipulate Truffle breakpoints"

This branch includes the following new commits:

 new e19ed990d4 Revert "Allow user to manipulate Truffle breakpoints"

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



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

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



(netbeans) 01/01: Revert "Allow user to manipulate Truffle breakpoints"

2024-04-11 Thread mbien
This is an automated email from the ASF dual-hosted git repository.

mbien pushed a commit to branch revert-6866-jtulach/TruffleBreakpoints
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit e19ed990d482a26b4ef4b895486f9f51b46b342c
Author: Michael Bien 
AuthorDate: Thu Apr 11 21:46:44 2024 +0200

Revert "Allow user to manipulate Truffle breakpoints"
---
 .../modules/debugger/jpda/truffle/RemoteServices.java   |  3 +--
 .../debugger/jpda/truffle/TruffleDebugManager.java  | 17 +
 .../debugger/jpda/truffle/access/TruffleAccess.java |  5 ++---
 .../jpda/truffle/actions/StepActionProvider.java|  3 +--
 .../breakpoints/impl/TruffleBreakpointsHandler.java |  3 +--
 5 files changed, 10 insertions(+), 21 deletions(-)

diff --git 
a/java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/RemoteServices.java
 
b/java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/RemoteServices.java
index 66436c3ca8..7c18aeb95f 100644
--- 
a/java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/RemoteServices.java
+++ 
b/java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/RemoteServices.java
@@ -83,7 +83,6 @@ import 
org.netbeans.modules.debugger.jpda.jdi.UnsupportedOperationExceptionWrapp
 import org.netbeans.modules.debugger.jpda.jdi.VMDisconnectedExceptionWrapper;
 import org.netbeans.modules.debugger.jpda.jdi.VirtualMachineWrapper;
 import org.netbeans.modules.debugger.jpda.models.JPDAThreadImpl;
-import static 
org.netbeans.modules.debugger.jpda.truffle.TruffleDebugManager.configureTruffleBreakpoint;
 
 import org.openide.util.Exceptions;
 import org.openide.util.RequestProcessor;
@@ -331,7 +330,7 @@ public final class RemoteServices {
 
 mb.setBreakpointType(MethodBreakpoint.TYPE_METHOD_ENTRY);
 mb.setSuspend(MethodBreakpoint.SUSPEND_EVENT_THREAD);
-configureTruffleBreakpoint(mb);
+mb.setHidden(true);
 mb.setThreadFilters(dbg, new JPDAThread[] { awtThread });
 mb.addJPDABreakpointListener(new JPDABreakpointListener() {
 @Override
diff --git 
a/java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/TruffleDebugManager.java
 
b/java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/TruffleDebugManager.java
index 3238c85881..083558d04b 100644
--- 
a/java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/TruffleDebugManager.java
+++ 
b/java/debugger.jpda.truffle/src/org/netbeans/modules/debugger/jpda/truffle/TruffleDebugManager.java
@@ -53,7 +53,6 @@ import 
org.netbeans.modules.debugger.jpda.truffle.actions.PauseInGraalScriptActi
 import org.netbeans.modules.javascript2.debug.breakpoints.JSLineBreakpoint;
 import org.netbeans.spi.debugger.ActionsProvider;
 import org.netbeans.spi.debugger.DebuggerServiceRegistration;
-import org.openide.util.NbBundle;
 
 /**
  * Initiates guest language debugging, detects Engine in the JVM.
@@ -95,7 +94,7 @@ public class TruffleDebugManager extends 
DebuggerManagerAdapter {
 */
 debugManagerLoadBP = MethodBreakpoint.create(ENGINE_BUILDER_CLASS, 
"build");
 ((MethodBreakpoint) 
debugManagerLoadBP).setBreakpointType(MethodBreakpoint.TYPE_METHOD_ENTRY);
-configureTruffleBreakpoint(debugManagerLoadBP);
+debugManagerLoadBP.setHidden(true);
 
 LOG.log(Level.FINE, "TruffleDebugManager.initBreakpoints(): submitted 
BP {0}", debugManagerLoadBP);
 TruffleAccess.init();
@@ -156,7 +155,7 @@ public class TruffleDebugManager extends 
DebuggerManagerAdapter {
 private JPDABreakpoint addRemoteServiceInitBP(final JPDADebugger debugger) 
{
 MethodBreakpoint bp = 
MethodBreakpoint.create(REMOTE_SERVICES_TRIGGER_CLASS, 
REMOTE_SERVICES_TRIGGER_METHOD);
 bp.setBreakpointType(MethodBreakpoint.TYPE_METHOD_ENTRY);
-configureTruffleBreakpoint(bp);
+bp.setHidden(true);
 bp.setSession(debugger);
 
 JPDABreakpointListener bpl = new JPDABreakpointListener() {
@@ -228,11 +227,11 @@ public class TruffleDebugManager extends 
DebuggerManagerAdapter {
  */
 private void handleEngineBuilder(final JPDADebugger debugger, 
JPDABreakpointEvent entryEvent) {
 MethodBreakpoint builderExitBreakpoint = 
MethodBreakpoint.create(ENGINE_BUILDER_CLASS, "build");
-
builderExitBreakpoint.setBreakpointType(MethodBreakpoint.TYPE_METHOD_ENTRY);
+
builderExitBreakpoint.setBreakpointType(MethodBreakpoint.TYPE_METHOD_EXIT);
 builderExitBreakpoint.setThreadFilters(debugger, new 
JPDAThread[]{entryEvent.getThread()});
 builderExitBreakpoint.setSuspend(JPDABreakpoint.SUSPEND_EVENT_THREAD);
 builderExitBreakpoint.setSession(debugger);
-configureTruffleBreakpoint(builderExitBreakpoint);
+builderExitBreakpoint.setHidden(true);
 builderExitBreakpoint.addJPDABreakpointListener(exitEvent -> {
 

(netbeans) 01/01: Merge pull request #7222 from matthiasblaesing/ns_jsf4

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

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

commit e8fb660e9fe47f14991e46a22ffcb38bf37bab75
Merge: a80767db74 65e0d51591
Author: Matthias Bläsing 
AuthorDate: Thu Apr 11 18:01:33 2024 +0200

Merge pull request #7222 from matthiasblaesing/ns_jsf4

JSF Facelets template wizard: Support JSF 4+ namespace

 .../templates/compositionTemplateClient.template |  2 +-
 .../resources/templates/htmlTemplateClient.template  |  2 +-
 .../resources/templates/template-css-1.template  |  4 ++--
 .../resources/templates/template-css-2.template  |  4 ++--
 .../resources/templates/template-css-3.template  |  4 ++--
 .../resources/templates/template-css-4.template  |  4 ++--
 .../resources/templates/template-css-5.template  |  4 ++--
 .../resources/templates/template-css-6.template  |  4 ++--
 .../resources/templates/template-css-7.template  |  4 ++--
 .../resources/templates/template-css-8.template  |  4 ++--
 .../resources/templates/template-table-1.template|  4 ++--
 .../resources/templates/template-table-2.template|  4 ++--
 .../resources/templates/template-table-3.template|  4 ++--
 .../resources/templates/template-table-4.template|  4 ++--
 .../resources/templates/template-table-5.template|  4 ++--
 .../resources/templates/template-table-6.template|  4 ++--
 .../resources/templates/template-table-7.template|  4 ++--
 .../resources/templates/template-table-8.template|  4 ++--
 .../web/jsf/wizards/TemplateClientIterator.java  | 20 ++--
 .../modules/web/jsf/wizards/TemplateIterator.java| 12 
 20 files changed, 60 insertions(+), 40 deletions(-)


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

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



(netbeans) branch master updated (a80767db74 -> e8fb660e9f)

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

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


from a80767db74 Merge pull request #7239 from neilcsmith-net/dashboard-api
 add 65e0d51591 JSF Facelets template wizard: Support JSF 4+ namespace
 new e8fb660e9f Merge pull request #7222 from matthiasblaesing/ns_jsf4

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


Summary of changes:
 .../templates/compositionTemplateClient.template |  2 +-
 .../resources/templates/htmlTemplateClient.template  |  2 +-
 .../resources/templates/template-css-1.template  |  4 ++--
 .../resources/templates/template-css-2.template  |  4 ++--
 .../resources/templates/template-css-3.template  |  4 ++--
 .../resources/templates/template-css-4.template  |  4 ++--
 .../resources/templates/template-css-5.template  |  4 ++--
 .../resources/templates/template-css-6.template  |  4 ++--
 .../resources/templates/template-css-7.template  |  4 ++--
 .../resources/templates/template-css-8.template  |  4 ++--
 .../resources/templates/template-table-1.template|  4 ++--
 .../resources/templates/template-table-2.template|  4 ++--
 .../resources/templates/template-table-3.template|  4 ++--
 .../resources/templates/template-table-4.template|  4 ++--
 .../resources/templates/template-table-5.template|  4 ++--
 .../resources/templates/template-table-6.template|  4 ++--
 .../resources/templates/template-table-7.template|  4 ++--
 .../resources/templates/template-table-8.template|  4 ++--
 .../web/jsf/wizards/TemplateClientIterator.java  | 20 ++--
 .../modules/web/jsf/wizards/TemplateIterator.java| 12 
 20 files changed, 60 insertions(+), 40 deletions(-)


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

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



(netbeans-antora-ui) 01/01: Merge pull request #29 from apache/dependabot/npm_and_yarn/all-dependencies-94165c25fd

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git

commit 003c5dec8cf2d417d9cee14e9c909d073728b10c
Merge: ab99e6c cf09112
Author: Eric Barboni 
AuthorDate: Thu Apr 11 11:24:23 2024 +0200

Merge pull request #29 from 
apache/dependabot/npm_and_yarn/all-dependencies-94165c25fd

Bump gulp-eslint-new from 1.9.1 to 2.0.0 in the all-dependencies group

 package-lock.json | 18 +-
 package.json  |  2 +-
 2 files changed, 10 insertions(+), 10 deletions(-)


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

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



(netbeans-antora-ui) branch dependabot/npm_and_yarn/all-dependencies-94165c25fd deleted (was cf09112)

2024-04-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/all-dependencies-94165c25fd
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git


 was cf09112  Bump gulp-eslint-new from 1.9.1 to 2.0.0 in the 
all-dependencies group

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.


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

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



(netbeans-antora-ui) branch main updated (ab99e6c -> 003c5de)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git


from ab99e6c  Merge pull request #28 from 
apache/dependabot/npm_and_yarn/all-dependencies-3ff3f232f4
 add cf09112  Bump gulp-eslint-new from 1.9.1 to 2.0.0 in the 
all-dependencies group
 new 003c5de  Merge pull request #29 from 
apache/dependabot/npm_and_yarn/all-dependencies-94165c25fd

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


Summary of changes:
 package-lock.json | 18 +-
 package.json  |  2 +-
 2 files changed, 10 insertions(+), 10 deletions(-)


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

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



(netbeans-mavenutils-nbm-maven-plugin) branch dependabot/maven/master/org.apache.maven-maven-archiver-3.6.2 deleted (was 45465b0)

2024-04-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.maven-maven-archiver-3.6.2
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


 was 45465b0  Bump org.apache.maven:maven-archiver from 3.6.1 to 3.6.2

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.


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

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



(netbeans-mavenutils-nbm-maven-plugin) branch dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.6.1 deleted (was 3b16c3a)

2024-04-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.6.1
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


 was 3b16c3a  Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.0 
to 3.6.1

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.


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

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



(netbeans-mavenutils-nbm-maven-plugin) branch master updated (7e10c41 -> 045da96)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from 7e10c41  Merge pull request #164 from 
apache/dependabot/maven/master/maven.plugin.version-3.12.0
 add 45465b0  Bump org.apache.maven:maven-archiver from 3.6.1 to 3.6.2
 add 045da96  Merge pull request #162 from 
apache/dependabot/maven/master/org.apache.maven-maven-archiver-3.6.2

No new revisions were added by this update.

Summary of changes:
 nbm-maven-plugin/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


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

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



(netbeans-mavenutils-nbm-maven-plugin) branch master updated (63d8681 -> 7e10c41)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from 63d8681  Merge pull request #161 from ebarboni/asmdirect
 add f0f70c8  Bump maven.plugin.version from 3.11.0 to 3.12.0
 add 7e10c41  Merge pull request #164 from 
apache/dependabot/maven/master/maven.plugin.version-3.12.0

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


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

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



(netbeans-mavenutils-nbm-maven-plugin) branch master updated (045da96 -> b72257e)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from 045da96  Merge pull request #162 from 
apache/dependabot/maven/master/org.apache.maven-maven-archiver-3.6.2
 add 3b16c3a  Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.0 
to 3.6.1
 add b72257e  Merge pull request #163 from 
apache/dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.6.1

No new revisions were added by this update.

Summary of changes:
 nbm-maven-plugin/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


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

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



(netbeans-mavenutils-nbm-maven-plugin) branch dependabot/maven/master/maven.plugin.version-3.12.0 deleted (was f0f70c8)

2024-04-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/maven.plugin.version-3.12.0
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


 was f0f70c8  Bump maven.plugin.version from 3.11.0 to 3.12.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.


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

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



(netbeans-antora-site) 01/01: Merge pull request #21 from ebarboni/timblog

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-site.git

commit b3d84a1033c71bdb651ca2b1367ea636fb9430cd
Merge: cfeabe6 f3441c3
Author: Eric Barboni 
AuthorDate: Thu Apr 11 10:47:35 2024 +0200

Merge pull request #21 from ebarboni/timblog

add tim swing table entry and forward to web archive

 .../pages/blogs/timboudreau/egads_an_actual.adoc   | 31 ++
 1 file changed, 31 insertions(+)


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

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



(netbeans-antora-tutorials) 01/01: Merge pull request #15 from ebarboni/codecompletionsample

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-tutorials.git

commit 49c06451342fa386abdfb863d76172ae32829501
Merge: 354b8cc6 dac8986b
Author: Eric Barboni 
AuthorDate: Thu Apr 11 10:47:08 2024 +0200

Merge pull request #15 from ebarboni/codecompletionsample

code completion tutorials fixes

 .../ROOT/pages/tutorials/nbm-code-completion.adoc  | 386 ++---
 1 file changed, 175 insertions(+), 211 deletions(-)


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

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



(netbeans-antora-site) branch main updated (cfeabe6 -> b3d84a1)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-site.git


from cfeabe6  Merge pull request #20 from ebarboni/databaseaddin
 add f3441c3  add tim entry and forward to web archive
 new b3d84a1  Merge pull request #21 from ebarboni/timblog

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


Summary of changes:
 .../netbeans_diff_api.adoc => timboudreau/egads_an_actual.adoc}   | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
 copy modules/ROOT/pages/blogs/{geertjan/netbeans_diff_api.adoc => 
timboudreau/egads_an_actual.adoc} (82%)


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

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



(netbeans-antora-tutorials) branch main updated (354b8cc6 -> 49c06451)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-tutorials.git


from 354b8cc6 Merge pull request #14 from ebarboni/linkfixes2
 add dac8986b code completion fixes
 new 49c06451 Merge pull request #15 from ebarboni/codecompletionsample

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


Summary of changes:
 .../ROOT/pages/tutorials/nbm-code-completion.adoc  | 386 ++---
 1 file changed, 175 insertions(+), 211 deletions(-)


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

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



(netbeans) 01/01: Merge pull request #7239 from neilcsmith-net/dashboard-api

2024-04-11 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

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

commit a80767db740141cf1a72b8fa0f732bef931fd6c0
Merge: b514aa3e25 fda32ddded
Author: Neil C Smith 
AuthorDate: Thu Apr 11 09:44:15 2024 +0100

Merge pull request #7239 from neilcsmith-net/dashboard-api

Add Dashboard API and use to provide replacement for Welcome page

 ide/projectui/nbproject/project.xml|1 +
 ide/utilities/nbproject/project.xml|1 +
 .../org/netbeans/modules/openfile/RecentFiles.java |   12 +-
 nb/ide.branding.kit/nbproject/project.xml  |   10 +-
 .../org/netbeans/modules/ide/branding/layer.xml|4 +-
 nb/ide.dashboard/build.xml |   24 +
 nb/ide.dashboard/manifest.mf   |7 +
 nb/ide.dashboard/nbproject/project.properties  |   21 +
 .../ide.dashboard}/nbproject/project.xml   |  123 +--
 .../modules/ide/dashboard/AppearanceWidget.java|  151 +++
 .../modules/ide/dashboard/Bundle.properties|   20 +
 .../netbeans/modules/ide/dashboard/HelpWidget.java |   79 ++
 .../modules/ide/dashboard/NetBeansWidget.java  |  121 +++
 .../modules/ide/dashboard/PluginsWidget.java   |   82 ++
 .../modules/ide/dashboard/RecentFilesWidget.java   |  208 
 .../ide/dashboard/RecentProjectsWidget.java|  248 +
 .../ide/dashboard/resources/apache-netbeans.png|  Bin 0 -> 5276 bytes
 .../modules/ide/dashboard/resources/layer.xml  |   75 ++
 nbbuild/cluster.properties |5 +-
 platform/api.dashboard/arch.xml| 1122 
 platform/api.dashboard/build.xml   |   25 +
 platform/api.dashboard/manifest.mf |8 +
 .../api.dashboard/nbproject/project.properties |   24 +
 platform/api.dashboard/nbproject/project.xml   |  105 ++
 .../netbeans/api/dashboard/DashboardManager.java   |   95 ++
 .../netbeans/modules/dashboard/Bundle.properties   |   21 +
 .../netbeans/modules/dashboard/DashboardPanel.java |  108 ++
 .../modules/dashboard/DashboardTopComponent.form   |   81 ++
 .../modules/dashboard/DashboardTopComponent.java   |  222 
 .../dashboard/DefaultDashboardDisplayer.java   |   62 ++
 .../modules/dashboard/ShowDashboardAction.java |   48 +
 .../modules/dashboard/WidgetComponents.java|  403 +++
 .../netbeans/modules/dashboard/WidgetPanel.java|  168 +++
 .../netbeans/spi/dashboard/DashboardDisplayer.java |  153 +++
 .../netbeans/spi/dashboard/DashboardWidget.java|  110 ++
 .../org/netbeans/spi/dashboard/WidgetElement.java  |  525 +
 .../org/netbeans/core/windows/view/EditorView.java |   11 +-
 37 files changed, 4385 insertions(+), 98 deletions(-)


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

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



(netbeans) branch master updated (b514aa3e25 -> a80767db74)

2024-04-11 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

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


from b514aa3e25 Merge pull request #7252 from pepness/glassfish-8-m4
 add fda32ddded Add Dashboard API and use to provide replacement for 
Welcome page in IDE.
 new a80767db74 Merge pull request #7239 from neilcsmith-net/dashboard-api

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


Summary of changes:
 ide/projectui/nbproject/project.xml|1 +
 ide/utilities/nbproject/project.xml|1 +
 .../org/netbeans/modules/openfile/RecentFiles.java |   12 +-
 nb/ide.branding.kit/nbproject/project.xml  |   10 +-
 .../org/netbeans/modules/ide/branding/layer.xml|4 +-
 nb/ide.dashboard/build.xml |   24 +
 nb/ide.dashboard/manifest.mf   |7 +
 nb/ide.dashboard/nbproject/project.properties  |   21 +
 .../ide.dashboard}/nbproject/project.xml   |  123 +--
 .../modules/ide/dashboard/AppearanceWidget.java|  151 +++
 .../modules/ide/dashboard/Bundle.properties|   20 +
 .../netbeans/modules/ide/dashboard/HelpWidget.java |   79 ++
 .../modules/ide/dashboard/NetBeansWidget.java  |  121 +++
 .../modules/ide/dashboard/PluginsWidget.java   |   82 ++
 .../modules/ide/dashboard/RecentFilesWidget.java   |  208 
 .../ide/dashboard/RecentProjectsWidget.java|  248 +
 .../ide/dashboard/resources}/apache-netbeans.png   |  Bin
 .../modules/ide/dashboard/resources/layer.xml  |   75 ++
 nbbuild/cluster.properties |5 +-
 platform/api.dashboard/arch.xml| 1122 
 platform/api.dashboard/build.xml   |   25 +
 platform/api.dashboard/manifest.mf |8 +
 .../api.dashboard/nbproject/project.properties |   24 +
 platform/api.dashboard/nbproject/project.xml   |  105 ++
 .../netbeans/api/dashboard/DashboardManager.java   |   95 ++
 .../netbeans/modules/dashboard/Bundle.properties   |   21 +
 .../netbeans/modules/dashboard/DashboardPanel.java |  108 ++
 .../modules/dashboard/DashboardTopComponent.form   |   81 ++
 .../modules/dashboard/DashboardTopComponent.java   |  222 
 .../dashboard/DefaultDashboardDisplayer.java   |   62 ++
 .../modules/dashboard/ShowDashboardAction.java |   48 +
 .../modules/dashboard/WidgetComponents.java|  403 +++
 .../netbeans/modules/dashboard/WidgetPanel.java|  168 +++
 .../netbeans/spi/dashboard/DashboardDisplayer.java |  153 +++
 .../netbeans/spi/dashboard/DashboardWidget.java|  110 ++
 .../org/netbeans/spi/dashboard/WidgetElement.java  |  525 +
 .../org/netbeans/core/windows/view/EditorView.java |   11 +-
 37 files changed, 4385 insertions(+), 98 deletions(-)
 create mode 100644 nb/ide.dashboard/build.xml
 create mode 100644 nb/ide.dashboard/manifest.mf
 create mode 100644 nb/ide.dashboard/nbproject/project.properties
 copy {ide/utilities => nb/ide.dashboard}/nbproject/project.xml (60%)
 create mode 100644 
nb/ide.dashboard/src/org/netbeans/modules/ide/dashboard/AppearanceWidget.java
 create mode 100644 
nb/ide.dashboard/src/org/netbeans/modules/ide/dashboard/Bundle.properties
 create mode 100644 
nb/ide.dashboard/src/org/netbeans/modules/ide/dashboard/HelpWidget.java
 create mode 100644 
nb/ide.dashboard/src/org/netbeans/modules/ide/dashboard/NetBeansWidget.java
 create mode 100644 
nb/ide.dashboard/src/org/netbeans/modules/ide/dashboard/PluginsWidget.java
 create mode 100644 
nb/ide.dashboard/src/org/netbeans/modules/ide/dashboard/RecentFilesWidget.java
 create mode 100644 
nb/ide.dashboard/src/org/netbeans/modules/ide/dashboard/RecentProjectsWidget.java
 copy nb/{ide.branding/src/org/netbeans/modules/ide/branding => 
ide.dashboard/src/org/netbeans/modules/ide/dashboard/resources}/apache-netbeans.png
 (100%)
 create mode 100644 
nb/ide.dashboard/src/org/netbeans/modules/ide/dashboard/resources/layer.xml
 create mode 100644 platform/api.dashboard/arch.xml
 create mode 100644 platform/api.dashboard/build.xml
 create mode 100644 platform/api.dashboard/manifest.mf
 create mode 100644 platform/api.dashboard/nbproject/project.properties
 create mode 100644 platform/api.dashboard/nbproject/project.xml
 create mode 100644 
platform/api.dashboard/src/org/netbeans/api/dashboard/DashboardManager.java
 create mode 100644 
platform/api.dashboard/src/org/netbeans/modules/dashboard/Bundle.properties
 create mode 100644 
platform/api.dashboard/src/org/netbeans/modules/dashboard/DashboardPanel.java
 create mode 100644 
platform/api.dashboard/src/org/netbeans/modules/dashboard/DashboardTopComponent.form
 create mode 100644 

(netbeans) branch master updated (46c7f63aca -> b514aa3e25)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


from 46c7f63aca Merge pull request #7153 from lahodaj/NETBEANS-3725a
 add 652a36fa2f Add support for GlassFish 7.0.14 and GlassFish 8.0.0-M4
 new b514aa3e25 Merge pull request #7252 from pepness/glassfish-8-m4

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


Summary of changes:
 .../modules/glassfish/common/Bundle.properties |  1 +
 .../modules/glassfish/common/ServerDetails.java| 15 +++--
 .../glassfish/common/wizards/Bundle.properties |  1 +
 .../glassfish/tooling/data/GlassFishVersion.java   |  8 +
 .../server/config/ConfigBuilderProvider.java   |  8 -
 .../glassfish/tooling/admin/AdminFactoryTest.java  |  4 +--
 .../tooling/data/GlassFishVersionTest.java |  6 ++--
 .../glassfish/tooling/utils/EnumUtilsTest.java | 38 +++---
 8 files changed, 55 insertions(+), 26 deletions(-)


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

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



(netbeans) 01/01: Merge pull request #7252 from pepness/glassfish-8-m4

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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

commit b514aa3e252a1209125cc4abd8a3d157af3207a6
Merge: 46c7f63aca 652a36fa2f
Author: Eric Barboni 
AuthorDate: Thu Apr 11 10:40:10 2024 +0200

Merge pull request #7252 from pepness/glassfish-8-m4

Add support for GlassFish 7.0.14 and GlassFish 8.0.0-M4

 .../modules/glassfish/common/Bundle.properties |  1 +
 .../modules/glassfish/common/ServerDetails.java| 15 +++--
 .../glassfish/common/wizards/Bundle.properties |  1 +
 .../glassfish/tooling/data/GlassFishVersion.java   |  8 +
 .../server/config/ConfigBuilderProvider.java   |  8 -
 .../glassfish/tooling/admin/AdminFactoryTest.java  |  4 +--
 .../tooling/data/GlassFishVersionTest.java |  6 ++--
 .../glassfish/tooling/utils/EnumUtilsTest.java | 38 +++---
 8 files changed, 55 insertions(+), 26 deletions(-)


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

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



(netbeans) branch master updated (393da614ff -> 46c7f63aca)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


from 393da614ff Merge pull request #6866 from 
jtulach/jtulach/TruffleBreakpoints
 add 021fbf8e0b [NETBEANS-3725] Preventing a crash in Flow due to 
unattributed ASTs (cleared nerrors prevents post attr to run in some cases).
 new 46c7f63aca Merge pull request #7153 from lahodaj/NETBEANS-3725a

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


Summary of changes:
 .../org/netbeans/api/java/source/JavaSource.java   |  6 ---
 .../api/java/source/ModificationResult.java|  2 -
 .../netbeans/api/java/source/JavaSourceTest.java   | 54 +-
 .../api/java/source/ModificationResultTest.java| 20 
 .../java/hints/spiimpl/batch/BatchUtilities.java   |  4 --
 .../hints/spiimpl/batch/BatchUtilitiesTest.java| 15 ++
 6 files changed, 77 insertions(+), 24 deletions(-)


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

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



(netbeans) 01/01: Merge pull request #7153 from lahodaj/NETBEANS-3725a

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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

commit 46c7f63aca1737abc262c13edc657f35eaad5156
Merge: 393da614ff 021fbf8e0b
Author: Eric Barboni 
AuthorDate: Thu Apr 11 10:37:05 2024 +0200

Merge pull request #7153 from lahodaj/NETBEANS-3725a

[NETBEANS-3725] Preventing a crash in Flow due to unattributed ASTs 
(cleared nerrors prevents post attr to run in some cases).

 .../org/netbeans/api/java/source/JavaSource.java   |  6 ---
 .../api/java/source/ModificationResult.java|  2 -
 .../netbeans/api/java/source/JavaSourceTest.java   | 54 +-
 .../api/java/source/ModificationResultTest.java| 20 
 .../java/hints/spiimpl/batch/BatchUtilities.java   |  4 --
 .../hints/spiimpl/batch/BatchUtilitiesTest.java| 15 ++
 6 files changed, 77 insertions(+), 24 deletions(-)


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

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



(netbeans) 01/01: Merge pull request #6866 from jtulach/jtulach/TruffleBreakpoints

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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

commit 393da614ff0997666124a9a2e37e5d5aad562771
Merge: b5294e0a7d 0afa33f180
Author: Eric Barboni 
AuthorDate: Thu Apr 11 10:35:16 2024 +0200

Merge pull request #6866 from jtulach/jtulach/TruffleBreakpoints

Allow user to manipulate Truffle breakpoints

 .../modules/debugger/jpda/truffle/RemoteServices.java   |  3 ++-
 .../debugger/jpda/truffle/TruffleDebugManager.java  | 17 -
 .../debugger/jpda/truffle/access/TruffleAccess.java |  5 +++--
 .../jpda/truffle/actions/StepActionProvider.java|  3 ++-
 .../breakpoints/impl/TruffleBreakpointsHandler.java |  3 ++-
 5 files changed, 21 insertions(+), 10 deletions(-)



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

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



(netbeans) branch master updated (b5294e0a7d -> 393da614ff)

2024-04-11 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


from b5294e0a7d Merge pull request #7251 from pepness/asm-9.7
 add 0afa33f180 Allow user to manipulate with Truffle breakpoints
 new 393da614ff Merge pull request #6866 from 
jtulach/jtulach/TruffleBreakpoints

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


Summary of changes:
 .../modules/debugger/jpda/truffle/RemoteServices.java   |  3 ++-
 .../debugger/jpda/truffle/TruffleDebugManager.java  | 17 -
 .../debugger/jpda/truffle/access/TruffleAccess.java |  5 +++--
 .../jpda/truffle/actions/StepActionProvider.java|  3 ++-
 .../breakpoints/impl/TruffleBreakpointsHandler.java |  3 ++-
 5 files changed, 21 insertions(+), 10 deletions(-)


-
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