[jira] [Resolved] (NETBEANS-5198) Exception on Initializing FavoriteTaskManager

2021-01-18 Thread Laszlo Kishalmi (Jira)


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

Laszlo Kishalmi resolved NETBEANS-5198.
---
Fix Version/s: 12.3
   Resolution: Fixed

> Exception on Initializing FavoriteTaskManager
> -
>
> Key: NETBEANS-5198
> URL: https://issues.apache.org/jira/browse/NETBEANS-5198
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Laszlo Kishalmi
>Assignee: Laszlo Kishalmi
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.3
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> At some cases FavoriteTaskManager constructor calls out to it's uninitialized 
> lookup causing exceptions.



--
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] 02/03: Ensure declared constructors are always processed in the same order

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

commit 8a40154bd00cc31d6675556777ad66c772ea520f
Author: Sven Reimers 
AuthorDate: Fri Jan 8 22:56:49 2021 +0100

Ensure declared constructors are always processed in the same order
---
 .../groovy/editor/api/parser/GroovyVirtualSourceProvider.java| 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git 
a/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/api/parser/GroovyVirtualSourceProvider.java
 
b/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/api/parser/GroovyVirtualSourceProvider.java
index 3396611..b69bd3f 100644
--- 
a/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/api/parser/GroovyVirtualSourceProvider.java
+++ 
b/groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/api/parser/GroovyVirtualSourceProvider.java
@@ -28,10 +28,12 @@ import java.io.StringWriter;
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collections;
+import java.util.Comparator;
 import java.util.HashSet;
 import java.util.Iterator;
 import java.util.List;
 import java.util.Set;
+import java.util.stream.Collectors;
 import org.codehaus.groovy.ast.ClassHelper;
 import org.codehaus.groovy.ast.ClassNode;
 import org.codehaus.groovy.ast.ConstructorNode;
