[jira] [Resolved] (NETBEANS-6315) PHPStan error is not displayed correctly in Inspector

2021-12-18 Thread Jira


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

Tomáš Procházka resolved NETBEANS-6315.
---
Fix Version/s: 13
   Resolution: Fixed

PR was merged.

> PHPStan error is not displayed correctly in Inspector
> -
>
> Key: NETBEANS-6315
> URL: https://issues.apache.org/jira/browse/NETBEANS-6315
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code Analysis
>Affects Versions: 12.6
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 13
>
> Attachments: netbeans-phpstan-message.png
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> When PHPStan reports issue with arrays, it uses notation with angle brackets 
> - for array containing strings it is "array".
> Part "" of message is not displayed on right side of Inspector, 
> because content is rendered as HTML.
> Example:
>  !netbeans-phpstan-message.png! 



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6315] Escape HTML entities in PHPStan report

2021-12-18 Thread junichi11
This is an automated email from the ASF dual-hosted git repository.

junichi11 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 8529892  [NETBEANS-6315] Escape HTML entities in PHPStan report
 new b4fb977  Merge pull request #3380 from 
KacerCZ/netbeans-6315-phpstan-message-fix
8529892 is described below

commit 852989292e99671a89ef1264cfefb89c843edbd7
Author: Tomas Prochazka 
AuthorDate: Sat Dec 18 11:03:02 2021 +0100

[NETBEANS-6315] Escape HTML entities in PHPStan report

https://issues.apache.org/jira/browse/NETBEANS-6315

- Escapes HTML entities in message from PHPStan report
---
 php/php.code.analysis/manifest.mf  |  2 +-
 php/php.code.analysis/nbproject/project.xml|  9 
 .../php/analysis/parsers/PHPStanReportParser.java  |  4 +++-
 .../data/phpstan/phpstan-log-html-entities.xml | 26 ++
 .../analysis/parsers/PHPStanReportParserTest.java  | 14 
 5 files changed, 53 insertions(+), 2 deletions(-)

diff --git a/php/php.code.analysis/manifest.mf 
b/php/php.code.analysis/manifest.mf
index ecc7226..0b3efb8 100644
--- a/php/php.code.analysis/manifest.mf
+++ b/php/php.code.analysis/manifest.mf
@@ -2,4 +2,4 @@ Manifest-Version: 1.0
 OpenIDE-Module: org.netbeans.modules.php.code.analysis
 OpenIDE-Module-Layer: org/netbeans/modules/php/analysis/resources/layer.xml
 OpenIDE-Module-Localizing-Bundle: 
org/netbeans/modules/php/analysis/resources/Bundle.properties
-OpenIDE-Module-Specification-Version: 0.28
+OpenIDE-Module-Specification-Version: 0.29
diff --git a/php/php.code.analysis/nbproject/project.xml 
b/php/php.code.analysis/nbproject/project.xml
index 812ab35..dad2ea0 100644
--- a/php/php.code.analysis/nbproject/project.xml
+++ b/php/php.code.analysis/nbproject/project.xml
@@ -44,6 +44,15 @@
 
 
 
+
org.netbeans.modules.editor.util
+
+
+
+1
+1.80
+
+
+
 
org.netbeans.modules.extexecution
 
 
diff --git 
a/php/php.code.analysis/src/org/netbeans/modules/php/analysis/parsers/PHPStanReportParser.java
 
b/php/php.code.analysis/src/org/netbeans/modules/php/analysis/parsers/PHPStanReportParser.java
index 2ed5e47..5638a82 100644
--- 
a/php/php.code.analysis/src/org/netbeans/modules/php/analysis/parsers/PHPStanReportParser.java
+++ 
b/php/php.code.analysis/src/org/netbeans/modules/php/analysis/parsers/PHPStanReportParser.java
@@ -34,6 +34,7 @@ import java.util.logging.Level;
 import java.util.logging.Logger;
 import org.netbeans.api.annotations.common.CheckForNull;
 import org.netbeans.api.annotations.common.NullAllowed;
+import org.netbeans.lib.editor.util.StringEscapeUtils;
 import org.netbeans.modules.php.analysis.results.Result;
 import org.netbeans.modules.php.api.util.FileUtils;
 import org.openide.filesystems.FileObject;
