[jira] [Commented] (NETBEANS-1097) "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater than JDK 8

2019-08-24 Thread Werner Harnisch (Jira)


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

Werner Harnisch commented on NETBEANS-1097:
---

Hi, Geertjan,

Sorry for my upset comment. Worked on JDK 8 as long as possible. Ran into this 
bug just today.

Regards

> "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater 
> than JDK 8
> 
>
> Key: NETBEANS-1097
> URL: https://issues.apache.org/jira/browse/NETBEANS-1097
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Project
>Affects Versions: 9.0, 10.0, 11.0, 11.1
>Reporter: Joonas Pulakka
>Priority: Major
>
> Steps to reproduce:
>  # File -> New Project -> Java Application -> Next -> Finish
>  # Right-click Libraries, Add JAR/Folder. Add whatever jar file.
>  # Check that project Properties -> Packaging -> Copy Dependent Libraries is 
> checked.
>  # Clean and Build project.
>  # Observe contents of dist\ directory.
> When Project -> Properties -> Source/Binary Format is JDK 8, there exists 
> dist\lib\ directory, and the jar added in step 1) is copied into that 
> directory, as expected, when Copy Dependent Libraries is checked.
> But when Source/Binary Format is greater than JDK 8, dist\lib\ directory does 
> not exist.
> The reason seems to be these parts in build-impl.xml:
> {code:java}
> 
> 
> 
> 
> 
> 
> 
> ...
> 
> 
> 
> 
> 
> 
> 
> 
> <-- WHY THIS 
> CONDITION??
> 
> 
> {code}
> I've observed that mkdist.disabled setting is "Copy Dependent Libraries" 
> checbox state negated. And do.mkdist controls the library copying.
> But why is this library copying connected to javac.source version in this 
> way? If by design, what should I do in order to get jars copied to dist\lib\ 
> as they used to?
> For now, a workaround seems to be manually deleting the weird
> {code:java}
> 
> 
> {code}
> part from build-impl.xml, but that needs to be re-done every time NetBeans 
> recreates it.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-1097) "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater than JDK 8

2019-08-24 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-1097:
-

You’re right, why haven’t you added this to the Apache NetBeans GitHub in all 
this time?

> "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater 
> than JDK 8
> 
>
> Key: NETBEANS-1097
> URL: https://issues.apache.org/jira/browse/NETBEANS-1097
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Project
>Affects Versions: 9.0, 10.0, 11.0, 11.1
>Reporter: Joonas Pulakka
>Priority: Major
>
> Steps to reproduce:
>  # File -> New Project -> Java Application -> Next -> Finish
>  # Right-click Libraries, Add JAR/Folder. Add whatever jar file.
>  # Check that project Properties -> Packaging -> Copy Dependent Libraries is 
> checked.
>  # Clean and Build project.
>  # Observe contents of dist\ directory.
> When Project -> Properties -> Source/Binary Format is JDK 8, there exists 
> dist\lib\ directory, and the jar added in step 1) is copied into that 
> directory, as expected, when Copy Dependent Libraries is checked.
> But when Source/Binary Format is greater than JDK 8, dist\lib\ directory does 
> not exist.
> The reason seems to be these parts in build-impl.xml:
> {code:java}
> 
> 
> 
> 
> 
> 
> 
> ...
> 
> 
> 
> 
> 
> 
> 
> 
> <-- WHY THIS 
> CONDITION??
> 
> 
> {code}
> I've observed that mkdist.disabled setting is "Copy Dependent Libraries" 
> checbox state negated. And do.mkdist controls the library copying.
> But why is this library copying connected to javac.source version in this 
> way? If by design, what should I do in order to get jars copied to dist\lib\ 
> as they used to?
> For now, a workaround seems to be manually deleting the weird
> {code:java}
> 
> 
> {code}
> part from build-impl.xml, but that needs to be re-done every time NetBeans 
> recreates it.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-1097) "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater than JDK 8

2019-08-24 Thread Werner Harnisch (Jira)


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

Werner Harnisch commented on NETBEANS-1097:
---

Much more important aspect of this bug is that 'Class-Path' Attribute is not 
included in MANIFEST.MF. So produced JAR file does not work because dependent 
libraries cannot be found!

This really is a MAJOR bug!

No workarounds?

No solutions?

Not assigend to anyone who can help?

Not even clear if this is a bug or a 'feature' by design?

For more than one year and 4 versions of NetBeans?

