Re: Code Completion with Python Plugin

2019-01-21 Thread Emilian Bold
Why do you keep resending this email? Clearly there is something with the plugin. Maybe it can't parse your .py file properly. You should contact the plugin authors and report the bug. You could just *try* NetBeans 10 with the plugin and *see* what happens. My guess is that best case scenario it

Re: java home configuration in maven

2019-01-22 Thread Emilian Bold
In Project Properties | Build | Compile you can configure the 'Java Platform' for the project. I see that switching to Java 8 makes the compilation work for me: cd /Users/apache/CoolBeansProjects/deleletmeee; JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_181.jdk/Contents/Home "/Users/apache

Re: Enlarge existing project

2019-01-23 Thread Emilian Bold
So by Java beans you mean beans in Swing forms? Interesting project. Normally if you use layouts properly there's no widths / heights to fix as the layout will adapt to whatever new size the container has. So you start from constants down: hardcoded font sizes, hardcoded positions, dimensions. I

Re: Does JaCoCo 0.8.2 break NetBeans code coverage?

2019-01-23 Thread Emilian Bold
First time I hear about it. Since the comment mentions a simple XML change perhaps we can do a PR? --emi On Thu, 24 Jan 2019 at 00:39, Philip Durbin wrote: > Please see https://github.com/IQSS/dataverse/issues/5483 and > https://github.com/jacoco/jacoco/issues/772 for details but downgrading >

Re: Enlarge existing project

2019-01-24 Thread Emilian Bold
dy modify XML forms but I need that Netbeans > reload all forms (500) to update the java classes. > Manually that works when I do a "reload Form" action for *one* form : I > want to do this automatically for* all* forms ... > > > > > > > De :Emilian Bold

Re: Does JaCoCo 0.8.2 break NetBeans code coverage?

2019-01-26 Thread Emilian Bold
Philip, did you even test this with *any* Apache NetBeans version. This bug only seems to happen in NetBeans 8.2. --emi http://coolbeans.xyz/ - CoolBeans: An IDE for Java, JavaEE, PHP and more! On Sat, Jan 26, 2019 at 10:14 PM Philip Durbin wrote: > > Ok, I created an issue: JaCoCo 0.8.2 break

Re: Does JaCoCo 0.8.2 break NetBeans code coverage?

2019-01-26 Thread Emilian Bold
ing. That's all. --emi On Sun, Jan 27, 2019 at 8:38 AM Emilian Bold wrote: > > Philip, did you even test this with *any* Apache NetBeans version. > This bug only seems to happen in NetBeans 8.2. > > --emi > > http://coolbeans.xyz/ - CoolBeans: An IDE for Java, JavaEE, PH

Re: Cannot execute Netbeans 10.0 platform application openjdk-11 Windows10

2019-02-02 Thread Emilian Bold
So it looks like your exe isn't reading the conf file for some reason. Can you start the app on a Linux machine? Then we see if it's an .exe launcher issue or a general configuration issue you have. --emi On Sat, Feb 2, 2019 at 2:27 PM Helmut Leininger wrote: > > Hi, > > I just found a bypass. I

Re: Can't get XML Schema registration to work

2019-02-07 Thread Emilian Bold
I think Thomas is using a mixed mode? Some schemas are remote but my.xsd is local? --emi On Thu, Feb 7, 2019 at 9:46 PM Stefan Winter wrote: > Hi Thomas, > > I just tried it on my local Netbeans 10 and it works when you make the > System ID a full URL. > > So in your XML put: > > xsi:schemaLo

How to test a NetBeans Platform app? NbTestCase classpath woes

2019-04-25 Thread Emilian Bold
Hello, I'm trying to introduce NbTestCase into a large existing app and I'm getting all kinds of what seem to be class-loader/classpath problems. The whole NbModuleSuite.Configuration is quite limited in what it does and I can't seem to find any combination of settings that starts the application

Re: How to test a NetBeans Platform app? NbTestCase classpath woes

2019-04-26 Thread Emilian Bold
is doesn't solve the classpath problem mentioned initially... --emi On Thu, Apr 25, 2019 at 11:16 AM Emilian Bold wrote: > > Hello, > > I'm trying to introduce NbTestCase into a large existing app and I'm > getting all kinds of what seem to be class-

Re: duplicate project netbeans error, how coud I do it?

2019-05-06 Thread Emilian Bold
Maybe this is the copy action from NetBeans? --emi lun., 6 mai 2019, 10:48 Geertjan Wielenga a scris: > You don't need NetBeans to copy a project, you can just go to your file > system and copy it there. > > Gj > > On Mon, May 6, 2019 at 8:30 AM Luis tuti wrote: > >> Hi, I'm trying to copy a p

