[jira] [Created] (NETBEANS-4606) Regenerate signature files for PHP 8.0

2020-07-18 Thread Junichi Yamamoto (Jira)
Junichi Yamamoto created NETBEANS-4606:
--

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






--
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-4123] PAC evaluator scripts runs just one at a time.

2020-07-18 Thread sdedic
This is an automated email from the ASF dual-hosted git repository.

sdedic 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 d0ef478  [NETBEANS-4123] PAC evaluator scripts runs just one at a time.
 new eb15c28  Merge pull request #2260 from 
sdedic/bugfix/synchronized-pac-eval
d0ef478 is described below

commit d0ef478a8a571dd363405b1e76c4adb2076888bf
Author: Svata Dedic 
AuthorDate: Thu Jul 16 18:33:06 2020 +0200

[NETBEANS-4123] PAC evaluator scripts runs just one at a time.
---
 .../netbeans/core/network/proxy/pac/impl/NbPacScriptEvaluator.java | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git 
a/platform/core.network/src/org/netbeans/core/network/proxy/pac/impl/NbPacScriptEvaluator.java
 
b/platform/core.network/src/org/netbeans/core/network/proxy/pac/impl/NbPacScriptEvaluator.java
index 11c97b4..52def8a 100644
--- 
a/platform/core.network/src/org/netbeans/core/network/proxy/pac/impl/NbPacScriptEvaluator.java
+++ 
b/platform/core.network/src/org/netbeans/core/network/proxy/pac/impl/NbPacScriptEvaluator.java
@@ -204,7 +204,7 @@ public class NbPacScriptEvaluator implements 
PacScriptEvaluator {
 resultCache = null;
 }
 }
-
+
 @Override
 public List findProxyForURL(URI uri) throws PacValidationException {
 
@@ -218,7 +218,10 @@ public class NbPacScriptEvaluator implements 
PacScriptEvaluator {
 }
 }
 try {
-Object jsResult = 
scriptEngine.findProxyForURL(PacUtils.toStrippedURLStr(uri), uri.getHost());
+Object jsResult;
+synchronized (scriptEngine) {
+jsResult = 
scriptEngine.findProxyForURL(PacUtils.toStrippedURLStr(uri), uri.getHost());
+}
 jsResultAnalyzed = analyzeResult(uri, jsResult);
 if (canUseURLCaching && (resultCache != null)) {
 resultCache.put(uri, jsResultAnalyzed);   // save the result 
in the cache


-
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: Include both KDE4 and KDE5 proxy settings.

2020-07-18 Thread sdedic
This is an automated email from the ASF dual-hosted git repository.

sdedic 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 c420a66  Include both KDE4 and KDE5 proxy settings.
 new a589a6f  Merge pull request #2259 from sdedic/bugfix/kde5-proxy
c420a66 is described below

commit c420a667e00150092311a6c189d538df56f65d08
Author: Svata Dedic 
AuthorDate: Thu Jul 16 18:34:12 2020 +0200

Include both KDE4 and KDE5 proxy settings.
---
 .../core/network/proxy/kde/KdeNetworkProxy.java| 70 +++---
 1 file changed, 48 insertions(+), 22 deletions(-)

diff --git 
a/platform/core.network/src/org/netbeans/core/network/proxy/kde/KdeNetworkProxy.java
 
b/platform/core.network/src/org/netbeans/core/network/proxy/kde/KdeNetworkProxy.java
index 553d1e5..dc165ac 100644
--- 
a/platform/core.network/src/org/netbeans/core/network/proxy/kde/KdeNetworkProxy.java
+++ 
b/platform/core.network/src/org/netbeans/core/network/proxy/kde/KdeNetworkProxy.java
@@ -25,7 +25,13 @@ import java.io.FileInputStream;
 import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.io.InputStreamReader;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.Arrays;
+import java.util.Collections;
 import java.util.HashMap;
+import java.util.List;
 import java.util.Map;
 import java.util.logging.Level;
 import java.util.logging.Logger;
@@ -59,11 +65,13 @@ public class KdeNetworkProxy implements 
NetworkProxyResolver {
 private final static String KIOSLAVERC_PROXY_TYPE_PAC = "2"; //NOI18N
 private final static String KIOSLAVERC_PROXY_TYPE_AUTO = "3"; //NOI18N
 private final static String KIOSLAVERC_PROXY_TYPE_SYSTEM = "4"; //NOI18N   
 
-private final static String KIOSLAVERC_PATH_IN_HOME = 
".kde/share/config/kioslaverc"; //NOI18N 
-private final String KIOSLAVERC_PATH;
+private final static String KIOSLAVERC_PATH_IN_HOME = 
".config/kioslaverc"; //NOI18N 
+private final static String KIOSLAVERC_PATH_IN_HOME_KDE4 = 
".kde/share/config/kioslaverc"; //NOI18N 
+
+private final List KIOSLAVERC_PATHS;
 
 public KdeNetworkProxy() {
-KIOSLAVERC_PATH = getKioslavercPath();
+KIOSLAVERC_PATHS = getKioslavercPaths();
 }
 
 @Override
@@ -77,14 +85,21 @@ public class KdeNetworkProxy implements 
NetworkProxyResolver {
 return new NetworkProxySettings(false);
 }
 
-if (proxyType.equals(KIOSLAVERC_PROXY_TYPE_NONE) || 
proxyType.equals(KIOSLAVERC_PROXY_TYPE_AUTO)) {
+if (proxyType.equals(KIOSLAVERC_PROXY_TYPE_NONE)) {
 LOGGER.log(Level.INFO, "KDE system proxy resolver: direct (proxy 
type: {0})", proxyType); //NOI18N
 return new NetworkProxySettings();
 }
 
-if (proxyType.equals(KIOSLAVERC_PROXY_TYPE_PAC)) {
-LOGGER.log(Level.INFO, "KDE system proxy resolver: auto - PAC"); 
//NOI18N
-String pacFileUrl = 
kioslavercMap.get(KIOSLAVERC_PROXY_CONFIG_SCRIPT);
+if (proxyType.equals(KIOSLAVERC_PROXY_TYPE_PAC)  || 
proxyType.equals(KIOSLAVERC_PROXY_TYPE_AUTO)) {
+String pacFileUrl;
+
+if (proxyType.equals(KIOSLAVERC_PROXY_TYPE_AUTO)) {
+LOGGER.log(Level.INFO, "KDE system proxy resolver: auto"); 
//NOI18N
+pacFileUrl = "http://wpad/wpad.dat;; // NOI18N
+} else {
+LOGGER.log(Level.INFO, "KDE system proxy resolver: auto - 
PAC"); //NOI18N
+pacFileUrl = kioslavercMap.get(KIOSLAVERC_PROXY_CONFIG_SCRIPT);
+}
 if (pacFileUrl != null) {
 LOGGER.log(Level.INFO, "KDE system proxy resolver: PAC URL 
({0})", pacFileUrl); //NOI18N
 return new NetworkProxySettings(pacFileUrl);
@@ -129,14 +144,16 @@ public class KdeNetworkProxy implements 
NetworkProxyResolver {
  * @return Map of keys and values from kioslaverc group Proxy settings.
  */
 private Map getKioslavercMap() {
-File kioslavercFile = new File(KIOSLAVERC_PATH);
-Map map = new HashMap();
-
-if (kioslavercFile.exists()) {
-try {
-FileInputStream fis = new FileInputStream(kioslavercFile);
-DataInputStream dis = new DataInputStream(fis);
-BufferedReader br = new BufferedReader(new 
InputStreamReader(dis));
+boolean fileExists = false;
+for (Path p : KIOSLAVERC_PATHS) {
+if (!Files.isRegularFile(p)) {
+continue;
+}
+fileExists = true;
+Map map = new HashMap();
+boolean groupFound = false;
+
+try (BufferedReader br = Files.newBufferedReader(p)) {
 String line;
 boolean inGroup = false;
 while ((line = br.readLine()) != null) {
@@ 

[jira] [Updated] (NETBEANS-4605) Advanced CSS (LESS, SASS) formatting options

2020-07-18 Thread Lobzek (Jira)


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

Lobzek updated NETBEANS-4605:
-
Description: 
In continuation of NETBEANS-1646 and discussion on 
[GitHub|https://github.com/apache/netbeans/pull/2257], it will be nice to have 
some additional CSS formatting options.

By analogy with 
[WebStorm|https://user-images.githubusercontent.com/2444896/87813591-7c8a2580-c862-11ea-9ae0-29ff4da51cd3.PNG]
 please add following options:

*1. Add space after colon*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo {
   border:none;
   font-size : 15px;
}{code}
To:
{code:css}
.foo {
   border: none;
   font-size: 15px;
}{code}
*2. Add space before opening brace*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo{
   border: none;
}{code}
To:
{code:css}
.foo {
   border: none;
}{code}
*3. Braces placement*

Type: select box
 Options: End of Line, Next Line
 Default value: End of Line

Examples:
{code:css}
/* End of Line */
.foo {
   border: none;
}

/* Next Line */
.foo 
{
   border: none;
}
{code}
*4. Align values*

Type: select box
 Options: Do not align, On colon, On value
 Default value: Do not align

Examples:
{code:css}
/* Do not align */
.foo {
   background-color: #fff;
   color: #000;
}

/* On colon */
.foo {
   background-color: #fff;
   color   : #000;
}

/* On value */
.foo {
   background-color: #fff;
   color:#000;
}
{code}
*5. Convert hex colors*

Type: select box
 Options: Do not convert, To lower case, To upper case
 Default value: Do not convert

Examples:
{code:css}
/* To lower case */
.foo {
   background-color: #fff;
   color: #80ae34;
}

/* On upper case */
.foo {
   background-color: #FFF;
   color: #80AE34;
}
{code}

  was:
In continuation of NETBEANS-1646 and discussion on 
[GitHub|[https://github.com/apache/netbeans/pull/2257]], it will be nice to 
have some additional CSS formatting options.

By analogy with 
[WebStorm|https://user-images.githubusercontent.com/2444896/87813591-7c8a2580-c862-11ea-9ae0-29ff4da51cd3.PNG]
 please add following options:

*1. Add space after colon*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo {
   border:none;
   font-size : 15px;
}{code}
To:
{code:css}
.foo {
   border: none;
   font-size: 15px;
}{code}
*2. Add space before opening brace*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo{
   border: none;
}{code}
To:
{code:css}
.foo {
   border: none;
}{code}
*3. Braces placement*

Type: select box
 Options: End of Line, Next Line
 Default value: End of Line

Examples:
{code:css}
/* End of Line */
.foo {
   border: none;
}

/* Next Line */
.foo 
{
   border: none;
}
{code}
*4. Align values*

Type: select box
 Options: Do not align, On colon, On value
 Default value: Do not align

Examples:
{code:css}
/* Do not align */
.foo {
   background-color: #fff;
   color: #000;
}

/* On colon */
.foo {
   background-color: #fff;
   color   : #000;
}

/* On value */
.foo {
   background-color: #fff;
   color:#000;
}
{code}
*5. Convert hex colors*

Type: select box
 Options: Do not convert, To lower case, To upper case
 Default value: Do not convert

Examples:
{code:css}
/* To lower case */
.foo {
   background-color: #fff;
   color: #80ae34;
}

/* On upper case */
.foo {
   background-color: #FFF;
   color: #80AE34;
}
{code}


> Advanced CSS (LESS, SASS) formatting options
> 
>
> Key: NETBEANS-4605
> URL: https://issues.apache.org/jira/browse/NETBEANS-4605
> Project: NetBeans
>  Issue Type: Improvement
>  Components: web - CSS Editor
>Affects Versions: 12.0
>Reporter: Lobzek
>Priority: Major
>
> In continuation of NETBEANS-1646 and discussion on 
> [GitHub|https://github.com/apache/netbeans/pull/2257], it will be nice to 
> have some additional CSS formatting options.
> By analogy with 
> [WebStorm|https://user-images.githubusercontent.com/2444896/87813591-7c8a2580-c862-11ea-9ae0-29ff4da51cd3.PNG]
>  please add following options:
> *1. Add space after colon*
> Type: checkbox
>  Default value: checked
> Convert:
> {code:css}
> .foo {
>border:none;
>font-size : 15px;
> }{code}
> To:
> {code:css}
> .foo {
>border: none;
>font-size: 15px;
> }{code}
> *2. Add space before opening brace*
> Type: checkbox
>  Default value: checked
> Convert:
> {code:css}
> .foo{
>border: none;
> }{code}
> To:
> {code:css}
> .foo {
>border: none;
> }{code}
> *3. Braces placement*
> Type: select box
>  Options: End of Line, Next Line
>  Default value: End of Line
> Examples:
> {code:css}
> /* End of Line */
> .foo {
>border: none;
> }
> /* Next Line */
> .foo 
> {
>border: none;
> }
> {code}
> *4. Align values*
> Type: select box
>  Options: Do not align, On colon, On value
>  Default value: Do not align
> Examples:
> 

[jira] [Updated] (NETBEANS-4605) Advanced CSS (LESS, SASS) formatting options

2020-07-18 Thread Lobzek (Jira)


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

Lobzek updated NETBEANS-4605:
-
Description: 
In continuation of NETBEANS-1646 and discussion on 
[GitHub|[https://github.com/apache/netbeans/pull/2257]], it will be nice to 
have some additional CSS formatting options.

By analogy with 
[WebStorm|https://user-images.githubusercontent.com/2444896/87813591-7c8a2580-c862-11ea-9ae0-29ff4da51cd3.PNG]
 please add following options:

*1. Add space after colon*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo {
   border:none;
   font-size : 15px;
}{code}
To:
{code:css}
.foo {
   border: none;
   font-size: 15px;
}{code}
*2. Add space before opening brace*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo{
   border: none;
}{code}
To:
{code:css}
.foo {
   border: none;
}{code}
*3. Braces placement*

Type: select box
 Options: End of Line, Next Line
 Default value: End of Line

Examples:
{code:css}
/* End of Line */
.foo {
   border: none;
}

/* Next Line */
.foo 
{
   border: none;
}
{code}
*4. Align values*

Type: select box
 Options: Do not align, On colon, On value
 Default value: Do not align

Examples:
{code:css}
/* Do not align */
.foo {
   background-color: #fff;
   color: #000;
}

/* On colon */
.foo {
   background-color: #fff;
   color   : #000;
}

/* On value */
.foo {
   background-color: #fff;
   color:#000;
}
{code}
*5. Convert hex colors*

Type: select box
 Options: Do not convert, To lower case, To upper case
 Default value: Do not convert

Examples:
{code:css}
/* To lower case */
.foo {
   background-color: #fff;
   color: #80ae34;
}

/* On upper case */
.foo {
   background-color: #FFF;
   color: #80AE34;
}
{code}

  was:
In continuation of NETBEANS-1646 and discussion on 
[GitHub|[https://github.com/apache/netbeans/pull/2257]|https://github.com/apache/netbeans/pull/2257],
 it will be nice to have some additional CSS formatting options.

By analogy with 
[WebStorm|https://user-images.githubusercontent.com/2444896/87813591-7c8a2580-c862-11ea-9ae0-29ff4da51cd3.PNG]
 please add following options:

*1. Add space after colon*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo {
   border:none;
   font-size : 15px;
}{code}
To:
{code:css}
.foo {
   border: none;
   font-size: 15px;
}{code}
*2. Add space before opening brace*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo{
   border: none;
}{code}
To:
{code:css}
.foo {
   border: none;
}{code}
*3. Braces placement*

Type: select box
 Options: End of Line, Next Line
 Default value: End of Line

Examples:
{code:css}
/* End of Line */
.foo {
   border: none;
}

/* Next Line */
.foo 
{
   border: none;
}
{code}
*4. Align values*

Type: select box
 Options: Do not align, On colon, On value
 Default value: Do not align

Examples:
{code:css}
/* Do not align */
.foo {
   background-color: #fff;
   color: #000;
}

/* On colon */
.foo {
   background-color: #fff;
   color   : #000;
}

/* On value */
.foo {
   background-color: #fff;
   color:#000;
}
{code}
*5. Convert hex colors*

Type: select box
 Options: Do not convert, To lower case, To upper case
 Default value: Do not convert

Examples:
{code:css}
/* To lower case */
.foo {
   background-color: #fff;
   color: #80ae34;
}

/* On upper case */
.foo {
   background-color: #FFF;
   color: #80AE34;
}
{code}


> Advanced CSS (LESS, SASS) formatting options
> 
>
> Key: NETBEANS-4605
> URL: https://issues.apache.org/jira/browse/NETBEANS-4605
> Project: NetBeans
>  Issue Type: Improvement
>  Components: web - CSS Editor
>Affects Versions: 12.0
>Reporter: Lobzek
>Priority: Major
>
> In continuation of NETBEANS-1646 and discussion on 
> [GitHub|[https://github.com/apache/netbeans/pull/2257]], it will be nice to 
> have some additional CSS formatting options.
> By analogy with 
> [WebStorm|https://user-images.githubusercontent.com/2444896/87813591-7c8a2580-c862-11ea-9ae0-29ff4da51cd3.PNG]
>  please add following options:
> *1. Add space after colon*
> Type: checkbox
>  Default value: checked
> Convert:
> {code:css}
> .foo {
>border:none;
>font-size : 15px;
> }{code}
> To:
> {code:css}
> .foo {
>border: none;
>font-size: 15px;
> }{code}
> *2. Add space before opening brace*
> Type: checkbox
>  Default value: checked
> Convert:
> {code:css}
> .foo{
>border: none;
> }{code}
> To:
> {code:css}
> .foo {
>border: none;
> }{code}
> *3. Braces placement*
> Type: select box
>  Options: End of Line, Next Line
>  Default value: End of Line
> Examples:
> {code:css}
> /* End of Line */
> .foo {
>border: none;
> }
> /* Next Line */
> .foo 
> {
>border: none;
> }
> {code}
> *4. Align values*
> Type: select box
>  Options: Do not align, On colon, On value
> 

[jira] [Created] (NETBEANS-4605) Advanced CSS (LESS, SASS) formatting options

2020-07-18 Thread Lobzek (Jira)
Lobzek created NETBEANS-4605:


 Summary: Advanced CSS (LESS, SASS) formatting options
 Key: NETBEANS-4605
 URL: https://issues.apache.org/jira/browse/NETBEANS-4605
 Project: NetBeans
  Issue Type: Improvement
  Components: web - CSS Editor
Affects Versions: 12.0
Reporter: Lobzek


In continuation of NETBEANS-1646 and discussion on 
[GitHub|[https://github.com/apache/netbeans/pull/2257]|https://github.com/apache/netbeans/pull/2257],
 it will be nice to have some additional CSS formatting options.

By analogy with 
[WebStorm|https://user-images.githubusercontent.com/2444896/87813591-7c8a2580-c862-11ea-9ae0-29ff4da51cd3.PNG]
 please add following options:

*1. Add space after colon*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo {
   border:none;
   font-size : 15px;
}{code}
To:
{code:css}
.foo {
   border: none;
   font-size: 15px;
}{code}
*2. Add space before opening brace*

Type: checkbox
 Default value: checked

Convert:
{code:css}
.foo{
   border: none;
}{code}
To:
{code:css}
.foo {
   border: none;
}{code}
*3. Braces placement*

Type: select box
 Options: End of Line, Next Line
 Default value: End of Line

Examples:
{code:css}
/* End of Line */
.foo {
   border: none;
}

/* Next Line */
.foo 
{
   border: none;
}
{code}
*4. Align values*

Type: select box
 Options: Do not align, On colon, On value
 Default value: Do not align

Examples:
{code:css}
/* Do not align */
.foo {
   background-color: #fff;
   color: #000;
}

/* On colon */
.foo {
   background-color: #fff;
   color   : #000;
}

/* On value */
.foo {
   background-color: #fff;
   color:#000;
}
{code}
*5. Convert hex colors*

Type: select box
 Options: Do not convert, To lower case, To upper case
 Default value: Do not convert

Examples:
{code:css}
/* To lower case */
.foo {
   background-color: #fff;
   color: #80ae34;
}

/* On upper case */
.foo {
   background-color: #FFF;
   color: #80AE34;
}
{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] [Updated] (NETBEANS-4604) PHP - instant rename of private constant

2020-07-18 Thread Jira


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

Tomáš Procházka updated NETBEANS-4604:
--
Labels: pull-request-available  (was: )

> PHP - instant rename of private constant
> 
>
> Key: NETBEANS-4604
> URL: https://issues.apache.org/jira/browse/NETBEANS-4604
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.0
>Reporter: Tomáš Procházka
>Assignee: Tomáš Procházka
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> NetBeans can rename local variables and private fields and methods by 
> selecting it and Ctrl-R and editing the name.
> Same function is not supported for private class constants.
> Pressing Ctrl-R always displays rename dialog.



--
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-4604) PHP - instant rename of private constant

2020-07-18 Thread Jira
Tomáš Procházka created NETBEANS-4604:
-

 Summary: PHP - instant rename of private constant
 Key: NETBEANS-4604
 URL: https://issues.apache.org/jira/browse/NETBEANS-4604
 Project: NetBeans
  Issue Type: Improvement
  Components: php - Editor
Affects Versions: 12.0
Reporter: Tomáš Procházka
Assignee: Tomáš Procházka


NetBeans can rename local variables and private fields and methods by selecting 
it and Ctrl-R and editing the name.

Same function is not supported for private class constants.

Pressing Ctrl-R always displays rename dialog.



--
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-4603) next error shortcut does not work!

2020-07-18 Thread aliSadeqi (Jira)
aliSadeqi created NETBEANS-4603:
---

 Summary: next error shortcut does not work!
 Key: NETBEANS-4603
 URL: https://issues.apache.org/jira/browse/NETBEANS-4603
 Project: NetBeans
  Issue Type: Bug
Reporter: aliSadeqi


As the keymaps says on netbeans the CTRL PERIOD(./>) must take cursor to next 
error within the current opened editor but it does something else it takes me 
to another opened file in editor



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

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

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



[jira] [Created] (NETBEANS-4602) netbeans' javadoc does not support all tags

2020-07-18 Thread aliSadeqi (Jira)
aliSadeqi created NETBEANS-4602:
---

 Summary: netbeans' javadoc does not support all tags
 Key: NETBEANS-4602
 URL: https://issues.apache.org/jira/browse/NETBEANS-4602
 Project: NetBeans
  Issue Type: Bug
Reporter: aliSadeqi


First of all if you write a '@' within a javadoc, and press CTRL SPACE, you get 
less choices than press CTRL (without '@' in previous character)

 

after that netbeans have not supported @version @value @serialField 
@inheriteddoc



--
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-4601) autocomplete box does not work good at first time

2020-07-18 Thread aliSadeqi (Jira)
aliSadeqi created NETBEANS-4601:
---

 Summary: autocomplete box does not work good at first time
 Key: NETBEANS-4601
 URL: https://issues.apache.org/jira/browse/NETBEANS-4601
 Project: NetBeans
  Issue Type: New Feature
Reporter: aliSadeqi


Press  CTRL SPACE to show autocomplete which is perfect and beautiful but for 
first time it just indicates the java.lang classes.

If you want to use java.util classes or others you must press CTRL SPACE once 
again.

For instance :

1.Write "Arr" (target = ArrayList)

2.CTRL SPACE

results :

ArrayIndexOutOfBoundException

ArraysStoreException

3.once again press CTRL SPACE

4.now you can see ArrayList and many other classes and interfaces



--
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-4600) add multi catch support

2020-07-18 Thread aliSadeqi (Jira)
aliSadeqi created NETBEANS-4600:
---

 Summary: add multi catch support
 Key: NETBEANS-4600
 URL: https://issues.apache.org/jira/browse/NETBEANS-4600
 Project: NetBeans
  Issue Type: New Feature
Reporter: aliSadeqi


I wander if you add multi catch handle exception on netbeans.

I'm sorry I'm very weak to implements things on netbeans source codes.

 

Some of methods throws several exceptions in their signature ,and netbeans just 
have two options one for add throws declaration ,or catch them (for each one 
made a new catch block) but on eclipse we have another option called multi 
catch handle which look likes bellow :

"eclipse"

catch(ex1 | ex2 | ex3 e){

}

 

"the great netbeans"

catch(ex1 e){

 

}catch(ex2 e){

 

}catch(ex3 e){

 

}

 

someone tell me you can catch using Exception but it is not a professional 
choice

 

the netbeans already supports catch(ex1 | ex2 | ex3 e) but it has not any 
template for that in yellow lamp



--
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-4599) Texts of Nimbus look and feel does not follow --fontsize

2020-07-18 Thread aliSadeqi (Jira)


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

aliSadeqi updated NETBEANS-4599:

Description: 
I'm using latest Manjaro linux ,and I'm a new in netbeans.

 

I have tried all look and feels all of them work good except Nimbus ,when I 
choose a font size like 17 (as my eyes weak to see smalls) some of texts appear 
smaller than others .

 

the images placed into my question in stackoverflow 
([https://stackoverflow.com/questions/62846082/font-problem-on-java-look-and-feel-style-nimbus-in-netbeans)]
 please check it out (other look and feels does not have this issue)

  was:I'm using latest Manjaro linux and I'm a new in netbeans I have tried all 
look and feels all of them work good except Nimbuswhen I choose a font size 
like 17 (as my eyes weak to see smalls) some of texts appear smaller than 
others the images placed into my question in stackoverflow 
([https://stackoverflow.com/questions/62846082/font-problem-on-java-look-and-feel-style-nimbus-in-netbeans)]
 please check it up (other look and feels does not have this issue)


> Texts of Nimbus look and feel does not follow --fontsize
> 
>
> Key: NETBEANS-4599
> URL: https://issues.apache.org/jira/browse/NETBEANS-4599
> Project: NetBeans
>  Issue Type: Bug
>Reporter: aliSadeqi
>Priority: Critical
>
> I'm using latest Manjaro linux ,and I'm a new in netbeans.
>  
> I have tried all look and feels all of them work good except Nimbus ,when I 
> choose a font size like 17 (as my eyes weak to see smalls) some of texts 
> appear smaller than others .
>  
> the images placed into my question in stackoverflow 
> ([https://stackoverflow.com/questions/62846082/font-problem-on-java-look-and-feel-style-nimbus-in-netbeans)]
>  please check it out (other look and feels does not have this issue)



--
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-4599) Texts of Nimbus look and feel does not follow --fontsize

2020-07-18 Thread aliSadeqi (Jira)
aliSadeqi created NETBEANS-4599:
---

 Summary: Texts of Nimbus look and feel does not follow --fontsize
 Key: NETBEANS-4599
 URL: https://issues.apache.org/jira/browse/NETBEANS-4599
 Project: NetBeans
  Issue Type: Bug
Reporter: aliSadeqi


I'm using latest Manjaro linux and I'm a new in netbeans I have tried all look 
and feels all of them work good except Nimbuswhen I choose a font size like 17 
(as my eyes weak to see smalls) some of texts appear smaller than others the 
images placed into my question in stackoverflow 
([https://stackoverflow.com/questions/62846082/font-problem-on-java-look-and-feel-style-nimbus-in-netbeans)]
 please check it up (other look and feels does not have this issue)



--
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 (b8441cf -> 3d96b97)

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

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


from b8441cf  Merge pull request #2188 from 
junichi11/netbeans--editor-search
 new ca1d918  fix finalizables
 new a9320fa  fix test for heap.classes(), heap.roots() and 
heap.finalizables()
 new 3d96b97  Merge pull request #2262 from 
daemontus/profiler-oql-finalizables-fix-backport

The 4172 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:
 .../profiler/oql/engine/api/impl/Snapshot.java| 19 +--
 .../modules/profiler/oql/engine/api/impl/hat.js   |  2 +-
 .../profiler/oql/engine/api/impl/OQLEngineTest.java   | 18 +-
 3 files changed, 19 insertions(+), 20 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