> "Copy Dependent Libraries" does not work if "Source/Binary Format" is greater 
> than JDK 8
> 
>
> Key: NETBEANS-1097
> URL: https://issues.apache.org/jira/browse/NETBEANS-1097
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Project
>Affects Versions: 9.0, 10.0, 11.0, 11.1
>Reporter: Joonas Pulakka
>Priority: Major
>
> Steps to reproduce:
>  # File -> New Project -> Java Application -> Next -> Finish
>  # Right-click Libraries, Add JAR/Folder. Add whatever jar file.
>  # Check that project Properties -> Packaging -> Copy Dependent Libraries is 
> checked.
>  # Clean and Build project.
>  # Observe contents of dist\ directory.
> When Project -> Properties -> Source/Binary Format is JDK 8, there exists 
> dist\lib\ directory, and the jar added in step 1) is copied into that 
> directory, as expected, when Copy Dependent Libraries is checked.
> But when Source/Binary Format is greater than JDK 8, dist\lib\ directory does 
> not exist.
> The reason seems to be these parts in build-impl.xml:
> {code:java}
> 
> 
> 
> 
> 
> 
> 
> ...
> 
> 
> 
> 
> 
> 
> 
> 
> <-- WHY THIS 
> CONDITION??
> 
> 
> {code}
> I've observed that mkdist.disabled setting is "Copy Dependent Libraries" 
> checbox state negated. And do.mkdist controls the library copying.
> But why is this library copying connected to javac.source version in this 
> way? If by design, what should I do in order to get jars copied to dist\lib\ 
> as they used to?
> For now, a workaround seems to be manually deleting the weird
> {code:java}
> 
> 
> {code}
> part from build-impl.xml, but that needs to be re-done every time NetBeans 
> recreates it.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3023) Not possible to open Java Platform dialog

2019-08-24 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi resolved NETBEANS-3023.
---
Fix Version/s: 11.2
   Resolution: Fixed

> Not possible to open Java Platform dialog
> -
>
> Key: NETBEANS-3023
> URL: https://issues.apache.org/jira/browse/NETBEANS-3023
> Project: NetBeans
>  Issue Type: Bug
> Environment: JDK 11, Netbeans 11.1, Ubuntu 
>Reporter: Reidar Tronstad
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.2
>
> Attachments: callback.txt
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Exception thrown when opening Java Platform dialog and the dialog is not 
> opened.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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: [NETBEANS-3023] Added null check to prevent the NPE

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 588a8e4  [NETBEANS-3023] Added null check to prevent the NPE
588a8e4 is described below

commit 588a8e4e57301e5b4fb4a907301f578ff1e80ea4
Author: Laszlo Kishalmi 
AuthorDate: Sat Aug 24 05:13:57 2019 -0700

[NETBEANS-3023] Added null check to prevent the NPE
---
 .../java/j2seplatform/platformdefinition/J2SEPlatformCustomizer.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/java/java.j2seplatform/src/org/netbeans/modules/java/j2seplatform/platformdefinition/J2SEPlatformCustomizer.java
 
