[jira] [Created] (NETBEANS-4903) nb 12.1 thows exception on start, pops up reporting window

2020-10-12 Thread Pieter van den Hombergh (Jira)
Pieter van den Hombergh created NETBEANS-4903:
-

 Summary: nb 12.1 thows exception on start, pops up reporting window
 Key: NETBEANS-4903
 URL: https://issues.apache.org/jira/browse/NETBEANS-4903
 Project: NetBeans
  Issue Type: New Feature
  Components: ide - UI
Affects Versions: 12.1
 Environment: ubuntu 20.04 openjdk 11.0.8 
Reporter: Pieter van den Hombergh
 Attachments: IDE-log.txt

On startup this happens quite often.

5 projects open, all of rather limited size (less than 30 classes)





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

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

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



[netbeans] branch master updated (0b03065 -> cdba678)

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

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


from 0b03065  [NETBEANS-4857] Prevent property change events during tree 
sync
 new 7ec04d0  Introducing a dedicated NBCode suite for NetBeans code inside 
the extension
 new 73cb28d  Updating to Eclipse LSP 0.9 and adding debugging protocol 
support
 new e13eb7d  Adding (polyglot) debugging support into VSCode extension
 new c92acfb  --start-java-(language|debug-adapter)-server and associated 
IOContext and UIContext infrastructure
 new 56ac003  Polishing infrastructure, libraries and build scripts
 new 9cc18b8  Provide extra cluster path via extra_clusters property
 new cdba678  Merge pull request #2447 from 
JaroslavTulach/jtulach/VSCodeDebugging

The 4494 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/javascript2.debug/manifest.mf  |   2 +-
 ide/javascript2.debug/nbproject/project.xml|   1 +
 java/java.lsp.server/build.xml |  58 ++-
 java/java.lsp.server/external/binaries-list|  11 +-
 .../external/commons-2.5.3.6-license.txt   | 212 ++
 .../external/lsp4j-0.5.0-license.txt   |  73 
 .../external/lsp4j-0.9.0-license.txt   |  94 +
 java/java.lsp.server/licenseinfo.xml   |   2 +-
 java/java.lsp.server/nbcode/.gitignore |   3 +
 .../org/netbeans/core/startup/Bundle.properties}   |  11 +-
 .../core/windows/view/ui/Bundle.properties}|   8 +-
 .../modules/maven/api/execute/Bundle.properties}   |   0
 .../modules/maven/options/Bundle.properties}   |   0
 .../netbeans/modules/project/ui/Bundle.properties} |   7 +-
 .../{licenseinfo.xml => nbcode/build.xml}  |  27 +-
 .../integration/build.xml} |  27 +-
 .../java.lsp.server/nbcode/integration/manifest.mf |   6 +
 .../nbcode/integration/nbproject/build-impl.xml|  45 ++
 .../integration/nbproject/genfiles.properties  |   8 +
 .../integration}/nbproject/project.properties  |   0
 .../nbcode/integration/nbproject/project.xml   |  65 +++
 .../nbcode/integration}/nbproject/suite.properties |   0
 .../modules/nbcode/integration/Bundle.properties}  |   7 +-
 .../integration/LspInputOutputProvider.java}   |  13 +-
 .../nbcode/integration/LspStatusDisplayer.java}|  13 +-
 .../nbcode/nbproject/build-impl.xml|  50 +++
 .../nbcode/nbproject/genfiles.properties   |  11 +
 .../nbcode/nbproject/platform.properties   | 355 
 .../java.lsp.server/nbcode}/nbproject/platform.xml |   0
 .../nbproject/project.properties}  |  18 +-
 .../nbproject/project.xml} |  31 +-
 java/java.lsp.server/nbproject/project.properties  |  15 +-
 java/java.lsp.server/nbproject/project.xml | 152 ++-
 .../script/bin/{nb-java-lsp-server => nbcode}  |   0
 ...nb-java-lsp-server.clusters => nbcode.clusters} |   3 +
 .../etc/{nb-java-lsp-server.conf => nbcode.conf}   |   2 +-
 .../modules/java/lsp/server/ConnectionSpec.java| 132 ++
 .../modules/java/lsp/server/LspArgsProcessor.java  |  73 
 .../lsp/server/debugging/DebugAdapterContext.java  | 233 +++
 .../java/lsp/server/debugging/Debugger.java|  51 +++
 .../debugging/NBConfigurationSemaphore.java}   |  26 +-
 .../java/lsp/server/debugging/NbFrame.java}|  24 +-
 .../lsp/server/debugging/NbProtocolServer.java | 456 +
 .../java/lsp/server/debugging/NbScope.java}|  27 +-
 .../lsp/server/debugging/NbSourceProvider.java | 124 ++
 .../java/lsp/server/debugging/NbThreads.java   | 236 +++
 .../java/lsp/server/debugging/ThreadObjects.java   | 100 +
 .../debugging/breakpoints/BreakpointsManager.java  | 226 ++
 .../server/debugging/breakpoints/NbBreakpoint.java | 205 +
 .../breakpoints/NbBreakpointsRequestHandler.java   | 163 
 .../server/debugging/launch/NbDebugSession.java}   |  34 +-
 .../launch/NbDisconnectRequestHandler.java |  51 +++
 .../server/debugging/launch/NbLaunchDelegate.java  | 182 
 .../debugging/launch/NbLaunchRequestHandler.java   | 173 
 .../launch/NbLaunchWithDebuggingDelegate.java} |  27 +-
 .../launch/NbLaunchWithoutDebuggingDelegate.java   |  48 +++
 .../server/debugging/launch/NbProcessConsole.java  |  78 
 .../utils/ErrorUtilities.java} |  30 +-
 .../variables/NbVariablesRequestHandler.java   | 178 
 .../lsp/server/debugging/variables/ViewModel.java  | 309 ++
 .../java/lsp/server/{ => protocol}/Server.java |  89 ++--
 .../TextDocumentServiceImpl.java

[jira] [Commented] (NETBEANS-4853) Bad Font Rendering on Linux with any JDK

2020-10-12 Thread Enzo martin (Jira)


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

Enzo martin commented on NETBEANS-4853:
---

ok i guess i'll have to settle for that rendering :( thanks anyway

> Bad Font Rendering on Linux with any JDK 
> -
>
> Key: NETBEANS-4853
> URL: https://issues.apache.org/jira/browse/NETBEANS-4853
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 12.0, 12.1
> Environment: Fedora32
>Reporter: Enzo martin
>Priority: Major
>  Labels: Font, Linux, Rendering
> Attachments: Screenshot from 2020-09-27 13-50-59.png, Screenshot from 
> 2020-09-27 13-52-24.png, Screenshot from 2020-09-27 13-57-10.png
>
>
> Bad font rendering on linux, with any JDK, y tested the zulu JDK and OpenJDK 
> on his versions 8, 11, and 15, without better font rendering. 
> I also tried some of the solutions found in google, without any positive 
> results. 
> For example on  this link:
>  
> https://askubuntu.com/questions/32624/ugly-fonts-in-netbeans-how-can-i-make-it-use-the-system-font
>  
> I am using Fedora32 with GnomeDE, but the problem also occurs in other 
> desktop environments eg. KDE or Matte, with any linux distribution. Other 
> IDEs like Intellij or Eclipse have better font rendering. Attached Sample 
> Images



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

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

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



[jira] [Created] (NETBEANS-4902) Background scanning of projects

2020-10-12 Thread John Paver (Jira)
John Paver created NETBEANS-4902:


 Summary: Background scanning of projects
 Key: NETBEANS-4902
 URL: https://issues.apache.org/jira/browse/NETBEANS-4902
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 12.1
 Environment: Windows 10, Dell Inspiron 3650
Reporter: John Paver


Background scanning of projects hangs at 99%



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

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

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



[netbeans] branch master updated: [NETBEANS-4857] Prevent property change events during tree sync

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

ebakke 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 0b03065  [NETBEANS-4857] Prevent property change events during tree 
sync
0b03065 is described below

commit 0b030658851117088ba280db9458f3799e7817bf
Author: Michael Küttner 
AuthorDate: Mon Oct 12 22:53:13 2020 +0200

[NETBEANS-4857] Prevent property change events during tree sync

An ExplorerManager can be shared by multiple OutlineViews to synchronize 
displayed nodes and selection. This works fine for single node selection 
(ListSelectionModel.SINGLE_SELECTION).

But in case of multiple selection 
(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION) the ExplorerManager creates 
way too many PropertyChangeEvents.

Use setValueAdjusting to coalesce these events.
---
 .../src/org/openide/explorer/view/OutlineView.java |   7 +
 .../view/OutlineViewSynchronizationTest.java   | 246 +
 2 files changed, 253 insertions(+)

diff --git 
a/platform/openide.explorer/src/org/openide/explorer/view/OutlineView.java 
b/platform/openide.explorer/src/org/openide/explorer/view/OutlineView.java
index 3cf63a5..eb71102 100644
--- a/platform/openide.explorer/src/org/openide/explorer/view/OutlineView.java
+++ b/platform/openide.explorer/src/org/openide/explorer/view/OutlineView.java
@@ -859,6 +859,10 @@ public class OutlineView extends JScrollPane {
 invalidate();
 validate();
 Node[] arr = manager.getSelectedNodes ();
+
+// [NETBEANS-4857]: prevent property change events during 
synchronization  
+outline.getSelectionModel().setValueIsAdjusting(true);
+
 outline.getSelectionModel().clearSelection();
 int size = outline.getRowCount();
 int firstSelection = -1;
@@ -876,6 +880,9 @@ public class OutlineView extends JScrollPane {
 }
 }
 }
+// [NETBEANS-4857]: re-activate property change events
+outline.getSelectionModel().setValueIsAdjusting(false);
+
 //
