[jira] [Commented] (NETBEANS-4610) URISyntaxException building with org-netbeans-libs-javafx.jar using Java 11.0.7 or later

2020-07-20 Thread Rangi Keen (Jira)


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

Rangi Keen commented on NETBEANS-4610:
--

This is due to [JDK-8218268|https://bugs.openjdk.java.net/browse/JDK-8218268] 
which changed the resolution of the classpath in a manifest file to [use 
{{URI}}|http://hg.openjdk.java.net/jdk-updates/jdk11u/file/f9fef514b121/src/jdk.compiler/share/classes/com/sun/tools/javac/file/FSInfo.java#l121]
 which does not allow "$".

One solution that seems to resolve the issue (but may have other negative side 
effects) is to remove the "${java.home}" prefix from the manifest and project 
files for platform/libs.javafx:

{code:none}
diff --git a/platform/libs.javafx/manifest.mf b/platform/libs.javafx/manifest.mf
index 192afed0..bda9cde7 100644
--- a/platform/libs.javafx/manifest.mf
+++ b/platform/libs.javafx/manifest.mf
@@ -38,5 +38,5 @@ OpenIDE-Module-Provides: javafx.animation,
 javafx.util,
 javafx.util.converter,
 netscape.javascript
-Class-Path: ${java.home}/lib/ext/jfxrt.jar
+Class-Path: lib/ext/jfxrt.jar
 
diff --git a/platform/libs.javafx/nbproject/project.xml 
b/platform/libs.javafx/nbproject/project.xml
index e2313422..9bff3a11 100644
--- a/platform/libs.javafx/nbproject/project.xml
+++ b/platform/libs.javafx/nbproject/project.xml
@@ -93,7 +93,7 @@
 com.sun.javafx.scene.web
 
 
-
${java.home}/lib/ext/jfxrt.jar
+
lib/ext/jfxrt.jar
 build/openjfx.zip
 
 
{code}

> URISyntaxException building with org-netbeans-libs-javafx.jar using Java 
> 11.0.7 or later
> 
>
> Key: NETBEANS-4610
> URL: https://issues.apache.org/jira/browse/NETBEANS-4610
> Project: NetBeans
>  Issue Type: Bug
>  Components: javafx - Deployment
>Affects Versions: 12.0
>Reporter: Rangi Keen
>Priority: Major
>
> To reproduce:
> # Create a new Java project in NetBeans
> # Open the project properties
> # Select the Libraries category
> # Choose JDK 11.0.7 or later for Java Platform
> # On the Compile tab, click the ellipsis button next to Classpath and choose 
> Add JAR/Folder
> # Select /platform/modules/org-netbeans-libs-javafx.jar
> # Save the changes and close the project properties
> # Clean and build the project
> You'll see the following error in the build output:
> {noformat}
> error reading /platform/modules/org-netbeans-libs-javafx.jar; 
> java.net.URISyntaxException: Illegal character in path at index : 
> file://platform/modules/${java.home}/lib/ext/jfxrt.jar
> {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



[jira] [Created] (NETBEANS-4610) URISyntaxException building with org-netbeans-libs-javafx.jar using Java 11.0.7 or later

2020-07-20 Thread Rangi Keen (Jira)
Rangi Keen created NETBEANS-4610:


 Summary: URISyntaxException building with 
org-netbeans-libs-javafx.jar using Java 11.0.7 or later
 Key: NETBEANS-4610
 URL: https://issues.apache.org/jira/browse/NETBEANS-4610
 Project: NetBeans
  Issue Type: Bug
  Components: javafx - Deployment
Affects Versions: 12.0
Reporter: Rangi Keen


To reproduce:
# Create a new Java project in NetBeans
# Open the project properties
# Select the Libraries category
# Choose JDK 11.0.7 or later for Java Platform
# On the Compile tab, click the ellipsis button next to Classpath and choose 
Add JAR/Folder
# Select /platform/modules/org-netbeans-libs-javafx.jar
# Save the changes and close the project properties
# Clean and build the project

You'll see the following error in the build output:

{noformat}
error reading /platform/modules/org-netbeans-libs-javafx.jar; 
java.net.URISyntaxException: Illegal character in path at index : 
file://platform/modules/${java.home}/lib/ext/jfxrt.jar
{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



[jira] [Resolved] (NETBEANS-3681) Support for script type="module"

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-3681.

Fix Version/s: 12.1
   Resolution: Fixed

> Support for script type="module"
> 
>
> Key: NETBEANS-3681
> URL: https://issues.apache.org/jira/browse/NETBEANS-3681
> Project: NetBeans
>  Issue Type: Improvement
>  Components: web - HTML Editor
>Affects Versions: 11.2
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.1
>
> Attachments: nb-script-type-module-error.png
>
>
> Currently, the below code is recognized as an error.
> {code:html}
> 
> 
> 
> {code}
> see: [https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Script]
> !nb-script-type-module-error.png!
> Workaround: Uncheck Tools > Options > Editor > Hints > Language: HTML > HTML 
> Validator: Attributes



--
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-3681) Support for script type="module"

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-3681:
---
Labels: pull-request-available  (was: )

> Support for script type="module"
> 
>
> Key: NETBEANS-3681
> URL: https://issues.apache.org/jira/browse/NETBEANS-3681
> Project: NetBeans
>  Issue Type: Improvement
>  Components: web - HTML Editor
>Affects Versions: 11.2
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Attachments: nb-script-type-module-error.png
>
>
> Currently, the below code is recognized as an error.
> {code:html}
> 
> 
> 
> {code}
> see: [https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Script]
> !nb-script-type-module-error.png!
> Workaround: Uncheck Tools > Options > Editor > Hints > Language: HTML > HTML 
> Validator: Attributes



--
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-4609) Add Gradle task selector

2020-07-20 Thread Serhi Serhieiev (Jira)


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

Serhi Serhieiev updated NETBEANS-4609:
--
Description: 
Starting from NB11 the build in support for Gradle has been provided. Although 
it is nice but it is not that good as this 
[plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I want 
is a Task selector selectbox(like the Profile selector in the mentioned plugin) 
on the Toolbar, so I can select some custom Run task and always use it when I 
run the project with F6. 

 

What I want is something like in the uploaded gif but with Gradle Custom Tasks 
which you can add in NB 12.

Or maybe not run it with F6 (because not all custom Tasks may be Run tasks) but 
at least give me the possibility to run the selected Gradle task with some key 
combination I can map in the settings.

  was:
Starting from NB11 the build in support for Gradle has been provided. Although 
it is nice but it is not that good as this 
[plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I want 
is a Task selector selectbox(like the Profile selector in the mentioned plugin) 
on the Toolbar, so I can select some custom Run task and always use it when I 
run the project with F6. 

 

What I want is something like in the uploaded gif but with Gradle Custom Tasks 
which you can add in NB 12.


> Add Gradle task selector
> 
>
> Key: NETBEANS-4609
> URL: https://issues.apache.org/jira/browse/NETBEANS-4609
> Project: NetBeans
>  Issue Type: Wish
>Affects Versions: 11.0, 12.0, 11.1, 11.2, 11.3
>Reporter: Serhi Serhieiev
>Priority: Minor
> Attachments: Peek 2020-07-21 00-43.gif
>
>
> Starting from NB11 the build in support for Gradle has been provided. 
> Although it is nice but it is not that good as this 
> [plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I 
> want is a Task selector selectbox(like the Profile selector in the mentioned 
> plugin) on the Toolbar, so I can select some custom Run task and always use 
> it when I run the project with F6. 
>  
> What I want is something like in the uploaded gif but with Gradle Custom 
> Tasks which you can add in NB 12.
> Or maybe not run it with F6 (because not all custom Tasks may be Run tasks) 
> but at least give me the possibility to run the selected Gradle task with 
> some key combination I can map in the 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-4609) Add Gradle task selector

2020-07-20 Thread Serhi Serhieiev (Jira)


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

Serhi Serhieiev updated NETBEANS-4609:
--
Description: 
Starting from NB11 the build in support for Gradle has been provided. Although 
it is nice but it is not that good as this 
[plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I want 
is a Task selector selectbox(like the Profile selector in the mentioned plugin) 
on the Toolbar, so I can select some custom Run task and always use it when I 
run the project with F6. 

 

What I want is something like in the uploaded gif but with Gradle Custom Tasks 
which you can add in NB 12.

  was:
Starting from NB11 the build in support for Gradle has been provided. Although 
it is nice but it is not that good as this 
[plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I want 
is a Task selector selectbox(like the Profile selector in the mentioned plugin) 
on the Toolbar, so I can select some custom Run task and always use it when I 
run the project with F6. 

 

What I want is something like in the uploaded gif but with Gradle Tasks which 
you can add in NB 12.


> Add Gradle task selector
> 
>
> Key: NETBEANS-4609
> URL: https://issues.apache.org/jira/browse/NETBEANS-4609
> Project: NetBeans
>  Issue Type: Wish
>Affects Versions: 11.0, 12.0, 11.1, 11.2, 11.3
>Reporter: Serhi Serhieiev
>Priority: Minor
> Attachments: Peek 2020-07-21 00-43.gif
>
>
> Starting from NB11 the build in support for Gradle has been provided. 
> Although it is nice but it is not that good as this 
> [plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I 
> want is a Task selector selectbox(like the Profile selector in the mentioned 
> plugin) on the Toolbar, so I can select some custom Run task and always use 
> it when I run the project with F6. 
>  
> What I want is something like in the uploaded gif but with Gradle Custom 
> Tasks which you can add in NB 12.



--
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-4609) Add Gradle task selector

2020-07-20 Thread Serhi Serhieiev (Jira)


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

Serhi Serhieiev updated NETBEANS-4609:
--
Description: 
Starting from NB11 the build in support for Gradle has been provided. Although 
it is nice but it is not that good as this 
[plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I want 
is a Task selector selectbox(like the Profile selector in the mentioned plugin) 
on the Toolbar, so I can select some custom Run task and always use it when I 
run the project with F6. 

 

What I want is something like in the uploaded gif but with Gradle Tasks which 
you can add in NB 12.

  was:Starting from NB11 the build in support for Gradle has been provided. 
Although it is nice but it is not that good as this 
[plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I want 
is a Task selector selectbox(like the Profile selector in the mentioned plugin) 
on the Toolbar, so I can select some custom Run task and always use it when I 
run the project with F6. 


> Add Gradle task selector
> 
>
> Key: NETBEANS-4609
> URL: https://issues.apache.org/jira/browse/NETBEANS-4609
> Project: NetBeans
>  Issue Type: Wish
>Affects Versions: 11.0, 12.0, 11.1, 11.2, 11.3
>Reporter: Serhi Serhieiev
>Priority: Minor
> Attachments: Peek 2020-07-21 00-43.gif
>
>
> Starting from NB11 the build in support for Gradle has been provided. 
> Although it is nice but it is not that good as this 
> [plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I 
> want is a Task selector selectbox(like the Profile selector in the mentioned 
> plugin) on the Toolbar, so I can select some custom Run task and always use 
> it when I run the project with F6. 
>  
> What I want is something like in the uploaded gif but with Gradle Tasks which 
> you can add in NB 12.



--
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-4609) Add Gradle task selector

2020-07-20 Thread Serhi Serhieiev (Jira)


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

Serhi Serhieiev updated NETBEANS-4609:
--
Attachment: Peek 2020-07-21 00-43.gif

> Add Gradle task selector
> 
>
> Key: NETBEANS-4609
> URL: https://issues.apache.org/jira/browse/NETBEANS-4609
> Project: NetBeans
>  Issue Type: Wish
>Affects Versions: 11.0, 12.0, 11.1, 11.2, 11.3
>Reporter: Serhi Serhieiev
>Priority: Minor
> Attachments: Peek 2020-07-21 00-43.gif
>
>
> Starting from NB11 the build in support for Gradle has been provided. 
> Although it is nice but it is not that good as this 
> [plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I 
> want is a Task selector selectbox(like the Profile selector in the mentioned 
> plugin) on the Toolbar, so I can select some custom Run task and always use 
> it when I run the project with F6. 



--
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-4609) Add Gradle task selector

2020-07-20 Thread Serhi Serhieiev (Jira)
Serhi Serhieiev created NETBEANS-4609:
-

 Summary: Add Gradle task selector
 Key: NETBEANS-4609
 URL: https://issues.apache.org/jira/browse/NETBEANS-4609
 Project: NetBeans
  Issue Type: Wish
Affects Versions: 11.3, 11.2, 11.1, 12.0, 11.0
Reporter: Serhi Serhieiev


Starting from NB11 the build in support for Gradle has been provided. Although 
it is nice but it is not that good as this 
[plugin|[http://plugins.netbeans.org/plugin/44510/gradle-support]]. What I want 
is a Task selector selectbox(like the Profile selector in the mentioned plugin) 
on the Toolbar, so I can select some custom Run task and always use it when I 
run the project with F6. 



--
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-4444) The selected text is not removed in the Find Combobox when text is input via IME

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-:
---
Labels: pull-request-available  (was: )

> The selected text is not removed in the Find Combobox when text is input via 
> IME
> 
>
> Key: NETBEANS-
> URL: https://issues.apache.org/jira/browse/NETBEANS-
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Search
>Affects Versions: 12.0
> Environment: Ubuntu 20.04
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.1
>
> Attachments: find-combobox-with-ime.gif, find-combobox-without-ime.gif
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> h2. Steps to reproduce
>  * Show the search bar [Ctrl] + [F]
>  * Input something
>  * Select all text
>  * Type something via IME
>  * Selected text is not removed
> h3. Without IME
> !find-combobox-without-ime.gif!
> h3. With IME
> !find-combobox-with-ime.gif!
>  
> I used the mozc as an IME: [https://github.com/google/mozc]



--
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-2333) Add minlength, maxlength to input field

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-2333.

Fix Version/s: 12.1
   Resolution: Fixed

Please give it a try if possible when the NetBeans 12.1 beta is available. 
Thanks.

> Add minlength, maxlength to input field
> ---
>
> Key: NETBEANS-2333
> URL: https://issues.apache.org/jira/browse/NETBEANS-2333
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - HTML Editor
>Affects Versions: 10.0
> Environment:  Product Version: Apache NetBeans Platform 10.0 
> (Build incubator-netbeans-release-380-on-20181217)
> Java: 10.0.2; OpenJDK 64-Bit Server VM 10.0.2+13-Ubuntu-1ubuntu0.18.04.4
> Runtime: OpenJDK Runtime Environment
>Reporter: Ivan Borisov
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.1
>
> Attachments: Screenshot_20190401_145544.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Receiving error when try to use minlength, maxlength
>  
> {code:java}
>  maxlength="15" required>{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-2333) Add minlength, maxlength to input field

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-2333:
---
Labels: pull-request-available  (was: )

> Add minlength, maxlength to input field
> ---
>
> Key: NETBEANS-2333
> URL: https://issues.apache.org/jira/browse/NETBEANS-2333
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - HTML Editor
>Affects Versions: 10.0
> Environment:  Product Version: Apache NetBeans Platform 10.0 
> (Build incubator-netbeans-release-380-on-20181217)
> Java: 10.0.2; OpenJDK 64-Bit Server VM 10.0.2+13-Ubuntu-1ubuntu0.18.04.4
> Runtime: OpenJDK Runtime Environment
>Reporter: Ivan Borisov
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Attachments: Screenshot_20190401_145544.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Receiving error when try to use minlength, maxlength
>  
> {code:java}
>  maxlength="15" required>{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-4576) Better support for HTML autocomplete attributes

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-4576.

Fix Version/s: 12.1
   Resolution: Fixed

Done. If there are problems, please report them as new issues. Thanks!

> Better support for HTML autocomplete attributes 
> 
>
> Key: NETBEANS-4576
> URL: https://issues.apache.org/jira/browse/NETBEANS-4576
> Project: NetBeans
>  Issue Type: Improvement
>  Components: web - HTML Editor
>Affects Versions: 12.0
>Reporter: Los Vitaly
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.1
>
> Attachments: autosuggest.gif, emmet.png, netbeans-4576-prototype.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> I just ask, if it can be implemented in Netbeans. 
> I made GIF about different behavior in storm and 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-4576) Better support for HTML autocomplete attributes

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-4576:
---
Labels: pull-request-available  (was: )

> Better support for HTML autocomplete attributes 
> 
>
> Key: NETBEANS-4576
> URL: https://issues.apache.org/jira/browse/NETBEANS-4576
> Project: NetBeans
>  Issue Type: Improvement
>  Components: web - HTML Editor
>Affects Versions: 12.0
>Reporter: Los Vitaly
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Attachments: autosuggest.gif, emmet.png, netbeans-4576-prototype.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> I just ask, if it can be implemented in Netbeans. 
> I made GIF about different behavior in storm and 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] [Resolved] (NETBEANS-1646) Formatting options for CSS

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-1646.

Fix Version/s: 12.1
   Resolution: Fixed

> Formatting options for CSS
> --
>
> Key: NETBEANS-1646
> URL: https://issues.apache.org/jira/browse/NETBEANS-1646
> Project: NetBeans
>  Issue Type: New Feature
>  Components: editor - Formatting & Indentation, web - CSS Editor
>Affects Versions: 8.2, 10.0, 11.0, 12.0
>Reporter: Christian Lenz
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.1
>
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> Unfortunately, there are no options to formatting CSS but they should. I 
> would like to have formatting options for my CSS files, where I can add rules 
> how they look like.
> Cheers
> Chris



--
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-1646) Formatting options for CSS

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-1646:
---
Labels: pull-request-available  (was: )

> Formatting options for CSS
> --
>
> Key: NETBEANS-1646
> URL: https://issues.apache.org/jira/browse/NETBEANS-1646
> Project: NetBeans
>  Issue Type: New Feature
>  Components: editor - Formatting & Indentation, web - CSS Editor
>Affects Versions: 8.2, 10.0, 11.0, 12.0
>Reporter: Christian Lenz
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> Unfortunately, there are no options to formatting CSS but they should. I 
> would like to have formatting options for my CSS files, where I can add rules 
> how they look like.
> Cheers
> Chris



--
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-4593) src、href attribute values which contain character @ lose underline and correct syntax highlighting

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto resolved NETBEANS-4593.

Fix Version/s: 12.1
   Resolution: Fixed

Fixed.

> src、href attribute values which contain character @ lose underline and 
> correct syntax highlighting
> --
>
> Key: NETBEANS-4593
> URL: https://issues.apache.org/jira/browse/NETBEANS-4593
> Project: NetBeans
>  Issue Type: Improvement
>  Components: editor - Other
>Affects Versions: 12.0
>Reporter: 高浩
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.1
>
> Attachments: image-2020-07-16-17-54-24-018.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Given the html code below:
> {code:html}
> https://cdn.jsdelivr.net/npm/jquery@3.2/dist/jquery.min.js";>
> 
> {code}
> The underline is missing after character *@*
> !image-2020-07-16-17-54-24-018.png!
> HTML comments have this problem too.



--
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-4593) src、href attribute values which contain character @ lose underline and correct syntax highlighting

2020-07-20 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-4593:
---
Labels: pull-request-available  (was: )

> src、href attribute values which contain character @ lose underline and 
> correct syntax highlighting
> --
>
> Key: NETBEANS-4593
> URL: https://issues.apache.org/jira/browse/NETBEANS-4593
> Project: NetBeans
>  Issue Type: Improvement
>  Components: editor - Other
>Affects Versions: 12.0
>Reporter: 高浩
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Attachments: image-2020-07-16-17-54-24-018.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Given the html code below:
> {code:html}
> https://cdn.jsdelivr.net/npm/jquery@3.2/dist/jquery.min.js";>
> 
> {code}
> The underline is missing after character *@*
> !image-2020-07-16-17-54-24-018.png!
> HTML comments have this problem too.



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread D Burbridge (Jira)


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

D Burbridge commented on NETBEANS-4468:
---

Thanks Debra, I think I've tracked down the problem I was having.

Although I'd definitely put v238 in the folder, when I checked it just now it 
was v239. I started again, and this time checked very carefully what I was 
doing, not letting NB do any updates other than essential activations before 
I'd got Hibernate installed. And yes, this time it worked fine!

I then got a message about it wanting to update GraalVM, which itself wanted to 
update Freemarker from 238 to 239... I told it not to, and so far Hibernate 
seems still to be working.

Thanks again!

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png, image-2020-07-20-08-33-01-925.png, 
> image-2020-07-20-08-37-07-773.png, image-2020-07-20-08-38-48-458.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread Swapnil Sidram Nagtilak (Jira)


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

Swapnil Sidram Nagtilak commented on NETBEANS-4468:
---

Thank you Debra it is working.

Thank you so much now I can make use of NetBeans 12.0 which is much faster than 
11.0. 

Have a nice time.

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png, image-2020-07-20-08-33-01-925.png, 
> image-2020-07-20-08-37-07-773.png, image-2020-07-20-08-38-48-458.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread Debra Petta (Jira)


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

Debra Petta commented on NETBEANS-4468:
---

I retried my suggested steps again on another computer and got the same 
successful results:

!image-2020-07-20-08-31-46-458.png!

!image-2020-07-20-08-32-13-869.png!

 

!image-2020-07-20-08-32-33-110.png!

!image-2020-07-20-08-33-01-925.png!

You can try restarting NB 12 again and retrying or perhaps restarting your 
computer.  

Also validate that you have renamed the downloaded freemarker jar correctly in 
the ide/modules directory:

!image-2020-07-20-08-37-07-773.png!

 

and that the implementation version is 238:

!image-2020-07-20-08-38-48-458.png!

If it still doesn't work, try deactivating Java SE and reactivating it again so 
that the module with version 238 is correctly sensed. It's possible that even 
with a fresh install there are still remnants of the previous version (if you 
had one) leftover in your cache.

Give this a try and let me know how it goes.

 

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png, image-2020-07-20-08-33-01-925.png, 
> image-2020-07-20-08-37-07-773.png, image-2020-07-20-08-38-48-458.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread Debra Petta (Jira)


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

Debra Petta updated NETBEANS-4468:
--
Attachment: image-2020-07-20-08-38-48-458.png

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png, image-2020-07-20-08-33-01-925.png, 
> image-2020-07-20-08-37-07-773.png, image-2020-07-20-08-38-48-458.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread Debra Petta (Jira)


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

Debra Petta updated NETBEANS-4468:
--
Attachment: image-2020-07-20-08-37-07-773.png

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png, image-2020-07-20-08-33-01-925.png, 
> image-2020-07-20-08-37-07-773.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread Debra Petta (Jira)


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

Debra Petta updated NETBEANS-4468:
--
Attachment: image-2020-07-20-08-33-01-925.png

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png, image-2020-07-20-08-33-01-925.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread Debra Petta (Jira)


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

Debra Petta updated NETBEANS-4468:
--
Attachment: image-2020-07-20-08-32-33-110.png

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread Debra Petta (Jira)


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

Debra Petta updated NETBEANS-4468:
--
Attachment: image-2020-07-20-08-32-13-869.png

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread Debra Petta (Jira)


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

Debra Petta updated NETBEANS-4468:
--
Attachment: image-2020-07-20-08-31-46-458.png

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png, 
> image-2020-07-20-08-31-46-458.png, image-2020-07-20-08-32-13-869.png, 
> image-2020-07-20-08-32-33-110.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



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

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

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



[jira] [Comment Edited] (NETBEANS-4432) Find usages of __construct not throrough enough

2020-07-20 Thread Jira


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

Ádám Turcsán edited comment on NETBEANS-4432 at 7/20/20, 11:43 AM:
---

Sure thing!
{code:php}
 Find usages of __construct not throrough enough
> ---
>
> Key: NETBEANS-4432
> URL: https://issues.apache.org/jira/browse/NETBEANS-4432
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Code Analysis
>Affects Versions: 12.0
>Reporter: Ádám Turcsán
>Priority: Major
> Attachments: screenshot-1.png
>
>
> If I use the tool "Find usages" on a class constructor, It doesn't find the 
> usages where it is called from the class itself, like {{new self()}}.
> Because self is an instant static bindig (unlike {{static::}} ) It is quite 
> straightforward, which consturct call is this.



--
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-4432) Find usages of __construct not throrough enough

2020-07-20 Thread Jira


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

Ádám Turcsán commented on NETBEANS-4432:


Sure thing!
{code:php}
 Find usages of __construct not throrough enough
> ---
>
> Key: NETBEANS-4432
> URL: https://issues.apache.org/jira/browse/NETBEANS-4432
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Code Analysis
>Affects Versions: 12.0
>Reporter: Ádám Turcsán
>Priority: Major
> Attachments: screenshot-1.png
>
>
> If I use the tool "Find usages" on a class constructor, It doesn't find the 
> usages where it is called from the class itself, like {{new self()}}.
> Because self is an instant static bindig (unlike {{static::}} ) It is quite 
> straightforward, which consturct call is this.



--
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 (5a9d7f2 -> d4a084f)

2020-07-20 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 5a9d7f2  Merge pull request #2261 from sdedic/bugfix/graalsdk
 new 6b9e881  Speeding up the build by expressing module dependencies in 
ant targets more carefully.
 new f9587ea  Fixing build.
 new 4efffcd  Correcting locations.
 new ca059af  Modules in the nb cluster cannot depend on modules in java 
cluster - moving ko4j.debugging to the java cluster.
 new 7d428bd  Moving Gradle back to extide, as its dependency on 
java.platform has been removed in master.
 new bf038b6  Merge branch 'master' into fix-build-dependencies-for-speedup
 new f9a050d  Correcting module names.
 new d4a084f  Merge pull request #2252 from 
jlahoda/fix-build-dependencies-for-speedup

The 4203 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:
 {nb => java}/ko4j.debugging/build.xml  |  2 +-
 {nb => java}/ko4j.debugging/manifest.mf|  0
 .../ko4j.debugging/nbproject/project.properties|  0
 {nb => java}/ko4j.debugging/nbproject/project.xml  |  0
 .../modules/ko4j/debugging/Bundle.properties   |  0
 .../ko4j/debugging/MessageDispatcherImpl.java  |  0
 .../netbeans/modules/ko4j/debugging/Server.java|  0
 .../netbeans/modules/ko4j/debugging/Transport.java |  0
 .../modules/ko4j/debugging/TurnInspectOn.java  |  0
 .../netbeans/nbbuild/InsertModuleAllTargets.java   | 37 ++
 nbbuild/cluster.properties |  3 +-
 11 files changed, 26 insertions(+), 16 deletions(-)
 rename {nb => java}/ko4j.debugging/build.xml (94%)
 rename {nb => java}/ko4j.debugging/manifest.mf (100%)
 rename {nb => java}/ko4j.debugging/nbproject/project.properties (100%)
 rename {nb => java}/ko4j.debugging/nbproject/project.xml (100%)
 rename {nb => 
java}/ko4j.debugging/src/org/netbeans/modules/ko4j/debugging/Bundle.properties 
(100%)
 rename {nb => 
java}/ko4j.debugging/src/org/netbeans/modules/ko4j/debugging/MessageDispatcherImpl.java
 (100%)
 rename {nb => 
java}/ko4j.debugging/src/org/netbeans/modules/ko4j/debugging/Server.java (100%)
 rename {nb => 
java}/ko4j.debugging/src/org/netbeans/modules/ko4j/debugging/Transport.java 
(100%)
 rename {nb => 
java}/ko4j.debugging/src/org/netbeans/modules/ko4j/debugging/TurnInspectOn.java 
(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] branch master updated (edda484 -> 5a9d7f2)

2020-07-20 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 edda484  Merge pull request #2253 from 
junichi11/netbeans-4576-code-template-completion-for-html
 new 6c752c9  Exception handling and ScriptContext compatibility 
improvements.
 new 4c2fae3  Fixed tests not to fail on GraalVM JDK 20.1
 new cc43414  Updated NbModuleSuite to load hamcrest.
 new e4b1251  Published hamcrest packages.
 new 5a9d7f2  Merge pull request #2261 from sdedic/bugfix/graalsdk

The 4195 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:
 harness/nbjunit/apichanges.xml |  15 +++
 harness/nbjunit/manifest.mf|   2 +-
 .../src/org/netbeans/junit/NbModuleSuite.java  |   3 +
 .../netbeans/libs/graalsdk/impl/GraalContext.java  |  49 ++-
 .../netbeans/libs/graalsdk/impl/GraalEngine.java   |  80 +++
 .../libs/graalsdk/impl/GraalEngineFactory.java |  10 +-
 .../netbeans/libs/graalsdk/impl/LangContext.java   | 150 +
 .../org/netbeans/libs/graalsdk/package-info.java   |  14 ++
 .../netbeans/libs/graalsdk/GraalEnginesTest.java   |  98 +-
 .../libs/graalsdk/JavaScriptEnginesTest.java   | 111 ++-
 .../netbeans/libs/graalsdk/ScriptingTutorial.java  |  68 ++
 .../api/scripting/JavaScriptEnginesTest.java   |  16 ++-
 platform/libs.junit4/manifest.mf   |   2 +-
 platform/libs.junit4/nbproject/project.xml |   2 +
 14 files changed, 572 insertions(+), 48 deletions(-)
 create mode 100644 
ide/libs.graalsdk/src/org/netbeans/libs/graalsdk/impl/LangContext.java


-
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-4608) NetBeans hangs on opening newly added files

2020-07-20 Thread Marat (Jira)


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

Marat updated NETBEANS-4608:

Environment: 
  Product Version = Apache NetBeans IDE 12.0

  Operating System= Linux version 5.4.0-40-generic running on amd64

  Java; VM; Vendor= 11.0.7; OpenJDK 64-Bit Server VM 
11.0.7+10-post-Ubuntu-3ubuntu1; Ubuntu

  Runtime = OpenJDK Runtime Environment 
11.0.7+10-post-Ubuntu-3ubuntu1

  Java Home   = /usr/lib/jvm/java-11-openjdk-amd64

  was:
  Product Version = Apache NetBeans IDE 12.0
  Operating System= Linux version 5.4.0-40-generic running on amd64
  Java; VM; Vendor= 11.0.7; OpenJDK 64-Bit Server VM 
11.0.7+10-post-Ubuntu-3ubuntu1; Ubuntu
  Runtime = OpenJDK Runtime Environment 
11.0.7+10-post-Ubuntu-3ubuntu1
  Java Home   = /usr/lib/jvm/java-11-openjdk-amd64


> NetBeans hangs on opening newly added files
> ---
>
> Key: NETBEANS-4608
> URL: https://issues.apache.org/jira/browse/NETBEANS-4608
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other
>Affects Versions: 12.0
> Environment:   Product Version = Apache NetBeans IDE 12.0
>   Operating System= Linux version 5.4.0-40-generic running on amd64
>   Java; VM; Vendor= 11.0.7; OpenJDK 64-Bit Server VM 
> 11.0.7+10-post-Ubuntu-3ubuntu1; Ubuntu
>   Runtime = OpenJDK Runtime Environment 
> 11.0.7+10-post-Ubuntu-3ubuntu1
>   Java Home   = /usr/lib/jvm/java-11-openjdk-amd64
>Reporter: Marat
>Priority: Major
>
> Steps to reproduce:
>  # Create C++ project
>  # Add to git
>  # Create new file ("error_handlers.c" in this case)
>  # Open the new file
> NetBeans hangs with 100% CPU usage
>  Log:
> {code:none}
> INFO [org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater]: Complete 
> indexing of 10 source roots took: 5,273 ms (New or modified files: 411, 
> Deleted files: 123) [Adding listeners took: 26 ms]
> INFO [DeepReparsingUtils]: changedFileProject for INITIAL 
> [REMOVED]/apply_old_config.h
> INFO [DeepReparsingUtils]: changedFileProject for INITIAL 
> [REMOVED]/sdk_resources.h
> WARNING [org.openide.filesystems.Ordering]: Not all children in / marked with 
> the position attribute: 
> [org-netbeans-modules-lsp-client-bindings-CompletionProviderImpl.instance], 
> but some are: 
> [org-netbeans-modules-cnd-completion-cplusplus-CsmCompletionProvider.instance,
>  
> org-netbeans-modules-cnd-completion-includes-CsmIncludeCompletionProvider.instance,
>  
> org-netbeans-modules-cnd-completion-preprocessor-CsmPreprocessorDirectiveCompletionProvider.instance,
>  
> org-netbeans-lib-editor-codetemplates-CodeTemplateCompletionProvider.instance,
>  
> org-netbeans-modules-cnd-completion-keywords.CsmKeywordsCompletionProvider.instance,
>  org-netbeans-modules-spellchecker-completion-WordCompletion.instance]
> WARNING [org.netbeans.modules.versioning.util.Utils]: associateEncoding() no 
> file object available for 
> /tmp/vcs-1595230011031/vcs-1595230024792/error_handlers.c
> WARNING [org.netbeans.modules.versioning.util.Utils]: associateEncoding() no 
> file object available for 
> /tmp/vcs-1595230011031/vcs-1595230025644/error_handlers.c
> {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-4608) NetBeans hangs on opening newly added files

2020-07-20 Thread Marat (Jira)


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

Marat updated NETBEANS-4608:

Environment: 
  Product Version = Apache NetBeans IDE 12.0
  Operating System= Linux version 5.4.0-40-generic running on amd64
  Java; VM; Vendor= 11.0.7; OpenJDK 64-Bit Server VM 
11.0.7+10-post-Ubuntu-3ubuntu1; Ubuntu
  Runtime = OpenJDK Runtime Environment 
11.0.7+10-post-Ubuntu-3ubuntu1
  Java Home   = /usr/lib/jvm/java-11-openjdk-amd64

  was:
Linux Mint 20 64-bit
Apache NetBeans 12.0
openjdk 11.0.7 2020-04-14
OpenJDK Runtime Environment (build 11.0.7+10-post-Ubuntu-3ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.7+10-post-Ubuntu-3ubuntu1, mixed mode, 
sharing)



> NetBeans hangs on opening newly added files
> ---
>
> Key: NETBEANS-4608
> URL: https://issues.apache.org/jira/browse/NETBEANS-4608
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other
>Affects Versions: 12.0
> Environment:   Product Version = Apache NetBeans IDE 12.0
>   Operating System= Linux version 5.4.0-40-generic running on amd64
>   Java; VM; Vendor= 11.0.7; OpenJDK 64-Bit Server VM 
> 11.0.7+10-post-Ubuntu-3ubuntu1; Ubuntu
>   Runtime = OpenJDK Runtime Environment 
> 11.0.7+10-post-Ubuntu-3ubuntu1
>   Java Home   = /usr/lib/jvm/java-11-openjdk-amd64
>Reporter: Marat
>Priority: Major
>
> Steps to reproduce:
>  # Create C++ project
>  # Add to git
>  # Create new file ("error_handlers.c" in this case)
>  # Open the new file
> NetBeans hangs with 100% CPU usage
>  Log:
> {code:none}
> INFO [org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater]: Complete 
> indexing of 10 source roots took: 5,273 ms (New or modified files: 411, 
> Deleted files: 123) [Adding listeners took: 26 ms]
> INFO [DeepReparsingUtils]: changedFileProject for INITIAL 
> [REMOVED]/apply_old_config.h
> INFO [DeepReparsingUtils]: changedFileProject for INITIAL 
> [REMOVED]/sdk_resources.h
> WARNING [org.openide.filesystems.Ordering]: Not all children in / marked with 
> the position attribute: 
> [org-netbeans-modules-lsp-client-bindings-CompletionProviderImpl.instance], 
> but some are: 
> [org-netbeans-modules-cnd-completion-cplusplus-CsmCompletionProvider.instance,
>  
> org-netbeans-modules-cnd-completion-includes-CsmIncludeCompletionProvider.instance,
>  
> org-netbeans-modules-cnd-completion-preprocessor-CsmPreprocessorDirectiveCompletionProvider.instance,
>  
> org-netbeans-lib-editor-codetemplates-CodeTemplateCompletionProvider.instance,
>  
> org-netbeans-modules-cnd-completion-keywords.CsmKeywordsCompletionProvider.instance,
>  org-netbeans-modules-spellchecker-completion-WordCompletion.instance]
> WARNING [org.netbeans.modules.versioning.util.Utils]: associateEncoding() no 
> file object available for 
> /tmp/vcs-1595230011031/vcs-1595230024792/error_handlers.c
> WARNING [org.netbeans.modules.versioning.util.Utils]: associateEncoding() no 
> file object available for 
> /tmp/vcs-1595230011031/vcs-1595230025644/error_handlers.c
> {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] [Created] (NETBEANS-4608) NetBeans hangs on opening newly added files

2020-07-20 Thread Marat (Jira)
Marat created NETBEANS-4608:
---

 Summary: NetBeans hangs on opening newly added files
 Key: NETBEANS-4608
 URL: https://issues.apache.org/jira/browse/NETBEANS-4608
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Other
Affects Versions: 12.0
 Environment: Linux Mint 20 64-bit
Apache NetBeans 12.0
openjdk 11.0.7 2020-04-14
OpenJDK Runtime Environment (build 11.0.7+10-post-Ubuntu-3ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.7+10-post-Ubuntu-3ubuntu1, mixed mode, 
sharing)

Reporter: Marat


Steps to reproduce:
 # Create C++ project
 # Add to git
 # Create new file ("error_handlers.c" in this case)
 # Open the new file

NetBeans hangs with 100% CPU usage
 Log:
{code:none}
INFO [org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater]: Complete 
indexing of 10 source roots took: 5,273 ms (New or modified files: 411, Deleted 
files: 123) [Adding listeners took: 26 ms]
INFO [DeepReparsingUtils]: changedFileProject for INITIAL 
[REMOVED]/apply_old_config.h
INFO [DeepReparsingUtils]: changedFileProject for INITIAL 
[REMOVED]/sdk_resources.h
WARNING [org.openide.filesystems.Ordering]: Not all children in / marked with 
the position attribute: 
[org-netbeans-modules-lsp-client-bindings-CompletionProviderImpl.instance], but 
some are: 
[org-netbeans-modules-cnd-completion-cplusplus-CsmCompletionProvider.instance, 
org-netbeans-modules-cnd-completion-includes-CsmIncludeCompletionProvider.instance,
 
org-netbeans-modules-cnd-completion-preprocessor-CsmPreprocessorDirectiveCompletionProvider.instance,
 org-netbeans-lib-editor-codetemplates-CodeTemplateCompletionProvider.instance, 
org-netbeans-modules-cnd-completion-keywords.CsmKeywordsCompletionProvider.instance,
 org-netbeans-modules-spellchecker-completion-WordCompletion.instance]
WARNING [org.netbeans.modules.versioning.util.Utils]: associateEncoding() no 
file object available for 
/tmp/vcs-1595230011031/vcs-1595230024792/error_handlers.c
WARNING [org.netbeans.modules.versioning.util.Utils]: associateEncoding() no 
file object available for 
/tmp/vcs-1595230011031/vcs-1595230025644/error_handlers.c
{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-4576] Support for code template completion for HTML

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

neilcsmith 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 259f1a5  [NETBEANS-4576] Support for code template completion for HTML
 new edda484  Merge pull request #2253 from 
junichi11/netbeans-4576-code-template-completion-for-html
259f1a5 is described below

commit 259f1a54c4875b4df1eb94a45c5b5b8d82633923
Author: Junichi Yamamoto 
AuthorDate: Tue Jul 14 08:54:51 2020 +0900

[NETBEANS-4576] Support for code template completion for HTML
---
 .../html/editor/HtmlCodeTemplateFilter.java|  54 
 .../html/editor/resources/codetemplates.xml| 284 +++--
 .../modules/html/editor/resources/layer.xml|   1 +
 3 files changed, 318 insertions(+), 21 deletions(-)

diff --git 
a/ide/html.editor/src/org/netbeans/modules/html/editor/HtmlCodeTemplateFilter.java
 
b/ide/html.editor/src/org/netbeans/modules/html/editor/HtmlCodeTemplateFilter.java
new file mode 100644
index 000..a2bd166
--- /dev/null
+++ 
b/ide/html.editor/src/org/netbeans/modules/html/editor/HtmlCodeTemplateFilter.java
@@ -0,0 +1,54 @@
+/*
+ * 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.html.editor;
+
+import java.util.Collections;
+import java.util.List;
+import javax.swing.text.JTextComponent;
+import org.netbeans.api.editor.mimelookup.MimeRegistration;
+import org.netbeans.api.editor.mimelookup.MimeRegistrations;
+import org.netbeans.lib.editor.codetemplates.api.CodeTemplate;
+import org.netbeans.lib.editor.codetemplates.spi.CodeTemplateFilter;
+
+public class HtmlCodeTemplateFilter implements CodeTemplateFilter {
+
+private static final String HTML_CODE = "html-code"; // NOI18N
+
+@Override
+public boolean accept(CodeTemplate template) {
+return true;
+}
+
+@MimeRegistrations({
+@MimeRegistration(mimeType = "text/html", service = 
CodeTemplateFilter.ContextBasedFactory.class), // NOI18N
+@MimeRegistration(mimeType = "text/xhtml", service = 
CodeTemplateFilter.ContextBasedFactory.class) // NOI18N
+})
+public static final class Factory implements 
CodeTemplateFilter.ContextBasedFactory {
+
+@Override
+public CodeTemplateFilter createFilter(JTextComponent component, int 
offset) {
+return new HtmlCodeTemplateFilter();
+}
+
+@Override
+public List getSupportedContexts() {
+return Collections.singletonList(HTML_CODE);
+}
+}
+}
diff --git 
a/ide/html.editor/src/org/netbeans/modules/html/editor/resources/codetemplates.xml
 
b/ide/html.editor/src/org/netbeans/modules/html/editor/resources/codetemplates.xml
index 595c0ec..830d389 100644
--- 
a/ide/html.editor/src/org/netbeans/modules/html/editor/resources/codetemplates.xml
+++ 
b/ide/html.editor/src/org/netbeans/modules/html/editor/resources/codetemplates.xml
@@ -21,64 +21,110 @@
 -->
 http://www.netbeans.org/dtds/EditorCodeTemplates-1_0.dtd";>
 
-
+
+
+
+
+
+
+
+
+
+
 
 
-
+
 
 
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

[netbeans] branch master updated: Separating unused element detection out of the semantic highlighter; adding a separate hint for unused elements.

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

neilcsmith 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 c8ead04  Separating unused element detection out of the semantic 
highlighter; adding a separate hint for unused elements.
 new 5c5c23e  Merge pull request #2207 from jlahoda/unused-hint
c8ead04 is described below

commit c8ead044e5e6ab836e2996d3b42f2bc943868e7b
Author: Jan Lahoda 
AuthorDate: Sun Jun 21 09:01:41 2020 +0200

Separating unused element detection out of the semantic highlighter; adding 
a separate hint for unused elements.
---
 .../base/semantic/SemanticHighlighterBase.java | 284 +---
 .../java/editor/base/semantic/UnusedDetector.java  | 486 +
 .../java/editor/base/semantic/Utilities.java   |  17 +
 .../base/semantic/DetectorTest/test89356.pass  |   2 +-
 .../DetectorTest/testConstructorUsedBySuper1.pass  |   4 +-
 .../DetectorTest/testConstructorUsedBySuper2.pass  |   4 +-
 .../DetectorTest/testLambdaAndFunctionType.pass|   4 +-
 .../semantic/data/ConstructorUsedBySuper1.java |   2 +-
 .../semantic/data/ConstructorUsedBySuper2.java |   2 +-
 .../java/editor/base/semantic/DetectorTest.java|   6 +-
 .../java/editor/base/semantic/TestBase.java|  48 +-
 .../editor/base/semantic/UnusedDetectorTest.java   | 377 
 .../netbeans/modules/java/hints/bugs/Unused.java   |  85 
 .../modules/java/hints/bugs/UnusedTest.java|  53 +++
 14 files changed, 1078 insertions(+), 296 deletions(-)

diff --git 
a/java/java.editor.base/src/org/netbeans/modules/java/editor/base/semantic/SemanticHighlighterBase.java
 
b/java/java.editor.base/src/org/netbeans/modules/java/editor/base/semantic/SemanticHighlighterBase.java
index 00d3687..00e115d 100644
--- 
a/java/java.editor.base/src/org/netbeans/modules/java/editor/base/semantic/SemanticHighlighterBase.java
+++ 
b/java/java.editor.base/src/org/netbeans/modules/java/editor/base/semantic/SemanticHighlighterBase.java
@@ -18,15 +18,10 @@
  */
 package org.netbeans.modules.java.editor.base.semantic;
 
-import com.sun.source.tree.ArrayTypeTree;
-import com.sun.source.tree.AssignmentTree;
 import com.sun.source.tree.ClassTree;
 import com.sun.source.tree.CompilationUnitTree;
-import com.sun.source.tree.CompoundAssignmentTree;
-import com.sun.source.tree.EnhancedForLoopTree;
 import com.sun.source.tree.ExportsTree;
 import com.sun.source.tree.IdentifierTree;
-import com.sun.source.tree.LambdaExpressionTree;
 import com.sun.source.tree.LiteralTree;
 import com.sun.source.tree.MemberReferenceTree;
 import com.sun.source.tree.MemberSelectTree;
@@ -44,13 +39,11 @@ import com.sun.source.tree.UsesTree;
 import com.sun.source.tree.VariableTree;
 import com.sun.source.util.SourcePositions;
 import com.sun.source.util.TreePath;
-import java.lang.reflect.Field;
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collection;
 import java.util.EnumSet;
 import java.util.HashMap;
-import java.util.HashSet;
 import java.util.IdentityHashMap;
 import java.util.List;
 import java.util.Map;
@@ -63,13 +56,9 @@ import javax.lang.model.element.Element;
 import javax.lang.model.element.ElementKind;
 import javax.lang.model.element.ExecutableElement;
 import javax.lang.model.element.Modifier;
-import javax.lang.model.element.TypeElement;
-import javax.lang.model.type.TypeKind;
-import javax.lang.model.type.TypeMirror;
 import javax.swing.text.Document;
 import org.netbeans.api.java.lexer.JavaTokenId;
 import org.netbeans.api.java.source.CompilationInfo;
-import org.netbeans.api.java.source.ElementHandle;
 import org.netbeans.api.java.source.JavaParserResultTask;
 import org.netbeans.api.java.source.JavaSource.Phase;
 import org.netbeans.api.java.source.TreeUtilities;
@@ -77,15 +66,14 @@ import 
org.netbeans.api.java.source.support.CancellableTreePathScanner;
 import org.netbeans.api.lexer.PartType;
 import org.netbeans.api.lexer.Token;
 import org.netbeans.api.lexer.TokenHierarchy;
-//import org.netbeans.modules.editor.NbEditorUtilities;
 import org.netbeans.modules.java.editor.base.imports.UnusedImports;
 import 
org.netbeans.modules.java.editor.base.semantic.ColoringAttributes.Coloring;
+import 
org.netbeans.modules.java.editor.base.semantic.UnusedDetector.UnusedDescription;
 import org.netbeans.modules.parsing.spi.Parser.Result;
 import org.netbeans.modules.parsing.spi.Scheduler;
 import org.netbeans.modules.parsing.spi.SchedulerEvent;
 import org.netbeans.modules.parsing.spi.TaskIndexingMode;
 import org.openide.filesystems.FileUtil;
-import org.openide.util.Exceptions;
 import org.openide.util.Pair;
 
 
@@ -152,95 +140,6 @@ public abstract class SemanticHighlighterBase extends 
JavaParserResultTask {
 
 protected abstract boolean process(CompilationInfo info, final Document 
doc);
 
-/**
- * Signatures

[netbeans] branch master updated: [NETBEANS-1646] Formatting options for CSS

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

neilcsmith 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 c9797fa  [NETBEANS-1646] Formatting options for CSS
 new 9ae4499  Merge pull request #2257 from 
junichi11/netbeans-1646-css-formatting-option
c9797fa is described below

commit c9797fa3449c7aa61c9243cdf119396179b3aacb
Author: Junichi Yamamoto 
AuthorDate: Thu Jul 16 12:41:50 2020 +0900

[NETBEANS-1646] Formatting options for CSS
---
 .../src/org/netbeans/modules/css/resources/layer.xml| 13 +
 1 file changed, 13 insertions(+)

diff --git a/ide/css.editor/src/org/netbeans/modules/css/resources/layer.xml 
b/ide/css.editor/src/org/netbeans/modules/css/resources/layer.xml
index 1e7f5d9..95b40fd 100644
--- a/ide/css.editor/src/org/netbeans/modules/css/resources/layer.xml
+++ b/ide/css.editor/src/org/netbeans/modules/css/resources/layer.xml
@@ -197,6 +197,19 @@
 
 
 
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 


-
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-2333][NETBEANS-3681] Update validator.jar for html.validation

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

neilcsmith 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 b2ed029  [NETBEANS-2333][NETBEANS-3681] Update validator.jar for 
html.validation
 new 6debf7f  Merge pull request #2217 from 
junichi11/netbeans-2333-3681-html-validation
b2ed029 is described below

commit b2ed029ca7b5dba47a0a3979a76fb100167dc15a
Author: Junichi Yamamoto 
AuthorDate: Sat Jun 27 14:06:43 2020 +0900

[NETBEANS-2333][NETBEANS-3681] Update validator.jar for html.validation

- Update validator (https://github.com/validator/validator)
- `HTML_AUTO`, `HTML401_STRICT`, and `HTML401_TRANSITIONAL` are available 
no longer
- Fix the license file
---
 ide/html.validation/external/binaries-list |2 +-
 txt => validator-20200626-patched-license.txt} |9 +-
 .../external/validator-20200626.patch  | 1272 
 ide/html.validation/manifest.mf|2 +-
 ide/html.validation/nbproject/project.properties   |6 +-
 ide/html.validation/nbproject/project.xml  |2 +-
 .../modules/html/validation/NbMessageEmitter.java  |2 +-
 .../html/validation/NbValidationTransaction.java   |   17 +-
 .../modules/html/validation/ValidatorImplTest.java |   40 +
 nbbuild/licenses/MIT-validator |   27 +-
 10 files changed, 1338 insertions(+), 41 deletions(-)

diff --git a/ide/html.validation/external/binaries-list 
b/ide/html.validation/external/binaries-list
index 8114bd4..4ca9418 100644
--- a/ide/html.validation/external/binaries-list
+++ b/ide/html.validation/external/binaries-list
@@ -17,6 +17,6 @@
 0DCC973606CBD9737541AA5F3E76DED6E3F4D0D0 com.hp.hpl.jena:iri:0.5
 483A61B688B13C62BB201A683D98A6688B5373B6 jing-0unknown.jar
 F0A0D2E29ED910808C33135A3A5A51BBA6358F7B log4j:log4j:1.2.15
-15ACB06E2E3A70FC188782BA51369CA81ACFE860 validator-20150629-patched.jar
+3D5058C101AEC048A48C257F3236055BA2A0C154 validator-20200626-patched.jar
 85A67D883A879E7BF767758A8413B690DEF29735 saxon9B-9.1.0.2.jar
 FACC6D84B0B0A650B1D44FED941E9ADD9F326862 isorelax-2004.jar
diff --git 
a/ide/html.validation/external/validator-20150629-patched-license.txt 
b/ide/html.validation/external/validator-20200626-patched-license.txt
similarity index 84%
rename from ide/html.validation/external/validator-20150629-patched-license.txt
rename to ide/html.validation/external/validator-20200626-patched-license.txt
index 5b7c782..0e7e2cb 100644
--- a/ide/html.validation/external/validator-20150629-patched-license.txt
+++ b/ide/html.validation/external/validator-20200626-patched-license.txt
@@ -1,11 +1,10 @@
 Name: Validator.nu
 Description: Html/Generic RelaxNG schema validator service
-Version: 20150629-patched
+Version: 20200626-patched
 License: MIT-validator
 Origin: validator.nu
 
-Copyright (c) 2005, 2006 Henri Sivonen
-Copyright (c) 2007-2010 Mozilla Foundation
+Copyright (c) 2007-2016 Mozilla Foundation
 
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the "Software"),
@@ -19,8 +18,8 @@ all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 DEALINGS IN THE SOFTWARE.
diff --git a/ide/html.validation/external/validator-20200626.patch 
b/ide/html.validation/external/validator-20200626.patch
new file mode 100644
index 000..2d496e7
--- /dev/null
+++ b/ide/html.validation/external/validator-20200626.patch
@@ -0,0 +1,1272 @@
+#   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 

[netbeans] branch master updated: [NETBEANS-4593] Recognize a URL which contains "@"

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

neilcsmith 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 983d271  [NETBEANS-4593] Recognize a URL which contains "@"
 new c48107f  Merge pull request #2258 from 
junichi11/netbeans-4593-editor-url
983d271 is described below

commit 983d2718992a3ccf8cb7e80f2271517a5b125a49
Author: Junichi Yamamoto 
AuthorDate: Thu Jul 16 21:22:47 2020 +0900

[NETBEANS-4593] Recognize a URL which contains "@"
---
 ide/editor/src/org/netbeans/modules/editor/url/Parser.java| 4 ++--
 .../test/unit/src/org/netbeans/modules/editor/url/ParserTest.java | 4 +++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/ide/editor/src/org/netbeans/modules/editor/url/Parser.java 
b/ide/editor/src/org/netbeans/modules/editor/url/Parser.java
index 4ce8e84..d447f06 100644
--- a/ide/editor/src/org/netbeans/modules/editor/url/Parser.java
+++ b/ide/editor/src/org/netbeans/modules/editor/url/Parser.java
@@ -61,7 +61,7 @@ public final class Parser {
 case '%': case '_': case '~': case '=': //NOI18N
 case '\\':case '&': case '$': case '-': //NOI18N
 case '#': case ',': case ':': case ';': //NOI18N
-case '!': case '(': case ')': //NOI18N
+case '!': case '(': case ')': case '@': //NOI18N
 continue OUTER;
 }
 
@@ -155,7 +155,7 @@ public final class Parser {
 return result;
 }
 
-private static final Pattern URL_PATTERN = 
Pattern.compile("(ht|f)(tp(s?)|ile)://[0-9a-zA-Z/.?%+_~=&$\\-#,:!/(/)]*"); 
//NOI18N
+private static final Pattern URL_PATTERN = 
Pattern.compile("(ht|f)(tp(s?)|ile)://[0-9a-zA-Z/.?%+_~=&@$\\-#,:!/(/)]*"); 
//NOI18N
 
 public static Iterable recognizeURLsREBased(CharSequence text) {
 Matcher m = URL_PATTERN.matcher(text);
diff --git 
a/ide/editor/test/unit/src/org/netbeans/modules/editor/url/ParserTest.java 
b/ide/editor/test/unit/src/org/netbeans/modules/editor/url/ParserTest.java
index 664fd1e..89a8c36 100644
--- a/ide/editor/test/unit/src/org/netbeans/modules/editor/url/ParserTest.java
+++ b/ide/editor/test/unit/src/org/netbeans/modules/editor/url/ParserTest.java
@@ -76,6 +76,8 @@ public class ParserTest {
 performTest("
http://hudson.gotdns.com/wiki/display/HUDSON/Structured+Form+Submission(v=vs.85).aspx\n",
 4,89);
 performTest("http://hudson.gotdns.com/wiki/display/#!/api/dd13\n";, 
4,53);
 performTest("
file:///C:/CodeSourceryG++Lite/share/doc/arm-arm-none-eabi/html/getting-started/sec-cs3-startup.html",
 4, 104);
+// NETBEANS-4593 accept @
+performTest("
https://cdn.jsdelivr.net/npm/jquery@3.2/dist/jquery.min.js\n";, 4, 62);
 }
 
 @Test
@@ -143,4 +145,4 @@ public class ParserTest {
 return r;
 }
 
-}
\ No newline at end of file
+}


-
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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate

2020-07-20 Thread D Burbridge (Jira)


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

D Burbridge commented on NETBEANS-4468:
---

Sorry Debra, doesn't work for me - I still get:

*Some plugins require plugin Freemarker Integration to be installed*

*^The plugin Freemarker Integration is requested in implementation version 
238.^*

^{color:#172b4d}*The following plugin is affected:*{color}^   

{color:#172b4d}*^Hibernate^* {color}

{color:#172b4d} - and that's on a complete fresh installation of NB12!{color}

 

> No dependent plugins are available at Apache NetBeans plugin portal for 
> Hibernate
> -
>
> Key: NETBEANS-4468
> URL: https://issues.apache.org/jira/browse/NETBEANS-4468
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - Hibernate
> Environment: Debain 10.4 Buster AMD 64-bits  
> openjdk 11.0.7 2020-04-14 LTS
> Apache NetBeans 12.0 LTS
>Reporter: Swapnil Sidram Nagtilak
>Priority: Major
>  Labels: Debian
> Attachments: error.png, hibernate plugin.png
>
>
> In Apache NetBeans 12.0 LTS 
> When I'm trying to install Hibernate plugin it says :
> *Some plugins require plugin Freemarker Integration to be installed*
> *^The plugin Freemarker Integration is requested in implementation version 
> 238.^*
> ^{color:#172b4d}*The following plugin is affected:*{color}^   
> {color:#172b4d}*^Hibernate^*  {color}
>  
> {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* 
> plugin is not available.  {color}
> {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' 
> plugin portal*{color}
> {color:#172b4d}*[FreeMarker support for 
> NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]*
> but getting same error. 
> !error.png!
>  
> {color:#172b4d}Please make them available on *Apache Plugin Portal*{color}



--
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: Allow File chooser for non-project New File Wizard

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

neilcsmith 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 ca50591  Allow File chooser for non-project New File Wizard
 new 1b12c2b  Merge pull request #2219 from SiddheshRane/master
ca50591 is described below

commit ca50591eaa2f3f8095f28a82eeb837c11f57a456
Author: Siddhesh Rane 
AuthorDate: Sun Jun 28 22:53:29 2020 -0400

Allow File chooser for non-project New File Wizard
---
 .../modules/project/ui/SimpleTargetChooserPanelGUI.java| 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/ide/projectui/src/org/netbeans/modules/project/ui/SimpleTargetChooserPanelGUI.java
 
b/ide/projectui/src/org/netbeans/modules/project/ui/SimpleTargetChooserPanelGUI.java
index 459f51d..3ed00e1 100644
--- 
a/ide/projectui/src/org/netbeans/modules/project/ui/SimpleTargetChooserPanelGUI.java
+++ 
b/ide/projectui/src/org/netbeans/modules/project/ui/SimpleTargetChooserPanelGUI.java
@@ -493,10 +493,10 @@ public class SimpleTargetChooserPanelGUI extends 
javax.swing.JPanel implements A
 //non project space
 String previousTargetFolder = getTargetFolder(); //can be 
relative or absolute..
 SourceGroup group = 
(SourceGroup)locationComboBox.getSelectedItem();
-if (group == null) { // #161478
-return;
+FileObject oldFo = null;
+if (group != null) {
+oldFo = previousTargetFolder != null ? 
group.getRootFolder().getFileObject(previousTargetFolder) : 
group.getRootFolder();
 }
-FileObject oldFo = previousTargetFolder != null ? 
group.getRootFolder().getFileObject(previousTargetFolder) : 
group.getRootFolder();
 if (oldFo == null && previousTargetFolder != null) {
 oldFo = FileUtil.toFileObject(FileUtil.normalizeFile(new 
File(previousTargetFolder)));
 }
@@ -506,13 +506,13 @@ public class SimpleTargetChooserPanelGUI extends 
javax.swing.JPanel implements A
 new FileChooserBuilder(SimpleTargetChooserPanel.class)
 .setDirectoriesOnly(true)
 .setDefaultWorkingDirectory(currFile)
-.forceUseOfDefaultWorkingDirectory(true)
+.forceUseOfDefaultWorkingDirectory(group != null) //if 
no source group, allow other directories
 .showSaveDialog();
 
 FileObject fo = targetFolder != null ? 
FileUtil.toFileObject(FileUtil.normalizeFile(targetFolder)) : null;
 
 if ( fo != null && fo.isFolder() ) {
-String path =  
FileUtil.getRelativePath(group.getRootFolder(), fo);
+String path =  group == null ? null : 
FileUtil.getRelativePath(group.getRootFolder(), fo);
 if (path == null) {
  path = fo.getPath();
 }


-
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: CachingArchiveProvider should return a proper Archive for jar URLs that have paths inside the archive.

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

neilcsmith 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 2049b58  CachingArchiveProvider should return a proper Archive for jar 
URLs that have paths inside the archive.
 new ed3df1d  Merge pull request #2264 from 
jlahoda/caching-archive-jar-with-patch
2049b58 is described below

commit 2049b58d2195d98dd336de0a298b9b02d0c25c12
Author: Jan Lahoda 
AuthorDate: Sun Jul 19 11:59:19 2020 +0200

CachingArchiveProvider should return a proper Archive for jar URLs that 
have paths inside the archive.
---
 .../source/parsing/CachingArchiveProvider.java |  5 ++-
 .../source/parsing/CachingArchiveProviderTest.java | 50 ++
 2 files changed, 53 insertions(+), 2 deletions(-)

diff --git 
a/java/java.source.base/src/org/netbeans/modules/java/source/parsing/CachingArchiveProvider.java
 
b/java/java.source.base/src/org/netbeans/modules/java/source/parsing/CachingArchiveProvider.java
index 56b9c1c..8b91c8f 100644
--- 
a/java/java.source.base/src/org/netbeans/modules/java/source/parsing/CachingArchiveProvider.java
+++ 
b/java/java.source.base/src/org/netbeans/modules/java/source/parsing/CachingArchiveProvider.java
@@ -107,7 +107,7 @@ public final class CachingArchiveProvider {
 public Archive getArchive(@NonNull final URL root, final boolean 
cacheFile)  {
 final URI rootURI = toURI(root);
 Archive archive;
-
+
 synchronized (this) {
 archive = archives.get(rootURI);
 }
@@ -254,7 +254,8 @@ public final class CachingArchiveProvider {
 return EMPTY;
 }
 }
-if ("jar".equals(protocol)) {   //NOI18N
+if ("jar".equals(protocol) &&  //NOI18N
+root.first().getPath().endsWith("!/")) { //CachingArchive does not 
handle paths inside the archive - skip and use FileObjectArchive  //NOI18N
 URL inner = FileUtil.getArchiveFile(root.first());
 protocol = inner.getProtocol();
 if ("file".equals(protocol)) {  //NOI18N
diff --git 
a/java/java.source.base/test/unit/src/org/netbeans/modules/java/source/parsing/CachingArchiveProviderTest.java
 
b/java/java.source.base/test/unit/src/org/netbeans/modules/java/source/parsing/CachingArchiveProviderTest.java
new file mode 100644
index 000..9e8b056
--- /dev/null
+++ 
b/java/java.source.base/test/unit/src/org/netbeans/modules/java/source/parsing/CachingArchiveProviderTest.java
@@ -0,0 +1,50 @@
+/*
+ * 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.java.source.parsing;
+
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.net.URL;
+import java.util.stream.StreamSupport;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipOutputStream;
+import org.netbeans.junit.NbTestCase;
+import org.openide.util.Utilities;
+
+public class CachingArchiveProviderTest extends NbTestCase {
+
+public CachingArchiveProviderTest(String name) {
+super(name);
+}
+
+//verify jar URLs with paths inside the archive work:
+public void testZipWithPath() throws IOException {
+clearWorkDir();
+File wd = getWorkDir();
+File zip = new File(wd, "test.zip");
+try (ZipOutputStream out = new ZipOutputStream(new 
FileOutputStream(zip))) {
+out.putNextEntry(new ZipEntry("module/test/test.txt"));
+}
+Archive archive = CachingArchiveProvider.getDefault().getArchive(new 
URL("jar:" + Utilities.toURI(zip).toURL().toString() + "!/module"), false);
+assertNotNull(archive.getFile("test/test.txt"));
+assertEquals(1, StreamSupport.stream(archive.getFiles("test", null, 
null, null, false).spliterator(), false).count());
+}
+
+}


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