b/java/java.j2seplatform/src/org/netbeans/modules/java/j2seplatform/platformdefinition/J2SEPlatformCustomizer.java
index b51fd1a..33b4d7f 100644
--- 
a/java/java.j2seplatform/src/org/netbeans/modules/java/j2seplatform/platformdefinition/J2SEPlatformCustomizer.java
+++ 
b/java/java.j2seplatform/src/org/netbeans/modules/java/j2seplatform/platformdefinition/J2SEPlatformCustomizer.java
@@ -797,7 +797,7 @@ public class J2SEPlatformCustomizer extends JTabbedPane {
 if ("jar".equals(url.getProtocol())) {  //NOI18N
 iconKind = IconKind.ARCHVIVE;
 URL fileURL = FileUtil.getArchiveFile (url);
-if (FileUtil.getArchiveRoot(fileURL).equals(url)) {
+if ((fileURL != null) && 
FileUtil.getArchiveRoot(fileURL).equals(url)) {
 // really the root
 url = fileURL;
 } else {


-
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: Fix a few cases where rendering hints were handled incorrectly

2019-08-24 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


The following commit(s) were added to refs/heads/master by this push:
 new f327957  Fix a few cases where rendering hints were handled incorrectly
f327957 is described below

commit f3279577e7b79506dd41d16268a8b3a76192c797
Author: Tim Boudreau 
AuthorDate: Sat Aug 24 11:29:36 2019 -0400

Fix a few cases where rendering hints were handled incorrectly
---
 .../netbeans/swing/tabcontrol/plaf/ColorUtil.java  |  2 +-
 .../src/org/openide/awt/HtmlLabelUI.java   |  2 +-
 .../src/org/openide/awt/HtmlRenderer.java  | 26 --
 3 files changed, 21 insertions(+), 9 deletions(-)

diff --git 
a/platform/o.n.swing.tabcontrol/src/org/netbeans/swing/tabcontrol/plaf/ColorUtil.java
 
b/platform/o.n.swing.tabcontrol/src/org/netbeans/swing/tabcontrol/plaf/ColorUtil.java
index 219d561..6297bf5 100644
--- 
a/platform/o.n.swing.tabcontrol/src/org/netbeans/swing/tabcontrol/plaf/ColorUtil.java
+++ 
b/platform/o.n.swing.tabcontrol/src/org/netbeans/swing/tabcontrol/plaf/ColorUtil.java
@@ -180,7 +180,7 @@ final class ColorUtil {
 RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
 }
 }
-if (shouldAntialias()) {
+if (shouldAntialias() && (hintsMap == null || 
!hintsMap.containsKey(RenderingHints.KEY_TEXT_ANTIALIASING))) {
 hintsMap.put(RenderingHints.KEY_ANTIALIASING,
  RenderingHints.VALUE_ANTIALIAS_ON);
 }
diff --git a/platform/openide.awt/src/org/openide/awt/HtmlLabelUI.java 
b/platform/openide.awt/src/org/openide/awt/HtmlLabelUI.java
index eed053c..ead6c60 100644
--- a/platform/openide.awt/src/org/openide/awt/HtmlLabelUI.java
+++ b/platform/openide.awt/src/org/openide/awt/HtmlLabelUI.java
@@ -561,7 +561,7 @@ class HtmlLabelUI extends LabelUI {
 public static final boolean gtkShouldAntialias() {
 if (gtkAA == null) {
 Object o = 
Toolkit.getDefaultToolkit().getDesktopProperty("gnome.Xft/Antialias"); //NOI18N
-gtkAA = new Integer(1).equals(o) ? Boolean.TRUE : Boolean.FALSE;
+gtkAA = Integer.valueOf(1).equals(o);
 }
 
 return gtkAA.booleanValue();
diff --git a/platform/openide.awt/src/org/openide/awt/HtmlRenderer.java 
b/platform/openide.awt/src/org/openide/awt/HtmlRenderer.java
index b56ae87..a5b61cf 100644
--- a/platform/openide.awt/src/org/openide/awt/HtmlRenderer.java
+++ b/platform/openide.awt/src/org/openide/awt/HtmlRenderer.java
@@ -20,6 +20,7 @@
 package org.openide.awt;
 
 import java.awt.Color;
+import java.awt.EventQueue;
 import java.awt.Font;
 import java.awt.FontMetrics;
 import java.awt.Graphics;
@@ -27,20 +28,21 @@ import java.awt.Graphics2D;
 import java.awt.Rectangle;
 import java.awt.RenderingHints;
 import java.awt.Shape;
+import java.awt.Toolkit;
 import java.awt.font.LineMetrics;
 import java.awt.geom.Area;
 import java.awt.geom.Rectangle2D;
 import java.util.Arrays;
 import java.util.HashSet;
+import java.util.LinkedList;
+import java.util.Map;
 import java.util.Set;
-import java.util.Stack;
 import java.util.StringTokenizer;
 import java.util.logging.Level;
 import java.util.logging.Logger;
 import javax.swing.Icon;
 import javax.swing.JLabel;
 import javax.swing.ListCellRenderer;
-import javax.swing.SwingUtilities;
 import javax.swing.UIManager;
 import javax.swing.table.TableCellRenderer;
 import javax.swing.tree.TreeCellRenderer;
@@ -192,7 +194,7 @@ public final class HtmlRenderer {
 
 /** Stack object used during HTML rendering to hold previous colors in
  * the case of nested color entries. */
-private static Stack colorStack = new Stack();
+private static LinkedList colorStack = new LinkedList();
 
 /**
  * Constant used by {@link #renderString renderString}, {@link 
#renderPlainString renderPlainString},
@@ -518,6 +520,18 @@ public final class HtmlRenderer {
 return _renderHTML( s, pos, g, x, y, w, h, f, defaultColor, style, 
paint, background, false );
 }
 
+private static void configureRenderingHints(Graphics graphics) {
+Graphics2D g = (Graphics2D) graphics;
+Object desktopHints
+= 
Toolkit.getDefaultToolkit().getDesktopProperty("awt.font.desktophints");
+if (desktopHints instanceof Map) {
+g.addRenderingHints((Map) desktopHints);
+} else if (HtmlLabelUI.antialias) {
+g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, 
RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
+}
+
+}
+
 /** Implementation of HTML rendering */
 static double _renderHTML(
 String s, int pos, Graphics g, int x, int y, int w, int h, Font f, 
Color defaultColor, int style, boolean paint,
@@ -540,13 +554,11 @@ public final class HtmlRenderer {
 }
 
 //Thread safety - avoid allo

[jira] [Created] (NETBEANS-3024) Code generated by the palette to insert a PrimeFaces datatable from entity contains almost nothing

2019-08-24 Thread Richard Grin (Jira)
Richard Grin created NETBEANS-3024:
--

 Summary: Code generated by the palette to insert a PrimeFaces 
datatable from entity contains almost nothing
 Key: NETBEANS-3024
 URL: https://issues.apache.org/jira/browse/NETBEANS-3024
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
 Environment: Windows 10, Maven Web project, Java EE 8
Reporter: Richard Grin


I am in a JSF page of a Maven Web project (Java EE 8). I want to insert a JSF 
datatable from entity with the palette.

If the templates style of the table is "Standard JSF", it's OK. If the style is 
"PrimeFaces", the inserted code contains only

 
{code:java}
 
{code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3006) Angular JS Indexing out of the Indexer Thread

2019-08-24 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi updated NETBEANS-3006:
--
Summary: Angular JS Indexing out of the Indexer Thread  (was: Exception 
while opening project)

> Angular JS Indexing out of the Indexer Thread
> -
>
> Key: NETBEANS-3006
> URL: https://issues.apache.org/jira/browse/NETBEANS-3006
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - AngularJS
>Affects Versions: 11.1
>Reporter: Alexander
>Priority: Major
> Attachments: messages.log
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3006) Exception while opening project

2019-08-24 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi updated NETBEANS-3006:
--
Component/s: web - AngularJS

> Exception while opening project
> ---
>
> Key: NETBEANS-3006
> URL: https://issues.apache.org/jira/browse/NETBEANS-3006
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - AngularJS
>Reporter: Alexander
>Priority: Major
> Attachments: messages.log
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3006) Exception while opening project

2019-08-24 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi updated NETBEANS-3006:
--
Affects Version/s: 11.1

> Exception while opening project
> ---
>
> Key: NETBEANS-3006
> URL: https://issues.apache.org/jira/browse/NETBEANS-3006
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - AngularJS
>Affects Versions: 11.1
>Reporter: Alexander
>Priority: Major
> Attachments: messages.log
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3023) Not possible to open Java Platform dialog

2019-08-24 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-3023:
---

Some internal configuration could went wrong. There is a jar url in your 
settings which is not an actual jar. That's causing the problem. The patch will 
prevent NPE in this case.

Though it would be good to know the original cause.

> Not possible to open Java Platform dialog
> -
>
> Key: NETBEANS-3023
> URL: https://issues.apache.org/jira/browse/NETBEANS-3023
> Project: NetBeans
>  Issue Type: Bug
> Environment: JDK 11, Netbeans 11.1, Ubuntu 
>Reporter: Reidar Tronstad
>Priority: Major
>  Labels: pull-request-available
> Attachments: callback.txt
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Exception thrown when opening Java Platform dialog and the dialog is not 
> opened.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3023) Not possible to open Java Platform dialog

2019-08-24 Thread ASF GitHub Bot (Jira)


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

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

> Not possible to open Java Platform dialog
> -
>
> Key: NETBEANS-3023
> URL: https://issues.apache.org/jira/browse/NETBEANS-3023
> Project: NetBeans
>  Issue Type: Bug
> Environment: JDK 11, Netbeans 11.1, Ubuntu 
>Reporter: Reidar Tronstad
>Priority: Major
>  Labels: pull-request-available
> Attachments: callback.txt
>
>
> Exception thrown when opening Java Platform dialog and the dialog is not 
> opened.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further mod

2019-08-24 Thread Vincenzo Luongo (Jira)


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

Vincenzo Luongo commented on NETBEANS-2903:
---

okok perfect, and thank you for your time

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further mod

2019-08-24 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2903:
-

No, in the daily build that plugin is not needed. But better to use 11.1 than a 
daily build, where there's no problem installing that plugin when prompted to 
do so.

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further mod

2019-08-24 Thread Vincenzo Luongo (Jira)


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

Vincenzo Luongo commented on NETBEANS-2903:
---

ah thank you, monday i try new plugin from daily build

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further mod

2019-08-24 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-2903:
-

There's no reason to wait for a new release. It works fine in 11.1 or you can 
use a daily build:

https://builds.apache.org/job/netbeans-linux/lastSuccessfulBuild/artifact/nbbuild/

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-2903) Warning - could not install some modules: Nashorn Integration - No module providing the capability com.oracle.js.parser.implementation could be found. 19 further mod

2019-08-24 Thread Vincenzo Luongo (Jira)


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

Vincenzo Luongo commented on NETBEANS-2903:
---

good news [~GeertjanWielenga], i waiting new release

> Warning - could not install some modules: Nashorn Integration - No module 
> providing the capability com.oracle.js.parser.implementation could be found. 
> 19 further modules could not be installed due to the above problems
> --
>
> Key: NETBEANS-2903
> URL: https://issues.apache.org/jira/browse/NETBEANS-2903
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Vincenzo Luongo
>Priority: Major
> Attachments: IDELOG, UILOG, image-2019-07-26-09-55-52-490.png
>
>
> Hi all,
> first start netbeans block in loading modules, force close from htop and 
> restart, out this error:
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  19 further modules could not be installed due to the above problems
> Unable to render embedded object:  !image-2019-07-26-09-55-52-490.png!
> I use latest snap 11.1 Fedora 30 latest version



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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: Reduce the number of unchecked call warnings by using the diamond operator..

2019-08-24 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


The following commit(s) were added to refs/heads/master by this push:
 new 7149573  Reduce the number of unchecked call warnings by using the 
diamond operator..
7149573 is described below

commit 71495732dc6f38f884bd0c25616eb489e23ef7c0
Author: Brad Walker 
AuthorDate: Fri Aug 23 13:48:01 2019 -0600

Reduce the number of unchecked call warnings by using the diamond operator..
---
 .../apisupport/CoSApplicationLateBoundChecker.java   |  2 +-
 enterprise/cloud.common/nbproject/project.properties |  2 +-
 .../support/ui/CloudResourcesWizardComponent.java|  2 +-
 .../modules/bugzilla/query/QueryController.java  |  2 +-
 .../modules/css/editor/csl/CssCompletion.java|  2 +-
 .../src/org/netbeans/modules/turbo/Turbo.java|  4 ++--
 .../jpda/ui/models/DebuggingMonitorModel.java|  2 +-
 .../modules/debugger/jpda/models/JPDAThreadImpl.java |  2 +-
 .../modules/debugger/jpda/models/ThreadsCache.java   | 20 ++--
 java/junit.ant/nbproject/project.properties  |  2 +-
 .../modules/junit/ant/JUnitOutputReader.java |  2 +-
 .../netbeans/modules/junit/ant/XmlOutputParser.java  |  2 +-
 .../autoupdate/services/OperationValidator.java  |  2 +-
 platform/masterfs/nbproject/project.properties   |  2 +-
 .../masterfs/filebasedfs/naming/NamingFactory.java   |  2 +-
 .../modules/javascript2/model/JsObjectImpl.java  |  4 ++--
 .../modules/javascript2/model/api/Model.java | 12 ++--
 .../nodejs/editor/model/NodeJsObjectInterceptor.java |  4 ++--
 18 files changed, 35 insertions(+), 35 deletions(-)

diff --git 
a/apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/CoSApplicationLateBoundChecker.java
 
b/apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/CoSApplicationLateBoundChecker.java
index 22fe240..a39b42b 100644
--- 
a/apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/CoSApplicationLateBoundChecker.java
+++ 
b/apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/CoSApplicationLateBoundChecker.java
@@ -86,7 +86,7 @@ public class CoSApplicationLateBoundChecker implements 
LateBoundPrerequisitesChe
 if (!nonModules.isEmpty()) {
 for (DependencyProjectsProvider.Pair pair : nonModules) {
 //TODO what to do for OSGI (netbeans.patches. doesn't work 
here) and for non module jars (find where they belong?)
-List trail = new 
ArrayList(pair.getArtifact().getDependencyTrail());
+List trail = new 
ArrayList<>(pair.getArtifact().getDependencyTrail());
 Collections.reverse(trail); //we go from the artifact itself 
up, first module project artifact is our boy..
 trail.remove(0); //first one is the actual artifact.
 for (String s : trail) {
diff --git a/enterprise/cloud.common/nbproject/project.properties 
b/enterprise/cloud.common/nbproject/project.properties
index c0af75f..0f4ec98 100644
--- a/enterprise/cloud.common/nbproject/project.properties
+++ b/enterprise/cloud.common/nbproject/project.properties
@@ -14,5 +14,5 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-javac.source=1.6
+javac.source=1.8
 javac.compilerargs=-Xlint -Xlint:-serial
diff --git 
a/enterprise/cloud.common/src/org/netbeans/modules/cloud/common/spi/support/ui/CloudResourcesWizardComponent.java
 
b/enterprise/cloud.common/src/org/netbeans/modules/cloud/common/spi/support/ui/CloudResourcesWizardComponent.java
index ea95145..079e7bd 100644
--- 
a/enterprise/cloud.common/src/org/netbeans/modules/cloud/common/spi/support/ui/CloudResourcesWizardComponent.java
+++ 
b/enterprise/cloud.common/src/org/netbeans/modules/cloud/common/spi/support/ui/CloudResourcesWizardComponent.java
@@ -65,7 +65,7 @@ public class CloudResourcesWizardComponent extends 
javax.swing.JPanel {
 private List resources;
 
 public ResourceModel(List resources) {
-this.resources = new ArrayList(resources);
+this.resources = new ArrayList<>(resources);
 if (this.resources.isEmpty()) {
 this.resources.add(new ServerResourceDescriptor("", "none 
available yet", "", null));
 }
diff --git 
a/ide/bugzilla/src/org/netbeans/modules/bugzilla/query/QueryController.java 
b/ide/bugzilla/src/org/netbeans/modules/bugzilla/query/QueryController.java
index 6b3d730..52c81d6 100644
--- a/ide/bugzilla/src/org/netbeans/modules/bugzilla/query/QueryController.java
+++ b/ide/bugzilla/src/org/netbeans/modules/bugzilla/query/QueryController.java
@@ -1045,7 +1045,7 @@ public class QueryController implements 
org.netbeans.modules.bugtracking.spi.Que
 }
 
 private List getQueryResolutions(B

[netbeans-website] branch master updated (e1ad940 -> 5233a14)

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


from e1ad940  Merge pull request #410 from apache/geertjanw-patch-15
 add ff1dc40  Tweaking demos.xml file to comment out unused entries
 new 5233a14  Merge pull request #411 from apache/geertjanw-patch-16

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.apache.org/src/content/demos.xml | 4 +++-
 1 file changed, 3 insertions(+), 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-website] 01/01: Merge pull request #411 from apache/geertjanw-patch-16

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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

commit 5233a14568e259a190c7cbee8a1d088f0cc06ea3
Merge: e1ad940 ff1dc40
Author: Geertjan Wielenga 
AuthorDate: Sat Aug 24 09:39:57 2019 +0200

Merge pull request #411 from apache/geertjanw-patch-16

Tweaking demos.xml file to comment out unused entries

 netbeans.apache.org/src/content/demos.xml | 4 +++-
 1 file changed, 3 insertions(+), 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-website] 01/01: Tweaking demos.xml file to comment out unused entries

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a commit to branch geertjanw-patch-16
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git

commit ff1dc4048f5b726d5d2925b242574f48493f62be
Author: Geertjan Wielenga 
AuthorDate: Sat Aug 24 09:39:43 2019 +0200

Tweaking demos.xml file to comment out unused entries
---
 netbeans.apache.org/src/content/demos.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/netbeans.apache.org/src/content/demos.xml 
b/netbeans.apache.org/src/content/demos.xml
index 1170667..2a68dda 100644
--- a/netbeans.apache.org/src/content/demos.xml
+++ b/netbeans.apache.org/src/content/demos.xml
@@ -22,6 +22,7 @@
  Get started with Apache NetBeans 11.0!
  https://netbeans.apache.org/images/general.png"; 
type="image/png" width="100" height="100" length="35253" />
   
+  

 
 


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

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



[netbeans-website] branch geertjanw-patch-16 created (now ff1dc40)

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a change to branch geertjanw-patch-16
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git.


  at ff1dc40  Tweaking demos.xml file to comment out unused entries

This branch includes the following new commits:

 new ff1dc40  Tweaking demos.xml file to comment out unused entries

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-website] 01/01: Merge pull request #410 from apache/geertjanw-patch-15

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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

commit e1ad94093079a0fdc32d3bbb6f36b30af989b3ca
Merge: 922a117 ba29efd
Author: Geertjan Wielenga 
AuthorDate: Sat Aug 24 09:32:40 2019 +0200

Merge pull request #410 from apache/geertjanw-patch-15

Updating link to image for Featured Demo in Welcome Screen

 netbeans.apache.org/src/content/demos.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-website] branch master updated (922a117 -> e1ad940)

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


from 922a117  Merge pull request #409 from apache/geertjanw-patch-14
 add ba29efd  Updating link to image for Featured Demo in Welcome Screen
 new e1ad940  Merge pull request #410 from apache/geertjanw-patch-15

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.apache.org/src/content/demos.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-website] 01/01: Updating link to image for Featured Demo in Welcome Screen

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a commit to branch geertjanw-patch-15
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git

commit ba29efd265690c84a02a0bb9fdbb22fc4be2cb95
Author: Geertjan Wielenga 
AuthorDate: Sat Aug 24 09:32:21 2019 +0200

Updating link to image for Featured Demo in Welcome Screen
---
 netbeans.apache.org/src/content/demos.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/netbeans.apache.org/src/content/demos.xml 
b/netbeans.apache.org/src/content/demos.xml
index d2f40d6..1170667 100644
--- a/netbeans.apache.org/src/content/demos.xml
+++ b/netbeans.apache.org/src/content/demos.xml
@@ -20,7 +20,7 @@
  https://www.youtube.com/watch?v=vCN_XvXQzzo
  https://www.youtube.com/watch?v=vCN_XvXQzzo
  Get started with Apache NetBeans 11.0!
- https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+ https://netbeans.apache.org/images/general.png"; 
type="image/png" width="100" height="100" length="35253" />
   
   
  Saturday 29 July 2017 12:00:00 +0200


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

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



[netbeans-website] branch geertjanw-patch-15 created (now ba29efd)

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a change to branch geertjanw-patch-15
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git.


  at ba29efd  Updating link to image for Featured Demo in Welcome Screen

This branch includes the following new commits:

 new ba29efd  Updating link to image for Featured Demo in Welcome Screen

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-website] branch asf-site updated: Automated site publishing by Jenkins build 879

2019-08-24 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new d44e2f0  Automated site publishing by Jenkins build 879
d44e2f0 is described below

commit d44e2f064c1fe6181d8a548d1bc156ab5a06f921
Author: jenkins 
AuthorDate: Sat Aug 24 07:30:28 2019 +

Automated site publishing by Jenkins build 879
---
 content/images/general.png | Bin 0 -> 37880 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/content/images/general.png b/content/images/general.png
new file mode 100644
index 000..ee0aef6
Binary files /dev/null and b/content/images/general.png differ


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

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



[netbeans-website] branch master updated (161f76a -> 922a117)

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


from 161f76a  Adding file that used to be on netbeans.org for Feature Demo 
in Welcome Screen
 add e74800c  Adding image 'general', which is needed in Welcome Screen demo
 new 922a117  Merge pull request #409 from apache/geertjanw-patch-14

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.apache.org/src/content/images/general.png | Bin 0 -> 37880 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 netbeans.apache.org/src/content/images/general.png


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

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



[netbeans-website] 01/01: Merge pull request #409 from apache/geertjanw-patch-14

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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

commit 922a117a3cc17a8ef3d87e4a1ac14a1f0b2cb473
Merge: 161f76a e74800c
Author: Geertjan Wielenga 
AuthorDate: Sat Aug 24 09:28:09 2019 +0200

Merge pull request #409 from apache/geertjanw-patch-14

Adding image 'general', which is needed in Welcome Screen demo

 netbeans.apache.org/src/content/images/general.png | Bin 0 -> 37880 bytes
 1 file changed, 0 insertions(+), 0 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-website] branch geertjanw-patch-14 created (now 161f76a)

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a change to branch geertjanw-patch-14
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git.


  at 161f76a  Adding file that used to be on netbeans.org for Feature Demo 
in Welcome Screen

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-website] branch geertjanw-patch-14 updated: Adding image 'general', which is needed in Welcome Screen demo

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a commit to branch geertjanw-patch-14
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/geertjanw-patch-14 by this 
push:
 new e74800c  Adding image 'general', which is needed in Welcome Screen demo
e74800c is described below

commit e74800cbd86d947f951dbf74c41733708a49414c
Author: Geertjan Wielenga 
AuthorDate: Sat Aug 24 09:27:42 2019 +0200

Adding image 'general', which is needed in Welcome Screen demo
---
 netbeans.apache.org/src/content/images/general.png | Bin 0 -> 37880 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/netbeans.apache.org/src/content/images/general.png 
b/netbeans.apache.org/src/content/images/general.png
new file mode 100644
index 000..ee0aef6
Binary files /dev/null and b/netbeans.apache.org/src/content/images/general.png 
differ


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

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



[netbeans-website] branch master updated: Adding file that used to be on netbeans.org for Feature Demo in Welcome Screen

2019-08-24 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 161f76a  Adding file that used to be on netbeans.org for Feature Demo 
in Welcome Screen
161f76a is described below

commit 161f76a09b4e02307833032e802a4f7ff70c405a
Author: Geertjan Wielenga 
AuthorDate: Sat Aug 24 09:08:31 2019 +0200

Adding file that used to be on netbeans.org for Feature Demo in Welcome 
Screen

Adding file that used to be on netbeans.org for Feature Demo in Welcome 
Screen
---
 netbeans.apache.org/src/content/demos.xml | 148 ++
 1 file changed, 148 insertions(+)

diff --git a/netbeans.apache.org/src/content/demos.xml 
b/netbeans.apache.org/src/content/demos.xml
new file mode 100644
index 000..d2f40d6
--- /dev/null
+++ b/netbeans.apache.org/src/content/demos.xml
@@ -0,0 +1,148 @@
+
+
+   
+  
+  NetBeans Screencasts and Video Demos
+  https://netbeans.org/index.html
+  Screencasts that show you all the cool features of 
NetBeans, the free and open-source IDE for Java development and 
scripting.
+  en
+  webmas...@netbeans.org (NetBeans webmaster)
+  
+ NetBeans Screencasts and Video Demos
+ https://netbeans.org/images_www/v5/nb-logo.gif
+ https://netbeans.org/index.html
+ 110
+ 30
+  
+  
+ Friday 5 April 2019 12:00:00 +0200
+ Hello Apache NetBeans 11.0!
+ https://www.youtube.com/watch?v=vCN_XvXQzzo
+ https://www.youtube.com/watch?v=vCN_XvXQzzo
+ Get started with Apache NetBeans 11.0!
+ https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+  
+  
+ Saturday 29 July 2017 12:00:00 +0200
+ Free Course: Oracle JET!
+ https://www.youtube.com/watch?v=lwKZvi_b1aY
+ https://www.youtube.com/watch?v=lwKZvi_b1aY
+ Get started with enterprise JavaScript!
+ https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+  
+  
+ Wednesday 13 August 2015 12:00:00 +0200
+ Web App Development with Node.js
+ https://www.youtube.com/watch?v=b3giUSvRjPc
+ https://www.youtube.com/watch?v=b3giUSvRjPc
+ Node.js web app development with NetBeans 
IDE
+ https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+  
+  
+ Monday 10 August 2015 12:00:00 +0200
+ Node.js Web Server in 3 Minutes
+ https://www.youtube.com/watch?v=hx6vXCdOYlA
+ https://www.youtube.com/watch?v=hx6vXCdOYlA
+ Node.js app development with NetBeans IDE
+ https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+  
+  
+ Tuesday 5 May 2015 12:00:00 +0200
+ Debug Java Better with NetBeans
+ https://www.youtube.com/watch?v=FWISb94dgBE
+ https://www.youtube.com/watch?v=FWISb94dgBE
+ A demo featuring the integration of JRebel into NetBeans 
IDE.
+ https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+  
+  
+ Wed, 30 July 2014 12:00:00 +0200
+ How to Develop in Java on the Raspberry Pi
+ https://www.youtube.com/watch?v=ebHbDlTnV-I
+ https://www.youtube.com/watch?v=ebHbDlTnV-I
+ Learn to use NetBeans IDE to create JRE distributions 
and deploy them directly to your embedded device.
+ https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+  
+  
+ Wed, 16 July 2014 12:00:00 +0200
+ A Little REST with JAX-RS 2.0 and Java EE 7
+ https://www.youtube.com/watch?v=1wEp9yHHtwg
+ https://www.youtube.com/watch?v=1wEp9yHHtwg
+ Adam Bien demonstrates a better approach to creating 
RESTful Web applications with Java EE 7, and highlights new JAX-RS 2.0 
features.
+ https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+  
+  
+ Wed, 02 July 2014 12:00:00 +0200
+ 14 NetBeans Web Development Secrets
+ https://www.youtube.com/watch?v=JaqAi3r0k1Y
+ https://www.youtube.com/watch?v=JaqAi3r0k1Y
+ A quick video treat for web developers: 14 hidden 
NetBeans features that will make working with HTML5 a breeze.
+ https://netbeans.org/images_www/demos/general.png"; 
type="image/png" width="100" height="100" length="35253" />
+  
+  
+ Wed, 04 June 2014 12:00:00 +0200
+ Java EE 7 with NetBeans and Vaadin
+ https://www.youtube.com/