@@ -476,7 +478,12 @@ public class GroovyVirtualSourceProvider implements 
VirtualSourceProvider {
 ClassNode superType = type.getSuperClass();
 
 boolean hadPrivateConstructor = false;
-for (ConstructorNode c : superType.getDeclaredConstructors()) {
+
+List constructorNodes = superType
+.getDeclaredConstructors().stream()
+
.sorted(Comparator.comparing(ConstructorNode::getTypeDescriptor))
+.collect(Collectors.toList());
+for (ConstructorNode c : constructorNodes) {
 // Only look at things we can actually call
 if (c.isPublic() || c.isProtected()) {
 return c.getParameters();


-
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] 03/03: Add more target platforms for groovy tests

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

commit 3d4dbb7f4246b2c17fde5d1332790220675bfb54
Author: Sven Reimers 
AuthorDate: Fri Jan 8 22:57:37 2021 +0100

Add more target platforms for groovy tests
---
 .travis.yml | 40 +++-
 1 file changed, 39 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index f292b98..c57a379 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -735,7 +735,45 @@ matrix:
 - ant $BUILD_OPTS clean
 - ant $BUILD_OPTS build
 - wget 
https://raw.githubusercontent.com/sormuras/bach/master/install-jdk.sh
-- export TEST_JDK=`bash install-jdk.sh --feature 11 --license GPL 
--emit-java-home --silent | tail -1`
+- export TEST_JDK=`bash install-jdk.sh --feature 14 --license GPL 
--emit-java-home --silent | tail -1`
+- export 
OPTS="-Dmetabuild.jsonurl=https://raw.githubusercontent.com/apache/netbeans-jenkins-lib/master/meta/netbeansrelease.json
 $OPTS  -Dtest.nbjdk.home=$TEST_JDK 
-Dtest.run.args=--limit-modules=java.base,java.logging,java.xml,java.prefs,java.desktop,java.management,java.instrument,jdk.zipfs,java.scripting,java.naming
 
-Dtest.bootclasspath.prepend.args=-Dno.netbeans.bootclasspath.prepend.needed=true"

+  script:
+#- ant $TEST_OPTS -f groovy/groovy test
+#- ant $TEST_OPTS -f groovy/groovy.java test
+- ant $TEST_OPTS -f groovy/groovy.editor test
+- ant $TEST_OPTS -f groovy/groovy.gsp test
+#- ant $TEST_OPTS -f groovy/groovy.kit test
+- ant $TEST_OPTS -f groovy/groovy.support test
+
+- name: Test groovy modules on Java 15
+  jdk: openjdk8
+  env:
+- 
BUILD_OPTS="-Dmetabuild.jsonurl=https://raw.githubusercontent.com/apache/netbeans-jenkins-lib/master/meta/netbeansrelease.json
 -quiet -Dcluster.config=groovy -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false 
-Dtest-unit-sys-prop.ignore.random.failures=true"
+- 
TEST_OPTS="-Dmetabuild.jsonurl=https://raw.githubusercontent.com/apache/netbeans-jenkins-lib/master/meta/netbeansrelease.json
 -Dcluster.config=groovy -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false 
-Dtest-unit-sys-prop.ignore.random.failures=true"
+  before_script:
+- ant $BUILD_OPTS clean
+- ant $BUILD_OPTS build
+- wget 
https://raw.githubusercontent.com/sormuras/bach/master/install-jdk.sh
+- export TEST_JDK=`bash install-jdk.sh --feature 15 --license GPL 
--emit-java-home --silent | tail -1`
+- export 
OPTS="-Dmetabuild.jsonurl=https://raw.githubusercontent.com/apache/netbeans-jenkins-lib/master/meta/netbeansrelease.json
 $OPTS  -Dtest.nbjdk.home=$TEST_JDK 
-Dtest.run.args=--limit-modules=java.base,java.logging,java.xml,java.prefs,java.desktop,java.management,java.instrument,jdk.zipfs,java.scripting,java.naming
 
-Dtest.bootclasspath.prepend.args=-Dno.netbeans.bootclasspath.prepend.needed=true"

+  script:
+#- ant $TEST_OPTS -f groovy/groovy test
+#- ant $TEST_OPTS -f groovy/groovy.java test
+- ant $TEST_OPTS -f groovy/groovy.editor test
+- ant $TEST_OPTS -f groovy/groovy.gsp test
+#- ant $TEST_OPTS -f groovy/groovy.kit test
+- ant $TEST_OPTS -f groovy/groovy.support test
+
+- name: Test groovy modules on Java 16
+  jdk: openjdk8
+  env:
+- 
BUILD_OPTS="-Dmetabuild.jsonurl=https://raw.githubusercontent.com/apache/netbeans-jenkins-lib/master/meta/netbeansrelease.json
 -quiet -Dcluster.config=groovy -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false 
-Dtest-unit-sys-prop.ignore.random.failures=true"
+- 
TEST_OPTS="-Dmetabuild.jsonurl=https://raw.githubusercontent.com/apache/netbeans-jenkins-lib/master/meta/netbeansrelease.json
 -Dcluster.config=groovy -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false 
-Dtest-unit-sys-prop.ignore.random.failures=true"
+  before_script:
+- ant $BUILD_OPTS clean
+- ant $BUILD_OPTS build
+- wget 
https://raw.githubusercontent.com/sormuras/bach/master/install-jdk.sh
+- export TEST_JDK=`bash install-jdk.sh --feature 16 --license GPL 
--emit-java-home --silent | tail -1`
 - export 
OPTS="-Dmetabuild.jsonurl=https://raw.githubusercontent.com/apache/netbeans-jenkins-lib/master/meta/netbeansrelease.json
 $OPTS  -Dtest.nbjdk.home=$TEST_JDK 
-Dtest.run.args=--limit-modules=java.base,java.logging,java.xml,java.prefs,java.desktop,java.management,java.instrument,jdk.zipfs,java.scripting,java.naming
 
-Dtest.bootclasspath.prepend.args=-Dno.netbeans.bootclasspath.prepend.needed=true"

   script:
 #- ant 

[netbeans] branch master updated (131d197 -> 3d4dbb7)

2021-01-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 131d197  Merge pull request #2692 from 
junichi11/php80-trailing-comma-in-closure-use-lists
 new 24dbac1  Update used groovy to 2.5.14
 new 8a40154  Ensure declared constructors are always processed in the same 
order
 new 3d4dbb7  Add more target platforms for groovy tests

The 3 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:
 .travis.yml| 40 +-
 .../api/parser/GroovyVirtualSourceProvider.java|  9 -
 ...groovy.testCompletionInMethodCall2_1.completion |  1 +
 groovy/libs.groovy/external/binaries-list  |  4 +--
 5.11-license.txt => groovy-2.5.14-license.txt} |  4 +--
 ...-2.5.11-notice.txt => groovy-2.5.14-notice.txt} |  0
 groovy/libs.groovy/nbproject/project.properties|  4 +--
 groovy/libs.groovy/nbproject/project.xml   |  4 +--
 .../netbeans/modules/libs/groovy/groovy-all.xml|  4 +--
 9 files changed, 58 insertions(+), 12 deletions(-)
 rename groovy/libs.groovy/external/{groovy-2.5.11-license.txt => 
groovy-2.5.14-license.txt} (99%)
 rename groovy/libs.groovy/external/{groovy-2.5.11-notice.txt => 
groovy-2.5.14-notice.txt} (100%)


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

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



[netbeans] 01/03: Update used groovy to 2.5.14

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

commit 24dbac188a5596cbf310c7835547b707782d3ce2
Author: Sven Reimers 
AuthorDate: Thu Jan 7 00:36:55 2021 +0100

Update used groovy to 2.5.14
---
 ...etionInMethodCall2.groovy.testCompletionInMethodCall2_1.completion | 1 +
 groovy/libs.groovy/external/binaries-list | 4 ++--
 .../external/{groovy-2.5.11-license.txt => groovy-2.5.14-license.txt} | 4 ++--
 .../external/{groovy-2.5.11-notice.txt => groovy-2.5.14-notice.txt}   | 0
 groovy/libs.groovy/nbproject/project.properties   | 4 ++--
 groovy/libs.groovy/nbproject/project.xml  | 4 ++--
 .../libs.groovy/src/org/netbeans/modules/libs/groovy/groovy-all.xml   | 4 ++--
 7 files changed, 11 insertions(+), 10 deletions(-)

diff --git 
a/groovy/groovy.editor/test/unit/data/testfiles/completion/method/completionInMethodCall2/CompletionInMethodCall2.groovy.testCompletionInMethodCall2_1.completion
 
b/groovy/groovy.editor/test/unit/data/testfiles/completion/method/completionInMethodCall2/CompletionInMethodCall2.groovy.testCompletionInMethodCall2_1.completion
index 9c7a457..e38a02a 100644
--- 
a/groovy/groovy.editor/test/unit/data/testfiles/completion/method/completionInMethodCall2/CompletionInMethodCall2.groovy.testCompletionInMethodCall2_1.completion
+++ 
b/groovy/groovy.editor/test/unit/data/testfiles/completion/method/completionInMethodCall2/CompletionInMethodCall2.groovy.testCompletionInMethodCall2_1.completion
@@ -11,6 +11,7 @@ METHOD collect(Collection, Closure)   
Collection
 METHOD compareTo(File) [PUBLIC]   int
 METHOD createNewFile() [PUBLIC]   boolean
 METHOD createTempDir()File
+METHOD createTempDir(String)  File
 METHOD createTempDir(String, String)  File
 METHOD createTempFile(String, String)  [STATIC,   File
 METHOD createTempFile(String, String,  [STATIC,   File
diff --git a/groovy/libs.groovy/external/binaries-list 
b/groovy/libs.groovy/external/binaries-list
index 2fd5d12..d677d59 100644
--- a/groovy/libs.groovy/external/binaries-list
+++ b/groovy/libs.groovy/external/binaries-list
@@ -14,5 +14,5 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-4D8F25C5DA08AF46FB204FD493EC894699A3F4E8 org.codehaus.groovy:groovy:2.5.11
-90B3F8BF9DCFA499271A8B760E71DF7E364659A6 org.codehaus.groovy:groovy-ant:2.5.11
+F0A005FB21E7BD9B7EBF04CD2ECDA0FC8F3BE59D org.codehaus.groovy:groovy:2.5.14
+A230C95333F584BF8FE215C608B04AFB3B11A9F9 org.codehaus.groovy:groovy-ant:2.5.14
diff --git a/groovy/libs.groovy/external/groovy-2.5.11-license.txt 
b/groovy/libs.groovy/external/groovy-2.5.14-license.txt
similarity index 99%
rename from groovy/libs.groovy/external/groovy-2.5.11-license.txt
rename to groovy/libs.groovy/external/groovy-2.5.14-license.txt
index 64a6664..a8742d7 100644
--- a/groovy/libs.groovy/external/groovy-2.5.11-license.txt
+++ b/groovy/libs.groovy/external/groovy-2.5.14-license.txt
@@ -1,6 +1,6 @@
 Name: Groovy
-Version: 2.5.11
-Files: groovy-2.5.11.jar groovy-ant-2.5.11.jar
+Version: 2.5.14
+Files: groovy-2.5.14.jar groovy-ant-2.5.14.jar
 Description: Groovy Language distribution.
 License: Apache-2.0-groovy
 Origin: http://groovy-lang.org/
diff --git a/groovy/libs.groovy/external/groovy-2.5.11-notice.txt 
b/groovy/libs.groovy/external/groovy-2.5.14-notice.txt
similarity index 100%
rename from groovy/libs.groovy/external/groovy-2.5.11-notice.txt
rename to groovy/libs.groovy/external/groovy-2.5.14-notice.txt
diff --git a/groovy/libs.groovy/nbproject/project.properties 
b/groovy/libs.groovy/nbproject/project.properties
index b5c77bb..e4c3909 100644
--- a/groovy/libs.groovy/nbproject/project.properties
+++ b/groovy/libs.groovy/nbproject/project.properties
@@ -24,5 +24,5 @@ javac.compilerargs=-Xlint -Xlint:-serial
 sigtest.gen.fail.on.error=false
 
 #cp.extra=external/groovy-all-2.1.7.jar
-release.external/groovy-2.5.11.jar=modules/ext/groovy.jar
-release.external/groovy-ant-2.5.11.jar=modules/ext/groovy-ant.jar
+release.external/groovy-2.5.14.jar=modules/ext/groovy.jar
+release.external/groovy-ant-2.5.14.jar=modules/ext/groovy-ant.jar
diff --git a/groovy/libs.groovy/nbproject/project.xml 
b/groovy/libs.groovy/nbproject/project.xml
index f925f36..5fc093e 100644
--- a/groovy/libs.groovy/nbproject/project.xml
+++ b/groovy/libs.groovy/nbproject/project.xml
@@ -51,11 +51,11 @@
 
 
 ext/groovy.jar
-external/groovy-2.5.11.jar
+external/groovy-2.5.14.jar
 
 
 
ext/groovy-ant.jar
-external/groovy-ant-2.5.11.jar
+external/groovy-ant-2.5.14.jar

[jira] [Created] (NETBEANS-5262) Code Completion doesn't work correctly in closure use lists

2021-01-18 Thread Junichi Yamamoto (Jira)
Junichi Yamamoto created NETBEANS-5262:
--

 Summary: Code Completion doesn't work correctly in closure use 
lists 
 Key: NETBEANS-5262
 URL: https://issues.apache.org/jira/browse/NETBEANS-5262
 Project: NetBeans
  Issue Type: Bug
  Components: php - Editor
Affects Versions: 12.0
Reporter: Junichi Yamamoto
Assignee: Junichi Yamamoto


Example code:

{code:php}
$lambda = function () use (/* here*/) {};
{code}




--
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] [Resolved] (NETBEANS-4606) Regenerate signature files for PHP 8.0

2021-01-18 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-4606.

Fix Version/s: 12.3
   Resolution: Fixed

> Regenerate signature files for PHP 8.0
> --
>
> Key: NETBEANS-4606
> URL: https://issues.apache.org/jira/browse/NETBEANS-4606
> Project: NetBeans
>  Issue Type: Task
>  Components: php - Code
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.3
>
>  Time Spent: 2h
>  Remaining Estimate: 0h
>




--
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] [Resolved] (NETBEANS-5245) Show and change the PHP Version of project properties on the status bar

2021-01-18 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-5245.

Fix Version/s: 12.3
   Resolution: Implemented

> Show and change the PHP Version of project properties on the status bar
> ---
>
> Key: NETBEANS-5245
> URL: https://issues.apache.org/jira/browse/NETBEANS-5245
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Project
>Affects Versions: 12.2
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.3
>
>  Time Spent: 3h 40m
>  Remaining Estimate: 0h
>
> Show and change the PHP Version of project properties on the status bar if an 
> active file(editor) is in a PHP project.



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

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

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



[jira] [Updated] (NETBEANS-5261) Shared setting for PHP code generators

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


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

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

> Shared setting for PHP code generators
> --
>
> Key: NETBEANS-5261
> URL: https://issues.apache.org/jira/browse/NETBEANS-5261
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> It is useful for team collaboration to have shared settings of code 
> generators in project. Style of generated code is part of coding standard in 
> a similar way as formatting.
> This settings are now saved in {{nbproject/private/private.properties}} and 
> so are not part of shared project settings.



--
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-5261) Shared setting for PHP code generators

2021-01-18 Thread Jira


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

Tomáš Procházka updated NETBEANS-5261:
--
Summary: Shared setting for PHP code generators  (was: Shared setting for 
PHP code generator)

> Shared setting for PHP code generators
> --
>
> Key: NETBEANS-5261
> URL: https://issues.apache.org/jira/browse/NETBEANS-5261
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>
> It is useful for team collaboration to have shared settings of code 
> generators in project. Style of generated code is part of coding standard in 
> a similar way as formatting.
> This settings are now saved in {{nbproject/private/private.properties}} and 
> so are not part of shared project settings.



--
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-5261) Shared setting for PHP code generator