System.err.println("\nOutlineView.synchronizeSelectedNodes("+java.util.Arrays.toString(arr)+"):
 "+
 //   "columnModel = "+outline.getColumnModel()+", 
column selection model = "+outline.getColumnModel().getSelectionModel()+
 //   ", column lead selection index = 
"+outline.getColumnModel().getSelectionModel().getLeadSelectionIndex()+"\n");
diff --git 
a/platform/openide.explorer/test/unit/src/org/openide/explorer/view/OutlineViewSynchronizationTest.java
 
b/platform/openide.explorer/test/unit/src/org/openide/explorer/view/OutlineViewSynchronizationTest.java
new file mode 100644
index 000..fc25047
--- /dev/null
+++ 
b/platform/openide.explorer/test/unit/src/org/openide/explorer/view/OutlineViewSynchronizationTest.java
@@ -0,0 +1,246 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.openide.explorer.view;
+
+import java.awt.BorderLayout;
+import java.awt.FlowLayout;
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.beans.PropertyVetoException;
+import java.lang.reflect.InvocationTargetException;
+import java.util.ArrayList;
+import java.util.List;
+import javax.swing.JPanel;
+import javax.swing.ListSelectionModel;
+import org.netbeans.junit.NbTestCase;
+import org.netbeans.swing.outline.Outline;
+import org.openide.explorer.ExplorerManager;
+import org.openide.nodes.AbstractNode;
+import org.openide.nodes.ChildFactory;
+import org.openide.nodes.Children;
+import org.openide.nodes.Node;
+import org.openide.util.lookup.AbstractLookup;
+import org.openide.util.lookup.InstanceContent;
+
+/**
+ * Tests fix of Jira issue [NETBEANS-4857]. There should be no additional
+ * property change events during outline view tree synchronization.
+ *
+ * @author Michael Kuettner
+ */
+public final class OutlineViewSynchronizationTest extends NbTestCase {
+
+public OutlineViewSynchronizationTest(String testName) {
+super(testName);
+}
+
+@Override
+protected bool

[netbeans] branch master updated: [NETBEANS-4895] Improve archive detection of a non-existent file.

2020-10-12 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 9f82bc3  [NETBEANS-4895] Improve archive detection of a non-existent 
file.
9f82bc3 is described below

commit 9f82bc38bc3ab23a9627f1a2c3e27822a3e60c45
Author: Laszlo Kishalmi 
AuthorDate: Sat Oct 10 08:06:44 2020 -0700

[NETBEANS-4895] Improve archive detection of a non-existent file.
---
 .../src/org/openide/filesystems/JarArchiveRootProvider.java  | 12 +---
 .../unit/src/org/openide/filesystems/IsArchiveFileTest.java  |  1 +
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git 
a/platform/openide.filesystems/src/org/openide/filesystems/JarArchiveRootProvider.java
 
b/platform/openide.filesystems/src/org/openide/filesystems/JarArchiveRootProvider.java
index 0cd14fc..7253397 100644
--- 
a/platform/openide.filesystems/src/org/openide/filesystems/JarArchiveRootProvider.java
+++ 
b/platform/openide.filesystems/src/org/openide/filesystems/JarArchiveRootProvider.java
@@ -25,7 +25,9 @@ import java.net.MalformedURLException;
 import java.net.URL;
 import java.util.Arrays;
 import java.util.Collections;
+import java.util.HashSet;
 import java.util.Map;
+import java.util.Set;
 import java.util.WeakHashMap;
 import java.util.logging.Level;
 import java.util.logging.Logger;
@@ -46,6 +48,8 @@ final class JarArchiveRootProvider implements 
ArchiveRootProvider {
 /** Cache for {@link #isArchiveFile(FileObject)}. */
 private static final Map archiveFileCache = Collections.synchronizedMap(new 
WeakHashMap());
 
+private static final Set KNOWN_ZIP_EXTENSIONS = new 
HashSet<>(Arrays.asList("jar", "war", "zip", "ear", "sar", "rar")); //NOI18N
+
 @Override
 public boolean isArchiveFile(URL url, boolean strict) {
 if (PROTOCOL.equals(url.getProtocol())) { //NOI18N
@@ -181,11 +185,13 @@ final class JarArchiveRootProvider implements 
ArchiveRootProvider {
 /**
  * Tests if a non existent path represents a file.
  * @param path to be tested, separated by '/'.
- * @return true if the file has '.' after last '/'.
+ * @return true if the file has '.' after last '/' and the text after 
+ * the '.' is a known zip extension.
  */
 private static boolean isArchiveFile (final String path) {
-int index = path.lastIndexOf('.');  //NOI18N
-return (index != -1) && (index > path.lastIndexOf('/') + 1);
//NOI18N
+int dot = path.lastIndexOf('.');   //NOI18N
+int slash = path.lastIndexOf('/'); //NOI18N
+return (dot != -1) && (dot > slash + 1) && 
KNOWN_ZIP_EXTENSIONS.contains(path.substring(dot + 1));
 }
 
 }
diff --git 
a/platform/openide.filesystems/test/unit/src/org/openide/filesystems/IsArchiveFileTest.java
 
b/platform/openide.filesystems/test/unit/src/org/openide/filesystems/IsArchiveFileTest.java
index ccca4a7..412ce5a 100644
--- 
a/platform/openide.filesystems/test/unit/src/org/openide/filesystems/IsArchiveFileTest.java
+++ 
b/platform/openide.filesystems/test/unit/src/org/openide/filesystems/IsArchiveFileTest.java
@@ -108,6 +108,7 @@ public class IsArchiveFileTest extends NbTestCase {
 
 assertFalse (FileUtil.isArchiveFile(new URL("jar:file:/foo.jar!/")));
 assertFalse (FileUtil.isArchiveFile(new URL("file:/foo/")));
+assertFalse (FileUtil.isArchiveFile(new URL("file:/javafx.base")));
 assertTrue (FileUtil.isArchiveFile(new URL("file:/foo.jar")));
 }
 


-
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: Revert "NETBEANS-4533 : Netbeans 4533 chinese char problem table header (#2435)"

2020-10-12 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 e7d97e8  Revert "NETBEANS-4533 : Netbeans 4533 chinese char problem 
table header (#2435)"
e7d97e8 is described below

commit e7d97e87eaf63e0dbe4269f4d8d30d4da05ff768
Author: Laszlo Kishalmi 
AuthorDate: Sat Oct 10 10:20:37 2020 -0700

Revert "NETBEANS-4533 : Netbeans 4533 chinese char problem table header 
(#2435)"

This reverts commit 7990cee5aa9d8460b563d7ad44d743843c6c064a.
---
 .../o.n.swing.outline/src/org/netbeans/swing/etable/ETableHeader.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/platform/o.n.swing.outline/src/org/netbeans/swing/etable/ETableHeader.java 
b/platform/o.n.swing.outline/src/org/netbeans/swing/etable/ETableHeader.java
index 719195d..1edf2cb 100644
--- a/platform/o.n.swing.outline/src/org/netbeans/swing/etable/ETableHeader.java
+++ b/platform/o.n.swing.outline/src/org/netbeans/swing/etable/ETableHeader.java
@@ -158,7 +158,8 @@ class ETableHeader extends JTableHeader {
 Integer.toString(sortRank) :
 sortRank+" "+valueString;
 }
-label.setFont(label.getFont().deriveFont(Font.BOLD));
+// don't use deriveFont() - see #49973 for details
+label.setFont (new Font (label.getFont ().getName (), 
Font.BOLD, label.getFont ().getSize ()));
 
 if (ascending) {
 sortIcon = 
UIManager.getIcon("ETableHeader.ascendingIcon");


-
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 (82af896 -> 0745e6c)

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

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


from 82af896  [NETBEANS-4891] Fix missing file node of generic Gradle root 
project
 add 0745e6c  Revert "NETBEANS-4893 - Added node_modules and 
bower_components to the option ignore files pattern in the misc tab."

No new revisions were added by this update.

Summary of changes:
 .../org/netbeans/core/ui/options/filetypes/IgnoredFilesPreferences.java | 2 +-
 .../src/org/netbeans/modules/masterfs/GlobalVisibilityQueryImpl.java| 2 +-
 2 files changed, 2 insertions(+), 2 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



[jira] [Commented] (NETBEANS-4900) Settings.gradle file node is missed from project tree

2020-10-12 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi commented on NETBEANS-4900:
---

Thank you for reporting these.

The syntax highlight shall be enabled only if you enable the Groovy cluster, 
otherwise the Gradle file is opened as a plain text (IDE restart IS required 
after enablig the Groovy support)

The settings file is my bad, a regression caused by: 
[https://github.com/apache/netbeans/pull/2426]

The configurations node needs some attention as of: NETBEANS-3789 that's on my 
list.

> Settings.gradle file node is missed from project tree
> -
>
> Key: NETBEANS-4900
> URL: https://issues.apache.org/jira/browse/NETBEANS-4900
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
> Environment: Product Version: Apache NetBeans IDE DEV (Build 
> dev-12d0e2d43f10e70cdc90c26e3b65d0aa946282e3)
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
>Reporter: mkhramov
>Assignee: Laszlo Kishalmi
>Priority: Major
> Attachments: demo.png
>
>
> On latest dev build I see next issues with gradle proeject...
> Configurations node is empty now
> Settings.gradle file node is missed from project tree
> No more syntax highlighting in opened gradle file editor
>  



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

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

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



[jira] [Assigned] (NETBEANS-4797) Installer Hangs at 10%

2020-10-12 Thread William Gibson (Jira)


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

William Gibson reassigned NETBEANS-4797:


Assignee: William Gibson

> Installer Hangs at 10%
> --
>
> Key: NETBEANS-4797
> URL: https://issues.apache.org/jira/browse/NETBEANS-4797
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
> Environment: Windows 10 Enterprise 2004 19041.508
>Reporter: William Gibson
>Assignee: William Gibson
>Priority: Major
>  Labels: install, installer, installing, windows, windows10
> Attachments: 20200911125944.log
>
>
> The netbeans installer is hanging at 10%.
> I have installed jdk-14.0.1_windows-x64_bin
> I have tried clearing c:\users\username\.nbi\
> I am running installer using an administrative Windows account
> I have disabled UAC
> Installer becomes completely unresponsive



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

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

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



[jira] [Updated] (NETBEANS-4900) Settings.gradle file node is missed from project tree

2020-10-12 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi updated NETBEANS-4900:
--
Summary: Settings.gradle file node is missed from project tree  (was:  
Issues with gradle project)

> Settings.gradle file node is missed from project tree
> -
>
> Key: NETBEANS-4900
> URL: https://issues.apache.org/jira/browse/NETBEANS-4900
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle
> Environment: Product Version: Apache NetBeans IDE DEV (Build 
> dev-12d0e2d43f10e70cdc90c26e3b65d0aa946282e3)
> Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
> Runtime: Java(TM) SE Runtime Environment 13.0.1+9
> System: Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
>Reporter: mkhramov
>Assignee: Laszlo Kishalmi
>Priority: Major
> Attachments: demo.png
>
>
> On latest dev build I see next issues with gradle proeject...
> Configurations node is empty now
> Settings.gradle file node is missed from project tree
> No more syntax highlighting in opened gradle file editor
>  



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

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

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



[jira] [Commented] (NETBEANS-4901) phpDocumentor commandline arguments change

2020-10-12 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-4901:


Thanks for reporting it.

> phpDocumentor commandline arguments change
> --
>
> Key: NETBEANS-4901
> URL: https://issues.apache.org/jira/browse/NETBEANS-4901
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - PHPDoc
>Affects Versions: 11.1
>Reporter: Vítězslav Dvořák
>Priority: Minor
>
> New phpdoc 3.0.0+ use different commandline syntax:
>  
> {color:#b26818}Options:{color} 
>   {color:#18b218}-t, --target[=TARGET]{color}{color:#00}  
> Path where to store the generated output {color}
>   {color:#18b218}--cache-folder[=CACHE-FOLDER]{color}{color:#00}  
> Path where to store the cache files {color}
>   {color:#18b218}-f, --filename[=FILENAME]{color}{color:#00}  
> File to parse, glob patterns are supported. Provide multiple options 
> of this type to add {color}
>  multiple 
> files.{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}-d, --directory[=DIRECTORY]{color}{color:#00}    
> directory to parse, glob patterns are supported. Provide multiple 
> options of this type to add {color}
>  multiple 
> directories.{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}--encoding[=ENCODING]{color}{color:#00}  
> encoding to be used to interpret source files with {color}
>   {color:#18b218}--extensions[=EXTENSIONS]{color}{color:#00}  
> Provide multiple options of this type to add multiple extensions. 
> default is php{color}{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}-i, --ignore[=IGNORE]{color}{color:#00}  
> File(s) and directories (relative to the source-code directory) that 
> will be ignored. Glob patterns are supported. Add multiple options of this 
> type of add more {color}
> ignore patterns{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}--ignore-tags[=IGNORE-TAGS]{color}{color:#00}    
> Tag that will be ignored, defaults to none. package, subpackage and 
> ignore may not be ignored. Add multiple options of this type to ignore 
> multiple tags.{color}{color:#b26818} (multip{color}
> le values allowed)    
>   
>   {color:#00} {color}
>   {color:#18b218}--hidden{color}{color:#00}   
> Use this option to tell phpDocumentor to parse files and directories 
> that begin with a period (.), by default these are ignored {color}
>   {color:#18b218}--ignore-symlinks{color}{color:#00}  
> Ignore symlinks to other files or directories, default is on {color}
>   {color:#18b218}-m, --markers[=MARKERS]{color}{color:#00}    
> Comma-separated list of markers/tags to filter{color}{color:#b26818} 
> (multiple values allowed){color} 
>   {color:#18b218}--title[=TITLE]{color}{color:#00}    
> Sets the title for this project; default is the phpDocumentor logo 
> {color}
>   {color:#18b218}--force{color}{color:#00}    
> Forces a full build of the documentation, does not increment existing 
> documentation {color}
>   {color:#18b218}--validate{color}{color:#00} 
> Validates every processed file using PHP Lint, costs a lot of 
> performance {color}
>   {color:#18b218}--visibility[=VISIBILITY]{color}{color:#00}  
> Specifies the parse visibility that should be displayed in the 
> documentation. Add multiple options of {color}
>  this type to specify 
> multiple levels.("public,protected"){color:#b26818} (multiple values 
> allowed){color} 
>   {color:#18b218}
> --defaultpackagename[=DEFAULTPACKAGENAME]{color}{color:#00}  Name to use 
> for the default package.{color}{color:#b26818} [default: "Default"]{color} 
>   {color:#18b218}--sourcecode{color}{color:#00}   
> Whether to include syntax highlighted source code {color}
>   {color:#18b218}--template[=TEMPLATE]{color}{color:#00}  
> Name of the template to use (optional){color}{color:#b26818} 
> (multiple values allowed){color} 
>   {color:#18b218}--examples-dir[=EXAMPLES-D

[jira] [Assigned] (NETBEANS-4901) phpDocumentor commandline arguments change

2020-10-12 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto reassigned NETBEANS-4901:
--

Assignee: Junichi Yamamoto

> phpDocumentor commandline arguments change
> --
>
> Key: NETBEANS-4901
> URL: https://issues.apache.org/jira/browse/NETBEANS-4901
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - PHPDoc
>Affects Versions: 11.1
>Reporter: Vítězslav Dvořák
>Assignee: Junichi Yamamoto
>Priority: Minor
>
> New phpdoc 3.0.0+ use different commandline syntax:
>  
> {color:#b26818}Options:{color} 
>   {color:#18b218}-t, --target[=TARGET]{color}{color:#00}  
> Path where to store the generated output {color}
>   {color:#18b218}--cache-folder[=CACHE-FOLDER]{color}{color:#00}  
> Path where to store the cache files {color}
>   {color:#18b218}-f, --filename[=FILENAME]{color}{color:#00}  
> File to parse, glob patterns are supported. Provide multiple options 
> of this type to add {color}
>  multiple 
> files.{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}-d, --directory[=DIRECTORY]{color}{color:#00}    
> directory to parse, glob patterns are supported. Provide multiple 
> options of this type to add {color}
>  multiple 
> directories.{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}--encoding[=ENCODING]{color}{color:#00}  
> encoding to be used to interpret source files with {color}
>   {color:#18b218}--extensions[=EXTENSIONS]{color}{color:#00}  
> Provide multiple options of this type to add multiple extensions. 
> default is php{color}{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}-i, --ignore[=IGNORE]{color}{color:#00}  
> File(s) and directories (relative to the source-code directory) that 
> will be ignored. Glob patterns are supported. Add multiple options of this 
> type of add more {color}
> ignore patterns{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}--ignore-tags[=IGNORE-TAGS]{color}{color:#00}    
> Tag that will be ignored, defaults to none. package, subpackage and 
> ignore may not be ignored. Add multiple options of this type to ignore 
> multiple tags.{color}{color:#b26818} (multip{color}
> le values allowed)    
>   
>   {color:#00} {color}
>   {color:#18b218}--hidden{color}{color:#00}   
> Use this option to tell phpDocumentor to parse files and directories 
> that begin with a period (.), by default these are ignored {color}
>   {color:#18b218}--ignore-symlinks{color}{color:#00}  
> Ignore symlinks to other files or directories, default is on {color}
>   {color:#18b218}-m, --markers[=MARKERS]{color}{color:#00}    
> Comma-separated list of markers/tags to filter{color}{color:#b26818} 
> (multiple values allowed){color} 
>   {color:#18b218}--title[=TITLE]{color}{color:#00}    
> Sets the title for this project; default is the phpDocumentor logo 
> {color}
>   {color:#18b218}--force{color}{color:#00}    
> Forces a full build of the documentation, does not increment existing 
> documentation {color}
>   {color:#18b218}--validate{color}{color:#00} 
> Validates every processed file using PHP Lint, costs a lot of 
> performance {color}
>   {color:#18b218}--visibility[=VISIBILITY]{color}{color:#00}  
> Specifies the parse visibility that should be displayed in the 
> documentation. Add multiple options of {color}
>  this type to specify 
> multiple levels.("public,protected"){color:#b26818} (multiple values 
> allowed){color} 
>   {color:#18b218}
> --defaultpackagename[=DEFAULTPACKAGENAME]{color}{color:#00}  Name to use 
> for the default package.{color}{color:#b26818} [default: "Default"]{color} 
>   {color:#18b218}--sourcecode{color}{color:#00}   
> Whether to include syntax highlighted source code {color}
>   {color:#18b218}--template[=TEMPLATE]{color}{color:#00}  
> Name of the template to use (optional){color}{color:#b26818} 
> (multiple values allowed){color} 
>   {color:#18b218}--examples-dir[=EXAMPLES-DIR]{c

commits@netbeans.apache.org

2020-10-12 Thread Adrien DE GEORGES (Jira)


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

Adrien DE GEORGES reassigned NETBEANS-4533:
---

Assignee: Laszlo Kishalmi

> Chinese characters not displayed in table header for ordered column (Windows 
> Look&Feel)
> ---
>
> Key: NETBEANS-4533
> URL: https://issues.apache.org/jira/browse/NETBEANS-4533
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Outline&TreeTable
> Environment: Windows 7, using the Windows Look and Feel.
>Reporter: Adrien DE GEORGES
>Assignee: Laszlo Kishalmi
>Priority: Major
>  Labels: pull-request-available
> Attachments: BugETableChinese.zip, ETableHeader.java.v8.2.patch
>
>  Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> Scenario:
>  * Use the Windows Look and Feel in your Java application (with Metal: no 
> problem).
>  * Create a ETable with a column header having characters in Chinese or 
> Japanese (or any not supported by Tahoma font).
>  * When running the program, click on this header to sort the column => these 
> characters will be replaced by a square.
>  (small Maven project attached, with 1 class and one main method)
> Root cause:
>  The headers of the sorted columns will be rendered in bold by the ETable, 
> which is done in "ETableHeader::getTableCellRendererComponent". This code 
> takes the font of the JLabel used for the rendering, and creates a similar 
> font in bold. For that, it does not uses "Font::deriveFont(...)" (because of 
> a 2005 bug with Apple's JVM), but uses "(new Font (label.getFont().getName(), 
> ...)".
>  Under Windows it is a problem:
>  * the default font (used here by the JLabel) is a composite font
>  * from what I understand, a composite font is a list of physical fonts, 
> which will be successively used to try to render a given character.
>  * this list of the physical fonts contains one that supports Chinese 
> characters.
>  * label.getFont().getName() retrieves the name of the first font of the 
> composite font, in the case of the Windows Look and Feel it is "Tahoma" 
> (which does not support Chinese).
>  * so the "new Font(...)" used as a header renderer will be only "Tahoma", 
> hence the square characters.
>  
> The suggestion is to revert the patch from 2005 as it is not reproductible 
> anymore (change of JRE)
> Old code:
>  // don't use deriveFont() - see #49973 for details
>  label.setFont (new Font (label.getFont ().getName (), Font.BOLD, 
> label.getFont ().getSize ()));
> New code:
>  label.setFont(label.getFont().deriveFont(Font.BOLD));
> A patch is attached in the ticket.
> Please note that this is a duplicate of a bug already logged in the old 
> Bugzilla : [https://bz.apache.org/netbeans/show_bug.cgi?id=270091]



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

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

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



[jira] [Comment Edited] (NETBEANS-4901) phpDocumentor commandline arguments change

2020-10-12 Thread Jira


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

Vítězslav Dvořák edited comment on NETBEANS-4901 at 10/12/20, 1:00 PM:
---

maybe only delete line 
[https://github.com/apache/netbeans/blob/master/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java#L154]
 ?

I cannot buld module under java11 and my java1.8 is long time gone, thus i wait 
for some professional for help/solution

 


was (Author: vitex):
maybee only delete line 
[https://github.com/apache/netbeans/blob/master/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java#L154]
 ?

I cannot buld module under java11 and my java1.8 is long time gone, thus i wait 
for some professional for help/solution

 

> phpDocumentor commandline arguments change
> --
>
> Key: NETBEANS-4901
> URL: https://issues.apache.org/jira/browse/NETBEANS-4901
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - PHPDoc
>Affects Versions: 11.1
>Reporter: Vítězslav Dvořák
>Priority: Minor
>
> New phpdoc 3.0.0+ use different commandline syntax:
>  
> {color:#b26818}Options:{color} 
>   {color:#18b218}-t, --target[=TARGET]{color}{color:#00}  
> Path where to store the generated output {color}
>   {color:#18b218}--cache-folder[=CACHE-FOLDER]{color}{color:#00}  
> Path where to store the cache files {color}
>   {color:#18b218}-f, --filename[=FILENAME]{color}{color:#00}  
> File to parse, glob patterns are supported. Provide multiple options 
> of this type to add {color}
>  multiple 
> files.{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}-d, --directory[=DIRECTORY]{color}{color:#00}    
> directory to parse, glob patterns are supported. Provide multiple 
> options of this type to add {color}
>  multiple 
> directories.{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}--encoding[=ENCODING]{color}{color:#00}  
> encoding to be used to interpret source files with {color}
>   {color:#18b218}--extensions[=EXTENSIONS]{color}{color:#00}  
> Provide multiple options of this type to add multiple extensions. 
> default is php{color}{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}-i, --ignore[=IGNORE]{color}{color:#00}  
> File(s) and directories (relative to the source-code directory) that 
> will be ignored. Glob patterns are supported. Add multiple options of this 
> type of add more {color}
> ignore patterns{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}--ignore-tags[=IGNORE-TAGS]{color}{color:#00}    
> Tag that will be ignored, defaults to none. package, subpackage and 
> ignore may not be ignored. Add multiple options of this type to ignore 
> multiple tags.{color}{color:#b26818} (multip{color}
> le values allowed)    
>   
>   {color:#00} {color}
>   {color:#18b218}--hidden{color}{color:#00}   
> Use this option to tell phpDocumentor to parse files and directories 
> that begin with a period (.), by default these are ignored {color}
>   {color:#18b218}--ignore-symlinks{color}{color:#00}  
> Ignore symlinks to other files or directories, default is on {color}
>   {color:#18b218}-m, --markers[=MARKERS]{color}{color:#00}    
> Comma-separated list of markers/tags to filter{color}{color:#b26818} 
> (multiple values allowed){color} 
>   {color:#18b218}--title[=TITLE]{color}{color:#00}    
> Sets the title for this project; default is the phpDocumentor logo 
> {color}
>   {color:#18b218}--force{color}{color:#00}    
> Forces a full build of the documentation, does not increment existing 
> documentation {color}
>   {color:#18b218}--validate{color}{color:#00} 
> Validates every processed file using PHP Lint, costs a lot of 
> performance {color}
>   {color:#18b218}--visibility[=VISIBILITY]{color}{color:#00}  
> Specifies the parse visibility that should be displayed in the 
> documentation. Add multiple options of {color}
>  this type to specify 
> multiple levels.("public,protected"){color:#b26818} (mul

[jira] [Commented] (NETBEANS-4901) phpDocumentor commandline arguments change

2020-10-12 Thread Jira


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

Vítězslav Dvořák commented on NETBEANS-4901:


maybee only delete line 
[https://github.com/apache/netbeans/blob/master/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java#L154]
 ?

I cannot buld module under java11 and my java1.8 is long time gone, thus i wait 
for some professional for help/solution

 

> phpDocumentor commandline arguments change
> --
>
> Key: NETBEANS-4901
> URL: https://issues.apache.org/jira/browse/NETBEANS-4901
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - PHPDoc
>Affects Versions: 11.1
>Reporter: Vítězslav Dvořák
>Priority: Minor
>
> New phpdoc 3.0.0+ use different commandline syntax:
>  
> {color:#b26818}Options:{color} 
>   {color:#18b218}-t, --target[=TARGET]{color}{color:#00}  
> Path where to store the generated output {color}
>   {color:#18b218}--cache-folder[=CACHE-FOLDER]{color}{color:#00}  
> Path where to store the cache files {color}
>   {color:#18b218}-f, --filename[=FILENAME]{color}{color:#00}  
> File to parse, glob patterns are supported. Provide multiple options 
> of this type to add {color}
>  multiple 
> files.{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}-d, --directory[=DIRECTORY]{color}{color:#00}    
> directory to parse, glob patterns are supported. Provide multiple 
> options of this type to add {color}
>  multiple 
> directories.{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}--encoding[=ENCODING]{color}{color:#00}  
> encoding to be used to interpret source files with {color}
>   {color:#18b218}--extensions[=EXTENSIONS]{color}{color:#00}  
> Provide multiple options of this type to add multiple extensions. 
> default is php{color}{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}-i, --ignore[=IGNORE]{color}{color:#00}  
> File(s) and directories (relative to the source-code directory) that 
> will be ignored. Glob patterns are supported. Add multiple options of this 
> type of add more {color}
> ignore patterns{color:#b26818} (multiple values allowed){color} 
>   {color:#18b218}--ignore-tags[=IGNORE-TAGS]{color}{color:#00}    
> Tag that will be ignored, defaults to none. package, subpackage and 
> ignore may not be ignored. Add multiple options of this type to ignore 
> multiple tags.{color}{color:#b26818} (multip{color}
> le values allowed)    
>   
>   {color:#00} {color}
>   {color:#18b218}--hidden{color}{color:#00}   
> Use this option to tell phpDocumentor to parse files and directories 
> that begin with a period (.), by default these are ignored {color}
>   {color:#18b218}--ignore-symlinks{color}{color:#00}  
> Ignore symlinks to other files or directories, default is on {color}
>   {color:#18b218}-m, --markers[=MARKERS]{color}{color:#00}    
> Comma-separated list of markers/tags to filter{color}{color:#b26818} 
> (multiple values allowed){color} 
>   {color:#18b218}--title[=TITLE]{color}{color:#00}    
> Sets the title for this project; default is the phpDocumentor logo 
> {color}
>   {color:#18b218}--force{color}{color:#00}    
> Forces a full build of the documentation, does not increment existing 
> documentation {color}
>   {color:#18b218}--validate{color}{color:#00} 
> Validates every processed file using PHP Lint, costs a lot of 
> performance {color}
>   {color:#18b218}--visibility[=VISIBILITY]{color}{color:#00}  
> Specifies the parse visibility that should be displayed in the 
> documentation. Add multiple options of {color}
>  this type to specify 
> multiple levels.("public,protected"){color:#b26818} (multiple values 
> allowed){color} 
>   {color:#18b218}
> --defaultpackagename[=DEFAULTPACKAGENAME]{color}{color:#00}  Name to use 
> for the default package.{color}{color:#b26818} [default: "Default"]{color} 
>   {color:#18b218}--sourcecode{color}{color:#00}   
> Whether to include syntax highlighted source 

[jira] [Created] (NETBEANS-4901) phpDocumentor commandline arguments change

2020-10-12 Thread Jira
Vítězslav Dvořák created NETBEANS-4901:
--

 Summary: phpDocumentor commandline arguments change
 Key: NETBEANS-4901
 URL: https://issues.apache.org/jira/browse/NETBEANS-4901
 Project: NetBeans
  Issue Type: Improvement
  Components: php - PHPDoc
Affects Versions: 11.1
Reporter: Vítězslav Dvořák


New phpdoc 3.0.0+ use different commandline syntax:

 

{color:#b26818}Options:{color} 
  {color:#18b218}-t, --target[=TARGET]{color}{color:#00}    
  Path where to store the generated output {color}
  {color:#18b218}--cache-folder[=CACHE-FOLDER]{color}{color:#00}    
  Path where to store the cache files {color}
  {color:#18b218}-f, --filename[=FILENAME]{color}{color:#00}    
  File to parse, glob patterns are supported. Provide multiple options of 
this type to add {color}
 multiple files.{color:#b26818} 
(multiple values allowed){color} 
  {color:#18b218}-d, --directory[=DIRECTORY]{color}{color:#00}  
  directory to parse, glob patterns are supported. Provide multiple options 
of this type to add {color}
 multiple 
directories.{color:#b26818} (multiple values allowed){color} 
  {color:#18b218}--encoding[=ENCODING]{color}{color:#00}    
  encoding to be used to interpret source files with {color}
  {color:#18b218}--extensions[=EXTENSIONS]{color}{color:#00}    
  Provide multiple options of this type to add multiple extensions. default 
is php{color}{color:#b26818} (multiple values allowed){color} 
  {color:#18b218}-i, --ignore[=IGNORE]{color}{color:#00}    
  File(s) and directories (relative to the source-code directory) that will 
be ignored. Glob patterns are supported. Add multiple options of this type of 
add more {color}
ignore patterns{color:#b26818} (multiple values allowed){color} 
  {color:#18b218}--ignore-tags[=IGNORE-TAGS]{color}{color:#00}  
  Tag that will be ignored, defaults to none. package, subpackage and 
ignore may not be ignored. Add multiple options of this type to ignore multiple 
tags.{color}{color:#b26818} (multip{color}
le values allowed)  

  {color:#00} {color}
  {color:#18b218}--hidden{color}{color:#00} 
  Use this option to tell phpDocumentor to parse files and directories that 
begin with a period (.), by default these are ignored {color}
  {color:#18b218}--ignore-symlinks{color}{color:#00}    
  Ignore symlinks to other files or directories, default is on {color}
  {color:#18b218}-m, --markers[=MARKERS]{color}{color:#00}  
  Comma-separated list of markers/tags to filter{color}{color:#b26818} 
(multiple values allowed){color} 
  {color:#18b218}--title[=TITLE]{color}{color:#00}  
  Sets the title for this project; default is the phpDocumentor logo {color}
  {color:#18b218}--force{color}{color:#00}  
  Forces a full build of the documentation, does not increment existing 
documentation {color}
  {color:#18b218}--validate{color}{color:#00}   
  Validates every processed file using PHP Lint, costs a lot of performance 
{color}
  {color:#18b218}--visibility[=VISIBILITY]{color}{color:#00}    
  Specifies the parse visibility that should be displayed in the 
documentation. Add multiple options of {color}
 this type to specify multiple 
levels.("public,protected"){color:#b26818} (multiple values allowed){color} 
  {color:#18b218}
--defaultpackagename[=DEFAULTPACKAGENAME]{color}{color:#00}  Name to use 
for the default package.{color}{color:#b26818} [default: "Default"]{color} 
  {color:#18b218}--sourcecode{color}{color:#00} 
  Whether to include syntax highlighted source code {color}
  {color:#18b218}--template[=TEMPLATE]{color}{color:#00}    
  Name of the template to use (optional){color}{color:#b26818} (multiple 
values allowed){color} 
  {color:#18b218}--examples-dir[=EXAMPLES-DIR]{color}{color:#00}    
  Directory to seacher for example files referenced by @example tags {color}
  {color:#18b218}-s, --setting[=SETTING]{color}{color:#00}  
  Provide custom setting(s) as "key=value", run again with 
{color}{color:#18b218}--list-settings{color}{color:#00} for a 
list{color}{color:#b26818} (multiple values allowed){color} 
  {color:#18b218}  

[jira] [Comment Edited] (NETBEANS-2610) PHP can't set breakpoint

2020-10-12 Thread Jira


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

Vítězslav Dvořák edited comment on NETBEANS-2610 at 10/12/20, 12:12 PM:


Also is impossible to enable disabled breakpoints in this time.

I use CTRL+Mouse click to jump inside of another PHP class function.

After that putting of new breakpoints works well.

-Not sure when this case occurs but not- every time.


was (Author: vitex):
Also is impossible to enable disabled breakpoints in this time.

I use CTRL+Mouse click to jump inside of another PHP class function.

After that putting of new breakpoints works well.

Not sure when this case occurs but not every time.

> PHP can't set breakpoint
> 
>
> Key: NETBEANS-2610
> URL: https://issues.apache.org/jira/browse/NETBEANS-2610
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Debugger
>Affects Versions: 10.0, 11.0, 12.0, 12.1
> Environment: Ubuntu 19.10, JDK 8 and JDK 11
>Reporter: Owen Savill
>Priority: Major
>  Labels: PHP, php-debug
>
> When Netbeans first fires up it is unable to set a breakpoint in a PHP file 
> until a breakpoint is set elsewhere, e.g. in a Java project. I've also 
> noticed that sometimes after following a jump to the definition of a PHP 
> function enabling breakpoints also becomes enabled.



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

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

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



[jira] [Created] (NETBEANS-4900) Issues with gradle project

2020-10-12 Thread mkhramov (Jira)
mkhramov created NETBEANS-4900:
--

 Summary:  Issues with gradle project
 Key: NETBEANS-4900
 URL: https://issues.apache.org/jira/browse/NETBEANS-4900
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Gradle
 Environment: Product Version: Apache NetBeans IDE DEV (Build 
dev-12d0e2d43f10e70cdc90c26e3b65d0aa946282e3)
Java: 13.0.1; Java HotSpot(TM) 64-Bit Server VM 13.0.1+9
Runtime: Java(TM) SE Runtime Environment 13.0.1+9
System: Windows 10 version 10.0 running on amd64; Cp1251; ru_RU (nb)
Reporter: mkhramov
Assignee: Laszlo Kishalmi
 Attachments: demo.png

On latest dev build I see next issues with gradle proeject...

Configurations node is empty now

Settings.gradle file node is missed from project tree

No more syntax highlighting in opened gradle file editor

 



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

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

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