Re: Python in Netbeans 11.x

2020-05-13 Thread Darren Smith

Sadly this hasn't been updated for 5 years.


On 13/05/2020 23:04, John Lavelle wrote:

Try: http://www.nbpython.org/

Best regards,
John
j...@jql.co.uk 
Bike Farkles: https://www.youtube.com/channel/UCPRV92Cf_R1ihviRtVU2teQ
JLavelle.uk https://www.youtube.com/jlavelleuk


On Wed, May 13, 2020 at 4:03 PM Rik Scarborough > wrote:


Is Python supported, or will it be supported, as a plugin for
NetBeans 11?

Thanks,

-- 
~ Rik

/Believe in Good/



Re: What is GLib and GtkWidget?

2020-05-13 Thread Bayless Kirtley
Here is another new error message from running an old Java program under 
11.1 that always worked under 8.1. This seems related but I don't know 
what atk is.



** (java:4814): WARNING **: 15:13:57.601: jaw_impl_get_instance called 
from jaw_thread. If you are running a screen reader, this is expected
If you are not running a screen reader, please report this warning to 
the java-atk-wrapper package, explaining how to reproduce this warning



On 5/13/20 9:03 AM, Bayless Kirtley wrote:
I'm still getting multiple error messages whenever I run a Java 
project under Netbeans 11.1 on Linux Mint 19.3, OpenJDK 8. These are 
samples of the messages.


(java:3065): GLib-GObject-WARNING **: 08:52:31.588: 
../../../../gobject/gsignal.c:1253: unable to lookup signal 
"window-state-event" of unloaded type 'GtkWidget'


(java:3065): GLib-GObject-CRITICAL **: 08:52:31.588: 
g_signal_add_emission_hook: assertion 'signal_id > 0' failed


(java:3065): GLib-GObject-WARNING **: 08:52:33.532: invalid cast from 
'GtkToplevelAccessible' to 'JawToplevel'


That last one repeats over and over. I have never knowingly used GLib, 
GtkWidget or JawTopLevel. What is going on here?


Bayless



-
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



Two strange things

2020-05-13 Thread Alan
Last night, NB 11.3 started throwing seemingly random null pointer 
exceptions. New editor would open with a blank panel, although switching 
from source view to history view and back got the text to display. So I 
figured something died badly and used that "Restart IDE" plugin. This 
was followed by a consistent NPE on startup. One artifact of the error 
was that despite closing all but one file before exiting the IDE, the 
restart opened all my working files from the last start (maybe 100 or so 
in number).


Looking at the errors, it seemed that the exception was being generated 
by the "sort tabs by full path" feature. Sure enough, disabling that 
made the problem go away. Since then I have been unable to reproduce the 
problem. Sadly, I did not save the logs.



I'm not sure if the next issue is an artifact or not, but it was 
concurrent. My fonts got messed up: NB didn't recognize my selection and 
moved to the next one in the font list. I was planning on changing fonts 
anyway so I switched to Consolas, but some identifiers stuck with the 
old selection. I went through everything in the font dialog and found no 
reference to other fonts. Better yet, the options preview was fine, but 
editor windows still had this rogue font.


I exported settings and did a search. Down in 
config/Editors/text/x-php5/FontsColors/My Big 
Monitor/org-netbeans-modules-editor-settings-CustomFontsColors-tokenColorings.xml 
I found this:


    
    
    

There seems to be no way to access this through the UI. I took the name 
attribute out of the live configuration and all is well. Unsure what 
"mod-custom1" is/was for and if it should be removed or not, but it's an 
interesting rabbit hole to have gone down.


Everything is now working for me. I'm just noting what I discovered in 
case someone else is experiencing something similar.



-
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



FindBugs

2020-05-13 Thread Eric Raymond
I am running into an issue when trying to install the plugin Findbugs with 
NetBeans 8.2 using java 1.8. I keep getting an error that states: 
"There were some problems while storing Establishing a connection …
Cause: Cannot resolve external reference to 
m2:/org:ow2:asm:asm-debug-all:5.0.2:jar"

If this is not the correct place to send this question I apologize please let 
me know where I should be. Any help you can provide is much appreciated. 






Re: Python in Netbeans 11.x

2020-05-13 Thread Rik Scarborough
Thank you.  Still seems to be geared towards 8.x, but I see there is 
some recent updates.  I will try this out.


On 5/13/20 10:04 AM, John Lavelle wrote:

Try: http://www.nbpython.org/

Best regards,
John
j...@jql.co.uk 
Bike Farkles: https://www.youtube.com/channel/UCPRV92Cf_R1ihviRtVU2teQ
JLavelle.uk https://www.youtube.com/jlavelleuk


On Wed, May 13, 2020 at 4:03 PM Rik Scarborough > wrote:


Is Python supported, or will it be supported, as a plugin for
NetBeans 11?

Thanks,

-- 
~ Rik

/Believe in Good/


--
~ Rik
/Believe in Good/


Re: Python in Netbeans 11.x

2020-05-13 Thread John Lavelle
Try: http://www.nbpython.org/

Best regards,
John
j...@jql.co.uk
Bike Farkles: https://www.youtube.com/channel/UCPRV92Cf_R1ihviRtVU2teQ
JLavelle.uk https://www.youtube.com/jlavelleuk


On Wed, May 13, 2020 at 4:03 PM Rik Scarborough  wrote:

> Is Python supported, or will it be supported, as a plugin for NetBeans 11?
>
> Thanks,
> --
> ~ Rik
> *Believe in Good*
>


What is GLib and GtkWidget?

2020-05-13 Thread Bayless Kirtley
I'm still getting multiple error messages whenever I run a Java project 
under Netbeans 11.1 on Linux Mint 19.3, OpenJDK 8. These are samples of 
the messages.


(java:3065): GLib-GObject-WARNING **: 08:52:31.588: 
../../../../gobject/gsignal.c:1253: unable to lookup signal 
"window-state-event" of unloaded type 'GtkWidget'


(java:3065): GLib-GObject-CRITICAL **: 08:52:31.588: 
g_signal_add_emission_hook: assertion 'signal_id > 0' failed


(java:3065): GLib-GObject-WARNING **: 08:52:33.532: invalid cast from 
'GtkToplevelAccessible' to 'JawToplevel'


That last one repeats over and over. I have never knowingly used GLib, 
GtkWidget or JawTopLevel. What is going on here?


Bayless



-
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



Python in Netbeans 11.x

2020-05-13 Thread Rik Scarborough

Is Python supported, or will it be supported, as a plugin for NetBeans 11?

Thanks,

--
~ Rik
/Believe in Good/


Compiler option

2020-05-13 Thread HRH
Hi,I am new to Netbeans. I have configured Netbeans 11.3 with JDK 14. I would 
like to compile my project in the IDE environment with a compiler option to 
show code details in exceptions " -XX:+ShowCodeDetailsInExceptionMessages". In 
the "Project properties"->Build->Compile, I do not see how I can add this 
option. There is a "Additional Compile Option" field under "Run Compile in 
External VM" but I that's not for IDE compilation (out of curiosity tried it 
and received an invalid flag error"
Thanks for any help.


Re: Apache NetBeans 11.3

2020-05-13 Thread Bayless Kirtley
I probably forgot to mention, these were all originally ant projects and 
I have left them that way.


Bayless


On 5/13/20 12:28 AM, Emilian Bold wrote:
Might be your old Maven NBM modules perhaps? I think you can try to 
create a new Maven-based NBM and it will open. See how they pom.xml 
files differ.


--emi


On Tue, May 12, 2020 at 9:43 PM Enciu Petre 
mailto:petre.en...@vesta-system.com>> 
wrote:


Hello

Apache netbeans 11.3 does not support nbm packaging.

Every module having nbms packaging are unloadable in this version.

Thanks

LogoVestaTranspa1009.png



*/ENCIU/* Petre



Ingénieur R

Société Vesta – System



http://www.vesta-system.com

(



+40 724 697 577

*



petre.en...@vesta-system.com



Visiter aussi



http://www.cades-solutions.com



Re: Netbeans long pauses

2020-05-13 Thread Emma Atkinson
One thought crossed my mind. If you haven't done so already, it might be
worthwhile examining the command that starts Netbeans IDE. I used to have
wierd trouble I didn't understand. After some experimenting, I thought it
was due to the build of the jdk in the distro I was using. It's now a habit
to override the default.

Basically, I set up the application launch menu item to use the
-jdk-home=xx option when launching to pick my preferred jdk and make
certain I'm not using the distro's default jdk build. It's one fewer
unknowns.  I've not had wierd trouble for many years.  I use KDE. I'm not
sure how to modify application launch commands under Gnome.


Emma


On Tue, 12 May 2020, 15:13 Bayless Kirtley,  wrote:

> I'll try 11.3 then.
>
> Bayless
>
>
> On 5/11/20 9:08 PM, Laszlo Kishalmi wrote:
> > Try with NetBeans 11.3. 11.1 is not supported any more.
> >
> >
> > On 5/11/20 6:04 PM, Bayless Kirtley wrote:
> >> Surely there is a better answer than that. I just spent a week
> >> getting everything running like I want. Everything except Netbeans
> >> works perfectly, including all my Java programs. I really like the
> >> new desktop too. Surely Netbeans should work with the currently most
> >> popular distro of Linux.
> >>
> >> Bayless
> >>
> >>
> >> On 5/11/20 3:34 PM, John G. Weed wrote:
> >>> I had this problem and got so frustrated that I eventually moved off
> >>> of Mint entirely. I now run Ubuntu. If I ran Netbeans and forgot to
> >>> exit the application before logging off, I was almost 100%
> >>> guaranteed that I wold have to reboot the computer to get back in.
> >>> There wasn't a single day that wouldn't require a reboot from a hung
> >>> system. Netbeans and Mint are allergic to each other for some
> >>> reason. Best I could figure was a Java problem. It all was for the
> >>> best anyway, as Ubuntu is much more stable and after 13 months I've
> >>> not had a Netbeans required reboot once. Bottom line, migrate off of
> >>> Mint
> >>>
> >>> Sincerely,
> >>>
> >>> John .G Weed
> >>> Sr. Systems Architect/Programmer Analyst @ Cicero Systems, LLC
> >>> *"Reason. Resolve. Respond"*
> >>> (571) 277-9998
> >>> www.linkedin.com/in/john-weed-28378a161
> >>>
> >>> *"Steal a man's reputation for probity, and the more shrewd and
> >>> clever he is, the more hated and mistrusted he'll become." *Marcus
> >>> Tullius Cicero (106BC-43BC)
> >>>
> >>> *Confidentiality Notice:* The information contained in this
> >>> electronic transmission is privileged and confidential and is
> >>> intended only for the recipient(s) named above. If the reader of
> >>> this message is not the recipient(s) named above, or an authorized
> >>> agent of such recipient(s) responsible for delivering it to the
> >>> intended recipient(s), you are hereby notified that you have
> >>> received this electronic transmission in error. Any review,
> >>> dissemination, distribution, or copying of this electronic
> >>> transmission including any attachments is strictly prohibited. If
> >>> you have received this electronic transmission in error, please
> >>> notify the sender immediately.
> >>>
> >>> On Mon, May 11, 2020, at 16:26, Bayless Kirtley wrote:
>  After installing Netbeans 11.1 on Linux Mint 19.3, it has a nasty
>  habit
>  of suddenly locking up. It seems to be the whole computer. This
>  happens
>  pretty regularly when trying to do a simple refactor, renaming a
>  variable. It also happens but less often when just editing or typing
>  code. These pauses always seem to last between 30 and 60 seconds. This
>  really makes it virtually unusable. On the refactor, it always happens
>  even before accepting the new name so it has not actually started
>  renaming yet. These are small Java desktop projects of a dozen or so
>  classes and usually only one or two projects open at a time so no more
>  than 2 or 3000 lines. I assume I have something wrong but no idea
>  where
>  to start looking. Any help will be greatly appreciated.
> 
>  Bayless
> 
> 
> 
>  -
>  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
> >>>
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> >> For additional