[jira] [Closed] (NETBEANS-4812) System.out.print() statements placed before Scanner calls, such as scanner::next(), do not output until after input is entered only in Netbeans console

2020-09-29 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane closed NETBEANS-4812.
---
  Assignee: Siddhesh Rane
Resolution: Invalid

Not a Netbeans issue. Can reproduce on Terminal in Maven exec

> System.out.print() statements placed before Scanner calls, such as 
> scanner::next(), do not output until after input is entered only in Netbeans 
> console
> ---
>
> Key: NETBEANS-4812
> URL: https://issues.apache.org/jira/browse/NETBEANS-4812
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java, java - Editor, platform - Output 
> Window, projects - Maven
>Affects Versions: 12.0
> Environment: java --version
> openjdk 14.0.2 2020-07-14
> OpenJDK Runtime Environment (build 14.0.2+12-46)
> OpenJDK 64-Bit Server VM (build 14.0.2+12-46, mixed mode, sharing)
> NetBeans About Info:
> Product Version: Apache NetBeans IDE 12.0
> Java: 14.0.2; OpenJDK 64-Bit Server VM 14.0.2+12-46
> Runtime: OpenJDK Runtime Environment 14.0.2+12-46
> System: Mac OS X version 10.15.6 running on x86_64; UTF-8; en_US (nb)
> Hardware Information:
> Model Name:   MacBook Pro
>   Model Identifier:   MacBookPro15,2
>   Processor Name: Quad-Core Intel Core i7
>   Processor Speed:2.8 GHz
>   Number of Processors:   1
>   Total Number of Cores:  4
>   L2 Cache (per Core):256 KB
>   L3 Cache:   8 MB
>   Hyper-Threading Technology: Enabled
>   Memory: 16 GB
>   Boot ROM Version:   1037.147.4.0.0 (iBridge: 17.16.16610.0.0,0)
>   Serial Number (system): C02ZT04JP4G2
>   Hardware UUID:  9678EC89-6B02-50FB-84B6-CA859359FB50
>   Activation Lock Status: Enabled
> System Software Overview:
>   System Version: macOS 10.15.6 (19G2021)
>   Kernel Version: Darwin 19.6.0
>   Boot Volume:Macintosh HD
>   Boot Mode:  Normal
>   Computer Name:  --
>   User Name:  --
>   Secure Virtual Memory:  Enabled
>   System Integrity Protection:Enabled
>   Time since boot:24 days 14:53
>Reporter: Keegan Bilodeau
>Assignee: Siddhesh Rane
>Priority: Major
>  Labels: console, java, jdk14, netbeans, netbeans-ui, output
> Attachments: CSCI_2011_Assign_1.zip
>
>   Original Estimate: 336h
>  Remaining Estimate: 336h
>
> I have a program that runs perfectly fine in both the terminal and in 
> Intellij, but then when the Java code is run inside a NetBeans project, it 
> outputs incorrectly.
> (Before I continue the description, I have a video 
> [here|https://twitter.com/Keglomaniac04/status/1306704821743910913?s=20] and 
> the project itself is attached to this report)
> The following is the first code that ran into the problem:
>  
> {code:java}
> System.out.print("\nPlease enter a month and year (e.g. Sep 2020): ");
> selectedMonth = Month.valueOf(keyboard.next().toUpperCase());
> selectedYear = keyboard.nextInt();
> {code}
>  
> In Intellij and the terminal this was the output (which is correct):
> {code:java}
> Welcome to Keegan Bilodeau's Calendar Application!
> Please enter a month and year (e.g. Sep 2020): l
> Error: You did not enter a valid month!
> Please enter a month and year (e.g. Sep 2020): 
> {code}
>  
> This is the output in NetBeans (which is wrong):
> {code:java}
> Welcome to Keegan Bilodeau's Calendar Application!
> l
> Please enter a month and year (e.g. Sep 2020): Error: You did not enter a 
> valid month!
> {code}
>  
> **Something to note is that when the System.out.print() is changed to 
> System.out.println(), the code runs properly, but with a newline, which is 
> not what I wanted nor should be necessary.  One might assume that it was 
> because System.out.println() flushes the stream; however, Using 
> System.out.print() in conjunction with System.out.flush() changed nothing
>  
> For even more information regarding the issue, see the attached files.



--
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-4812) System.out.print() statements placed before Scanner calls, such as scanner::next(), do not output until after input is entered only in Netbeans console

2020-09-29 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane edited comment on NETBEANS-4812 at 9/29/20, 10:44 PM:


EDIT:

This is not a Netbeans issue. This is a Maven issue.  When you run in Netbeans, 
it delegates the work to Maven on command line. In the output window copy the 
first line into a terminal and run. You will face the same issue. The reason 
you don't see it in IntelliJ is because it is running the file from the JAR. 
Closing this issue


was (Author: siddheshrane):
Can confirm this happens, but only for Maven projects. The Maven output 
handling performs line by line reading of the output, so any program line not 
terminated with newline character will not get printed. Its not trivial to stop 
this this behaviour because the line reading is used to seperate Maven specific 
messages.

> System.out.print() statements placed before Scanner calls, such as 
> scanner::next(), do not output until after input is entered only in Netbeans 
> console
> ---
>
> Key: NETBEANS-4812
> URL: https://issues.apache.org/jira/browse/NETBEANS-4812
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java, java - Editor, platform - Output 
> Window, projects - Maven
>Affects Versions: 12.0
> Environment: java --version
> openjdk 14.0.2 2020-07-14
> OpenJDK Runtime Environment (build 14.0.2+12-46)
> OpenJDK 64-Bit Server VM (build 14.0.2+12-46, mixed mode, sharing)
> NetBeans About Info:
> Product Version: Apache NetBeans IDE 12.0
> Java: 14.0.2; OpenJDK 64-Bit Server VM 14.0.2+12-46
> Runtime: OpenJDK Runtime Environment 14.0.2+12-46
> System: Mac OS X version 10.15.6 running on x86_64; UTF-8; en_US (nb)
> Hardware Information:
> Model Name:   MacBook Pro
>   Model Identifier:   MacBookPro15,2
>   Processor Name: Quad-Core Intel Core i7
>   Processor Speed:2.8 GHz
>   Number of Processors:   1
>   Total Number of Cores:  4
>   L2 Cache (per Core):256 KB
>   L3 Cache:   8 MB
>   Hyper-Threading Technology: Enabled
>   Memory: 16 GB
>   Boot ROM Version:   1037.147.4.0.0 (iBridge: 17.16.16610.0.0,0)
>   Serial Number (system): C02ZT04JP4G2
>   Hardware UUID:  9678EC89-6B02-50FB-84B6-CA859359FB50
>   Activation Lock Status: Enabled
> System Software Overview:
>   System Version: macOS 10.15.6 (19G2021)
>   Kernel Version: Darwin 19.6.0
>   Boot Volume:Macintosh HD
>   Boot Mode:  Normal
>   Computer Name:  --
>   User Name:  --
>   Secure Virtual Memory:  Enabled
>   System Integrity Protection:Enabled
>   Time since boot:24 days 14:53
>Reporter: Keegan Bilodeau
>Priority: Major
>  Labels: console, java, jdk14, netbeans, netbeans-ui, output
> Attachments: CSCI_2011_Assign_1.zip
>
>   Original Estimate: 336h
>  Remaining Estimate: 336h
>
> I have a program that runs perfectly fine in both the terminal and in 
> Intellij, but then when the Java code is run inside a NetBeans project, it 
> outputs incorrectly.
> (Before I continue the description, I have a video 
> [here|https://twitter.com/Keglomaniac04/status/1306704821743910913?s=20] and 
> the project itself is attached to this report)
> The following is the first code that ran into the problem:
>  
> {code:java}
> System.out.print("\nPlease enter a month and year (e.g. Sep 2020): ");
> selectedMonth = Month.valueOf(keyboard.next().toUpperCase());
> selectedYear = keyboard.nextInt();
> {code}
>  
> In Intellij and the terminal this was the output (which is correct):
> {code:java}
> Welcome to Keegan Bilodeau's Calendar Application!
> Please enter a month and year (e.g. Sep 2020): l
> Error: You did not enter a valid month!
> Please enter a month and year (e.g. Sep 2020): 
> {code}
>  
> This is the output in NetBeans (which is wrong):
> {code:java}
> Welcome to Keegan Bilodeau's Calendar Application!
> l
> Please enter a month and year (e.g. Sep 2020): Error: You did not enter a 
> valid month!
> {code}
>  
> **Something to note is that when the System.out.print() is changed to 
> System.out.println(), the code runs properly, but with a newline, which is 
> not what I wanted nor should be necessary.  One might assume that it was 
> because System.out.println() flushes the stream; however, Using 
> System.out.print() in conjunction with System.out.flush() changed nothing
>  
> For even more information regarding the issue, see the attached files.



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

-
To unsubscribe, e-ma

[jira] [Commented] (NETBEANS-4812) System.out.print() statements placed before Scanner calls, such as scanner::next(), do not output until after input is entered only in Netbeans console

2020-09-29 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane commented on NETBEANS-4812:
-

Can confirm this happens, but only for Maven projects. The Maven output 
handling performs line by line reading of the output, so any program line not 
terminated with newline character will not get printed. Its not trivial to stop 
this this behaviour because the line reading is used to seperate Maven specific 
messages.

> System.out.print() statements placed before Scanner calls, such as 
> scanner::next(), do not output until after input is entered only in Netbeans 
> console
> ---
>
> Key: NETBEANS-4812
> URL: https://issues.apache.org/jira/browse/NETBEANS-4812
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java, java - Editor, platform - Output 
> Window, projects - Maven
>Affects Versions: 12.0
> Environment: java --version
> openjdk 14.0.2 2020-07-14
> OpenJDK Runtime Environment (build 14.0.2+12-46)
> OpenJDK 64-Bit Server VM (build 14.0.2+12-46, mixed mode, sharing)
> NetBeans About Info:
> Product Version: Apache NetBeans IDE 12.0
> Java: 14.0.2; OpenJDK 64-Bit Server VM 14.0.2+12-46
> Runtime: OpenJDK Runtime Environment 14.0.2+12-46
> System: Mac OS X version 10.15.6 running on x86_64; UTF-8; en_US (nb)
> Hardware Information:
> Model Name:   MacBook Pro
>   Model Identifier:   MacBookPro15,2
>   Processor Name: Quad-Core Intel Core i7
>   Processor Speed:2.8 GHz
>   Number of Processors:   1
>   Total Number of Cores:  4
>   L2 Cache (per Core):256 KB
>   L3 Cache:   8 MB
>   Hyper-Threading Technology: Enabled
>   Memory: 16 GB
>   Boot ROM Version:   1037.147.4.0.0 (iBridge: 17.16.16610.0.0,0)
>   Serial Number (system): C02ZT04JP4G2
>   Hardware UUID:  9678EC89-6B02-50FB-84B6-CA859359FB50
>   Activation Lock Status: Enabled
> System Software Overview:
>   System Version: macOS 10.15.6 (19G2021)
>   Kernel Version: Darwin 19.6.0
>   Boot Volume:Macintosh HD
>   Boot Mode:  Normal
>   Computer Name:  --
>   User Name:  --
>   Secure Virtual Memory:  Enabled
>   System Integrity Protection:Enabled
>   Time since boot:24 days 14:53
>Reporter: Keegan Bilodeau
>Priority: Major
>  Labels: console, java, jdk14, netbeans, netbeans-ui, output
> Attachments: CSCI_2011_Assign_1.zip
>
>   Original Estimate: 336h
>  Remaining Estimate: 336h
>
> I have a program that runs perfectly fine in both the terminal and in 
> Intellij, but then when the Java code is run inside a NetBeans project, it 
> outputs incorrectly.
> (Before I continue the description, I have a video 
> [here|https://twitter.com/Keglomaniac04/status/1306704821743910913?s=20] and 
> the project itself is attached to this report)
> The following is the first code that ran into the problem:
>  
> {code:java}
> System.out.print("\nPlease enter a month and year (e.g. Sep 2020): ");
> selectedMonth = Month.valueOf(keyboard.next().toUpperCase());
> selectedYear = keyboard.nextInt();
> {code}
>  
> In Intellij and the terminal this was the output (which is correct):
> {code:java}
> Welcome to Keegan Bilodeau's Calendar Application!
> Please enter a month and year (e.g. Sep 2020): l
> Error: You did not enter a valid month!
> Please enter a month and year (e.g. Sep 2020): 
> {code}
>  
> This is the output in NetBeans (which is wrong):
> {code:java}
> Welcome to Keegan Bilodeau's Calendar Application!
> l
> Please enter a month and year (e.g. Sep 2020): Error: You did not enter a 
> valid month!
> {code}
>  
> **Something to note is that when the System.out.print() is changed to 
> System.out.println(), the code runs properly, but with a newline, which is 
> not what I wanted nor should be necessary.  One might assume that it was 
> because System.out.println() flushes the stream; however, Using 
> System.out.print() in conjunction with System.out.flush() changed nothing
>  
> For even more information regarding the issue, see the attached files.



--
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-4853) Bad Font Rendering on Linux with any JDK

2020-09-28 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane commented on NETBEANS-4853:
-

I am using `-J-Dawt.useSystemAAFontSettings=on` in `netbeans_default_options`. 
Also Liberation Mono font looks good on my system. Certain fonts have ugly 
rendering.

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



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

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

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



[jira] [Assigned] (NETBEANS-591) Cannot debug failed test method from Test results window

2020-09-28 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane reassigned NETBEANS-591:
--

Assignee: Siddhesh Rane

> Cannot debug failed test method from Test results window
> 
>
> Key: NETBEANS-591
> URL: https://issues.apache.org/jira/browse/NETBEANS-591
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - JUnit
>Reporter: Manikantan Narender Nath
>Assignee: Siddhesh Rane
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Steps to reproduce
> Run a junit test case which fails
> In the test results window select the test method that failed
> Right click and choose debug from the context menu
> Expected result:
> The test method is run
> Actual result : Cannot run the test method
> {code:java}
> ant -f /Users/msivasub/dev/NetCat9/NBProjects/JUnitSampleProjectAnt 
> -Dnb.internal.action.name=debug.single.method 
> -Djavac.includes=teststorun/CalculatorTest.java -Dtest.method=testDivide 
> -Dtest.class=teststorun.CalculatorTest debug-single-method
> Target "debug-single-method" does not exist in the project 
> "JUnitSampleProjectAnt".
> BUILD FAILED (total time: 0 seconds)
> {code}
> Test specification : Junit Test specification 
> ([http://netbeans-vm.apache.org/synergy/client/app/#/specification/390/v/2)]
>  
> Test Suite: Result window actions 
> ([http://netbeans-vm.apache.org/synergy/client/app/#/suite/2235)]
> Test case: Debug ( 
> [http://netbeans-vm.apache.org/synergy/client/app/#/case/5996/suite/2235/v/1] 
> )
>  



--
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-4667) npm dependency search UI is broken

2020-07-31 Thread Siddhesh Rane (Jira)
Siddhesh Rane created NETBEANS-4667:
---

 Summary: npm dependency search UI is broken
 Key: NETBEANS-4667
 URL: https://issues.apache.org/jira/browse/NETBEANS-4667
 Project: NetBeans
  Issue Type: Bug
  Components: javascript - Node.js
Affects Versions: 12.0
Reporter: Siddhesh Rane
Assignee: Siddhesh Rane
 Attachments: Screenshot from 2020-07-31 18-09-02.png

npm search command output format has changed and broken dependency search 
within Netbeans.  !Screenshot from 2020-07-31 18-09-02.png!



--
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] [Closed] (NETBEANS-4520) Enable File Chooser in non-project New File Wizard

2020-07-26 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane closed NETBEANS-4520.
---

> Enable File Chooser in non-project New File Wizard
> --
>
> Key: NETBEANS-4520
> URL: https://issues.apache.org/jira/browse/NETBEANS-4520
> Project: NetBeans
>  Issue Type: Improvement
>  Components: ide - UI
>Reporter: Siddhesh Rane
>Assignee: Siddhesh Rane
>Priority: Major
>  Labels: pull-request-available
> Attachments: before.gif
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> If there is no active project, then the New File Wizard does not allow to 
> open the file chooser for selecting the folder. This patch fixes that without 
> affecting unintended side effects. This is more of feature enhancement.
>  
> !before.gif!



--
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-4520) Enable File Chooser in non-project New File Wizard

2020-07-26 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane resolved NETBEANS-4520.
-
Resolution: Implemented

> Enable File Chooser in non-project New File Wizard
> --
>
> Key: NETBEANS-4520
> URL: https://issues.apache.org/jira/browse/NETBEANS-4520
> Project: NetBeans
>  Issue Type: Improvement
>  Components: ide - UI
>Reporter: Siddhesh Rane
>Assignee: Siddhesh Rane
>Priority: Major
>  Labels: pull-request-available
> Attachments: before.gif
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> If there is no active project, then the New File Wizard does not allow to 
> open the file chooser for selecting the folder. This patch fixes that without 
> affecting unintended side effects. This is more of feature enhancement.
>  
> !before.gif!



--
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-4520) Enable File Chooser in non-project New File Wizard

2020-06-29 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane updated NETBEANS-4520:

Labels: pull-request-available  (was: )

> Enable File Chooser in non-project New File Wizard
> --
>
> Key: NETBEANS-4520
> URL: https://issues.apache.org/jira/browse/NETBEANS-4520
> Project: NetBeans
>  Issue Type: Improvement
>  Components: ide - UI
>Reporter: Siddhesh Rane
>Assignee: Siddhesh Rane
>Priority: Major
>  Labels: pull-request-available
> Attachments: before.gif
>
>
> If there is no active project, then the New File Wizard does not allow to 
> open the file chooser for selecting the folder. This patch fixes that without 
> affecting unintended side effects. This is more of feature enhancement.
>  
> !before.gif!



--
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-4520) Enable File Chooser in non-project New File Wizard

2020-06-29 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane updated NETBEANS-4520:

Component/s: ide - UI

> Enable File Chooser in non-project New File Wizard
> --
>
> Key: NETBEANS-4520
> URL: https://issues.apache.org/jira/browse/NETBEANS-4520
> Project: NetBeans
>  Issue Type: Improvement
>  Components: ide - UI
>Reporter: Siddhesh Rane
>Assignee: Siddhesh Rane
>Priority: Major
> Attachments: before.gif
>
>
> If there is no active project, then the New File Wizard does not allow to 
> open the file chooser for selecting the folder. This patch fixes that without 
> affecting unintended side effects. This is more of feature enhancement.
>  
> !before.gif!



--
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-4520) Enable File Chooser in non-project New File Wizard

