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




-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org

For additional commands, e-mail: users-h...@netbeans.apache.org


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



--
Alonso del Arte
Author at SmashWords.com 


Musician at ReverbNation.com 





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 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."
>
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



-- 
Alonso del Arte
Author at SmashWords.com

Musician at ReverbNation.com 


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 no imports run with 
no problem.
Any JSP that accesses an imported class fails when it tries to instantiate the 
class. Any Struts action likewise fails when it tries to instantiate a class to 
handle the action.

I created a simple JSP and class to illustrate the problem.

test.jsp:
<%@page import="utility.Test"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>



 
9: 
10: test.jsp
11: <% out.println(Test.getText());%>
12: 
13: 


Stacktrace:

org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:611)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:500)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:378)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:326)
javax.servlet.http.HttpServlet.service(HttpServlet.java:733)
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)

Root Cause

java.lang.RuntimeException: 
utility.Test.getText(Test.java:1)
org.apache.jsp.test_jsp._jspService(test_jsp.java:129)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:71)
javax.servlet.http.HttpServlet.service(HttpServlet.java:733)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:467)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:378)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:326)
javax.servlet.http.HttpServlet.service(HttpServlet.java:733)
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)

Note The full stack trace of the root cause is available in the server logs.


Server Log:

Stacktrace:] with root cause
java.lang.RuntimeException:
at utility.Test.getText(Test.java:1)
at org.apache.jsp.test_jsp._jspService(test_jsp.java:129)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:71)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:733)
at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:467)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:378)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:326)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:733)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
at 
org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:687)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374)
at 
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
at 
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:887)
at 
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1684)
at 
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at 
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at 
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at 
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.base/java.lang.Thread.run(Thread.java:835)



It seems to me that Tomcat is unable to load compiled classes from the project 
for some reason.

This all started after I upgraded MacOS, so I suspect that something changed in 
the OS that broke the link between Tomcat and NetBeans.

Thanks in advance for any suggestions.



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

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 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, 2021 at 8:37 PM Jan Lahoda > wrote:


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
mailto:neilcsm...@apache.org>> wrote:

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 browser with pages based on the HelpCtx ID, falling back to
root table of contents if not there?  I'm doing the latter bit
in the
PraxisLIVE UI, where every help button at least does something.
Started experimenting with encoding the context in the URL's but
didn't finish it.

Best wishes,

Neil

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org

For additional commands, e-mail:
users-h...@netbeans.apache.org


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




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 strong hint of - "Something
wrong? Edit on GitHub!" One day, when they're in a good enough state, then
consider the option to download a local copy. But if they're not seen or
used at all, they'll never be good enough.

Best wishes,

Neil

>


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, 2021 at 8:37 PM Jan Lahoda  wrote:

> 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 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 browser with pages based on the HelpCtx ID, falling back to
>> root table of contents if not there?  I'm doing the latter bit in the
>> PraxisLIVE UI, where every help button at least does something.
>> Started experimenting with encoding the context in the URL's but
>> didn't finish it.
>>
>> Best wishes,
>>
>> Neil
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>


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 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 browser with pages based on the HelpCtx ID, falling back to
> root table of contents if not there?  I'm doing the latter bit in the
> PraxisLIVE UI, where every help button at least does something.
> Started experimenting with encoding the context in the URL's but
> didn't finish it.
>
> Best wishes,
>
> Neil
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


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 browser with pages based on the HelpCtx ID, falling back to
root table of contents if not there?  I'm doing the latter bit in the
PraxisLIVE UI, where every help button at least does something.
Started experimenting with encoding the context in the URL's but
didn't finish it.

Best wishes,

