Re: NetBeans Design

2019-11-12 Thread Tim Boudreau
Indeed. I've found it handy to create a shell alias for searching java sources - dirt simple, but handy in your .bashrc: alias jfind='find . -name "*.java" | xargs grep -i ' will find any java source containing whatever string you pass to it. -Tim

Re: Help [WANTED] - webkit2 integration

2019-11-12 Thread Jaroslav Tulach
> > thx. Where can I find the Linux/mac Integration? I opened this project: > webkit-2.0-snapshot from html4j with package > org.netbeans.html.presenters.webkit and the class WebKitPresenter.java. >> Von: Jaroslav Tulach >> Gesendet: Sonntag, 10. November 2019 17:03 >> As far as I can tell

Re: travis build checks failing

2019-11-12 Thread Brad Walker
I would tend to agree with you since it seemed very non-reproducible in terms of the failures. Thanks for having a look at this! -brad w. On Tue, Nov 12, 2019 at 7:36 PM Laszlo Kishalmi wrote: > > It seems to be a temporal issue. > > Also we have 3 PRs for Travis in the queue, it might be

Re: travis build checks failing

2019-11-12 Thread Laszlo Kishalmi
It seems to be a temporal issue. Also we have 3 PRs for Travis in the queue, it might be worth to include them early in the release cycle. So let's review them: https://github.com/apache/netbeans/pull/1595 https://github.com/apache/netbeans/pull/1598

RE: NetBeans Design

2019-11-12 Thread Eirik Bakke
> How does anyone know where anything is? It's actually quite easy--just find a user-visible text string somewhere in the viscinity of what you're looking for, and grep for it in the git repository. For example, some days ago I wanted to know which class implements the dropdown button

Re: NetBeans Design

2019-11-12 Thread Tim Boudreau
That is most impressive, and yet terrifying at the same time. It raises > even more questions for me. How does anyone know where anything is? You learn. Learn the basics of how things In NetBeans are put together - Lookup, the system filesystem, MimeLookup, what DataObjects are - and you can

Re: [DISCUSS] What to do with old community contributed plugins?

2019-11-12 Thread Josh Juneau
+1 to limiting the NBMs to 8.2+ compatibility. Josh Juneau juneau...@gmail.com http://jj-blogger.blogspot.com https://www.apress.com/us/search?query=Juneau > On Nov 12, 2019, at 9:14 AM, Mark Ferguson wrote: > >  Could there be a way of putting it all on GitHub? (Noobie here) > >On

Eclipse Code Formatter Plugin for NetBeans

2019-11-12 Thread Fabian Bahle
Hello list, I’m happy to announce that I took over the work on the Eclipse Code Formatter Plugin for NetBeans with allowance of Geertjan Wielenga. I released a first SNAPSHOT version on the Sonatype Maven central repository:

Eclipse Code Formatter Plugin

2019-11-12 Thread Fabian Bahle
Hello list, I’m happy to announce that I took over the work on the Eclipse Code Formatter Plugin for NetBeans with allowance of Geertjan Wielenga. I released a first SNAPSHOT version on the Sonatype Maven central repository:

travis build checks failing

2019-11-12 Thread Brad Walker
I'm trying to create a pull request but it keeps failing Travis build checks. And the failures are in different places and don't really look like it's related to any of the work that I've done. My pull request is: https://github.com/apache/netbeans/pull/1624 Can someone help me as it looks like

Re: NetBeans plugins classloader shared

2019-11-12 Thread Gaurav Gupta
Thanks, Jaroslav and Matthias for the reply, soon I will try this solution. Thanks and kind regards, Gaurav Gupta On Wed, Nov 13, 2019 at 1:22 AM Matthias Bläsing wrote: > Hi, > > I had a similar problem (Webservice Client bases on Axis 1). It was > possible to fix it this way: > >

Re: NetBeans plugins classloader shared

2019-11-12 Thread Matthias Bläsing
Hi, I had a similar problem (Webservice Client bases on Axis 1). It was possible to fix it this way: private static MantisConnectPortType initClient(String baseUrl, String httpUsername, String httpPassword) throws ServiceException, MalformedURLException { ClassLoader origLoader =

AW: Help [WANTED] - webkit2 integration

2019-11-12 Thread Christian Lenz
Hey Jaroslav, thx. Where can I find the Linux/mac Integration? I opened this project: webkit-2.0-snapshot from html4j with package org.netbeans.html.presenters.webkit and the class WebKitPresenter.java. Cheers Chris Von: Jaroslav Tulach Gesendet: Dienstag, 12. November 2019 17:08 An: dev

Re: Add an issue description template

2019-11-12 Thread John Neffenger
On 11/6/19 12:24 AM, Christian Lenz wrote: Feel free to have a look/change it and maybe we can create a Infra ticket soon for that improvement. I think there are not that much concerns about it so it is good to go. I opened the following issue with Apache Infrastructure. INFRA-19430: Add an

Re: NetBeans plugins classloader shared

2019-11-12 Thread Jaroslav Tulach
Thread.currentThread.getContextClassLoader is asked to load the class. The ClassLoader sees classes from all modules. It doesn't know which one to choose. -jt Dne út 12. 11. 2019 13:08 uživatel Gaurav Gupta napsal: > Hi all, > > I am facing a weird classloader issue in Jeddict plugin that

Re: HelpCtx without JavaHelp?

2019-11-12 Thread Jaroslav Tulach
There is nothing JavaHelp specific in HelpCtx - it is just a way to obtain String ID... Sure. Use it. -jt Dne út 12. 11. 2019 7:15 uživatel Oliver Rettig napsal: > Hi, > > I am thinking about to substitute JavaHelp from my netbeans platform > applications and to > switch to webbased

Re: Refresh my Memory Please (External binaries and sigtest)

2019-11-12 Thread Jaroslav Tulach
Hello Laszlo. Also the sigtest fails on some minor incompatibilities in the exposed > Gradle Tooling API. Kind of expected with 2 major version change jump. > But otherwise the code seems to work. What would be the recommended > procedure in this case? Shall we increment the major version of the

Re: Help [WANTED] - webkit2 integration

2019-11-12 Thread Jaroslav Tulach
Hello Chris, the [presenter]( http://bits.netbeans.org/html+java/1.7/org/netbeans/html/boot/spi/Fn.Presenter.html) should handle the presentation - e.g. display the HTML and execute the passed in JavaScript. -jt po 11. 11. 2019 v 11:00 odesílatel Christian Lenz napsal: > Hey Jaroslav, > >

Re: [DISCUSS] What to do with old community contributed plugins?

2019-11-12 Thread Mark Ferguson
Could there be a way of putting it all on GitHub? (Noobie here) On Tuesday, 12 November 2019, 12:57:22 GMT, Geertjan Wielenga wrote: Just as a start to this discussion, maybe we could decide to not keep all the NBMs, e.g., make a cut off point at a certain release, e.g., 8.2, for

Re: "Netbeans IDE 11.1 is Available" notification in NB 11.2

2019-11-12 Thread Jiří Kovalský
Should be fixed but it will take 1/2 day till all download servers synchronize and adopt the change. BTW, I have removed the notification message completely. If you can still reproduce this tomorrow (11/13), let me know. -Jirka Dne 11. 11. 19 v 13:21 Geertjan Wielenga napsal(a): I agree

Re: [DISCUSS] What to do with old community contributed plugins?

2019-11-12 Thread Geertjan Wielenga
Just as a start to this discussion, maybe we could decide to not keep all the NBMs, e.g., make a cut off point at a certain release, e.g., 8.2, for example. And if we were to limit the number of NBMs, in some way, such as that, or another way, maybe we could upload them into a dedicated folder

[DISCUSS] What to do with old community contributed plugins?

2019-11-12 Thread Jiří Kovalský
Hello people, we are preparing decommission of the old Plugin Portal 2.0 [1] which is hosted on Oracle infrastructure. Before we turn off the switch we need to decide what we want to do with the plugins contributed by all the kind NetBeans community members over the years totaling ~20 GB.

NetBeans plugins classloader shared

2019-11-12 Thread Gaurav Gupta
Hi all, I am facing a weird classloader issue in Jeddict plugin that includes *org.netbeans.api:org-netbeans-modules-xml-jaxb-api* dependency via maven plugin nbm-maven-plugin as JAXB removed from JDK. Every XML binding operation performs perfectly without any issue until other plugins like

RE: docs for Apache Maven IDE Integration

2019-11-12 Thread Eric Barboni
Hi, Antonio did some migration script long time ago, but they are filtering devFaq. Maybe we should run for all former wiki page once (not sure how to capture them all), and the "remove" wiki on netbeans.org. Regards Eric -Message d'origine- De : John Mc Envoyé : mardi 12

Re: docs for Apache Maven IDE Integration

2019-11-12 Thread John Mc
I submitted a PR there for it now. The link is still the old one as I couldn't find that page in https://github.com/apache/netbeans-website. @Antonio, would you know where this page(http://wiki.netbeans.org/Maven) might be located in our website setup at all? Regards John On Tue, 12 Nov 2019

Re: docs for Apache Maven IDE Integration

2019-11-12 Thread Ernie Rael
On 11/11/2019 11:35 PM, Geertjan Wielenga wrote: Great, makes sense, make it happen. :-) Happy to review and provide feedback, I haven't used NB for 5 years, and have never used maven (before this week). I might be able to produce some attractive information within a year. But I wouldn't