2020-06-29 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane updated NETBEANS-4520:

Description: 
If there is no active project, then the New File Wizard does not allow to open 
the file chooser for selecting the folder. This patch fixes that without 
affecting unintended side effects. This is more of feature enhancement.

 

!before.gif!

> Enable File Chooser in non-project New File Wizard
> --
>
> Key: NETBEANS-4520
> URL: https://issues.apache.org/jira/browse/NETBEANS-4520
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Siddhesh Rane
>Assignee: Siddhesh Rane
>Priority: Major
> Attachments: before.gif
>
>
> If there is no active project, then the New File Wizard does not allow to 
> open the file chooser for selecting the folder. This patch fixes that without 
> affecting unintended side effects. This is more of feature enhancement.
>  
> !before.gif!



--
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-4520) Enable File Chooser in non-project New File Wizard

2020-06-29 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane updated NETBEANS-4520:

Attachment: before.gif

> Enable File Chooser in non-project New File Wizard
> --
>
> Key: NETBEANS-4520
> URL: https://issues.apache.org/jira/browse/NETBEANS-4520
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Siddhesh Rane
>Assignee: Siddhesh Rane
>Priority: Major
> Attachments: before.gif
>
>




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

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

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



[jira] [Assigned] (NETBEANS-4520) Enable File Chooser in non-project New File Wizard

2020-06-29 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane reassigned NETBEANS-4520:
---

Assignee: Siddhesh Rane

> Enable File Chooser in non-project New File Wizard
> --
>
> Key: NETBEANS-4520
> URL: https://issues.apache.org/jira/browse/NETBEANS-4520
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Siddhesh Rane
>Assignee: Siddhesh Rane
>Priority: Major
>




--
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-4520) Enable File Chooser in non-project New File Wizard

2020-06-29 Thread Siddhesh Rane (Jira)
Siddhesh Rane created NETBEANS-4520:
---

 Summary: Enable File Chooser in non-project New File Wizard
 Key: NETBEANS-4520
 URL: https://issues.apache.org/jira/browse/NETBEANS-4520
 Project: NetBeans
  Issue Type: Improvement
Reporter: Siddhesh Rane






--
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-3193) Support remote files in Open Recent File menu

2019-10-02 Thread Siddhesh Rane (Jira)
Siddhesh Rane created NETBEANS-3193:
---

 Summary: Support remote files in Open Recent File menu
 Key: NETBEANS-3193
 URL: https://issues.apache.org/jira/browse/NETBEANS-3193
 Project: NetBeans
  Issue Type: Improvement
  Components: utilities - Open File
Reporter: Siddhesh Rane
Assignee: Siddhesh Rane


Open Recent File feature currently supports only local disk files.

As Netbeans has full fledged support for remote development,  support needs to 
be added for recently opened/closed remote file (rfs:// , sftp:// etc)

This feature would make it very convenient especially for opening last closed 
file in C++ remote development mode.

 

*Required code changes*

Recent files list is stored as system dependent file path. Replacing this with 
URLs obtained for URLMapper would be all that is needed



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

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

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



[jira] [Assigned] (NETBEANS-3040) Diff to feature does not work for Remote files in C/C++

2019-09-22 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane reassigned NETBEANS-3040:
---

Assignee: Siddhesh Rane

> Diff to feature does not work for Remote files in C/C++ 
> 
>
> Key: NETBEANS-3040
> URL: https://issues.apache.org/jira/browse/NETBEANS-3040
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Remote, utilities - Diff
>Affects Versions: 8.2
> Environment: Ubuntu 18.04, 16.04
>Reporter: Siddhesh Rane
>Assignee: Siddhesh Rane
>Priority: Trivial
>
> "Diff to" does not work when the target file to diff against is a Remote file.
> *Fail Scenario 1*
>  # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
> format, project file or not).
>  # Open a local file on your desktop in Netbeans. (Could be any format, 
> project file or not).
>  # In the editor tab of local file, right click and click on "Diff to". 
> Choose remote file from sidebar
>  # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}
> *Fail Scenario 2*
>  # Using Remote C/C++ toolbar, open two files  on a remote server (Could be 
> any format, project file or not)
>  # In the editor tab of one  file, right click and click on "Diff to". Choose 
> the other remote file from sidebar
>  # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}
> *Success scenario* 
>  # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
> format, project file or not).
>  # Open a local file on your desktop in Netbeans. (Could be any format, 
> project file or not).
>  # In the remote file tab, right click and click on "Diff to". Choose the 
> local file
>  # {color:#00875a}Diff works!{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-3040) Diff to feature does not work for Remote files in C/C++

2019-08-28 Thread Siddhesh Rane (Jira)


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

Siddhesh Rane updated NETBEANS-3040:

Description: 
"Diff to" does not work when the target file to diff against is a Remote file.

*Fail Scenario 1*
 # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
format, project file or not).
 # Open a local file on your desktop in Netbeans. (Could be any format, project 
file or not).
 # In the editor tab of local file, right click and click on "Diff to". Choose 
remote file from sidebar
 # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}

*Fail Scenario 2*
 # Using Remote C/C++ toolbar, open two files  on a remote server (Could be any 
format, project file or not)
 # In the editor tab of one  file, right click and click on "Diff to". Choose 
the other remote file from sidebar
 # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}

*Success scenario* 
 # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
format, project file or not).
 # Open a local file on your desktop in Netbeans. (Could be any format, project 
file or not).
 # In the remote file tab, right click and click on "Diff to". Choose the local 
file
 # {color:#00875a}Diff works!{color}

  was:
"Diff to" does not work when the target file to diff against is a Remote file.

*Fail Scenario 1*
 # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
format, project file or not).
 # Open a local file on your desktop in Netbeans. (Could be any format, project 
file or not).
 # In the editor tab of local file, right click and click on "Diff to". Choose 
remote file from sidebar
 # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}

*Fail Scenario 2*
 # Using Remote C/C++ toolbar, open two files  on a remote server (Could be any 
format, project file or not)
 # In the editor tab of one  file, right click and click on "Diff to". Choose 
the other remote file from sidebar
 # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}

*Success scenario*  ** 
 # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
format, project file or not).
 # Open a local file on your desktop in Netbeans. (Could be any format, project 
file or not).
 # In the remote file tab, right click and click on "Diff to". Choose the local 
file
 # {color:#00875a}Diff works!{color}


> Diff to feature does not work for Remote files in C/C++ 
> 
>
> Key: NETBEANS-3040
> URL: https://issues.apache.org/jira/browse/NETBEANS-3040
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Remote, utilities - Diff
>Affects Versions: 8.2
> Environment: Ubuntu 18.04, 16.04
>Reporter: Siddhesh Rane
>Priority: Trivial
>
> "Diff to" does not work when the target file to diff against is a Remote file.
> *Fail Scenario 1*
>  # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
> format, project file or not).
>  # Open a local file on your desktop in Netbeans. (Could be any format, 
> project file or not).
>  # In the editor tab of local file, right click and click on "Diff to". 
> Choose remote file from sidebar
>  # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}
> *Fail Scenario 2*
>  # Using Remote C/C++ toolbar, open two files  on a remote server (Could be 
> any format, project file or not)
>  # In the editor tab of one  file, right click and click on "Diff to". Choose 
> the other remote file from sidebar
>  # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}
> *Success scenario* 
>  # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
> format, project file or not).
>  # Open a local file on your desktop in Netbeans. (Could be any format, 
> project file or not).
>  # In the remote file tab, right click and click on "Diff to". Choose the 
> local file
>  # {color:#00875a}Diff works!{color}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3040) Diff to feature does not work for Remote files in C/C++

2019-08-28 Thread Siddhesh Rane (Jira)
Siddhesh Rane created NETBEANS-3040:
---

 Summary: Diff to feature does not work for Remote files in C/C++ 
 Key: NETBEANS-3040
 URL: https://issues.apache.org/jira/browse/NETBEANS-3040
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Remote, utilities - Diff
Affects Versions: 8.2
 Environment: Ubuntu 18.04, 16.04
Reporter: Siddhesh Rane


"Diff to" does not work when the target file to diff against is a Remote file.

*Fail Scenario 1*
 # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
format, project file or not).
 # Open a local file on your desktop in Netbeans. (Could be any format, project 
file or not).
 # In the editor tab of local file, right click and click on "Diff to". Choose 
remote file from sidebar
 # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}

*Fail Scenario 2*
 # Using Remote C/C++ toolbar, open two files  on a remote server (Could be any 
format, project file or not)
 # In the editor tab of one  file, right click and click on "Diff to". Choose 
the other remote file from sidebar
 # {color:#de350b}Nothing happens. Error is logged in IDE Log{color}

*Success scenario*  ** 
 # Using Remote C/C++ toolbar, open a file on a remote server (Could be any 
format, project file or not).
 # Open a local file on your desktop in Netbeans. (Could be any format, project 
file or not).
 # In the remote file tab, right click and click on "Diff to". Choose the local 
file
 # {color:#00875a}Diff works!{color}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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