Re: [EXT] Re: duplicate project netbeans error, how coud I do it?

2019-05-06 Thread Emilian Bold
g git, and it’s really powerful, so unless you > already have a favorite that you want to use, I suggest you get on board > with git. Netbeans has very good integration with git, so you can do it > from within Netbeans, or you can just go to the command line and run git > commands from

Re: NB Platform Maven Dependencies

2019-05-06 Thread Emilian Bold
I assume this is using Maven Central or the older NetBeans.org maven2 repository? We recently published the Maven Central artefacts, it's possible there is a bug... --emi lun., 6 mai 2019, 20:53 Adam Korynta a scris: > Hi All, > > > > I’m trying to compile my Netbeans Platform modules using Ma

Re: [EXT] Re: duplicate project netbeans error, how coud I do it?

2019-05-06 Thread Emilian Bold
ved. I use it, not for making backups, but for creating a new > project in which I want to reuse some existing code or other stuff from an > existing project. > > > > Duncan > > > > From: Emilian Bold > Sent: Monday, May 6, 2019 1:27 PM > To: Thomson, Du

Re: Error compiling a very simple Web Java program

2019-05-07 Thread Emilian Bold
You have the error right there: > error: option -Xbootclasspath/p: not allowed with target 12 >From >https://www.oracle.com/technetwork/java/javase/9-relnote-issues-3704069.html > The boot class path has been mostly removed in this release. The java > -Xbootclasspath and -Xbootclasspath/p opti

Re: How to remove the "Customize" menu item from toolbars popupmenu ?

2019-05-07 Thread Emilian Bold
I didn't do this before nor see an easy workaround. Generally I highly recommend serious Platform applications to maintain an Platform fork and recompile it themselves. Then little customizations like this are just a matter of commenting a few lines of code. Of course, this makes updating the Plat

Re: How to remove the "Customize" menu item from toolbars popupmenu ?

2019-05-07 Thread Emilian Bold
* LinkedIn: http://www.linkedin.com/in/tusharvjoshi > > > > On Wed, May 8, 2019 at 10:19 AM Emilian Bold > wrote: > >> I didn't do this before nor see an easy workaround. >> >> Generally I highly recommend serious Platform applications to maintain >&g

Re: Trouble patching NetBeans 11.0 platform module

2019-05-08 Thread Emilian Bold
JavaHelp was removed from Apache NetBeans due to an Apache licensing policy. It's on my todo list for re-inclusion in CoolBeans (as some older Platform apps use it). --emi On Wed, May 8, 2019 at 11:34 PM Joseph Huber wrote: > > Hello! > > > > I am in the initial phase of trying to patch a NetBe

Re: Question on Netbeans 11 and C++