@@ -165,7 +166,8 @@ public class PHPStanReportParser extends DefaultHandler {
 currentResult.setColumn(getInt(attributes, "column")); // NOI18N
 String message = attributes.getValue("message"); // NOI18N
 currentResult.setCategory(String.format("%s: %s", 
attributes.getValue("severity"), message)); // NOI18N
-currentResult.setDescription(message);
+// Message can contain types like "array" and description is 
renderd as HTML so it has to be properly escaped.
+currentResult.setDescription(StringEscapeUtils.escapeHtml(message));
 }
 
 private void processResultEnd() {
diff --git 
a/php/php.code.analysis/test/unit/data/phpstan/phpstan-log-html-entities.xml 
b/php/php.code.analysis/test/unit/data/phpstan/phpstan-log-html-entities.xml
new file mode 100644
index 000..ffe1f06
--- /dev/null
+++ b/php/php.code.analysis/test/unit/data/phpstan/phpstan-log-html-entities.xml
@@ -0,0 +1,26 @@
+
+
+
+
+  
+
+
diff --git 
a/php/php.code.analysis/test/unit/src/org/netbeans/modules/php/analysis/parsers/PHPStanReportParserTest.java
 
b/php/php.code.analysis/test/unit/src/org/netbeans/modules/php/analysis/parsers/PHPStanReportParserTest.java
index 5c9bf57..42786d7 100644
--- 
a/php/php.code.analysis/test/unit/src/org/netbeans/modules/php/analysis/parsers/PHPStanReportParserTest.java
+++ 
b/php/php.code.analysis/test/unit/src/org/netbeans/modules/php/analysis/parsers/PHPStanReportParserTest.java
@@ -98,6 +98,20 @@ public class PHPStanReportParserTest extends NbTestCase {
 assertEquals(3, results.size());
 }
 
+public void testParseWithHtmlEntities() throws Exception {
+FileObject root = getDataDir("phpstan/PHPStanSupport");
+FileObject workDir = root;
+List results = 
PHPStanReportParser.parse(getLogFile("phpstan-l

[jira] [Commented] (NETBEANS-6317) Can't create project (PHP)

2021-12-18 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-6317:


java.lang.UnsupportedClassVersionError: 
de/funfried/netbeans/plugins/external/formatter/ui/editor/ExternalFormatterCodeStylePreferencesProvider
 has been compiled by a more recent version of the Java Runtime (class file 
version 55.0), this version of the Java Runtime only recognizes class file 
versions up to 52.0

Maybe, the plugin has the cause. So, please uninstall the plugin or please 
install the new version if it has it.

> Can't create project (PHP)
> --
>
> Key: NETBEANS-6317
> URL: https://issues.apache.org/jira/browse/NETBEANS-6317
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Project
>Affects Versions: 12.6
>Reporter: Mikkel Trebbien
>Priority: Minor
>  Labels: IDE, php
> Attachments: Untitled.png, messages.log
>
>
> Dear community.
> I've just downloaded and installed latest NetBeans version (NetBeans 12.6).
> I already have some projects (4 projects) imported from NetBeans 12, but 
> wanted to create a new project.
> This failed, and I honestly don't understand why, so I'll include the error 
> log here (uploaded file).
> Edit: Before installing NetBeans 12.6, I downloaded and installed latest Java 
> x64 update.
> Update:
> First, I tried to create a new *PHP 8.0* project, with {*}FTP/FTPS 
> connection{*}, this failed.
> Second, I tried to create a new *PHP 8.0* project, with {*}local source{*}, 
> this failed.
> Third, I tried to create a new *PHP 7.4* project, with {*}local source{*}, 
> this also failed.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6317) Can't create project (PHP)

2021-12-18 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-6317:
---
Priority: Minor  (was: Critical)

> Can't create project (PHP)
> --
>
> Key: NETBEANS-6317
> URL: https://issues.apache.org/jira/browse/NETBEANS-6317
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Project
>Affects Versions: 12.6
>Reporter: Mikkel Trebbien
>Priority: Minor
>  Labels: IDE, php
> Attachments: Untitled.png, messages.log
>
>
> Dear community.
> I've just downloaded and installed latest NetBeans version (NetBeans 12.6).
> I already have some projects (4 projects) imported from NetBeans 12, but 
> wanted to create a new project.
> This failed, and I honestly don't understand why, so I'll include the error 
> log here (uploaded file).
> Edit: Before installing NetBeans 12.6, I downloaded and installed latest Java 
> x64 update.
> Update:
> First, I tried to create a new *PHP 8.0* project, with {*}FTP/FTPS 
> connection{*}, this failed.
> Second, I tried to create a new *PHP 8.0* project, with {*}local source{*}, 
> this failed.
> Third, I tried to create a new *PHP 7.4* project, with {*}local source{*}, 
> this also failed.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6317) Can't create project (PHP)

2021-12-18 Thread Mikkel Trebbien (Jira)


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

Mikkel Trebbien updated NETBEANS-6317:
--
Description: 
Dear community.

I've just downloaded and installed latest NetBeans version (NetBeans 12.6).
I already have some projects (4 projects) imported from NetBeans 12, but wanted 
to create a new project.
This failed, and I honestly don't understand why, so I'll include the error log 
here (uploaded file).

Edit: Before installing NetBeans 12.6, I downloaded and installed latest Java 
x64 update.

Update:

First, I tried to create a new *PHP 8.0* project, with {*}FTP/FTPS 
connection{*}, this failed.
Second, I tried to create a new *PHP 8.0* project, with {*}local source{*}, 
this failed.
Third, I tried to create a new *PHP 7.4* project, with {*}local source{*}, this 
also failed.

  was:
Dear community.

I've just downloaded and installed latest NetBeans version (NetBeans 12.6).
I already have some projects (4 projects) imported from NetBeans 12, but wanted 
to create a new project.
This failed, and I honestly don't understand why, so I'll include the error log 
here (uploaded file).

Edit: Before installing NetBeans 12.6, I downloaded and installed latest Java 
x64 update.


> Can't create project (PHP)
> --
>
> Key: NETBEANS-6317
> URL: https://issues.apache.org/jira/browse/NETBEANS-6317
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Project
>Affects Versions: 12.6
>Reporter: Mikkel Trebbien
>Priority: Critical
>  Labels: IDE, php
> Attachments: Untitled.png, messages.log
>
>
> Dear community.
> I've just downloaded and installed latest NetBeans version (NetBeans 12.6).
> I already have some projects (4 projects) imported from NetBeans 12, but 
> wanted to create a new project.
> This failed, and I honestly don't understand why, so I'll include the error 
> log here (uploaded file).
> Edit: Before installing NetBeans 12.6, I downloaded and installed latest Java 
> x64 update.
> Update:
> First, I tried to create a new *PHP 8.0* project, with {*}FTP/FTPS 
> connection{*}, this failed.
> Second, I tried to create a new *PHP 8.0* project, with {*}local source{*}, 
> this failed.
> Third, I tried to create a new *PHP 7.4* project, with {*}local source{*}, 
> this also failed.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6317) Can't create project (PHP)

2021-12-18 Thread Mikkel Trebbien (Jira)


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

Mikkel Trebbien updated NETBEANS-6317:
--
Attachment: Untitled.png

> Can't create project (PHP)
> --
>
> Key: NETBEANS-6317
> URL: https://issues.apache.org/jira/browse/NETBEANS-6317
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Project
>Affects Versions: 12.6
>Reporter: Mikkel Trebbien
>Priority: Critical
>  Labels: IDE, php
> Attachments: Untitled.png, messages.log
>
>
> Dear community.
> I've just downloaded and installed latest NetBeans version (NetBeans 12.6).
> I already have some projects (4 projects) imported from NetBeans 12, but 
> wanted to create a new project.
> This failed, and I honestly don't understand why, so I'll include the error 
> log here (uploaded file).
> Edit: Before installing NetBeans 12.6, I downloaded and installed latest Java 
> x64 update.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6317) Can't create project (PHP)