Neil

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

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



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
>
> 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 NetBeans addressed through update center
>> tricks? Is that possible here?
>>
>> -ernie
>>
>> On 2/13/2021 2:48 PM, Geertjan Wielenga wrote:
>> > As stated above, JavaHelp is GPL licensed. Nothing we can do about that.
>> >
>> > Gj
>> >
>> > On Sat, Feb 13, 2021 at 11:47 PM Owen Thomas
>> > mailto:owen.paul.tho...@gmail.com>> wrote:
>> >
>> > Hey Geertjan.
>> >
>> > Is that ever going to change? When might JavaHelp be available to
>> > versions of netbeans released after transfer to Apache? Is there a
>> > page you can point to that explains all this?
>> >
>> > On Sat, 13 Feb 2021 at 15:08, Geertjan Wielenga
>> >  wrote:
>> >
>> >
>> > Indeed, the help has been removed, JavaHelp is GPL licensed
>> > and cannot be included in an Apache project.
>> >
>> > Gj
>> >
>> > On Sat, 13 Feb 2021 at 03:08,
>> >  wrote:
>> >
>> > This query relates to the Base IDE.
>> >
>> > Some time ago I used Netbeans 8.2 for working with html,
>> > php and javascript. It had a
>> > comprehensive help system, i.e. there were help buttons on
>> > the various IDE Tools -> Options
>> > windows, and IDE help under the main screen help option.
>> >
>> > I havejust installed Apache Netbeans 12.0 and there isn't
>> > any help anywhere! There are still
>> > help buttons on the various IDE Tools -> Options windows
>> > but none of them do anything. The
>> > IDE help under the main screen help option has also gone.
>> > It just offers "on-line docs and
>> > support".
>> >
>> > Initially, I still had Netbeans 8.2 installed when I first
>> > installed Apache Netbeans 12.0. Both
>> > worked ok, with help available on 8.2, but no help
>> > available on 12.0. I uninstalled Netbeans
>> > 8.2, then uninstalled 12.0, and then reinstalled 12.0
>> > again. Installation said it was successful,
>> > but still no help available.
>> >
>> > Here's the configuration information from Help -> About:
>> >
>> > Product Version: Apache NetBeans IDE 12.0
>> > Java: 1.8.0_281; Java HotSpot(TM) 64-Bit Server VM
>> 25.281-b09
>> > Runtime: Java(TM) SE Runtime Environment 1.8.0_281-b09
>> > System: Windows 10 version 10.0 running on amd64; Cp1252;
>> > en_GB (nb)
>> >
>> > Installed:
>> > Base IDE
>> > HTML5/Javascript
>> > PHP
>> >
>> > Not installed:
>> > Java SE
>> > Java EE
>> >
>> > I do hope someone can tell me what the issue is. I have
>> > spent the last couple of evenings
>> > tearing my hair out hunting for a solution without success.
>> >
>> > Thanks.
>> >
>> >
>> >
>> >
>> >
>>  -
>> > To unsubscribe, e-mail:
>> > users-unsubscr...@netbeans.apache.org
>> > 
>> > For additional commands, e-mail:
>> > users-h...@netbeans.apache.org
>> > 
>> >
>> > For further information about the NetBeans mailing lists,
>> > visit:
>> >
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>> > <
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists>
>> >
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>


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 NetBeans addressed through update center
> tricks? Is that possible here?
>
> -ernie
>
> On 2/13/2021 2:48 PM, Geertjan Wielenga wrote:
> > As stated above, JavaHelp is GPL licensed. Nothing we can do about that.
> >
> > Gj
> >
> > On Sat, Feb 13, 2021 at 11:47 PM Owen Thomas
> > mailto:owen.paul.tho...@gmail.com>> wrote:
> >
> > Hey Geertjan.
> >
> > Is that ever going to change? When might JavaHelp be available to
> > versions of netbeans released after transfer to Apache? Is there a
> > page you can point to that explains all this?
> >
> > On Sat, 13 Feb 2021 at 15:08, Geertjan Wielenga
> >  wrote:
> >
> >
> > Indeed, the help has been removed, JavaHelp is GPL licensed
> > and cannot be included in an Apache project.
> >
> > Gj
> >
> > On Sat, 13 Feb 2021 at 03:08,
> >  wrote:
> >
> > This query relates to the Base IDE.
> >
> > Some time ago I used Netbeans 8.2 for working with html,
> > php and javascript. It had a
> > comprehensive help system, i.e. there were help buttons on
> > the various IDE Tools -> Options
> > windows, and IDE help under the main screen help option.
> >
> > I havejust installed Apache Netbeans 12.0 and there isn't
> > any help anywhere! There are still
> > help buttons on the various IDE Tools -> Options windows
> > but none of them do anything. The
> > IDE help under the main screen help option has also gone.
> > It just offers "on-line docs and
> > support".
> >
> > Initially, I still had Netbeans 8.2 installed when I first
> > installed Apache Netbeans 12.0. Both
> > worked ok, with help available on 8.2, but no help
> > available on 12.0. I uninstalled Netbeans
> > 8.2, then uninstalled 12.0, and then reinstalled 12.0
> > again. Installation said it was successful,
> > but still no help available.
> >
> > Here's the configuration information from Help -> About:
> >
> > Product Version: Apache NetBeans IDE 12.0
> > Java: 1.8.0_281; Java HotSpot(TM) 64-Bit Server VM 25.281-b09
> > Runtime: Java(TM) SE Runtime Environment 1.8.0_281-b09
> > System: Windows 10 version 10.0 running on amd64; Cp1252;
> > en_GB (nb)
> >
> > Installed:
> > Base IDE
> > HTML5/Javascript
> > PHP
> >
> > Not installed:
> > Java SE
> > Java EE
> >
> > I do hope someone can tell me what the issue is. I have
> > spent the last couple of evenings
> > tearing my hair out hunting for a solution without success.
> >
> > Thanks.
> >
> >
> >
> >
> >
>  -
> > To unsubscribe, e-mail:
> > users-unsubscr...@netbeans.apache.org
> > 
> > For additional commands, e-mail:
> > users-h...@netbeans.apache.org
> > 
> >
> > For further information about the NetBeans mailing lists,
> > visit:
> >
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> > <
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists>
> >
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


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, Geertjan Wielenga wrote:

As stated above, JavaHelp is GPL licensed. Nothing we can do about that.

Gj

On Sat, Feb 13, 2021 at 11:47 PM Owen Thomas 
mailto:owen.paul.tho...@gmail.com>> wrote:


Hey Geertjan.

Is that ever going to change? When might JavaHelp be available to
versions of netbeans released after transfer to Apache? Is there a
page you can point to that explains all this?

On Sat, 13 Feb 2021 at 15:08, Geertjan Wielenga
 wrote:


Indeed, the help has been removed, JavaHelp is GPL licensed
and cannot be included in an Apache project.

Gj

On Sat, 13 Feb 2021 at 03:08,
 wrote:

This query relates to the Base IDE.

Some time ago I used Netbeans 8.2 for working with html,
php and javascript. It had a
comprehensive help system, i.e. there were help buttons on
the various IDE Tools -> Options
windows, and IDE help under the main screen help option.

I havejust installed Apache Netbeans 12.0 and there isn't
any help anywhere! There are still
help buttons on the various IDE Tools -> Options windows
but none of them do anything. The
IDE help under the main screen help option has also gone.
It just offers "on-line docs and
support".

Initially, I still had Netbeans 8.2 installed when I first
installed Apache Netbeans 12.0. Both
worked ok, with help available on 8.2, but no help
available on 12.0. I uninstalled Netbeans
8.2, then uninstalled 12.0, and then reinstalled 12.0
again. Installation said it was successful,
but still no help available.

Here's the configuration information from Help -> About:

Product Version: Apache NetBeans IDE 12.0
Java: 1.8.0_281; Java HotSpot(TM) 64-Bit Server VM 25.281-b09
Runtime: Java(TM) SE Runtime Environment 1.8.0_281-b09
System: Windows 10 version 10.0 running on amd64; Cp1252;
en_GB (nb)

Installed:
Base IDE
HTML5/Javascript
PHP

Not installed:
Java SE
Java EE

I do hope someone can tell me what the issue is. I have
spent the last couple of evenings
tearing my hair out hunting for a solution without success.

Thanks.





-
To unsubscribe, e-mail:
users-unsubscr...@netbeans.apache.org

For additional commands, e-mail:
users-h...@netbeans.apache.org


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





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

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



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



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

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

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 convenient way of switching debugging and 
profiling):


zend_extension=xdebug.so
xdebug.mode=debug,profile
xdebug.start_with_request=trigger
xdebug.output_dir = "/tmp"
xdebug.idekey = netbeans-xdebug
xdebug.profiler_output_name = "cachegrind.out.%t.%p"

With regards,

Tom


On 2021/02/15 18:53:24, Christoph Theis  wrote:
> I had similiar problems but got it running with NB 12.x, php 7.4 and>
> xdebug 3.x. But don't ask for details ...>
>
> If you don't see any log file, is the file / path accessible by 
www-data>

> (or whatever user you are running the server under)?>
> Is someone listening on your xdebug port? Did you set the port in NB as>
> well? The hints in NB are still for xdebug v2>
> Is xdebug loaded at all by php?>
>
>
> Christoph>
>
> ->
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org>
> For additional commands, e-mail: users-h...@netbeans.apache.org>
>
> For further information about the NetBeans mailing lists, visit:>
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists>
>
>

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

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



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.  If I'm in the common
module, and I press "run", I want it to run the "javase" project.  Running
the root project would accomplish this also.



On Thu, Feb 18, 2021 at 8:09 AM Luff,Chris  wrote:

> 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
> build with dependencies “mvn --also-make —projects myprojectChild".
>
> > On 18 Feb 2021, at 15:54, Steve Hannah  wrote:
> >
> > 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 command call, but to no avail.
> >
> > Any pointers appreciated.
> >
> > Thanks
> >
> > Steve
>
>
>
> CONFIDENTIALITY NOTICE This message and any included attachments are from
> Cerner Corporation and are intended only for the addressee. The information
> contained in this message is confidential and may constitute inside or
> non-public information under international, federal, or state securities
> laws. Unauthorized forwarding, printing, copying, distribution, or use of
> such information is strictly prohibited and may be unlawful. If you are not
> the addressee, please promptly delete this message and notify the sender of
> the delivery error by e-mail or you may call Cerner's corporate offices in
> Kansas City, Missouri, U.S.A at (+1) (816)221-1024. Cerner Limited,
> Registered in England no 2519305, Registered Office 37 North Wharf Road,
> London W2 1AF.
>


-- 
Steve Hannah
Web Lite Solutions Corp.


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 build with dependencies 
“mvn --also-make —projects myprojectChild".

> On 18 Feb 2021, at 15:54, Steve Hannah  wrote:
>
> 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 command call, but to no avail.
>
> Any pointers appreciated.
>
> Thanks
>
> Steve



CONFIDENTIALITY NOTICE This message and any included attachments are from 
Cerner Corporation and are intended only for the addressee. The information 
contained in this message is confidential and may constitute inside or 
non-public information under international, federal, or state securities laws. 
Unauthorized forwarding, printing, copying, distribution, or use of such 
information is strictly prohibited and may be unlawful. If you are not the 
addressee, please promptly delete this message and notify the sender of the 
delivery error by e-mail or you may call Cerner's corporate offices in Kansas 
City, Missouri, U.S.A at (+1) (816)221-1024. Cerner Limited, Registered in 
England no 2519305, Registered Office 37 North Wharf Road, London W2 1AF.


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 command call, but to no avail.

Any pointers appreciated.

Thanks

Steve