2021-01-18 Thread Jira
Tomáš Procházka created NETBEANS-5261:
-

 Summary: Shared setting for PHP code generator
 Key: NETBEANS-5261
 URL: https://issues.apache.org/jira/browse/NETBEANS-5261
 Project: NetBeans
  Issue Type: Improvement
  Components: php - Editor
Affects Versions: 12.2
Reporter: Tomáš Procházka
Assignee: Tomáš Procházka


It is useful for team collaboration to have shared settings of code generators 
in project. Style of generated code is part of coding standard in a similar way 
as formatting.

This settings are now saved in {{nbproject/private/private.properties}} and so 
are not part of shared project settings.



--
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-4606] Regenerate signature files for PHP 8.0

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

tmysik 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 156f5f3  [NETBEANS-4606] Regenerate signature files for PHP 8.0
 new 5eaf3b7  Merge pull request #2676 from 
junichi11/netbeans-4606-regen-sigfiles-for-php80
156f5f3 is described below

commit 156f5f3c690d53e09208bed6a274d169419a89f7
Author: Junichi Yamamoto 
AuthorDate: Thu Jan 14 09:22:50 2021 +0900

[NETBEANS-4606] Regenerate signature files for PHP 8.0
---
 php/php.project/external/binaries-list  | 2 +-
 .../{phpsigfiles-1.2-license.txt => phpsigfiles-1.3-license.txt}| 2 +-
 .../external/{phpsigfiles-1.2-notice.txt => phpsigfiles-1.3-notice.txt} | 0
 php/php.project/nbproject/project.properties| 2 +-
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/php/php.project/external/binaries-list 
b/php/php.project/external/binaries-list
index 3bca6e9..a9138ee 100644
--- a/php/php.project/external/binaries-list
+++ b/php/php.project/external/binaries-list
@@ -14,4 +14,4 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-478F3A5C1AB2B8D3D264D15D0DFCC4007D33D30E phpsigfiles-1.2.zip
+0013671661CE518C92DA0B1B83D9B54010C5B251 phpsigfiles-1.3.zip
diff --git a/php/php.project/external/phpsigfiles-1.2-license.txt 
b/php/php.project/external/phpsigfiles-1.3-license.txt
similarity index 99%
rename from php/php.project/external/phpsigfiles-1.2-license.txt
rename to php/php.project/external/phpsigfiles-1.3-license.txt
index 9f3be9f..d82809c 100644
--- a/php/php.project/external/phpsigfiles-1.2-license.txt
+++ b/php/php.project/external/phpsigfiles-1.3-license.txt
@@ -1,5 +1,5 @@
 Name: phpsigfiles
-Version: 1.2
+Version: 1.3
 Description: Signature files for PHP runtime and PHP runtime extensions for 
use from code completion etc. The file is build from the PHP manual.
 License: CC-BY-3.0
 Origin: http://www.php.net/docs.php
diff --git a/php/php.project/external/phpsigfiles-1.2-notice.txt 
b/php/php.project/external/phpsigfiles-1.3-notice.txt
similarity index 100%
rename from php/php.project/external/phpsigfiles-1.2-notice.txt
rename to php/php.project/external/phpsigfiles-1.3-notice.txt
diff --git a/php/php.project/nbproject/project.properties 
b/php/php.project/nbproject/project.properties
index 488abb1..ef0c983 100644
--- a/php/php.project/nbproject/project.properties
+++ b/php/php.project/nbproject/project.properties
@@ -20,7 +20,7 @@ javac.compilerargs=-Xlint:unchecked
 javac.source=1.8
 javadoc.arch=${basedir}/arch.xml
 
