Re: Netbeans c++ module source zip
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 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 >> think it might take atleast a month before the sources land in Apache repo. >> >> Regards >> Siddhesh Rane >> >> - >> To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org >> For additional commands, e-mail: dev-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: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: bits.netbeans.org vs netbeans.apache.org
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 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 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 point there has been discussion about maintaining access >> to legacy artefacts, and how other Apache projects have handled this. IMO >> we should at least check if this is possible as a first option. >> >> Best wishes, >> >> Neil >> >> > >> >
Re: bits.netbeans.org vs netbeans.apache.org
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 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 point there has been discussion about maintaining access > to legacy artefacts, and how other Apache projects have handled this. IMO > we should at least check if this is possible as a first option. > > Best wishes, > > Neil > > > >
11.2 Freeze is in the corner! PR Reviews are needed!
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 on some of the core modules to 1.8. I do not think that would be a real issue, maybe even welcome, but a few more eyes to look at that would be nice. Also please merge the approved PR-s! Thank you, Laszlo Kishalmi - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: bits.netbeans.org vs netbeans.apache.org
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 point there has been discussion about maintaining access to legacy artefacts, and how other Apache projects have handled this. IMO we should at least check if this is possible as a first option. Best wishes, Neil >
Re: Maven experiment
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..
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?
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 unusual behavior. I had to do a smidgen further patching (NIO streams will fire a ClosedByInterruptException if you try to use them with the current thread's Interrupted flag set), and if you expand a folder with thousands of unrecognized files, you can get a "too many open files" FileSystemException, easily dealt with by just closing 1/4 of the cache's open streams and retrying. It does occur to me that this might not play nicely at all with Windows' automatic file-locking, and might have to be disabled for windows. I was not able to get using the existence of an open stream (even touching it to ensure accuracy) as a substitute for File.exists() to behave similarly enough for tests to pass, though this may be an artifact of the tests, not the approach. -Tim On Thu, Sep 12, 2019 at 9:45 AM Jean-Marc Borer wrote: > Hi Tim, > > If file access is improved that may also improve indexing and by > consequence symbol finding or refactoring. Did you try such operations to > check the difference in speed? > > Cheers, > > JMB > > On Sun, Aug 18, 2019 at 8:47 AM Tim Boudreau wrote: > > > I've been playing with some tweaks to masterfs - specifically, I had a > > library i wrote for a completely different purpose, which keeps a cache > of > > open NIO FileChannels. Partly out of curiosity, and partly because I've > > wondered for a while what using NIO more for File IO in NetBeans might > > accomplish, I dropped it into masterfs. > > > > Basically, opening a file opens a file channel (the cache key includes > the > > read/write/truncate options), which is cached, and closed after 60 > seconds > > if it has not been touched. Input and output streams just take a lock on > > the stream, set its state back to what it was when they last touched it, > > and then release the lock. > > > > Subjective impression, after running with these patches for about a week > is > > that my machine is quieter and the IDE snappier - which makes some sense, > > since simply editing a file can trigger a bunch of reads of related file, > > so this is dramatically reducing interaction with the OS (in the back of > my > > mind, I'm wondering if some of the Windows file-stat performance problems > > could be bypassed by checking if an open channel exists for some file - > > thought you might need to at least try to position the channel to trigger > > the IDE noticing if it had been deleted and the channel was invalid). > > > > What would be useful to actually measure if my perception matches reality > > would be some performance tests (not startup performance!!) that open a > > large number of projects and files, perform edits, switch between things, > > and take timings for those operations. I have the vague sense that such > > might exist from one or another round of performance tuning years ago, > but > > I have no idea where. > > > > Any ideas? > > > > If anyone wants to play with this stuff, it's on the nio-mfs branch of my > > fork here: > > https://github.com/timboudreau/incubator-netbeans/tree/nio-mfs > > > > (for the time being I just copied the code from three libraries of mine > > that live elsewhere; ideally they would be used as libraries instead, > but > > it was a quick bit of patching to see if it was even useful to try this) > > > > -Tim > > > > -- > > http://timboudreau.com > > > -- http://timboudreau.com
Re: Project Problems on netbeans code: Missing Dependencies
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 on and build/debug it from the GUI. So it is a hybrid approach. Greetings Matthias - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Project Problems on netbeans code: Missing Dependencies
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: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" > > which include in many cases missing file/folders like jetty-6.02.jar, > > junit-4.12.jar, servlet-api-2.5-6.0.2.jar, jetty-util-6.0.2.jar > > > > I ended up finding, downloading, and resolving the problems by manually > > associated the location, but I was wondering if there is something in my > > setup that is not quite right which fails to download these dependencies > > automatically in some way. Doing this manually while doable, didn't seem > > like it was quite right. > > building netbeans once will fix it. But this should also do it: > > ant download-all-extbins > > This will initialize all binaries referenced from binaries-list in > external folders. > > HTH > > Matthias > > > - > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-h...@netbeans.apache.org > > For further information about the NetBeans mailing lists, visit: > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > >
Re: Packaging JRE in RCP installer
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. In fact I dread if I would have to look into the build > system in Apache NetBeans of this thing. :-) > > On Fri, Sep 13, 2019 at 6:41 AM Emilian Bold wrote: > > > @Emilian Bold: Where would I document? Please point me in right > > > > direction. Thanks. > > > > I see these pages https://netbeans.apache.org/wiki/index.asciidoc are > > on GitHub here > > https://github.com/apache/netbeans-website/tree/master/netbeans.apache.or > > g/src/content/wiki > > > > So you could make a PR against GitHub. > > > > > not that there should be any reason to be running a > > > > 32bit version of Windows in 2019 > > > > I thought the same, but the brand new laptop I bought for codesigning > > CoolBeans came with a 32-bit Windows although it had a 64bit > > processor. I also had some vocal user complain about the lack of 32bit > > builds. > > > > There are very few downloads though... only 3% of the total. > > > > --emi > > > > On Fri, Sep 13, 2019 at 3:11 AM Christian Oyarzun wrote: > > > Lars, > > > > > > Is the plan to continue to keep the cleaner as a 32bit exe? > > > > > > $ file cleaner.exe > > > cleaner.exe: PE32 executable (GUI) Intel 80386, for MS Windows > > > > > > The nlw.exe executable was built as a 64bit exe, which used to be 32bit > > > in > > > previous NetBeans releases. This would prevent using the NBI to create a > > > package that > > > runs on 32bit Windows (not that there should be any reason to be running > > > a > > > 32bit version of Windows in 2019). > > > > > > $ file nlw.exe > > > nlw.exe: PE32+ executable (GUI) x86-64 (stripped to external PDB), for > > > MS > > > Windows > > > > > > This is actually what lead me down the path of embedding the JVM in the > > > installer since 64bit installer will not find a JRE if there is only a > > > 32bit JVM installed on Windows. > > > It could be worked around by using the --javahome command line option, > > > but > > > embedding it provides a better user experience. > > > > > > --Christian > > > > > > > > > > > > On Thu, Sep 12, 2019 at 4:05 PM Lars Bruun-Hansen > > > > > > > > > wrote: > > > > I've filed a Jira ticket : > > > > https://issues.apache.org/jira/browse/NETBEANS-3094 > > > > with the aim to change the C code for the cleaner.exe to be able to > > > > delete read-only files too. It is rather trivial. I've assigned it to
Re: Netbeans c++ module source zip
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 (without > any history) please share. > > I'm aware that Oracle is reviewing cnd sources in 4th code donation but I > think it might take atleast a month before the sources land in Apache repo. > > Regards > Siddhesh Rane > > - > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-h...@netbeans.apache.org > > For further information about the NetBeans mailing lists, visit: > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > >
AW: AW: Creating code hints, fixes, suggestions, rules, etc.
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 Problems with understanding the concepts behind Hints/Fixes/Suggestions etc. I collected my stuff, that I found out while Looking into the PR of Junichi for converting functions into arrow functions in PHP, in slack: https://netbeans.slack.com/archives/C2SJESNKD/p1568389036027100 Von: Laszlo Kishalmi Gesendet: Freitag, 13. September 2019 17:31 An: dev@netbeans.apache.org Betreff: Re: AW: Creating code hints, fixes, suggestions, rules, etc. 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“ 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 me be a person who is new to exact this topic (who I > am), only want to add hints to those editors those are not Java. For Java > there is a tutorial which is not working for others in exact the same way. So > how can I start to create hints for those other editors? Also hints for those > other editors are not working as 3rd Party w/o beeing friend or w/o using > yenta, just FYI. I need a step by step guide as we have it for the LSP > implementation and Textmate implementatiuon, that you wrote in the blog. That > was clear and easy to understand with provided steps to implement. > > > > Von: Geertjan Wielenga > Gesendet: Freitag, 13. September 2019 14:55 > An: dev@netbeans.apache.org > Betreff: Re: Creating code hints, fixes, suggestions, rules, etc. > > 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 contribute >> more to NetBeans 😉. Otherwise please point me to the right person who can >> help here. >> >> >> Cheers >> >> Chris >> >> >> >> Von: Christian Lenz >> Gesendet: Freitag, 6. September 2019 14:46 >> An: dev@netbeans.apache.org >> Betreff: Creating code hints, fixes, suggestions, rules, etc. >> >> Dear all, >> >> due to missing hints + fixes which makes the live easier for developers, >> in editors which are not Java, I want to implement some HTML/CSS/SCSS/JS >> hints. >> >> I looked into the netbeans code and there are Hint classes, Rule classes >> and I think HintRule and Fix and Suggestion classes and I don't know how to >> start and what the differences are between them. >> I read this tutorial: >> https://platform.netbeans.org/tutorials/nbm-java-hint.html but it seems >> that hints/fixes for Java are bit different, there is a JavaFix class and >> we use some annotations. So to tell you my story, I want to create hints + >> fixes into the editor of HTML, CSS/SCSS/LESS and JS. I looked into the code >> of existing CSS/HTML hints but they are not consistent, they are using >> HintRule classes and sometimes other classes. So to start I need to know >> what is a Hint, what is a Rule, what is a Fix, what is a Suggestion, etc. >> So a clean tutorial about the differences of them and how which class is >> the best to extend the functionality. >> >> Some more cases: >> - sometimes hints w/o fixes doesn’t make sense. >> - sometimes I want to have hints that are shown, when I open the file and >> sometimes only at a specific context when my cursor is there to not >> overload the whole file with hints/suggestions, etc. >> >> Concrete examples for JS: >> - convert anonymous function into arrow function (hint + fix) >> - change var to let or const (2 fixes, one hint) >> - convert require to Import (hint + fix) >> - convert strings to ES6 string literals (hint + fix) >> - change order of Imports alphabetically or in an other order (hint + fix) >> - etc. >> >> Concrete examples for scss (some of them are relevant for CSS too, but not >> all): >> - convert from px to em and vice versa (hint + fix where the Cursor is) >> - convert selected value into a variable (hint + fix, when value is >> selected) >> - convert block into a mixin (hint + fix, when properties, code block and >> values are selected) >> >> Concrete examples for (X)HTML: >> - add missing width+height attributes of an img tag (hint + fix, maybe on >> the same line, when I select the image tag, maybe not) >> - add missing alt attribute of an img tag (hint + fix, Maybe on the same >> line, when I select the image tag, Maybe not) >> - etc. >> >> I don’t want to discuss wh
Re: AW: Creating code hints, fixes, suggestions, rules, etc.
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“ 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 me be a person who is new to exact this topic (who I am), only want to add hints to those editors those are not Java. For Java there is a tutorial which is not working for others in exact the same way. So how can I start to create hints for those other editors? Also hints for those other editors are not working as 3rd Party w/o beeing friend or w/o using yenta, just FYI. I need a step by step guide as we have it for the LSP implementation and Textmate implementatiuon, that you wrote in the blog. That was clear and easy to understand with provided steps to implement. Von: Geertjan Wielenga Gesendet: Freitag, 13. September 2019 14:55 An: dev@netbeans.apache.org Betreff: Re: Creating code hints, fixes, suggestions, rules, etc. 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 contribute more to NetBeans 😉. Otherwise please point me to the right person who can help here. Cheers Chris Von: Christian Lenz Gesendet: Freitag, 6. September 2019 14:46 An: dev@netbeans.apache.org Betreff: Creating code hints, fixes, suggestions, rules, etc. Dear all, due to missing hints + fixes which makes the live easier for developers, in editors which are not Java, I want to implement some HTML/CSS/SCSS/JS hints. I looked into the netbeans code and there are Hint classes, Rule classes and I think HintRule and Fix and Suggestion classes and I don't know how to start and what the differences are between them. I read this tutorial: https://platform.netbeans.org/tutorials/nbm-java-hint.html but it seems that hints/fixes for Java are bit different, there is a JavaFix class and we use some annotations. So to tell you my story, I want to create hints + fixes into the editor of HTML, CSS/SCSS/LESS and JS. I looked into the code of existing CSS/HTML hints but they are not consistent, they are using HintRule classes and sometimes other classes. So to start I need to know what is a Hint, what is a Rule, what is a Fix, what is a Suggestion, etc. So a clean tutorial about the differences of them and how which class is the best to extend the functionality. Some more cases: - sometimes hints w/o fixes doesn’t make sense. - sometimes I want to have hints that are shown, when I open the file and sometimes only at a specific context when my cursor is there to not overload the whole file with hints/suggestions, etc. Concrete examples for JS: - convert anonymous function into arrow function (hint + fix) - change var to let or const (2 fixes, one hint) - convert require to Import (hint + fix) - convert strings to ES6 string literals (hint + fix) - change order of Imports alphabetically or in an other order (hint + fix) - etc. Concrete examples for scss (some of them are relevant for CSS too, but not all): - convert from px to em and vice versa (hint + fix where the Cursor is) - convert selected value into a variable (hint + fix, when value is selected) - convert block into a mixin (hint + fix, when properties, code block and values are selected) Concrete examples for (X)HTML: - add missing width+height attributes of an img tag (hint + fix, maybe on the same line, when I select the image tag, maybe not) - add missing alt attribute of an img tag (hint + fix, Maybe on the same line, when I select the image tag, Maybe not) - etc. I don’t want to discuss wheter all of them are useful or not, in my case they are and also very handy. So I only need help here to understand the logic to create those missing features and a lot more. Cheers Chris - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Autocomplete Classpath lost?
> 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 was optimizing the query few layer above. >> >> BTW, Scott can you give a try to the latest development build? > > Yes. I will switch to dev builds and see if things improve. > > Cheers, > > Scott > This doesn’t look like NETBEANS-2661 to me. That is about performance. When this issue is happening for me, the auto-complete (or failure of it) is quick. I also have occasional issues with very poor performance of find usages, auto-complete etc. but not in this case. Scott - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Creating code hints, fixes, suggestions, rules, etc.
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 like it to do and register it similarly to how the hint you’re referring to is registered. Gj On Fri, 13 Sep 2019 at 15:02, 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“ 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 me be a person who is new to exact this topic (who I > am), only want to add hints to those editors those are not Java. For Java > there is a tutorial which is not working for others in exact the same way. > So how can I start to create hints for those other editors? Also hints for > those other editors are not working as 3rd Party w/o beeing friend or w/o > using yenta, just FYI. I need a step by step guide as we have it for the > LSP implementation and Textmate implementatiuon, that you wrote in the > blog. That was clear and easy to understand with provided steps to > implement. > > > > Von: Geertjan Wielenga > Gesendet: Freitag, 13. September 2019 14:55 > An: dev@netbeans.apache.org > Betreff: Re: Creating code hints, fixes, suggestions, rules, etc. > > 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 contribute > > more to NetBeans 😉. Otherwise please point me to the right person who > can > > help here. > > > > > > Cheers > > > > Chris > > > > > > > > Von: Christian Lenz > > Gesendet: Freitag, 6. September 2019 14:46 > > An: dev@netbeans.apache.org > > Betreff: Creating code hints, fixes, suggestions, rules, etc. > > > > Dear all, > > > > due to missing hints + fixes which makes the live easier for developers, > > in editors which are not Java, I want to implement some HTML/CSS/SCSS/JS > > hints. > > > > I looked into the netbeans code and there are Hint classes, Rule classes > > and I think HintRule and Fix and Suggestion classes and I don't know how > to > > start and what the differences are between them. > > I read this tutorial: > > https://platform.netbeans.org/tutorials/nbm-java-hint.html but it seems > > that hints/fixes for Java are bit different, there is a JavaFix class and > > we use some annotations. So to tell you my story, I want to create hints > + > > fixes into the editor of HTML, CSS/SCSS/LESS and JS. I looked into the > code > > of existing CSS/HTML hints but they are not consistent, they are using > > HintRule classes and sometimes other classes. So to start I need to know > > what is a Hint, what is a Rule, what is a Fix, what is a Suggestion, etc. > > So a clean tutorial about the differences of them and how which class is > > the best to extend the functionality. > > > > Some more cases: > > - sometimes hints w/o fixes doesn’t make sense. > > - sometimes I want to have hints that are shown, when I open the file and > > sometimes only at a specific context when my cursor is there to not > > overload the whole file with hints/suggestions, etc. > > > > Concrete examples for JS: > > - convert anonymous function into arrow function (hint + fix) > > - change var to let or const (2 fixes, one hint) > > - convert require to Import (hint + fix) > > - convert strings to ES6 string literals (hint + fix) > > - change order of Imports alphabetically or in an other order (hint + > fix) > > - etc. > > > > Concrete examples for scss (some of them are relevant for CSS too, but > not > > all): > > - convert from px to em and vice versa (hint + fix where the Cursor is) > > - convert selected value into a variable (hint + fix, when value is > > selected) > > - convert block into a mixin (hint + fix, when properties, code block and > > values are selected) > > > > Concrete examples for (X)HTML: > > - add missing width+height attributes of an img tag (hint + fix, maybe on > > the same line, when I select the image tag, maybe not) > > - add missing alt attribute of an img tag (hint + fix, Maybe on the same > > line, when I select the image tag, Maybe not) > > - etc. > > > > I don’t want to discuss wheter all of them are useful or not, in my case > > they are and also very handy. So I only need help here to understand the > > logic to create those missing features and a lot more. > > > > > > Cheers > > > > Chris > > > > > >
Re: Autocomplete Classpath lost?
> 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 give a try to the latest development build? Yes. I will switch to dev builds and see if things improve. Cheers, Scott - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
AW: Creating code hints, fixes, suggestions, rules, etc.
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 me be a person who is new to exact this topic (who I am), only want to add hints to those editors those are not Java. For Java there is a tutorial which is not working for others in exact the same way. So how can I start to create hints for those other editors? Also hints for those other editors are not working as 3rd Party w/o beeing friend or w/o using yenta, just FYI. I need a step by step guide as we have it for the LSP implementation and Textmate implementatiuon, that you wrote in the blog. That was clear and easy to understand with provided steps to implement. Von: Geertjan Wielenga Gesendet: Freitag, 13. September 2019 14:55 An: dev@netbeans.apache.org Betreff: Re: Creating code hints, fixes, suggestions, rules, etc. 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 contribute > more to NetBeans 😉. Otherwise please point me to the right person who can > help here. > > > Cheers > > Chris > > > > Von: Christian Lenz > Gesendet: Freitag, 6. September 2019 14:46 > An: dev@netbeans.apache.org > Betreff: Creating code hints, fixes, suggestions, rules, etc. > > Dear all, > > due to missing hints + fixes which makes the live easier for developers, > in editors which are not Java, I want to implement some HTML/CSS/SCSS/JS > hints. > > I looked into the netbeans code and there are Hint classes, Rule classes > and I think HintRule and Fix and Suggestion classes and I don't know how to > start and what the differences are between them. > I read this tutorial: > https://platform.netbeans.org/tutorials/nbm-java-hint.html but it seems > that hints/fixes for Java are bit different, there is a JavaFix class and > we use some annotations. So to tell you my story, I want to create hints + > fixes into the editor of HTML, CSS/SCSS/LESS and JS. I looked into the code > of existing CSS/HTML hints but they are not consistent, they are using > HintRule classes and sometimes other classes. So to start I need to know > what is a Hint, what is a Rule, what is a Fix, what is a Suggestion, etc. > So a clean tutorial about the differences of them and how which class is > the best to extend the functionality. > > Some more cases: > - sometimes hints w/o fixes doesn’t make sense. > - sometimes I want to have hints that are shown, when I open the file and > sometimes only at a specific context when my cursor is there to not > overload the whole file with hints/suggestions, etc. > > Concrete examples for JS: > - convert anonymous function into arrow function (hint + fix) > - change var to let or const (2 fixes, one hint) > - convert require to Import (hint + fix) > - convert strings to ES6 string literals (hint + fix) > - change order of Imports alphabetically or in an other order (hint + fix) > - etc. > > Concrete examples for scss (some of them are relevant for CSS too, but not > all): > - convert from px to em and vice versa (hint + fix where the Cursor is) > - convert selected value into a variable (hint + fix, when value is > selected) > - convert block into a mixin (hint + fix, when properties, code block and > values are selected) > > Concrete examples for (X)HTML: > - add missing width+height attributes of an img tag (hint + fix, maybe on > the same line, when I select the image tag, maybe not) > - add missing alt attribute of an img tag (hint + fix, Maybe on the same > line, when I select the image tag, Maybe not) > - etc. > > I don’t want to discuss wheter all of them are useful or not, in my case > they are and also very handy. So I only need help here to understand the > logic to create those missing features and a lot more. > > > Cheers > > Chris > >
Re: Creating code hints, fixes, suggestions, rules, etc.
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 contribute > more to NetBeans 😉. Otherwise please point me to the right person who can > help here. > > > Cheers > > Chris > > > > Von: Christian Lenz > Gesendet: Freitag, 6. September 2019 14:46 > An: dev@netbeans.apache.org > Betreff: Creating code hints, fixes, suggestions, rules, etc. > > Dear all, > > due to missing hints + fixes which makes the live easier for developers, > in editors which are not Java, I want to implement some HTML/CSS/SCSS/JS > hints. > > I looked into the netbeans code and there are Hint classes, Rule classes > and I think HintRule and Fix and Suggestion classes and I don't know how to > start and what the differences are between them. > I read this tutorial: > https://platform.netbeans.org/tutorials/nbm-java-hint.html but it seems > that hints/fixes for Java are bit different, there is a JavaFix class and > we use some annotations. So to tell you my story, I want to create hints + > fixes into the editor of HTML, CSS/SCSS/LESS and JS. I looked into the code > of existing CSS/HTML hints but they are not consistent, they are using > HintRule classes and sometimes other classes. So to start I need to know > what is a Hint, what is a Rule, what is a Fix, what is a Suggestion, etc. > So a clean tutorial about the differences of them and how which class is > the best to extend the functionality. > > Some more cases: > - sometimes hints w/o fixes doesn’t make sense. > - sometimes I want to have hints that are shown, when I open the file and > sometimes only at a specific context when my cursor is there to not > overload the whole file with hints/suggestions, etc. > > Concrete examples for JS: > - convert anonymous function into arrow function (hint + fix) > - change var to let or const (2 fixes, one hint) > - convert require to Import (hint + fix) > - convert strings to ES6 string literals (hint + fix) > - change order of Imports alphabetically or in an other order (hint + fix) > - etc. > > Concrete examples for scss (some of them are relevant for CSS too, but not > all): > - convert from px to em and vice versa (hint + fix where the Cursor is) > - convert selected value into a variable (hint + fix, when value is > selected) > - convert block into a mixin (hint + fix, when properties, code block and > values are selected) > > Concrete examples for (X)HTML: > - add missing width+height attributes of an img tag (hint + fix, maybe on > the same line, when I select the image tag, maybe not) > - add missing alt attribute of an img tag (hint + fix, Maybe on the same > line, when I select the image tag, Maybe not) > - etc. > > I don’t want to discuss wheter all of them are useful or not, in my case > they are and also very handy. So I only need help here to understand the > logic to create those missing features and a lot more. > > > Cheers > > Chris > >
Creating code hints, fixes, suggestions, rules, etc.
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, 6. September 2019 14:46 An: dev@netbeans.apache.org Betreff: Creating code hints, fixes, suggestions, rules, etc. Dear all, due to missing hints + fixes which makes the live easier for developers, in editors which are not Java, I want to implement some HTML/CSS/SCSS/JS hints. I looked into the netbeans code and there are Hint classes, Rule classes and I think HintRule and Fix and Suggestion classes and I don't know how to start and what the differences are between them. I read this tutorial: https://platform.netbeans.org/tutorials/nbm-java-hint.html but it seems that hints/fixes for Java are bit different, there is a JavaFix class and we use some annotations. So to tell you my story, I want to create hints + fixes into the editor of HTML, CSS/SCSS/LESS and JS. I looked into the code of existing CSS/HTML hints but they are not consistent, they are using HintRule classes and sometimes other classes. So to start I need to know what is a Hint, what is a Rule, what is a Fix, what is a Suggestion, etc. So a clean tutorial about the differences of them and how which class is the best to extend the functionality. Some more cases: - sometimes hints w/o fixes doesn’t make sense. - sometimes I want to have hints that are shown, when I open the file and sometimes only at a specific context when my cursor is there to not overload the whole file with hints/suggestions, etc. Concrete examples for JS: - convert anonymous function into arrow function (hint + fix) - change var to let or const (2 fixes, one hint) - convert require to Import (hint + fix) - convert strings to ES6 string literals (hint + fix) - change order of Imports alphabetically or in an other order (hint + fix) - etc. Concrete examples for scss (some of them are relevant for CSS too, but not all): - convert from px to em and vice versa (hint + fix where the Cursor is) - convert selected value into a variable (hint + fix, when value is selected) - convert block into a mixin (hint + fix, when properties, code block and values are selected) Concrete examples for (X)HTML: - add missing width+height attributes of an img tag (hint + fix, maybe on the same line, when I select the image tag, maybe not) - add missing alt attribute of an img tag (hint + fix, Maybe on the same line, when I select the image tag, Maybe not) - etc. I don’t want to discuss wheter all of them are useful or not, in my case they are and also very handy. So I only need help here to understand the logic to create those missing features and a lot more. Cheers Chris
Re: Project Problems on netbeans code: Missing Dependencies
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" > which include in many cases missing file/folders like jetty-6.02.jar, > junit-4.12.jar, servlet-api-2.5-6.0.2.jar, jetty-util-6.0.2.jar > > I ended up finding, downloading, and resolving the problems by manually > associated the location, but I was wondering if there is something in my > setup that is not quite right which fails to download these dependencies > automatically in some way. Doing this manually while doable, didn't seem > like it was quite right. building netbeans once will fix it. But this should also do it: ant download-all-extbins This will initialize all binaries referenced from binaries-list in external folders. HTH Matthias - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Project Problems on netbeans code: Missing Dependencies
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.jar, servlet-api-2.5-6.0.2.jar, jetty-util-6.0.2.jar I ended up finding, downloading, and resolving the problems by manually associated the location, but I was wondering if there is something in my setup that is not quite right which fails to download these dependencies automatically in some way. Doing this manually while doable, didn't seem like it was quite right. Eric Bresie ebre...@gmail.com
Re: Netbeans c++ module source zip
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 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 ability to select multiple files for the remote file open window. > > Siddhesh Rane > > > September 13, 2019 5:03 PM, "Geertjan Wielenga" > wrote: > > > 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 fails. I searched online but could not > find > >> any shallow cloning. > >> > >> Basically I need the current source code for cnd module without > gigabytes > >> of history. If someone has already created a bitbucket or github repo > for > >> it, then that is fine as well. > >> > >> Regards > >> Siddhesh Rane > >> > >> September 13, 2019 3:31 PM, "Geertjan Wielenga" > >> wrote: > >> > >> 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 > >> any history) please share. > >> > >> I'm aware that Oracle is reviewing cnd sources in 4th code donation but > >> I > >> think it might take atleast a month before the sources land in Apache > >> repo. > >> > >> Regards > >> Siddhesh Rane > >> > >> - > >> To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > >> For additional commands, e-mail: dev-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: dev-unsubscr...@netbeans.apache.org > >> For additional commands, e-mail: dev-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: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-h...@netbeans.apache.org > > For further information about the NetBeans mailing lists, visit: > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > >
Re: Netbeans c++ module source zip
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 ability to select multiple files for the remote file open window. Siddhesh Rane September 13, 2019 5:03 PM, "Geertjan Wielenga" wrote: > 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 fails. I searched online but could not find >> any shallow cloning. >> >> Basically I need the current source code for cnd module without gigabytes >> of history. If someone has already created a bitbucket or github repo for >> it, then that is fine as well. >> >> Regards >> Siddhesh Rane >> >> September 13, 2019 3:31 PM, "Geertjan Wielenga" >> wrote: >> >> 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 >> any history) please share. >> >> I'm aware that Oracle is reviewing cnd sources in 4th code donation but >> I >> think it might take atleast a month before the sources land in Apache >> repo. >> >> Regards >> Siddhesh Rane >> >> - >> To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org >> For additional commands, e-mail: dev-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: dev-unsubscr...@netbeans.apache.org >> For additional commands, e-mail: dev-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: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Netbeans c++ module source zip
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 fails. I searched online but could not find > any shallow cloning. > > Basically I need the current source code for cnd module without gigabytes > of history. If someone has already created a bitbucket or github repo for > it, then that is fine as well. > > Regards > Siddhesh Rane > > September 13, 2019 3:31 PM, "Geertjan Wielenga" > wrote: > > > 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 > >> any history) please share. > >> > >> I'm aware that Oracle is reviewing cnd sources in 4th code donation but > I > >> think it might take atleast a month before the sources land in Apache > repo. > >> > >> Regards > >> Siddhesh Rane > >> > >> - > >> To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > >> For additional commands, e-mail: dev-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: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-h...@netbeans.apache.org > > For further information about the NetBeans mailing lists, visit: > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > >
Re: Netbeans c++ module source zip
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 module without gigabytes of history. If someone has already created a bitbucket or github repo for it, then that is fine as well. Regards Siddhesh Rane September 13, 2019 3:31 PM, "Geertjan Wielenga" wrote: > 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 >> any history) please share. >> >> I'm aware that Oracle is reviewing cnd sources in 4th code donation but I >> think it might take atleast a month before the sources land in Apache repo. >> >> Regards >> Siddhesh Rane >> >> - >> To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org >> For additional commands, e-mail: dev-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: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
RE: bits.netbeans.org vs netbeans.apache.org
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 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 > - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Netbeans c++ module source zip
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 > any history) please share. > > I'm aware that Oracle is reviewing cnd sources in 4th code donation but I > think it might take atleast a month before the sources land in Apache repo. > > Regards > Siddhesh Rane > > - > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-h...@netbeans.apache.org > > For further information about the NetBeans mailing lists, visit: > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > >
Netbeans c++ module source zip
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 think it might take atleast a month before the sources land in Apache repo. Regards Siddhesh Rane - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: bits.netbeans.org vs netbeans.apache.org
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
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 Donnerstag, den 12.09.2019, 18:54 +0200 schrieb Geertjan Wielenga: > > > Amount of data is a question of downloading the bits you want and then > > > seeing how large that is. > > > > don't take this wrong, but that approach is the worst way to determine > > the amount of data. Someone with access to the server could do it in > > minutes (invocation of `du -sh` on the CLI are trivial), you don't need > > to transfer GBs of data just to throw them away. > > > > Greetings > > > > Matthias, who remembers times when ISDN (64kbit/s) was blazing fast > > > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > > For additional commands, e-mail: dev-h...@netbeans.apache.org > > > > For further information about the NetBeans mailing lists, visit: > > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > > > > > > >