Re: git toolbar

2021-02-18 Thread Tomáš Procházka
@Glenn Maybe it is related to Look and Feel you are using. I don't have any problems with mine using FlatLaf Dark. @Alonso Just right-click on toolbar and select Git from menu or through menu View > Toolbars > Git. Regards, Tom On 19. 02. 21 0:49, Alonso Del Arte wrote: I'm using NetBeans 11

Re: git toolbar

2021-02-18 Thread Alonso Del Arte
I'm using NetBeans 11.2. I'm guessing you're using 12. But I would not imagine the Git toolbar is new in 12. How do I bring it up? (I don't know because I mostly use the command line to manage Git commits). Al On Thu, Feb 18, 2021 at 12:26 PM Glenn Holmer wrote: > I love the git support in Net

Problem with NetBeans & Tomcat in new MacOS

2021-02-18 Thread Ralph Grove
I'm having a problem running web applications with NetBeans & Tomcat on MacOS. Configuration: MacOs 11.2.1 (Big Sur) NetBeans 12.2 (also tried with 11.1) Tomcat 9.0.43 (also tried with 9.0.22) Java 12, Java 8 (tried both) Struts2 2.5.22 My application compiles with no errors, and JSPs that have

Re: [base ide] No help available in Apache Netbeans 12.0?

2021-02-18 Thread Bradley Willcott
I might be interested in having a look at it. Do we have the source of the HTML files, such as Markdown, or just the HTML files? Where would be the best place to setup a project for this.  I use GitHub for all my projects. Brad. On 19/2/21 3:38 am, Geertjan Wielenga wrote: Awesome. The

Re: [base ide] No help available in Apache Netbeans 12.0?

2021-02-18 Thread Neil C Smith
On Thu, 18 Feb 2021, 19:39 Geertjan Wielenga, wrote: > I would vote (very strongly) against including them until there are people > volunteering to review and update them. > I agree, but then I'm definitely not suggesting including. Host separately of everything else online via gitpubsub, with a

Re: [base ide] No help available in Apache Netbeans 12.0?

2021-02-18 Thread Geertjan Wielenga
Awesome. The actual help HTML files came with one of the donations, the 3rd, I believe. However, better to have no help files than to have outdated help files. I would vote (very strongly) against including them until there are people volunteering to review and update them. Gj On Thu, Feb 18

Re: [base ide] No help available in Apache Netbeans 12.0?

2021-02-18 Thread Jan Lahoda
I think that when we were removing the JavaHelp, I was experimenting with including the (existing) help and showing it in a browser. I'll try to dig that up. Jan On Thu, Feb 18, 2021 at 8:00 PM Neil C Smith wrote: > On Thu, 18 Feb 2021 at 18:02, Geertjan Wielenga > wrote: > > However, the real

Re: [base ide] No help available in Apache Netbeans 12.0?

2021-02-18 Thread Neil C Smith
On Thu, 18 Feb 2021 at 18:02, Geertjan Wielenga wrote: > However, the real real question is who is going to keep that JavaHelp > documentation updated? Whereabouts is the HTML content now? One option might be to convert, host as a website and have a help context displayer that opens the system

Re: [base ide] No help available in Apache Netbeans 12.0?

2021-02-18 Thread Geertjan Wielenga
However, the real real question is who is going to keep that JavaHelp documentation updated? Are there volunteers in this thread who will do that? Gj On Thu, Feb 18, 2021 at 7:01 PM Geertjan Wielenga < geertjan.wiele...@googlemail.com> wrote: > That's true, we could do it like that. > > Gj > >

Re: [base ide] No help available in Apache Netbeans 12.0?

2021-02-18 Thread Geertjan Wielenga
That's true, we could do it like that. Gj On Thu, Feb 18, 2021 at 6:57 PM Ernie Rael wrote: > Seems like the real question is when will NetBeans have help. Comments > about JavaHelp being GPL, while historically interesting, don't address > the real issue. > > Aren't some GPL issues with NetBea

Re: [base ide] No help available in Apache Netbeans 12.0?

2021-02-18 Thread Ernie Rael
Seems like the real question is when will NetBeans have help. Comments about JavaHelp being GPL, while historically interesting, don't address the real issue. Aren't some GPL issues with NetBeans addressed through update center tricks? Is that possible here? -ernie On 2/13/2021 2:48 PM, Gee

git toolbar

2021-02-18 Thread Glenn Holmer
I love the git support in NetBeans, but in the toolbar, what are the two blue lines on either side of "Create Branch" and "Switch To Branch" supposed to be? Separators? (see screenshot) -- Glenn Holmer (Linux registered user #16682) "After the vintage season came the aftermath -- and Cenbe."

Re: NB 12.1 PHP xdebug

2021-02-18 Thread Tomáš Procházka
Hi, I had no problems running PHP 7.4 with Xdebug 2.9 and also Xdebug 3.0. Just make sure you have configured correct port in NetBeans settings because Xdebug 3.0 changed it from 9000 to 9003. This is my xdebug.ini for Xdebug 3.0 to be used with Xdebug helper extension in browser (only conve

Re: Build parent module in nbactions.xml

2021-02-18 Thread Steve Hannah
Thanks for taking the time to reply. My Project structure is: root - common - javase - ios - android - ... some others. Running the project on desktop should always run the javase project, which has "common" as a dependency. Most of the code is developed in the "common" module.

Re: Build parent module in nbactions.xml

2021-02-18 Thread Luff,Chris
Can I ask what you are trying to achieve with that? Assuming your parent is set up correctly all the plugins, profiles, dependency management will flow to the child. If you want to ensure you’re building all dependent modules of the child from the parent, then you can just right-click and hit bu

Build parent module in nbactions.xml

2021-02-18 Thread Steve Hannah
I have a multi-module maven project. I'm trying to set up nbactions.xml so that when I'm working on a file inside a child module, if I press "Run", it will execute a goal on the parent module. I've been trying every back-handed way I can to inject something like the "-f ../pom.xml" into the mvn c