-release.external/phpsigfiles-1.2.zip=docs/phpsigfiles.zip
+release.external/phpsigfiles-1.3.zip=docs/phpsigfiles.zip
 extra.module.files=docs/phpsigfiles.zip
 
 test.config.stableBTD.includes=**/*Test.class


-
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-5234) PHP debugger does not display content of long string

2021-01-18 Thread Jira


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

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

PR was merged.

> PHP debugger does not display content of long string
> 
>
> Key: NETBEANS-5234
> URL: https://issues.apache.org/jira/browse/NETBEANS-5234
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Debugger
>Affects Versions: 12.2
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.3
>
>  Time Spent: 2h
>  Remaining Estimate: 0h
>
> PHP debugger does not display content of variable if it contains string 
> longer than maximum data length set in PHP debugging options.
> Steps to reproduce:
>  # In PHP file create variable with long content like {{$longString = 
> str_repeat('A', 3000);}}
> # Verify that Maximum Data Length setting is set to lower value than length 
> of {{$longString}}
>  # Run debugger and step over previous statement.
>  # Open Variables tab.
> Expected result - content of {{$longString}} will be displayed - 
> {{"AA"}}.
> Actual result - "Evaluating..." is displayed as content of {{$longString}}



--
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] [Resolved] (NETBEANS-2843) Xdebug's support for the 'resolved_breakpoint'

2021-01-18 Thread Jira


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

Tomáš Procházka resolved NETBEANS-2843.
---
Fix Version/s: 12.3
   Resolution: Implemented

PR was merged.

> Xdebug's support for the 'resolved_breakpoint' 
> ---
>
> Key: NETBEANS-2843
> URL: https://issues.apache.org/jira/browse/NETBEANS-2843
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Debugger
>Affects Versions: 12.0
> Environment: Xdebug 2.8.0alpha1
>Reporter: Vítězslav Dvořák
>Assignee: Tomáš Procházka
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.3
>
>  Time Spent: 3h
>  Remaining Estimate: 0h
>
> When IDEs opt in into this flag, Xdebug runs additional logic to make sure 
> that it tries to find the right line to break on, even if you are setting a 
> breakpoint on a line of code, where the PHP engine doesn't think there is any 
> code.



--
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-5245] Show and change the PHP Version of project properties on the status bar

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

tmysik 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 b18a48a  [NETBEANS-5245] Show and change the PHP Version of project 
properties on the status bar
 new 1e6a69e  Merge pull request #2681 from 
junichi11/netbeans-5245-php-version-status-bar
b18a48a is described below

commit b18a48ac285b9b185bdb30e5a2a86ecc83cd797c
Author: Junichi Yamamoto 
AuthorDate: Thu Jan 14 07:29:30 2021 +0900

[NETBEANS-5245] Show and change the PHP Version of project properties on 
the status bar

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

- Show a PHP Version of project properties on the status bar
- We click a specific version number of the version list, we can change the 
PHP Version to it without opening a project properties dialog
---
 php/php.project/manifest.mf|   2 +-
 php/php.project/nbproject/project.xml  |   9 +
 .../ui/PhpVersionStatusLineElementProvider.java| 283 +
 3 files changed, 293 insertions(+), 1 deletion(-)

diff --git a/php/php.project/manifest.mf b/php/php.project/manifest.mf
index 8f4a09c..0f729a2 100644
--- a/php/php.project/manifest.mf
+++ b/php/php.project/manifest.mf
@@ -1,6 +1,6 @@
 Manifest-Version: 1.0
 AutoUpdate-Show-In-Client: false
-OpenIDE-Module-Specification-Version: 2.149
+OpenIDE-Module-Specification-Version: 2.150
 OpenIDE-Module: org.netbeans.modules.php.project
 OpenIDE-Module-Layer: org/netbeans/modules/php/project/resources/layer.xml
 OpenIDE-Module-Localizing-Bundle: 
org/netbeans/modules/php/project/resources/Bundle.properties
diff --git a/php/php.project/nbproject/project.xml 
b/php/php.project/nbproject/project.xml
index 33ffe72..e4d8cbd 100644
--- a/php/php.project/nbproject/project.xml
+++ b/php/php.project/nbproject/project.xml
@@ -148,6 +148,15 @@
 
 
 
+
org.netbeans.modules.editor.lib
+
+
+
+3
+4.18
+
+
+
 
org.netbeans.modules.editor.lib2
 
 
diff --git 
a/php/php.project/src/org/netbeans/modules/php/project/ui/PhpVersionStatusLineElementProvider.java
 
b/php/php.project/src/org/netbeans/modules/php/project/ui/PhpVersionStatusLineElementProvider.java
new file mode 100644
index 000..d9075a2
--- /dev/null
+++ 
b/php/php.project/src/org/netbeans/modules/php/project/ui/PhpVersionStatusLineElementProvider.java
@@ -0,0 +1,283 @@
+/*
+ * 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.netbeans.modules.php.project.ui;
+
+import java.awt.AWTEvent;
+import java.awt.BorderLayout;
+import java.awt.Color;
+import java.awt.Component;
+import java.awt.Dimension;
+import java.awt.EventQueue;
+import java.awt.FontMetrics;
+import java.awt.Insets;
+import java.awt.Point;
+import java.awt.Toolkit;
+import java.awt.event.AWTEventListener;
+import java.awt.event.MouseAdapter;
+import java.awt.event.MouseEvent;
+import java.util.ArrayList;
+import java.util.Collection;
+import javax.swing.BorderFactory;
+import javax.swing.DefaultListModel;
+import javax.swing.JLabel;
+import javax.swing.JList;
+import javax.swing.JPanel;
+import javax.swing.JSeparator;
+import javax.swing.JToolTip;
+import javax.swing.Popup;
+import javax.swing.PopupFactory;
+import javax.swing.SwingConstants;
+import javax.swing.SwingUtilities;
+import javax.swing.border.Border;
+import javax.swing.border.LineBorder;
+import javax.swing.event.ListSelectionEvent;
+import javax.swing.text.Document;
+import javax.swing.text.JTextComponent;
+import org.netbeans.api.editor.EditorRegistry;
+import org.netbeans.modules.editor.NbEditorUtilities;
+import org.netbeans.modules.php.api.PhpVersion;
+import org.netbeans.modules.php.project.PhpProject;
+import org.netbeans.modules.php.project.api.PhpLanguageProperties;
+import 

[jira] [Updated] (NETBEANS-2260) Welcome Page header graphics

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


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

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

> Welcome Page header graphics
> 
>
> Key: NETBEANS-2260
> URL: https://issues.apache.org/jira/browse/NETBEANS-2260
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Jan Tošovský
>Priority: Minor
>  Labels: pull-request-available
> Attachments: header-original-position.png, header-updated.png, 
> header.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> When Netbeans is opened, the users is faced with ugly low-res graphics in the 
> header. It looks like enlarged version of the dithered GIF source (gradients 
> are simulated with small dots).



--
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-2260) Welcome Page header graphics

2021-01-18 Thread Martin H. (Jira)


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

Martin H. commented on NETBEANS-2260:
-

Here is the Start Page with recreated and slightly altered image asset, plus 
bicubic interpolation applied:

!header-updated.png!

 

Header elements are also repositioned a little bit, in order to ensure that 
there is some "air" between text and graphics (e. g. longer titles like "Learn 
& Discover"). Here is the original positioning:

!header-original-position.png!

I have prepared a PR.

 

> Welcome Page header graphics
> 
>
> Key: NETBEANS-2260
> URL: https://issues.apache.org/jira/browse/NETBEANS-2260
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Jan Tošovský
>Priority: Minor
> Attachments: header-original-position.png, header-updated.png, 
> header.png
>
>
> When Netbeans is opened, the users is faced with ugly low-res graphics in the 
> header. It looks like enlarged version of the dithered GIF source (gradients 
> are simulated with small dots).



--
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-2260) Welcome Page header graphics

2021-01-18 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-2260:

Attachment: header-original-position.png

> Welcome Page header graphics
> 
>
> Key: NETBEANS-2260
> URL: https://issues.apache.org/jira/browse/NETBEANS-2260
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Jan Tošovský
>Priority: Minor
> Attachments: header-original-position.png, header-updated.png, 
> header.png
>
>
> When Netbeans is opened, the users is faced with ugly low-res graphics in the 
> header. It looks like enlarged version of the dithered GIF source (gradients 
> are simulated with small dots).



--
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-2260) Welcome Page header graphics

2021-01-18 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-2260:

Attachment: header-updated.png

> Welcome Page header graphics
> 
>
> Key: NETBEANS-2260
> URL: https://issues.apache.org/jira/browse/NETBEANS-2260
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Jan Tošovský
>Priority: Minor
> Attachments: header-updated.png, header.png
>
>
> When Netbeans is opened, the users is faced with ugly low-res graphics in the 
> header. It looks like enlarged version of the dithered GIF source (gradients 
> are simulated with small dots).



--
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-2260) Welcome Page header graphics

2021-01-18 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-2260:

Attachment: (was: header-updated.png)

> Welcome Page header graphics
> 
>
> Key: NETBEANS-2260
> URL: https://issues.apache.org/jira/browse/NETBEANS-2260
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Jan Tošovský
>Priority: Minor
> Attachments: header.png
>
>
> When Netbeans is opened, the users is faced with ugly low-res graphics in the 
> header. It looks like enlarged version of the dithered GIF source (gradients 
> are simulated with small dots).



--
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-2260) Welcome Page header graphics

2021-01-18 Thread Martin H. (Jira)


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

Martin H. updated NETBEANS-2260:

Attachment: header-updated.png

> Welcome Page header graphics
> 
>
> Key: NETBEANS-2260
> URL: https://issues.apache.org/jira/browse/NETBEANS-2260
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Jan Tošovský
>Priority: Minor
> Attachments: header-updated.png, header.png
>
>
> When Netbeans is opened, the users is faced with ugly low-res graphics in the 
> header. It looks like enlarged version of the dithered GIF source (gradients 
> are simulated with small dots).



--
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 (fabd5e4 -> 9f3a805)

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

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


from fabd5e4  Merge pull request #2678 from 
junichi11/netbeans-5244-phpdocumentor-config
 new c06edb9  [NETBEANS-4443] PHP 8.0 Support: Constructor Property 
Promotion (Part 1)
 new 2362a41  [NETBEANS-4443] PHP 8.0 Support: Constructor Property 
Promotion (Part 2)
 new 853da02  [NETBEANS-4443] PHP 8.0 Support: Constructor Property 
Promotion (Part 3)
 new 8a5c272  [NETBEANS-4443] PHP 8.0 Support: Constructor Property 
Promotion (Part 4)
 new 9d7588a  [NETBEANS-4443] PHP 8.0 Support: Constructor Property 
Promotion (Part 5)
 new b8530e6  [NETBEANS-4443] PHP 8.0 Support: Constructor Property 
Promotion (Part 6)
 new e87cc06  [NETBEANS-4443] PHP 8.0 Support: Constructor Property 
Promotion (Part 7)
 new 809ca8e  [NETBEANS-4443] PHP 8.0 Support: Constructor Property 
Promotion (Part 8)
 new 9f3a805  Merge pull request #2674 from 
junichi11/php80-constructor-property-promotion

The 4878 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:
 .../php/editor/api/elements/ParameterElement.java  |   15 +-
 .../modules/php/editor/codegen/CGSInfo.java|   10 +
 .../editor/completion/CompletionContextFinder.java |   37 +-
 .../php/editor/completion/PHPCodeCompletion.java   |7 +
 .../php/editor/completion/PHPCompletionItem.java   |7 +-
 .../modules/php/editor/csl/SemanticAnalysis.java   |   13 +
 .../php/editor/elements/MethodElementImpl.java |2 +-
 .../php/editor/elements/ParameterElementImpl.java  |   38 +-
 .../modules/php/editor/indent/FormatVisitor.java   |   33 +-
 .../modules/php/editor/indent/TokenFormatter.java  |4 +-
 .../modules/php/editor/index/PHPIndexer.java   |2 +-
 .../php/editor/model/impl/FieldElementImpl.java|   14 +-
 .../php/editor/model/impl/ModelBuilder.java|1 +
 .../php/editor/model/impl/ModelVisitor.java|   10 +
 .../php/editor/model/impl/OccurenceBuilder.java|   30 +-
 .../editor/model/nodes/FormalParameterInfo.java|4 +-
 .../model/nodes/MagicMethodDeclarationInfo.java|2 +-
 .../model/nodes/SingleFieldDeclarationInfo.java|1 +
 .../modules/php/editor/parser/ASTPHP5Parser.java   | 4594 ++--
 .../modules/php/editor/parser/ASTPHP5Symbols.java  |2 +-
 .../php/editor/parser/EncodedActionTable1.java | 3518 +++
 .../php/editor/parser/EncodedActionTable10.java|  920 ++--
 .../php/editor/parser/EncodedActionTable11.java|  776 ++--
 .../php/editor/parser/EncodedActionTable12.java| 2506 +--
 .../php/editor/parser/EncodedActionTable13.java| 1560 +++
 .../php/editor/parser/EncodedActionTable14.java|  552 +--
 .../php/editor/parser/EncodedActionTable15.java| 1244 +++---
 .../php/editor/parser/EncodedActionTable16.java|  214 +-
 .../php/editor/parser/EncodedActionTable2.java | 2316 +-
 .../php/editor/parser/EncodedActionTable3.java | 3440 +++
 .../php/editor/parser/EncodedActionTable4.java | 2174 -
 .../php/editor/parser/EncodedActionTable5.java | 1418 +++---
 .../php/editor/parser/EncodedActionTable6.java | 2492 +--
 .../php/editor/parser/EncodedActionTable7.java | 1378 +++---
 .../php/editor/parser/EncodedActionTable8.java | 1444 +++---
 .../php/editor/parser/EncodedActionTable9.java |  730 ++--
 .../editor/parser/astnodes/BodyDeclaration.java|   14 +
 .../editor/parser/astnodes/FieldsDeclaration.java  |   56 +-
 .../editor/parser/astnodes/FormalParameter.java|   36 +-
 .../modules/php/editor/resources/layer.xml |1 +
 .../typinghooks/PhpTypedBreakInterceptor.java  |7 +-
 ...rrectConstructorPropertyPromotionHintError.java |  210 +
 .../verification/InitializeFieldSuggestion.java|   34 +-
 .../editor/verification/PHP80UnhandledError.java   |   15 +
 .../verification/UnusableTypesUnhandledError.java  |9 +
 .../editor/verification/UnusedVariableHint.java|8 +-
 .../editor/verification/WrongOrderOfArgsHint.java  |   16 +-
 .../php80ConstructorPropertyPromotion.pass |   26 +
 ...onstructorPropertyPromotionErrorWithStatic.pass |   67 +
 .../php80/constructorPropertyPromotion_01.pass | 1991 +
 .../php80/constructorPropertyPromotion_02.pass |  274 ++
 .../constructorPropertyPromotionParameter01.pass   |   27 +
 .../testConstructorPropertyPromotionGetter.php}|   45 +-
 ...stConstructorPropertyPromotionGetter_01.codegen |   12 +
 ...stConstructorPropertyPromotionGetter_02.codegen |   12 +
 ...stConstructorPropertyPromotionGetter_03.codegen |   20 +
 ...ructorPropertyPromotionOverrideConstructor.php} |   19 +-
 

[jira] [Resolved] (NETBEANS-5244) Cannot specify XML configuration for phpDocumentor

2021-01-18 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-5244.

Fix Version/s: 12.3
   Resolution: Fixed

Fixed.

> Cannot specify XML configuration for phpDocumentor
> --
>
> Key: NETBEANS-5244
> URL: https://issues.apache.org/jira/browse/NETBEANS-5244
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - PHPDoc
>Reporter: Trashtoy
>Assignee: Junichi Yamamoto
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 12.3
>
> Attachments: phpdoc-20210114-01.png, phpdoc-20210114-02b.png
>
>  Time Spent: 1h 50m
>  Remaining Estimate: 0h
>
> phpDocumentor supports XML configuration: [phpDocumentor - 
> configuration|https://docs.phpdoc.org/3.0/guide/references/configuration.html]
>  However documentation tool of NetBeans cannot specify custom XML file.
> How to fix:
>  # Add optional {{"Use XML configuration"}} UI in phpDocumentor settings (The 
> same UI is also used in PHPUnit)
>  # Modify command line arguments
> Command line arguments:
>  * Current:
> {noformat}
> "/path/to/php" "/usr/local/phpdoc/phpDocumentor.phar" "run" "--ansi" 
> "--directory" "/private/path/to/myproject" "--target" 
> "/private/path/to/documents" "--title" "My Framework"{noformat}
>  * Expected (if XML Configuration checked):
> {noformat}
> "/path/to/php" "/usr/local/phpdoc/phpDocumentor.phar" "run" "--ansi" 
> "--directory" "/private/path/to/myproject" "--target" 
> "/private/path/to/documents" "--title" "My Framework" "--config" 
> "/private/path/to/myproject/phpdoc.xml"{noformat}



--
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-5244] Add the project settings for XML configuration of phpDocumentor

2021-01-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 4b58c7b  [NETBEANS-5244] Add the project settings for XML 
configuration of phpDocumentor
 new fabd5e4  Merge pull request #2678 from 
junichi11/netbeans-5244-phpdocumentor-config
4b58c7b is described below

commit 4b58c7bd0b2da2e0317c3a49913c7a2c9538b4de
Author: Junichi Yamamoto 
AuthorDate: Fri Jan 15 14:59:58 2021 +0900

[NETBEANS-5244] Add the project settings for XML configuration of 
phpDocumentor

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

- Add settings for an XML configuration file
- Add parameters (`--config /path/to/configuration/file.xml`)
---
 php/php.phpdoc/manifest.mf |   2 +-
 php/php.phpdoc/nbproject/project.xml   |  28 -
 .../netbeans/modules/php/phpdoc/PhpDocScript.java  |  78 +++-
 .../modules/php/phpdoc/PhpDocumentorProvider.java  |   5 +-
 .../modules/php/phpdoc/ui/PhpDocPreferences.java   |  31 +
 .../php/phpdoc/ui/PhpDocPreferencesValidator.java  |  90 +
 .../php/phpdoc/ui/customizer/Bundle.properties |   6 +-
 .../php/phpdoc/ui/customizer/PhpDocPanel.form  |  58 -
 .../php/phpdoc/ui/customizer/PhpDocPanel.java  | 139 +
 9 files changed, 398 insertions(+), 39 deletions(-)

diff --git a/php/php.phpdoc/manifest.mf b/php/php.phpdoc/manifest.mf
index 35e96c4..9c9b181 100644
--- a/php/php.phpdoc/manifest.mf
+++ b/php/php.phpdoc/manifest.mf
@@ -3,5 +3,5 @@ AutoUpdate-Show-In-Client: true
 OpenIDE-Module: org.netbeans.modules.php.phpdoc
 OpenIDE-Module-Layer: org/netbeans/modules/php/phpdoc/resources/layer.xml
 OpenIDE-Module-Localizing-Bundle: 
org/netbeans/modules/php/phpdoc/resources/Bundle.properties
-OpenIDE-Module-Specification-Version: 1.32
+OpenIDE-Module-Specification-Version: 1.33
 
diff --git a/php/php.phpdoc/nbproject/project.xml 
b/php/php.phpdoc/nbproject/project.xml
index 2dfe224..747b4d2 100644
--- a/php/php.phpdoc/nbproject/project.xml
+++ b/php/php.phpdoc/nbproject/project.xml
@@ -26,6 +26,15 @@
 org.netbeans.modules.php.phpdoc
 
 
+
org.netbeans.api.annotations.common
+
+
+
+1
+1.38
+
+
+
 
org.netbeans.modules.extexecution
 
 
@@ -76,6 +85,15 @@
 
 
 
+
org.netbeans.modules.project.ant
+
+
+
+1
+1.78
+
+
+
 
org.netbeans.modules.projectapi
 
 
@@ -134,7 +152,7 @@
 
 
 
-org.openide.util.ui
+org.openide.util
 
 
 
@@ -142,19 +160,19 @@
 
 
 
-org.openide.util
+org.openide.util.lookup
 
 
 
-9.3
+8.4
 
 
 
-org.openide.util.lookup
+org.openide.util.ui
 
 
 
-8.4
+9.3
 
 
 
diff --git 
a/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java 
b/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java
index bd363fd..cbad3d0 100644
--- a/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java
+++ b/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java
@@ -23,6 +23,7 @@ import java.awt.EventQueue;
 import java.io.File;
 import java.net.MalformedURLException;
 import java.net.URL;
+import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.LinkedList;
 import java.util.List;
@@ -33,16 +34,21 @@ import java.util.logging.Level;
 import java.util.logging.Logger;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
+import org.netbeans.api.annotations.common.CheckForNull;
 import org.netbeans.api.extexecution.ExecutionDescriptor;
 import org.netbeans.api.extexecution.print.ConvertedLine;
 import org.netbeans.api.extexecution.print.LineConvertor;
+import org.netbeans.modules.php.api.documentation.PhpDocumentations;
 import 

[netbeans] branch master updated: [NETBEANS-5234] PHP debugger - fix display of long strings

2021-01-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 752eb1b  [NETBEANS-5234] PHP debugger - fix display of long strings
 new 7983cc3  Merge pull request #2673 from 
KacerCZ/netbeans-5234-php-debugger-long-string
752eb1b is described below

commit 752eb1b46121832ed3e80d016a790c004d8d568c
Author: Tomas Prochazka 
AuthorDate: Mon Jan 11 20:07:56 2021 +0100

[NETBEANS-5234] PHP debugger - fix display of long strings

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

Fixed processing of `property_value` command response.
Because response does not contain variable name, it has to be copied from 
command.
For details see [Xdebug 
documentation](https://xdebug.org/docs/dbgp#property-get-property-set-property-value)

Fixed `Property.setName()` because code for adding attribute did not work.
---
 .../src/org/netbeans/modules/php/dbgp/packets/Property.java   | 11 ++-
 .../modules/php/dbgp/packets/PropertyValueResponse.java   | 10 +++---
 2 files changed, 13 insertions(+), 8 deletions(-)

diff --git 
a/php/php.dbgp/src/org/netbeans/modules/php/dbgp/packets/Property.java 
b/php/php.dbgp/src/org/netbeans/modules/php/dbgp/packets/Property.java
index 34ac63c..967d41e 100644
--- a/php/php.dbgp/src/org/netbeans/modules/php/dbgp/packets/Property.java
+++ b/php/php.dbgp/src/org/netbeans/modules/php/dbgp/packets/Property.java
@@ -32,6 +32,7 @@ import org.netbeans.modules.php.dbgp.SessionId;
 import org.netbeans.modules.php.dbgp.SessionManager;
 import org.netbeans.modules.php.dbgp.UnsufficientValueException;
 import org.openide.util.Exceptions;
+import org.w3c.dom.Element;
 import org.w3c.dom.Node;
 
 /**
@@ -39,6 +40,7 @@ import org.w3c.dom.Node;
  *
  */
 public class Property extends BaseMessageChildElement {
+
 static final String PROPERTY = "property"; // NOI18N
 private static final String NUMCHILDREN = "numchildren"; // NOI18N
 static final String ENCODING = "encoding"; // NOI18N
@@ -64,12 +66,11 @@ public class Property extends BaseMessageChildElement {
 }
 
 public void setName(String value) {
-Node node = getNode().getAttributes().getNamedItem(NAME);
-if (node == null) {
-node = getNode().getOwnerDocument().createAttribute(NAME);
-getNode().appendChild(node);
+Node node = getNode();
+if (node instanceof Element) {
+Element element = (Element) node;
+element.setAttribute(NAME, value);
 }
-node.setNodeValue(value);
 }
 
 public String getFullName() {
diff --git 
a/php/php.dbgp/src/org/netbeans/modules/php/dbgp/packets/PropertyValueResponse.java
 
b/php/php.dbgp/src/org/netbeans/modules/php/dbgp/packets/PropertyValueResponse.java
index a744224..ebb5cc8 100644
--- 
a/php/php.dbgp/src/org/netbeans/modules/php/dbgp/packets/PropertyValueResponse.java
+++ 
b/php/php.dbgp/src/org/netbeans/modules/php/dbgp/packets/PropertyValueResponse.java
@@ -33,7 +33,7 @@ public class PropertyValueResponse extends DbgpResponse {
 }
 
 public Property getProperty() {
-Node node = getChild(getNode(), Property.PROPERTY);
+Node node = getNode();
 if (node != null) {
 return new Property(node);
 }
@@ -42,13 +42,17 @@ public class PropertyValueResponse extends DbgpResponse {
 
 @Override
 public void process(DebugSession session, DbgpCommand command) {
+if (!(command instanceof PropertyValueCommand)) {
+return;
+}
 DebugSession currentSession = 
SessionManager.getInstance().getSession(session.getSessionId());
 if (currentSession == session) {
 // perform update local view only if response appears in current 
session
 Property property = getProperty();
 if (property != null) {
-session.getBridge().getVariablesModel().updateProperty(
-getProperty());
+// response does not contain variable name so it is taken from 
command
+property.setName(((PropertyValueCommand) command).getName());
+
session.getBridge().getVariablesModel().updateProperty(property);
 }
 }
 }


-
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-5258) JavaFX Scene Builder 15.0.0 Integration Linux

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


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

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

> JavaFX Scene Builder 15.0.0 Integration Linux
> -
>
> Key: NETBEANS-5258
> URL: https://issues.apache.org/jira/browse/NETBEANS-5258
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
> Environment: Manjaro
> Netbeans 12.2
> Scene Builder 15.0.0
>Reporter: Moacir da Roza Flores
>Priority: Major
>  Labels: pull-request-available
> Attachments: bug.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Hello,
>  Scene Builder 15.0.0 changed some structure of installation folder, so the 
> integration is broken.
>  To fix it open the file
>  
> repository/netbeans/javafx/javafx2.scenebuilder/src/org/netbeans/modules/javafx2/scenebuilder/impl/Bundle.properties
> Replace this lines:
>  UX_LAUNCHER=JavaFXSceneBuilder$ver$;SceneBuilder
>  UX_PROPERTIES=app/scenebuilder.properties;app/SceneBuilder.cfg
> By
> UX_LAUNCHER=JavaFXSceneBuilder$ver$;SceneBuilder;bin/SceneBuilder
>  
> UX_PROPERTIES=app/scenebuilder.properties;app/SceneBuilder.cfg;lib/app/SceneBuilder.cfg
> Can i open a pull request?
> Obs.: Thanks to the people that did this, was very easy support other version 
> of scenebuilder, very well done, i'm surprised how easy was build netbeans.



--
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-5260) Constantly Having "Unexpected Exception" in Notifications

2021-01-18 Thread Jira


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

Canay Özel updated NETBEANS-5260:
-
Summary: Constantly Having "Unexpected Exception" in Notifications  (was: 
Constantly Having - Unexpected Exception in Notifications)

> Constantly Having "Unexpected Exception" in Notifications
> -
>
> Key: NETBEANS-5260
> URL: https://issues.apache.org/jira/browse/NETBEANS-5260
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
> Environment: Windows 10
>Reporter: Canay Özel
>Priority: Major
> Attachments: IDE Log.txt, UI Log.txt
>
>
> Please find the attached IDE and UI logs.
>  
> I am working with large number of gradle multi-module projects.
> Every time the IDE scans projects "background scanning projects" this error 
> occurs in notifications area.
>  
> I am not sure if this is related but, the IDE shows large amount of 
> compilation errors (red lines on class files and projects view.) when there 
> are not actual errors (gradle builds completed successfully).
>  
>  



--
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-5260) Constantly Having - Unexpected Exception in Notifications

2021-01-18 Thread Jira
Canay Özel created NETBEANS-5260:


 Summary: Constantly Having - Unexpected Exception in Notifications
 Key: NETBEANS-5260
 URL: https://issues.apache.org/jira/browse/NETBEANS-5260
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 12.2
 Environment: Windows 10
Reporter: Canay Özel
 Attachments: IDE Log.txt, UI Log.txt

Please find the attached IDE and UI logs.

 

I am working with large number of gradle multi-module projects.

Every time the IDE scans projects "background scanning projects" this error 
occurs in notifications area.

 

I am not sure if this is related but, the IDE shows large amount of compilation 
errors (red lines on class files and projects view.) when there are not actual 
errors (gradle builds completed successfully).

 

 



--
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-5259) Tried to use the Projects window float then back to unfloat on the right side, left side etc..

2021-01-18 Thread M Shoaib Qureshi (Jira)
M Shoaib Qureshi created NETBEANS-5259:
--

 Summary: Tried to use the Projects window float then back to 
unfloat on the right side, left side etc..
 Key: NETBEANS-5259
 URL: https://issues.apache.org/jira/browse/NETBEANS-5259
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 12.2
Reporter: M Shoaib Qureshi
 Attachments: Netbeans bug, netbeansbug.png

I have dual screen and wanted to use full width of primary screen and use float 
window to to secondary screen . after usage, i tried to unfloat the projects 
window and put the window on the right side of the netbeans area.

The Netbeans got stuck and for considerable time , which blocked my development.

THen a window of bug reporting appeared so I am trying to report the bug. I 
have used NEtbeans for more than 7-8 years and only use netbeans for all my 
development.

 

Thanks.



--
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-5239) java.io.IOException: No space left on device downloading Maven Central

2021-01-18 Thread Tony Clifford (Jira)


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

Tony Clifford commented on NETBEANS-5239:
-

Hi Lukas

Thanks for your reply. I didn't do any customization to set my download 
location. I got the location from the actual error message being displayed in 
Netbeans.

I have since reverted to Netbeans 12.1 as I was also having issues adding a 
Java 1.8 platform.

I was trying to use Java 1.8 because Glassfish 5.0.1 wouldn't start using java 
1.11 which was the only platform available in Netbeans 12.2.

When trying to add a Java 1.8 platform on Netbeans 12.2, the /usr folder could 
not browse to the /usr/lib/jvm directory where my 1.8 JDK was installed. (i.e. 
the directory did not appear in the explorer directory structure).

I had originally used the Linux Mint Software manage to locate and install my 
Netbeans 12.2 instance. This process did not give me the opportunity to select 
the JDK for my Netbeans environment. For my Netbeans 12.1 installation I 
downloaded and ran the Apache-NetBeans-12.1-bin-linux-x64.sh script manually.

As mentioned I'm new to Linux and Netbeans so perhaps these are all just 
"Newbie" issues.

So far I haven't experienced this problem with my Netbeans 12.1 install.

Regards

Tony

> java.io.IOException: No space left on device downloading Maven Central
> --
>
> Key: NETBEANS-5239
> URL: https://issues.apache.org/jira/browse/NETBEANS-5239
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
> Environment: >System Info: 
>   Product Version = Apache NetBeans IDE 12.2
>   Operating System= Linux version 5.4.0-58-generic running on amd64
>   Java; VM; Vendor= 11.0.8; OpenJDK 64-Bit Server VM 11.0.8+10; 
> Flathub
>   Runtime = OpenJDK Runtime Environment 11.0.8+10
>   Java Home   = /app/jdk
>   System Locale; Encoding = en_ZA (nb); UTF-8
>   Home Directory  = /home/tony
>   Current Directory   = /home/tony
>   User Directory  = /home/tony/.netbeans/12.2
>   Cache Directory = /home/tony/.cache/netbeans/12.2
>   Installation= /app/netbeans/nb
> /app/netbeans/ergonomics
> /app/netbeans/ide
> /app/netbeans/extide
> /app/netbeans/java
> /app/netbeans/apisupport
> /app/netbeans/webcommon
> /app/netbeans/websvccommon
> /app/netbeans/enterprise
> /app/netbeans/profiler
> /app/netbeans/php
> /app/netbeans/harness
> /app/netbeans/cpplite
> /app/netbeans/groovy
> /app/netbeans/javafx
> /app/netbeans/platform
>   Boot & Ext. Classpath   = 
>   Application Classpath   = 
> /app/netbeans/platform/lib/boot.jar:/app/netbeans/platform/lib/org-openide-modules.jar:/app/netbeans/platform/lib/org-openide-util.jar:/app/netbeans/platform/lib/org-openide-util-lookup.jar:/app/netbeans/platform/lib/org-openide-util-ui.jar
>   Startup Classpath   = 
> /app/netbeans/platform/core/core.jar:/app/netbeans/platform/core/org-netbeans-libs-asm.jar:/app/netbeans/platform/core/core-base.jar:/app/netbeans/platform/core/asm-commons-8.0.1.jar:/app/netbeans/platform/core/org-openide-filesystems-compat8.jar:/app/netbeans/platform/core/asm-tree-8.0.1.jar:/app/netbeans/platform/core/asm-8.0.1.jar:/app/netbeans/platform/core/org-openide-filesystems.jar:/app/netbeans/nb/core/org-netbeans-upgrader.jar:/app/netbeans/nb/core/locale/core_nb.jar
>Reporter: Tony Clifford
>Assignee: Tony Clifford
>Priority: Minor
>
> Hi
> Using Netbeans 12.2 running on Linux Mint 20, I created a new Maven project 
> so I assume the IDE started downloading the Maven Central Repository. (I'm 
> new to Maven and Netbeans).
> I got an error telling me there is not enough space to download the 
> repository into my /home/tony/.cache location. I currently have 445 Gb free 
> in that location.
> I did a search and found issues relating to older versions of Netbeans but 
> those issues referenced problems with the /tmp directory.
> Apologies if this is a know problem.
> Regards
> Tony
>  
> SEVERE [global]
> java.io.IOException: No space left on device
>  at java.base/sun.nio.ch.FileDispatcherImpl.write0(Native Method)
>  at java.base/sun.nio.ch.FileDispatcherImpl.write(FileDispatcherImpl.java:62)
>  at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113)
>  at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79)
>  