2019-05-08 Thread Emilian Bold
> 1 Does NB11 also include C++ projects (I only saw Java, PHP and couple other > web based types) No. I suspect the next release will include the C++ projects. In the meantime you can try CoolBeans ( https://coolbeans.xyz ) which does compile the C++ modules. > 3 Does NB11 support C++17 ? I su

Re: How to test a NetBeans Platform app? NbTestCase classpath woes

2019-05-08 Thread Emilian Bold
Indeed, the java.class.path is much larger for tests. --emi On Fri, Apr 26, 2019 at 10:24 PM Emilian Bold wrote: > > One trick I learned is that .clusters() is applied only to the cluster > folder name, not the full path. > > This was kinda obvious really, but since the curren

Re: Building Windows Launchers only

2019-05-16 Thread Emilian Bold
Hm, last I looked we had some makefiles in about 2-3 places so I just invoked those. I assume the build system does something like that. --emi joi, 16 mai 2019, 11:51 Mark Phipps a scris: > On the Apache NetBeans github page, is the instruction to build the > Windows launchers: > > ant -Ddo.bu

Re: making an offline portable setup

2019-05-19 Thread Emilian Bold
If you open the About box you'll see some folders with the user directory and such. I guess syncing that up would give you a portable setup. --emi On Sun, May 19, 2019 at 5:05 PM Alex O'Ree wrote: > > After unzipping and running NB11, there's a number of cases where "features" > need to be down

Re: Netbeans 11 - Integrity of the release

2019-05-22 Thread Emilian Bold
That warning says there is no chain of trust to the key. But considering you got the key from https://www.apache.org/dist/incubator/netbeans/KEYS you can ignore that warning. --emi On Wed, May 22, 2019 at 5:23 PM Eduardo Quintanilla wrote: > Hi, > > > > I downloaded Netbeans 11[1] and got an e

subscribe

2019-07-30 Thread Emilian Bold
--emi

Re: Updates don't be applied

2019-07-31 Thread Emilian Bold
Assuming the paths do exist and the file is executable, are you sure you are not running in some new fancy macOS sandbox that is disallowing you to execute external binaries? You could add a simple action and see if you can run something yourself with ProcessBuilder. --emi --emi On Wed, Jul 3

Re: Platform wrapped jar cannot access META-INF/service impl via ServiceLoader

2019-08-17 Thread Emilian Bold
I don't have a solution at hand but remember that the lookup will keep a single object instance in memory for a given service entry while the ServiceLoader will create fresh instances if it's just reading META-INF/service files (unless the JAR keeps a reference to a single ServiceLoader instance so

Re: Netbeans 11.1 very slow to start on Windows 7

2019-08-23 Thread Emilian Bold
Disabling the antivirus will do wonders. Seems in some situations the Windows antivirus will scan all those JAR files for ever and slow the startup... --emi On Fri, Aug 23, 2019 at 6:54 PM Haunted2 wrote: > > It is installed on a SSD drive. > > Is there a way to debug this slow startup (log file

Re: NB 11.1 Platform Application: HelpCtx.display()

2019-08-27 Thread Emilian Bold
NetBeans under Apache cannot include JavaHelp, that's why you don't see your helpsets: https://issues.apache.org/jira/browse/NETBEANS-3 I think it should be easy to recompile-in JavaHelp. I kept meaning to do this for CoolBeans ( http://coolbeans.xyz ) but haven't gotten to it. --emi On Wed, Aug

Re: Nested SVN repositories in a project

2019-09-02 Thread Emilian Bold
It might have something to do with the fact that Apache NetBeans doesn't include SVNKit anymore and perhaps that library handled your usecase better. --emi On Mon, Sep 2, 2019 at 2:03 PM Markus Klein wrote: > > Dear community, > > I've just upgraded from Netbeans 8.2 to Netbeans 11.1. There is a

Free NetBeans stickers

2019-09-03 Thread Emilian Bold
Hello, There are some nice interviews about NetBeans on http://www.codeswith.com You can even request free stickers to be mailed to you via http://www.codeswith.com/sticker.html If you want to write your own testimonial about NetBeans, let's get in touch. --emi

Re: Nested SVN repositories in a project

2019-09-03 Thread Emilian Bold
;t get past the registration form > > The command line version I used to use is discontinued and 32bit only. > > I know Git is the latest hype and all, but it shouldn't be so hard to get > Apache's versioning set up in Apache's IDE. > > Any help appreciated! >

Re: Printing from IDE 11.0

2019-09-07 Thread Emilian Bold
I suspect it's JDK/JRE-related. CoolBeans seems to print just fine on macOS using the default OpenJDK 64-Bit Server VM 11.0.3+7. --emi On Sat, Sep 7, 2019 at 11:28 PM philip.burn...@sky.com wrote: > > Hi Geertjan, > I've upgraded to netbeans 11.1 and still have the same problem. > > Best Regards

Re: Releasing a Netbeans platform application to the general public

2019-09-15 Thread Emilian Bold
Especially for non technical users you can assume they will have no Java so you must include a JRE. I recommend AdoptOpenJDK 11. Signed installers would be nice if you don't want Windows to scare away your users. --emi dum., 15 sept. 2019, 18:22 Jerome Lelasseux a scris: > Hello, > > I develop

Re: Releasing a Netbeans platform application to the general public

2019-09-16 Thread Emilian Bold
xs > > > > > > > > > > > > Le dimanche 15 septembre 2019 à 21:59:03 UTC+2, Emilio G. C. < > rarei...@outlook.com> a écrit : > > > > > > Something else to note, if you bundle the JRE, make sure Oracle's new > licensing fits your c

Re: Releasing a Netbeans platform application to the general public

2019-09-17 Thread Emilian Bold
The times have changed. Users mainly compute via their mobile gadget or via a web browser. Due to increased security requirements side-installing an app on the actual desktop OS is much more demanding. The are appstores which have even more rules (and associated fees). In a way most desktop apps

Re: Releasing a Netbeans platform application to the general public

2019-09-17 Thread Emilian Bold
The FSF explanation is clear as mud... Policing where your users are from and what the up to date embargo list is is extra work so why not pick an OpenJDK distro that does not make you do that? --emi mar., 17 sept. 2019, 13:19 Neil C Smith a scris: > On Tue, 17 Sep 2019 at 06:23, Emilian B

Re: [ install ] Not sure I have correct download of NetBeans

2019-09-22 Thread Emilian Bold
> Beginning in macOS 10.14.5, all new or updated kernel extensions and all software from developers new to distributing with Developer ID must be notarized in order to run. Beginning in macOS 10.15, notarization is required by default for all software. 10.14.5 was released on May 13, 2019 and the

Re: Netbeans 11 won't launch in Windows 10

2019-09-23 Thread Emilian Bold
Please try CoolBeans from http://coolbeans.xyz/ and see if you have the same problems. --emi lun., 23 sept. 2019, 07:21 Carl Burke a scris: > Chuck: > > I don't know what to tell you. When I told the Netbeans installer to use > the JDK, it complained there was no JRE. When I pointed it at the J

Re: A Bad Thing has happened to the promise of platform independence

2019-09-28 Thread Emilian Bold
If it's of any help it is almost impossible to get all the Python dependencies for Machine Learning. This is in spite of virtualenv, anaconda and whatever other solutions exist specifically to fix this. Don't get me started on doing this on macOS vs Linux. So it looks like platform independence is

Re: The last straw

2019-09-28 Thread Emilian Bold
Curious why you mean by "the organization" and what you think should happen more concretely. --emi sâm., 28 sept. 2019, 18:05 Alan Cameron a scris: > Hi All, > > > > Walter Oney’s email is the last straw for me. > > > > I had been a user of NetBeans 8.2 , using it for self-training in C, C++ >

Re: Java 8 still on Java.com

2019-09-30 Thread Emilian Bold
Java is no longer an user-facing product, it's middleware. You are expected to provide Java bundled with your application in the future. Users will not have any Java already available nor will they download any new Java. --emi On Mon, Sep 30, 2019 at 7:39 PM Derik Devecchio wrote: > > I know t

Re: Java 8 still on Java.com

2019-09-30 Thread Emilian Bold
a Windows machine. --emi On Mon, Sep 30, 2019 at 9:15 PM Derik Devecchio wrote: > > > > On Sep 30, 2019, at 9:55 AM, Emilian Bold wrote: > > > > Java is no longer an user-facing product, it's middleware. > > > > Okay, that sounds like an improvement from

Re: [ scala ] Just asking for update on Scala for NetBeans

2019-09-30 Thread Emilian Bold
I think the most recent development wrt Scala is https://github.com/cbm64chris/nbscala by Chris Luff and the plugin would be at http://plugins.netbeans.org/plugin/75542/nbscala (added 2019-03-13). So either you register the whole plugin portal update center URL or you download the NBM and add it b

Re: Netbeans 11.1 extract local variable r

2019-10-01 Thread Emilian Bold
Why does the collect call underneath your selection have the red underline? Seem there is something unparseable about the source code which might interfere with your refactoring too. --emi mar., 1 oct. 2019, 23:12 Sahin gülci a scris: > Hi All, > > When I try extract local variable from simple

How to verify NetBeans downloads with the checker.apache.org?

2019-10-02 Thread Emilian Bold
Hello, I see the netbeans download page [1] references the SHA512 [2] but the closer.cgi page [3] points to an info page [4] which ultimately takes you to https://checker.apache.org/dist/verify.html This Apache checker does NOT seem to have the SHA512 value [5]. The text there mentions SHA-256 c

Re: How to verify NetBeans downloads with the checker.apache.org?

2019-10-02 Thread Emilian Bold
are. > > Regards, > Eric > > -----Message d'origine- > De : Emilian Bold > Envoyé : mercredi 2 octobre 2019 17:17 > À : NetBeans Mailing > Objet : How to verify NetBeans downloads with the checker.apache.org? > > Hello, > > I see the netbeans download page [1]

Re: Missing JSF Components in 11.1

2019-10-02 Thread Emilian Bold
What? But CoolBeans 2019.06 is built off the 11.1 branch! Which CoolBeans version are you using? --emi On Wed, Oct 2, 2019 at 8:26 PM Paul "TheSlimDude" Morris wrote: > Actually, I was mistaken. The missing components are not actually missing > in NB11.1. They're just not there in CoolBeans. F

Re: Missing JSF Components in 11.1

2019-10-03 Thread Emilian Bold
19 at 4:11 PM Paul "TheSlimDude" Morris wrote: > > I'm afraid so. I just confirmed on a second computer. > > --- > > Cheers, > > Slim > > > On 2019-10-02 16:50, Emilian Bold wrote: > > What? But CoolBeans 2019.06 is built off the 11.1 branch! Whi

Re: Creating a Java library project with Apache Netbeans

2019-10-03 Thread Emilian Bold
You might be looking for 'Java with Ant | Java Class Library'? The same can be accomplished using 'Java with Maven | Java Application' I believe. It's all a matter of the build system. --emi On Thu, Oct 3, 2019 at 8:55 PM Peter L. Berghold wrote: > > I seem to be missing something here. When I l

Re: Missing JSF Components in 11.1

2019-10-04 Thread Emilian Bold
11.0.3+7. --emi On Thu, Oct 3, 2019 at 8:01 PM Emilian Bold wrote: > > The mailing list must have stripped the image, perhaps you can send it > to me directly? > > I see the same thing in CoolBeans 2019.06 and NetBeans 11.1 if I go to > Project Properties | Frameworks and press &

Re: Javahelp Problem

2019-10-04 Thread Emilian Bold
NetBeans removed JavaHelp entirely under Apache due to licensing reasons. Not sure what the solution is right now, I don't remember an email actually fixing it. You can probably bundle the javahelp jar yourself and display something but I didn't look if you can hook it up instead of the proper Net

Re: Missing JSF Components in 11.1

2019-10-04 Thread Emilian Bold
Reported as https://issues.apache.org/jira/browse/NETBEANS-3199 --emi On Fri, Oct 4, 2019 at 4:00 PM Emilian Bold wrote: > > [sending this to mailing list] > > I could reproduce the bug on a Windows machine with NetBeans 11.1 too. > I could not reproduce it on macOS. > >

Re: JJazzLab : a music application based on the Netbeans Platform

2019-10-04 Thread Emilian Bold
Don't know what the proper channel is (Twitter?) but GlobalSign gives away free EV code signing certificates for open-source software/developers. --emi On Sat, Oct 5, 2019 at 12:57 AM Jerome Lelasseux wrote: > > Dear Netbeans family, > > After many many (too many) evenings and week-ends spent le

Your interview about NetBeans and free NetBeans stickers

2019-10-06 Thread Emilian Bold
Hello, There are some nice interviews about NetBeans on http://www.codeswith.com If you want to do your own interview, let's get in touch. I'm particularly interested in somebody using NetBeans for PHP or Java development. On the site you can even request free stickers to be mailed to you via ht

#codesWith : Jack Woehr codes with NetBeans

2019-10-07 Thread Emilian Bold
Jack Woehr was so kind as to answer my previous call for NetBeans testimonials > NetBeans seems to have become a minority approach, but a critical approach > for those of us who focus more on our programming than on our programming > tools. Read the full article on http://www.codeswith.com/peop

Re: Intellij formatting rules in NetBeans?

2019-10-08 Thread Emilian Bold
I'm curious, can those formatting setting be used by anything else other than IntelliJ? I mean, is there some Maven Plugin, or bot or something that can format the code independently of IntelliJ? --emi On Tue, Oct 8, 2019 at 6:56 PM Miguel Cardoso Martins wrote: > > Hi all > > Is there a way (pl

Re: Dark Mode / Mac OS X Catalina

2019-10-12 Thread Emilian Bold
It's a NetBeans bug. We should probably detect dark mode and toggle our own dark mode flag. In the meantime you can install the Darcula plugin http://plugins.netbeans.org/plugin/62424/darcula-laf-for-netbeans which I think also works for 11.1 --emi On Sat, Oct 12, 2019 at 1:11 PM James Ostrowic

Re: [lookup] Accessing dynamically created objects through lookup

2019-10-13 Thread Emilian Bold
The Lookup is just a 'HashSet' where a single instance for your service is added at startup (more or less). That's the only relationship between the two. Creating further objects does not add them to the Lookup, they are just normal Java objects created with a constructor. I wonder if you could u

Re: Global plugin installation in Linux

2019-10-13 Thread Emilian Bold
The CoolBeans distribution (http://coolbeans.xyz ) seems like a good fit for you. Based on 11.1, comes with the up-to-date C/C++ plugins. --emi On Sun, Oct 13, 2019 at 9:05 PM Nikos Platis wrote: > > Hello, > > I am maintaining a computer lab for my Department and students use Netbeans > for se

Re: Creating HSQL connection from Netbeans

2019-10-14 Thread Emilian Bold
I think their example is bad. Here http://hsqldb.org/doc/2.0/guide/running-chapt.html they mention .getConnection("jdbc:hsqldb:file:testdb", "SA", ""); but if I use in CoolBeans jdbc:hsqldb:file:testdb it fails because it actually tries to create the file at /testdb ie. in a place where normal use

Re: Netbeans RCP Compatibility

2019-10-17 Thread Emilian Bold
> Is there a corresponding Netbeans RCP version for every Netbeans IDE release? Yes, but there aren't necessarily Platform changes between NetBeans releases. I think you could look at the individual module versions to see if something actually changed. > What JDK versions does Netbeans RCP 11 sup

Re: Netbeans RCP Compatibility

2019-10-17 Thread Emilian Bold
or some time, > although would probably pick AdoptOpenJDK now. > > There were few relevant differences between OpenJDK 8 and Oracle Java > 8. From Java 11 there should be no difference, and I would guess a > majority here are not using an Oracle JDK any more(?) > > > On Thu, 17 Oct

Re: Netbeans RCP Compatibility

2019-10-17 Thread Emilian Bold
gt; IDE changes? > > > > Adam > > > > From: Geertjan Wielenga > Sent: Thursday, October 17, 2019 2:12 AM > To: Neil C Smith > Cc: Emilian Bold ; Adam Korynta ; > users@netbeans.apache.org > Subject: Re: Netbeans RCP Compatibility > > > > https://bits.ne

Re: java.lang.NoClassDefFoundError: Could not initialize class com.sun.xml.bind.v2.model.impl.RuntimeBuiltinLeafInfoImpl

2019-10-18 Thread Emilian Bold
I suppose you need to compile the project with Java 8 or something older. --emi vin., 18 oct. 2019, 11:54 Juan Miguel Escribano a scris: > Hi all, > > I’m trying to clean and build a project with a Web Service Client. > It is a Ant project (please, don’t ask why, it must be Ant 🤷🏻‍♂️) > I have

Re: Slack channel for netbeans

2019-10-20 Thread Emilian Bold
https://netbeans.slack.com --emi On Mon, Oct 21, 2019 at 1:37 AM Ahmed Osama wrote: > > Hi Everyone, > > Is there a slack channel for netbeans? > > - > To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org > For addition

#codesWith : Jerome Lelasseux codes with NetBeans

2019-10-23 Thread Emilian Bold
Jerome Lelasseux was so kind as to answer my previous call for NetBeans testimonials > For my main hobby project, JJazzLab, a music desktop application, I > discovered the NetBeans Rich Client Platform. It was not easy at the > beginning, but I don't regret it! Read the full article on http://

Re: JSF Pages from Entity Classes - PrimeFaces

2019-10-27 Thread Emilian Bold
Remove user dir (settings, etc): rm -r ~/Library/Application\ Support/NetBeans/11.1/ Remove cache: rm -r ~/Library/Caches/NetBeans/11.1/ And eventually re-download the binaries. --emi On Sun, Oct 27, 2019 at 11:34 PM Slim Dude wrote: > > Something is messed up with my installation on my Mac

Re: hsql in Tomcat

2019-10-28 Thread Emilian Bold
I can't check now, but does NetBeans come with Tomcat? --emi On Mon, Oct 28, 2019 at 4:15 PM Don wrote: > > I have been using hsql in a number of projects and recently had a need > to use hsql in a Tomcat application. It seems to conflict with a > built-in hsql located in the embedded version o

Re: Unable to compile ant-basen Netbeans platform application with Netbeans 11.2

2019-11-01 Thread Emilian Bold
The build harness perhaps? --emi On Fri, Nov 1, 2019 at 4:43 PM Andreas Hauffe wrote: > > Hi, > > I tried to compile my netbeans platform application with netbeans 11.2, but I > got an error. The layer.xml validation reports that I've got a not valid > layer.xml. > > It seems that this commit

Re: How to bypass a local certificate problem

2019-11-06 Thread Emilian Bold
> I don’t believe we can use CoolBeans as this is a commercial environment. FWIW there's a 'buy now' button on http://coolbeans.xyz/store/index.html for companies. Just today Apple announced me they need another $99 for the newly expired developer certificate... Besides labour there are costs to

Re: How to bypass a local certificate problem

2019-11-06 Thread Emilian Bold
9 at 7:12 PM Raymond, Craig A (US) wrote: > > I can try, but that is probably just another "rope to push"...And won't fix > the short term updating issue. > > Craig Raymond > > Connect with BAE Systems: > > -Original Message- > From: Emilian Bold

Re: How to bypass a local certificate problem

2019-11-07 Thread Emilian Bold
; Sent: Wednesday, November 6, 2019 2:00 PM > To: 'Neil C Smith' > Cc: Emilian Bold ; users@netbeans.apache.org > Subject: RE: How to bypass a local certificate problem > > Disabling Third-party did get things going, and based on the link below it > may

Re: Issues with Netbeans Project Recognising Tomcat Installation

2019-11-11 Thread Emilian Bold
> Don't use the distribution's Tomcat. [...] The reason for doing all of this > is quite simply, permissions. This is an interesting remark. Couldn't this be fixed by NetBeans by simply copying the whole of Tomcat to an user temp folder? --emi On Mon, Nov 11, 2019 at 7:24 PM Mark Eggers wrote:

Re: upgrading netbeans from 11.1 to 11.2

2019-11-25 Thread Emilian Bold
You can't but 11.2 can import your 11.1 settings. --emi lun., 25 nov. 2019, 13:13 Philipp Albrecht a scris: > Dear netbeans community, > > I have a question regarding upgrading netbeans 11.1 to 11.2. > > When I check for updates within my IDE it tells me "no updates available". > > I would like

Re: Adding Javadoc containing 'element-list' for a library added to a project

2019-11-27 Thread Emilian Bold
This sounds like a NetBeans bug. In JDK 10, "element-list" was added to better support modules. So, does NetBeans work with other modern Javadocs? Maybe there is something subtler: does a library in a JDK 8 project display Javadoc 11-style documentation? --emi On Wed, Nov 27, 2019 at 4:45 PM A

Re: Static code analysis - FindBugs (SpotBugs) support

2019-11-27 Thread Emilian Bold
I think JaCoCo works. I wonder why FindBugs doesn't work anymore? --emi On Wed, Nov 27, 2019 at 9:04 PM Mark A. Claassen wrote: > > Once upon a time there was a FindBugs module for Netbeans. Is there one that > works with Netbeans 11. (FindBugs or its descendant 'SpotBugs') > > Does Netbeans h

Free NetBeans stickers

2019-12-03 Thread Emilian Bold
Hello, There are some nice interviews about NetBeans on http://www.codeswith.com You can even request free stickers to be mailed to you via http://www.codeswith.com/sticker.html If you do it now they might arrive in time for Christmas. If you want to write your own testimonial about NetBeans, le

Re: WARNING: INFECTED: Re: deployable javafx app

2019-12-04 Thread Emilian Bold
Should be easy for the NetBeans PMC to contact Apache Legal and mention this. --emi On Wed, Dec 4, 2019 at 9:45 PM Eric J. Schwarzenbach wrote: > > So that suggests that this mispelling of apache.org is being used > maliciously. I seem to recall reading that this is illegal and there are > act

Re: Auto-backup of unsaved source files

2019-12-10 Thread Emilian Bold
See Local History. --emi mar., 10 dec. 2019, 16:58 John Barrow a scris: > Is there an option for Netbeans to auto-save your work every (say) 5 > minutes so that if Windows reboots (for example after an update) and you > have forgotten to formally save work to date, there is a place to go (e.g.

Re: Re: Auto-backup of unsaved source files

2019-12-10 Thread Emilian Bold
on that was saved in Netbeans. > > > > The way I read it, the "Local History" allows you to see all the previous > saved snapshots of your source (a bit like you get for each committed change > to a source control system). > > > > John > > > > From:

#codesWith: Yiğit Bul codes with NetBeans

2019-12-15 Thread Emilian Bold
Yiğit Bul was so kind as to answer my previous call for NetBeans testimonials > "[NetBeans] blew my mind and it also spread like wild fire among classmates. > That's how I started. > NetBeans is the tool for web applications Read the full article on http://www.codeswith.com/people/yigitbul.html

Free NetBeans stickers and a Happy New Year

2019-12-23 Thread Emilian Bold
Hello, Merry Holidays and a Happy New Year to all of you! Now would be the time to read the nice interviews about NetBeans on http://www.codeswith.com You can even request free stickers to be mailed to you via http://www.codeswith.com/sticker.html See you in 2020! --emi --

UTF8 input in NetBeans Output Window broken

2019-12-27 Thread Emilian Bold
Hello, I can't read properly some text due to the way NetBeans configures System.in for the running app. One cannot parse that text with any charset and the read string is corrupted basically. I have a Maven app and I already configured globally -Dfile.encoding=utf-8 for Maven. I've also added -

Re: Installation minor warning

2019-12-28 Thread Emilian Bold
https://netbeans.org/bugzilla/show_bug.cgi?id=267272#c11 mentions that: > also, those "startup" errors I'm having are coming from the "Delta > Hexadecimal Editor" > > http://deltahex.exbin.org/ > > Disabling those plugins will fix your errors, but not the plugins. --emi On Sat, Dec 28, 2019 at

Re: Hints for custom language

2019-12-30 Thread Emilian Bold
>From the tutorial: HintsController.setErrors (document, String uniqueLayerID, List errors); --emi On Mon, Dec 30, 2019 at 6:34 PM Geertjan Wielenga wrote: > > https://platform.netbeans.org/tutorials/nbm-javacc-parser.html > > Gj > > On Mon, 30 Dec 2019 at 12:43, Bilu Al wrote: >> >> Its a cust

Re: [platform] IOProvider - org.netbeans.api.io vs org.openide.windows

2019-12-31 Thread Emilian Bold
My guess the first one in the Lookup? Why would you pick which service to use? --emi On Tue, Dec 31, 2019 at 4:00 PM Patrik Karlström wrote: > > While trying to solve a problem related to class loading > ClassNotFoundException ... starting from ... > I noticed that there are actually two IOProv

Re: [platform] IOProvider - org.netbeans.api.io vs org.openide.windows

2019-12-31 Thread Emilian Bold
problem too. > > Den tis 31 dec. 2019 kl 15:12 skrev Emilian Bold : > >> My guess the first one in the Lookup? Why would you pick which service to >> use? >> >> --emi >> >> On Tue, Dec 31, 2019 at 4:00 PM Patrik Karlström >> wrote: >

Re: Anyone know of any gerrit integration?

2020-01-02 Thread Emilian Bold
It's not the answer you are looking for but this would be a perfect moment for your company to either develop or pay for this: 5 team members * 2 commits / day * 5 days / week * 4 weeks * 2 minutes lost per commit made outside the IDE = 400 minutes / month = 6.5 billable hours wasted every month.

Re: Anyone know of any gerrit integration?

2020-01-02 Thread Emilian Bold
:-( > > Anyway - thanks for the feedback. > Tom > > On Thu, Jan 2, 2020 at 4:48 PM Emilian Bold wrote: >> >> It's not the answer you are looking for but this would be a perfect >> moment for your company to either develop or pay for this: >> >>

Re: Anyone know of any gerrit integration?

2020-01-02 Thread Emilian Bold
s using NB's git plugin > (point being we weren't using code review). Sorry. > tom > > On Thu, Jan 2, 2020 at 5:09 PM Emilian Bold wrote: >> >> Oh, I didn't realise you are using the royal 'we'. I assumed the whole >> team is on NB (although,

Re: File Browser macOS 10.15

2020-01-08 Thread Emilian Bold
Interesting. Can somebody else confirm? (I'm keeping my laptop on 10.14 since I haven't seen any reason to move to 10.15 so far, quite the contrary). Can you make a simple Swing app that opens a JFileChooser there? --emi On Wed, Jan 8, 2020 at 11:36 AM Luff,Chris wrote: > > Hi All, > > I have j

Re: File Browser macOS 10.15

2020-01-08 Thread Emilian Bold
gt; NetBeans has access too. > > > On 8 Jan 2020, at 10:01, Emilian Bold wrote: > > > > Interesting. Can somebody else confirm? (I'm keeping my laptop on > > 10.14 since I haven't seen any reason to move to 10.15 so far, quite > > the contrary). > >

Re: Opening NetBeans in NetBeans

2020-01-08 Thread Emilian Bold
> You used the term "clusters", I don't know what that means. Can you > explain clusters to me..? Folder which holds multiple modules, like 'platform'. --emi On Thu, Jan 9, 2020 at 9:20 AM John Elliot V | ProgClub wrote: > > On 9/1/20 6:00 pm, John Elliot V | ProgClub wrote: > > On 9/1/20 5:11

Re: Opening NetBeans in NetBeans

2020-01-09 Thread Emilian Bold
Is that different when you have "folder which hold 'modules' " > > > On 09/01/2020 07:31, Emilian Bold wrote: > >> You used the term "clusters", I don't know what that means. Can you > >> explain clusters to me..? > > Folder which

#codesWith: Owen Thomas codes with NetBeans

2020-01-09 Thread Emilian Bold
Owen Thomas was so kind as to answer my previous call for NetBeans testimonials > At $0, NetBeans is very affordable, and I found that when I did some initial > comparison with other freely available IDEs, NetBeans came out as being the > most helpful and intuitive and non-judgemental. Read the

Re: Netbeans hangs on project opening

2020-01-13 Thread Emilian Bold
A thread dump would have been useful. --emi lun., 13 ian. 2020, 21:32 Greenberg, Gary a scris: > I am running NB 11.2 on Windows (Dell Latitude) box. > > Today I tried to start IDE and it hangs on opening projects. > > After waiting for about 40 minutes I killed the process through task > manag

Re: MissingResourceException

2020-01-15 Thread Emilian Bold
> There was an old bug about this on > https://bz.apache.org/netbeans/show_bug.cgi?id=221781 . Maybe we should > create a corresponding new JIRA issue. [Note: How cool the old bugzilla was migrated to Apache!] > Well, related. My first thought on this was Compile on Save. I don't > think I've

Stopping previous/current project execution when doing another Run

2020-01-16 Thread Emilian Bold
Hello, Am I the only one that would need for the Run action to sometimes automatically stop the current execution of the project? With anything that has a socket open I can't start another instance so I have to stop the current execution then Run again. I know that ideally some auto-deploy would

Re: Newbie to Maven problem -- JavaFX runtime components missing

2020-01-16 Thread Emilian Bold
I seem to remember profiling is/was entirely broken on Win 64. Not sure which OS you are using. --emi On Thu, Jan 16, 2020 at 6:01 PM Glenn Holmer wrote: > > On 1/1/20 2:51 PM, Geertjan Wielenga wrote: > > https://m.youtube.com/watch?v=8xaRwqcKPSI > > I got an FX project running using that tip.

<    1   2   3   4   >