2021-12-18 Thread Mikkel Trebbien (Jira)


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

Mikkel Trebbien updated NETBEANS-6317:
--
Description: 
Dear community.

I've just downloaded and installed latest NetBeans version (NetBeans 12.6).
I already have some projects (4 projects) imported from NetBeans 12, but wanted 
to create a new project.
This failed, and I honestly don't understand why, so I'll include the error log 
here (uploaded file).

Edit: Before installing NetBeans 12.6, I downloaded and installed latest Java 
x64 update.

  was:
Dear community.

I've just downloaded and installed NetBeans 12.6.
I already have some projects (4 projects) imported from NetBeans 12, but wanted 
to create a new project.
This failed, and I honestly don't understand why, so I'll include the error log 
here (uploaded file).


> Can't create project (PHP)
> --
>
> Key: NETBEANS-6317
> URL: https://issues.apache.org/jira/browse/NETBEANS-6317
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Project
>Affects Versions: 12.6
>Reporter: Mikkel Trebbien
>Priority: Critical
>  Labels: IDE, php
> Attachments: messages.log
>
>
> Dear community.
> I've just downloaded and installed latest NetBeans version (NetBeans 12.6).
> I already have some projects (4 projects) imported from NetBeans 12, but 
> wanted to create a new project.
> This failed, and I honestly don't understand why, so I'll include the error 
> log here (uploaded file).
> Edit: Before installing NetBeans 12.6, I downloaded and installed latest Java 
> x64 update.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6317) Can't create project (PHP)