[jira] [Assigned] (NETBEANS-5239) java.io.IOException: No space left on device downloading Maven Central

2021-01-18 Thread Tony Clifford (Jira)


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

Tony Clifford reassigned NETBEANS-5239:
---

Assignee: Tony Clifford

> java.io.IOException: No space left on device downloading Maven Central
> --
>
> Key: NETBEANS-5239
> URL: https://issues.apache.org/jira/browse/NETBEANS-5239
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
> Environment: >System Info: 
>   Product Version = Apache NetBeans IDE 12.2
>   Operating System= Linux version 5.4.0-58-generic running on amd64
>   Java; VM; Vendor= 11.0.8; OpenJDK 64-Bit Server VM 11.0.8+10; 
> Flathub
>   Runtime = OpenJDK Runtime Environment 11.0.8+10
>   Java Home   = /app/jdk
>   System Locale; Encoding = en_ZA (nb); UTF-8
>   Home Directory  = /home/tony
>   Current Directory   = /home/tony
>   User Directory  = /home/tony/.netbeans/12.2
>   Cache Directory = /home/tony/.cache/netbeans/12.2
>   Installation= /app/netbeans/nb
> /app/netbeans/ergonomics
> /app/netbeans/ide
> /app/netbeans/extide
> /app/netbeans/java
> /app/netbeans/apisupport
> /app/netbeans/webcommon
> /app/netbeans/websvccommon
> /app/netbeans/enterprise
> /app/netbeans/profiler
> /app/netbeans/php
> /app/netbeans/harness
> /app/netbeans/cpplite
> /app/netbeans/groovy
> /app/netbeans/javafx
> /app/netbeans/platform
>   Boot & Ext. Classpath   = 
>   Application Classpath   = 
> /app/netbeans/platform/lib/boot.jar:/app/netbeans/platform/lib/org-openide-modules.jar:/app/netbeans/platform/lib/org-openide-util.jar:/app/netbeans/platform/lib/org-openide-util-lookup.jar:/app/netbeans/platform/lib/org-openide-util-ui.jar
>   Startup Classpath   = 
> /app/netbeans/platform/core/core.jar:/app/netbeans/platform/core/org-netbeans-libs-asm.jar:/app/netbeans/platform/core/core-base.jar:/app/netbeans/platform/core/asm-commons-8.0.1.jar:/app/netbeans/platform/core/org-openide-filesystems-compat8.jar:/app/netbeans/platform/core/asm-tree-8.0.1.jar:/app/netbeans/platform/core/asm-8.0.1.jar:/app/netbeans/platform/core/org-openide-filesystems.jar:/app/netbeans/nb/core/org-netbeans-upgrader.jar:/app/netbeans/nb/core/locale/core_nb.jar
>Reporter: Tony Clifford
>Assignee: Tony Clifford
>Priority: Minor
>
> Hi
> Using Netbeans 12.2 running on Linux Mint 20, I created a new Maven project 
> so I assume the IDE started downloading the Maven Central Repository. (I'm 
> new to Maven and Netbeans).
> I got an error telling me there is not enough space to download the 
> repository into my /home/tony/.cache location. I currently have 445 Gb free 
> in that location.
> I did a search and found issues relating to older versions of Netbeans but 
> those issues referenced problems with the /tmp directory.
> Apologies if this is a know problem.
> Regards
> Tony
>  
> SEVERE [global]
> java.io.IOException: No space left on device
>  at java.base/sun.nio.ch.FileDispatcherImpl.write0(Native Method)
>  at java.base/sun.nio.ch.FileDispatcherImpl.write(FileDispatcherImpl.java:62)
>  at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113)
>  at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79)
>  at java.base/sun.nio.ch.FileChannelImpl.write(FileChannelImpl.java:280)
>  at java.base/java.nio.channels.Channels.writeFullyImpl(Channels.java:74)
>  at java.base/java.nio.channels.Channels.writeFully(Channels.java:97)
>  at java.base/java.nio.channels.Channels$1.write(Channels.java:172)
>  at 
> org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write(FSDirectory.java:278)
>  at 
> java.base/java.util.zip.CheckedOutputStream.write(CheckedOutputStream.java:74)
>  at 
> java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81)
>  at 
> java.base/java.io.BufferedOutputStream.write(BufferedOutputStream.java:127)
>  at 
> org.apache.lucene.store.OutputStreamIndexOutput.writeBytes(OutputStreamIndexOutput.java:53)
>  at 
> org.apache.lucene.store.RateLimitedIndexOutput.writeBytes(RateLimitedIndexOutput.java:73)
>  at org.apache.lucene.store.DataOutput.writeBytes(DataOutput.java:52)
>  at org.apache.lucene.store.RAMOutputStream.writeTo(RAMOutputStream.java:86)
>  at 
> org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.writeBlock(BlockTreeTermsWriter.java:997)
>  at 
> 

