Re: Netbeans c++ module source zip

2019-09-13 Thread Siddhesh Rane
Thanks a lot Emilian! Siddhesh Rane September 13, 2019 9:25 PM, "Emilian Bold" wrote: > https://github.com/emilianbold/netbeans-releases > > --emi > > vin., 13 sept. 2019, 12:40 Siddhesh Rane a scris: > >> I wanted to work on the cnd module but fetching the source from mercurial >> repo ha

Re: bits.netbeans.org vs netbeans.apache.org

2019-09-13 Thread Greg Stein
Sure thing! ... Lemme do some reading of the mail archives. Will follow up. Cheers, Greg Stein Infrastructure Administrator, ASF On Fri, Sep 13, 2019, 14:23 David Nalley wrote: > Greg, > > Can you find a time next week to clarify what we can (or can't) do to > minimize the project's pain point

Re: bits.netbeans.org vs netbeans.apache.org

2019-09-13 Thread David Nalley
Greg, Can you find a time next week to clarify what we can (or can't) do to minimize the project's pain points? --David On Fri, Sep 13, 2019 at 11:46 AM Neil C Smith wrote: > On Fri, 13 Sep 2019, 11:47 Eric Barboni, wrote: > > > Would be nice, but I don’t remember the discussion that allow to

11.2 Freeze is in the corner! PR Reviews are needed!

2019-09-13 Thread Laszlo Kishalmi
Dear all, Please whoever can spare a minute or two to review a few PR-s. For me this one is quite important: https://github.com/apache/netbeans/pull/1483 It allows me to add more unit testing on Gradle Project support (which is much needed), but it also raises the required Java Compile level

Re: bits.netbeans.org vs netbeans.apache.org

2019-09-13 Thread Neil C Smith
On Fri, 13 Sep 2019, 11:47 Eric Barboni, wrote: > Would be nice, but I don’t remember the discussion that allow to do that. > It might have been something that came up in a video chat a few of us had with infra people about transitioning of websites, etc. It was a while ago now, but at some poin

Re: Maven experiment

2019-09-13 Thread Tim Boudreau
I put some of them that I find useful and know to be working on my update server, which anyone can use: https://timboudreau.com/modules/ For the rest, yeah, just clone and build and install the resulting nbms. -Tim

Re: updating the interface for a module or java file..

2019-09-13 Thread Tim Boudreau
The approach NetBeans has used for that historically has been to remove the thing in question, and then use build-time bytecode patching to put it back, so it no longer appears in documentation, but existing code that depends on it will not be broken. -Tim

Re: Have we got any *runtime* performance tests?

2019-09-13 Thread Tim Boudreau
Not yet, so all my evidence is anecdotal. What I was trying to figure out was whether or not there are any preexisting runtime performance tests I could just run and compare. I know at some point in time we had some. I have been running with the patches now for over a month with no troubles or u

Re: Project Problems on netbeans code: Missing Dependencies

2019-09-13 Thread Matthias Bläsing
Hi, Am Freitag, den 13.09.2019, 12:11 -0500 schrieb Eric Bresie: > A small follow up...do folks tend to build netbeans external to netbeans > (i.e. command prompt) or do so within Netbeans itself? I can only speak for myself, but I build netbeans as a whole and then open the module I want to work

Re: Project Problems on netbeans code: Missing Dependencies

2019-09-13 Thread Eric Bresie
A small follow up...do folks tend to build netbeans external to netbeans (i.e. command prompt) or do so within Netbeans itself? Eric Bresie ebre...@gmail.com http://www.linkedin.com/in/ebresie On Fri, Sep 13, 2019 at 7:42 AM Matthias Bläsing wrote: > Hi Eric, > > Am Freitag, den 13.09.2019, 07

Re: Packaging JRE in RCP installer

2019-09-13 Thread Oliver Rettig
Hi all, very thanks to figure it out and solve this old problem. best regards Oliver > Christian, the bitness of cleaner.exe makes absolutely no difference > to your aim of enforcing 64Bit. I do not plan to change anything > buildwise, only the C code, meaning it will still be a 32 bit > executable

Re: Netbeans c++ module source zip

2019-09-13 Thread Emilian Bold
https://github.com/emilianbold/netbeans-releases --emi vin., 13 sept. 2019, 12:40 Siddhesh Rane a scris: > I wanted to work on the cnd module but fetching the source from mercurial > repo has taken hours and not yet completed. > If anyone knows a way to get the whole source code in zip format (

AW: AW: Creating code hints, fixes, suggestions, rules, etc.

2019-09-13 Thread Christian Lenz
Thx Laszlo, I can have a look too, but again this is Java and for Java, we have this tutorial how to do that Right, like a documenation: https://platform.netbeans.org/tutorials/nbm-java-hint.html. So this is not the Problem to extend Java. Ok Maybe when I go deeper, I will have the same Problem

Re: AW: Creating code hints, fixes, suggestions, rules, etc.

2019-09-13 Thread Laszlo Kishalmi
Check this PR for start, it seems really minimal, a complete new module for Ant error hint: https://github.com/apache/netbeans/pull/1487 On 9/13/19 6:02 AM, Christian Lenz wrote: This is a general question of how hints/fixes works and how to start. My cases should be clear enough that „someone

Re: Autocomplete Classpath lost?

2019-09-13 Thread Scott Palmer
> On Sep 13, 2019, at 9:07 AM, Scott Palmer wrote: > > >> On Sep 11, 2019, at 12:12 AM, Laszlo Kishalmi >> wrote: >> >> That might be as in NETBEANS-2661 we did not find the root cause: "How the >> JavaSE libraries got end up searching inside the NetBeans installation." >> >> The patch w

Re: Creating code hints, fixes, suggestions, rules, etc.

2019-09-13 Thread Geertjan Wielenga
Start by looking in NetBeans and identify a hint in the IDE that is similar to the one that you want to create. Each hint is well isolated in the source code, so once you know a hint that is similar to the one you’d like to create, find it in the source code, copy it, and tweak it to do what you’d

Re: Autocomplete Classpath lost?

2019-09-13 Thread Scott Palmer
> On Sep 11, 2019, at 12:12 AM, Laszlo Kishalmi > wrote: > > That might be as in NETBEANS-2661 we did not find the root cause: "How the > JavaSE libraries got end up searching inside the NetBeans installation." > > The patch was optimizing the query few layer above. > > BTW, Scott can you g

AW: Creating code hints, fixes, suggestions, rules, etc.

2019-09-13 Thread Christian Lenz
This is a general question of how hints/fixes works and how to start. My cases should be clear enough that „someone“ could help me here please who created hints before for Editors that are not Java. Again, I would like to add hints to editors of HTML/CSS/SCSS/JS. Use cases were also added. Let

Re: Creating code hints, fixes, suggestions, rules, etc.

2019-09-13 Thread Geertjan Wielenga
It’s going to need to be a case of you reading the source code and taking it from there. Gj On Fri, 13 Sep 2019 at 14:53, Christian Lenz wrote: > Hey all, > > would like to ping this topic up again, due to I think that some People > already knows the differences and can help here to help me, to

Creating code hints, fixes, suggestions, rules, etc.

2019-09-13 Thread Christian Lenz
Hey all, would like to ping this topic up again, due to I think that some People already knows the differences and can help here to help me, to contribute more to NetBeans 😉. Otherwise please point me to the right person who can help here. Cheers Chris Von: Christian Lenz Gesendet: Freitag

Re: Project Problems on netbeans code: Missing Dependencies

2019-09-13 Thread Matthias Bläsing
Hi Eric, Am Freitag, den 13.09.2019, 07:36 -0500 schrieb Eric Bresie: > While trying to start coding with fresh 11.1 netbeans (with open jdk 12 set > as JDK in etc\netbeans.conf), bringing in the netbeans source, after it > started scanning the projects, it found a number of "Project Problems" > w

Project Problems on netbeans code: Missing Dependencies

2019-09-13 Thread Eric Bresie
While trying to start coding with fresh 11.1 netbeans (with open jdk 12 set as JDK in etc\netbeans.conf), bringing in the netbeans source, after it started scanning the projects, it found a number of "Project Problems" which include in many cases missing file/folders like jetty-6.02.jar, junit-4.12

Re: Netbeans c++ module source zip

2019-09-13 Thread Geertjan Wielenga
Recommend you get it from here using hg: https://hg.netbeans.org/releases/file Gj On Fri, Sep 13, 2019 at 2:05 PM Siddhesh Rane wrote: > Netbeans-3040 "Diff to feature does not work for remote files in C/C++" > This is one big that I have reported so far. There are others as well. > > There are

Re: Netbeans c++ module source zip

2019-09-13 Thread Siddhesh Rane
Netbeans-3040 "Diff to feature does not work for remote files in C/C++" This is one big that I have reported so far. There are others as well. There are many some features that I have described on the mailing list before, such as jump hops support in ssh but for starters, I just wanted to add ab

Re: Netbeans c++ module source zip

2019-09-13 Thread Geertjan Wielenga
Which bugs and which features are we talking about? Gj On Fri, Sep 13, 2019 at 1:14 PM Siddhesh Rane wrote: > I wanted to fix some bugs in the C/C++ module and add some features. So i > tried to get the source code from hg.netbeans.org/cnd-main. Cloning with > mercurial takes long time and fail

Re: Netbeans c++ module source zip

2019-09-13 Thread Siddhesh Rane
I wanted to fix some bugs in the C/C++ module and add some features. So i tried to get the source code from hg.netbeans.org/cnd-main. Cloning with mercurial takes long time and fails. I searched online but could not find any shallow cloning. Basically I need the current source code for cnd mod

RE: bits.netbeans.org vs netbeans.apache.org

2019-09-13 Thread Eric Barboni
Would be nice, but I don’t remember the discussion that allow to do that. Regards Eric -Message d'origine- De : Neil C Smith Envoyé : vendredi 13 septembre 2019 11:04 À : dev Objet : Re: bits.netbeans.org vs netbeans.apache.org On Fri, 13 Sep 2019, 09:31 Jean-Marc Borer, wrote: > So

Re: Netbeans c++ module source zip

2019-09-13 Thread Geertjan Wielenga
What specifically do you want to work on? Gj On Fri, 13 Sep 2019 at 11:40, Siddhesh Rane wrote: > I wanted to work on the cnd module but fetching the source from mercurial > repo has taken hours and not yet completed. > If anyone knows a way to get the whole source code in zip format (without >

Netbeans c++ module source zip

2019-09-13 Thread Siddhesh Rane
I wanted to work on the cnd module but fetching the source from mercurial repo has taken hours and not yet completed. If anyone knows a way to get the whole source code in zip format (without any history) please share. I'm aware that Oracle is reviewing cnd sources in 4th code donation but I th

Re: bits.netbeans.org vs netbeans.apache.org

2019-09-13 Thread Neil C Smith
On Fri, 13 Sep 2019, 09:31 Jean-Marc Borer, wrote: > So Emilian, do you take the token and move, at least, all Maven and Javadoc > for 8.2 to OSUOSL? > Shouldn't we be putting Maven artefacts on Maven Central rather than OSUOSL? Best wishes, Neil >

Re: bits.netbeans.org vs netbeans.apache.org

2019-09-13 Thread Jean-Marc Borer
So Emilian, do you take the token and move, at least, all Maven and Javadoc for 8.2 to OSUOSL? Greetings On Thu, Sep 12, 2019 at 5:50 PM Geertjan Wielenga wrote: > Fair enough, whatever works. :-) > > Gj > > On Thu, 12 Sep 2019 at 19:34, Matthias Bläsing > wrote: > > > Hi Geertjan, > > > > Am