2021-12-18 Thread Mikkel Trebbien (Jira)
Mikkel Trebbien created NETBEANS-6317:
-

 Summary: Can't create project (PHP)
 Key: NETBEANS-6317
 URL: https://issues.apache.org/jira/browse/NETBEANS-6317
 Project: NetBeans
  Issue Type: Bug
  Components: php - Project
Affects Versions: 12.6
Reporter: Mikkel Trebbien
 Attachments: messages.log

Dear community.

I've just downloaded and installed NetBeans 12.6.
I already have some projects (4 projects) imported from NetBeans 12, but wanted 
to create a new project.
This failed, and I honestly don't understand why, so I'll include the error log 
here (uploaded file).



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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: Rewrite lambda to an inner class to prevent from Gradle warning about execution optimizations.

2021-12-18 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 b93f750  Rewrite lambda to an inner class to prevent from Gradle 
warning about execution optimizations.
b93f750 is described below

commit b93f750c5f15ef7db8d9ee91d3e6767f82150adc
Author: Martin Entlicher 
AuthorDate: Thu Dec 16 22:30:20 2021 +0100

Rewrite lambda to an inner class to prevent from Gradle warning about 
execution optimizations.
---
 .../modules/gradle/tooling/NetBeansRunSinglePlugin.java   | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git 
a/extide/gradle/netbeans-gradle-tooling/src/main/java/org/netbeans/modules/gradle/tooling/NetBeansRunSinglePlugin.java
 
b/extide/gradle/netbeans-gradle-tooling/src/main/java/org/netbeans/modules/gradle/tooling/NetBeansRunSinglePlugin.java
index 6693f9f..b3041bf 100644
--- 
a/extide/gradle/netbeans-gradle-tooling/src/main/java/org/netbeans/modules/gradle/tooling/NetBeansRunSinglePlugin.java
+++ 
b/extide/gradle/netbeans-gradle-tooling/src/main/java/org/netbeans/modules/gradle/tooling/NetBeansRunSinglePlugin.java
@@ -25,6 +25,7 @@ import org.gradle.api.Plugin;
 import org.gradle.api.Project;
 import org.gradle.api.tasks.JavaExec;
 import org.gradle.api.tasks.SourceSetContainer;
+import org.gradle.process.CommandLineArgumentProvider;
 
 /**
  *
@@ -48,8 +49,14 @@ class NetBeansRunSinglePlugin implements Plugin {
 }
 p.getTasks().withType(JavaExec.class).configureEach(je -> {
 if (p.hasProperty(RUN_SINGLE_JVM_ARGS)) {
-je.getJvmArgumentProviders().add(() -> {
-return 
asList(p.property(RUN_SINGLE_JVM_ARGS).toString().split(" "));
+// Property jvmArgumentProviders should not be implemented 
as a lambda to allow execution optimizations.
+// See 
https://docs.gradle.org/current/userguide/validation_problems.html#implementation_unknown
+je.getJvmArgumentProviders().add(new 
CommandLineArgumentProvider() {
+// Do not convert to lambda.
+@Override
+public Iterable asArguments() {
+return 
asList(p.property(RUN_SINGLE_JVM_ARGS).toString().split(" "));
+}
 });
 }
 je.setStandardInput(System.in);

-
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 (e3711b1 -> 418b01c)

2021-12-18 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 e3711b1  Merge pull request #3372 from mbien/permgen
 add 418b01c  Options panel use default colors in gtk laf

No new revisions were added by this update.

Summary of changes:
 .../src/org/netbeans/swing/plaf/LFCustoms.java |  7 ++
 .../org/netbeans/swing/plaf/gtk/GtkLFCustoms.java  |  5 +
 .../netbeans/swing/plaf/metal/MetalLFCustoms.java  |  3 +++
 .../swing/plaf/nimbus/NimbusLFCustoms.java |  4 
 platform/options.api/nbproject/project.properties  |  2 +-
 .../org/netbeans/modules/options/OptionsPanel.java | 25 +++---
 6 files changed, 33 insertions(+), 13 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] [Created] (NETBEANS-6316) The "Preview Design" funtion of the GUI Builder does not work.

2021-12-18 Thread zsyixy (Jira)
zsyixy created NETBEANS-6316:


 Summary: The "Preview Design" funtion of the GUI Builder does not 
work.
 Key: NETBEANS-6316
 URL: https://issues.apache.org/jira/browse/NETBEANS-6316
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Editor
Affects Versions: 12.6
Reporter: zsyixy


The "Preview Design" funtion of the GUI Builder does't work while choosing 
"Windows" or "Windows classic" look and feel, on the Windows10 platform.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6315) PHPStan error is not displayed correctly in Inspector

2021-12-18 Thread ASF GitHub Bot (Jira)


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

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

> PHPStan error is not displayed correctly in Inspector
> -
>
> Key: NETBEANS-6315
> URL: https://issues.apache.org/jira/browse/NETBEANS-6315
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Code Analysis
>Affects Versions: 12.6
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
> Attachments: netbeans-phpstan-message.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> When PHPStan reports issue with arrays, it uses notation with angle brackets 
> - for array containing strings it is "array".
> Part "" of message is not displayed on right side of Inspector, 
> because content is rendered as HTML.
> Example:
>  !netbeans-phpstan-message.png! 



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6315) PHPStan error is not displayed correctly in Inspector

2021-12-18 Thread Jira
Tomáš Procházka created NETBEANS-6315:
-

 Summary: PHPStan error is not displayed correctly in Inspector
 Key: NETBEANS-6315
 URL: https://issues.apache.org/jira/browse/NETBEANS-6315
 Project: NetBeans
  Issue Type: Bug
  Components: php - Code Analysis
Affects Versions: 12.6
Reporter: Tomáš Procházka
Assignee: Tomáš Procházka
 Attachments: netbeans-phpstan-message.png

When PHPStan reports issue with arrays, it uses notation with angle brackets - 
for array containing strings it is "array".
Part "" of message is not displayed on right side of Inspector, because 
content is rendered as HTML.

Example:
 !netbeans-phpstan-message.png! 



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6298) Match NetBeans console encoding to system/app console encoding

2021-12-18 Thread Aleksandr Dubinsky (Jira)


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

Aleksandr Dubinsky updated NETBEANS-6298:
-
Summary: Match NetBeans console encoding to system/app console encoding  
(was: About the garbled problem)

> Match NetBeans console encoding to system/app console encoding
> --
>
> Key: NETBEANS-6298
> URL: https://issues.apache.org/jira/browse/NETBEANS-6298
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Editor
>Affects Versions: 12.0, 12.1, 12.2, 12.3, 12.4, 12.5, 12.6, NB13, 13
> Environment: Windows 10、JDK1.8.201、Maven3.6.0、Netbeans12.6、Project 
> encoding UTF-8
>Reporter: luke
>Priority: Blocker
> Attachments: Garbled.gif, Garbled.png
>
>
> My Windows OS language is Simplified Chinese and the default OS encoding is 
> GBK. When I open a properties file or a text file, the editor shows the file 
> contents as garbled, if I add the parameter -J-Dfile.encoding=UTF-8, the 
> editor opens the file in UTF-8 encoding format and the file is not garbled, 
> but the console output is garbled.
> !Garbled.gif|width=1055,height=536!
> !Garbled.png|width=1542,height=843!



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6314) Smaller project view tree indent/padding

2021-12-18 Thread Aleksandr Dubinsky (Jira)
Aleksandr Dubinsky created NETBEANS-6314:


 Summary: Smaller project view tree indent/padding
 Key: NETBEANS-6314
 URL: https://issues.apache.org/jira/browse/NETBEANS-6314
 Project: NetBeans
  Issue Type: Improvement
  Components: projects - Generic Projects UI
Affects Versions: 12.6
Reporter: Aleksandr Dubinsky


Inspired by VS Code and IntelliJ behavior, Netbeans should make the Projects 
view more compact by using smaller indentation optionally or by default.

 

See [https://youtrack.jetbrains.com/issue/IDEA-158781] (also note the many 
duplicate issues on the topic)



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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