[jira] [Commented] (NETBEANS-5258) JavaFX Scene Builder 15.0.0 Integration Linux

2021-01-18 Thread Geertjan Wielenga (Jira)


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

Geertjan Wielenga commented on NETBEANS-5258:
-

Thanks for this great investigation and, yes, a pull request is always welcome.

> JavaFX Scene Builder 15.0.0 Integration Linux
> -
>
> Key: NETBEANS-5258
> URL: https://issues.apache.org/jira/browse/NETBEANS-5258
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
> Environment: Manjaro
> Netbeans 12.2
> Scene Builder 15.0.0
>Reporter: Moacir da Roza Flores
>Priority: Major
> Attachments: bug.png
>
>
> Hello,
>  Scene Builder 15.0.0 changed some structure of installation folder, so the 
> integration is broken.
>  To fix it open the file
>  
> repository/netbeans/javafx/javafx2.scenebuilder/src/org/netbeans/modules/javafx2/scenebuilder/impl/Bundle.properties
> Replace this lines:
>  UX_LAUNCHER=JavaFXSceneBuilder$ver$;SceneBuilder
>  UX_PROPERTIES=app/scenebuilder.properties;app/SceneBuilder.cfg
> By
> UX_LAUNCHER=JavaFXSceneBuilder$ver$;SceneBuilder;bin/SceneBuilder
>  
> UX_PROPERTIES=app/scenebuilder.properties;app/SceneBuilder.cfg;lib/app/SceneBuilder.cfg
> Can i open a pull request?
> Obs.: Thanks to the people that did this, was very easy support other version 
> of scenebuilder, very well done, i'm surprised how easy was build netbeans.



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