Re: confirm unsubscribe from users@netbeans.apache.org

2020-10-12 Thread Rud Merriam



-73 -
*Rud Merriam K5RUD*
/Mystic Lake Software/ 

On 10/12/20 3:10 PM, users-h...@netbeans.apache.org wrote:

Hi! This is the ezmlm program. I'm managing the
users@netbeans.apache.org mailing list.

To confirm that you would like

rudmerr...@gmail.com

removed from the users mailing list, please send a short reply
to this address:


users-uc.1602533416.gocenjleokfpnlcenpli-rudmerriam=gmail@netbeans.apache.org

Usually, this happens when you just hit the "reply" button.
If this does not work, simply copy the address and paste it into
the "To:" field of a new message.

I haven't checked whether your address is currently on the mailing list.
To see what address you used to subscribe, look at the messages you are
receiving from the mailing list. Each message has your address hidden
inside its return path; for example, m...@xdd.ff.com receives messages
with return path: -mary=xdd.ff@netbeans.apache.org.

Some mail programs are broken and cannot handle long addresses. If you
cannot reply to this request, instead send a message to
 and put the entire address listed above
into the "Subject:" line.


--- Administrative commands for the users list ---

I can handle administrative requests automatically. Please
do not send them to the list address! Instead, send
your message to the correct command address:

To subscribe to the list, send a message to:


To remove your address from the list, send a message to:


Send mail to the following for info and FAQ for this list:



Similar addresses exist for the digest list:



To get messages 123 through 145 (a maximum of 100 per request), mail:


To get an index with subject and author for messages 123-456 , mail:


They are always returned as sets of 100, max 2000 per request,
so you'll actually get 100-499.

To receive all messages with the same subject as message 12345,
send a short message to:


The messages should contain one line or word of text to avoid being
treated as sp@m, but I will ignore their content.
Only the ADDRESS you send to is important.

You can start a subscription for an alternate address,
for example "john@host.domain", just add a hyphen and your
address (with '=' instead of '@') after the command word:


To stop subscription for this address, mail:


In both cases, I'll send a confirmation message to that address. When
you receive it, simply reply to it to complete your subscription.

If despite following these instructions, you do not get the
desired results, please contact my owner at
users-ow...@netbeans.apache.org. Please be patient, my owner is a
lot slower than I am ;-)

--- Enclosed is a copy of the request I received.

Return-Path: 
Received: (qmail 41057 invoked by uid 99); 12 Oct 2020 20:10:16 -
Received: from spamproc1-he-de.apache.org (HELO spamproc1-he-de.apache.org) 
(116.203.196.100)
 by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Oct 2020 20:10:16 +
Received: from localhost (localhost [127.0.0.1])
by spamproc1-he-de.apache.org (ASF Mail Server at 
spamproc1-he-de.apache.org) with ESMTP id F06941FF39B
for ; Mon, 12 Oct 2020 20:10:15 
+ (UTC)
X-Virus-Scanned: Debian amavisd-new at spamproc1-he-de.apache.org
X-Spam-Flag: NO
X-Spam-Score: 0.1
X-Spam-Level:
X-Spam-Status: No, score=0.1 tagged_above=-999 required=6.31
tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,
DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.2, POISEN_SPAM_PILL_3=0.1,
SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=disabled
Authentication-Results: spamproc1-he-de.apache.org (amavisd-new);
dkim=pass (2048-bit key) header.d=gmail.com
Received: from mx1-he-de.apache.org ([116.203.227.195])
by localhost (spamproc1-he-de.apache.org [116.203.196.100]) 
(amavisd-new, port 10024)
with ESMTP id hfa2oP0GILw4
for ;
Mon, 12 Oct 2020 20:10:15 + (UTC)
Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=2607:f8b0:4864:20::230; 
helo=mail-oi1-x230.google.com; envelope-from=rudmerr...@gmail.com; 
receiver=
Received: from mail-oi1-x230.google.com (mail-oi1-x230.google.com 
[IPv6:2607:f8b0:4864:20::230])
by mx1-he-de.apache.org (ASF Mail Server at mx1-he-de.apache.org) with 
ESMTPS id 7BA647F9B1
for ; Mon, 12 Oct 2020 20:10:15 
+ (UTC)
Received: by mail-oi1-x230.google.com with SMTP id j7so2401716oie.12
 for ; Mon, 12 Oct 2020 13:10:15 
-0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=gmail.com; s=20161025;
 h=from:to:reply-to:subject:message-id:date:user-agent:mime-version
  :content-language;
 bh=7ETI9QGn0bRJgqDnueFdKl7Z/bVuKA9R9vH87OIP6dk=;
 b=k/Ywd3Z1LXCPKZ0jBxeDIV0YML0sX439UETW8Mhl9A//6UEuC0YvjKOU/bpSImQzwH
  M7jKtkkSvxRI7PO03FfX//7CXWNCDsAa1EbG944Oc83D0qRC7V6gAxrwMrOSi/CmWV4h
  Vp1Xsze7nYS3onSktkfUhqIgJzVxWGOj0vNGvheP4r0J5Em6qrTEY6Hbf+n4a9u+XdFq
  

Re: Setting GIT repository

2020-10-12 Thread Don
I have struggled with this and what seems to work for me is to first use 
Git in Netbeans to start the process.  That creates a (hidden) .git 
directory in my project.  From a terminal in that .git folder I execute 
*git remote add origin reposit...@wherever.com:me/projectname.git* 
followed by *git add .*    and then *git commit -m "Initial commit"* 
then *git push -u origin master*


After I do that, I can commit from within NetBeans 12 (file by file or 
any combination) and at the end of the day in the .git folder do *git push*


I have checked the results with the GUI at https://git.wherever.com and 
they appear to capture my work.


Don
**

**

On 10/11/20 10:43 AM, C N Davies wrote:
I'm using Netbeans 12 and I have several projects, I can't seem to 
find a way to set the repository for each individual project.  So 
project1 uses repo1 and project2 uses repo2 etc. Each then would push 
to their respective remote github repo. I know it can be done because 
it seems I have done this before, but I can't find the solution.


Thanks for any advice.

Jon


Re: Resource sub-folder for Maven based JavaFX

2020-10-12 Thread HRH
 Thank you Gj, that's a good answer.

On Monday, October 12, 2020, 12:11:49 PM GMT+3:30, Geertjan Wielenga 
 wrote:  
 
 
And the reason is that those two templates are simply the Gluon Maven 
archetypes over which NetBeans has no control and the archetype in question 
does not have that resources folder because, in contrast to the other 
archetype, it has no resources and empty folders are not created by Maven 
atchetypes. 
Gj
On Mon, 12 Oct 2020 at 10:32, HRH  wrote:

 
I stumbled on the solution for this conundrum rather fortuitously.It turns out 
that one cannot just drop any resource file into the 
“src->main->resources”folder and hope for maven to copy them to the target 
directory structure wherethe .class files reside (i.e. 
“target->classes->org.me.foo”). As I statedpreviously on this thread, maven 
will copy those resource files to the “target->classes”.However, if one creates 
a directory structure corresponding to the modulepackage name under the 
“src->main->resources” (i.e.src->main->resources->org.me.foo) and place the 
resource files in thisdirectory then they will get copies to the 
“target->classes.org.me.foo”.

This is why the “FXML JavaFX Maven…” project type finds itsresources (i.e. 
fxml, gifs, xml file, etc.) at runtime and the “Simple JavaFxMaven…” project 
type can’t alas ends up with NullPointerException, unless the usermanually 
creates the folder structure under the src->main->resources(i.e. 
src->main-resources-org.me.foo).

In summary, the inconsistency stems from the fact that the IDEcreates a proper 
directory structure for resources under the “FXML JavaFX Maven…”projects but it 
doesn’t do so for the “Simple JavaFx Maven…” projects. A bug (Ileave it to the 
judicious mind)?

On Friday, October 2, 2020, 7:11:55 AM GMT+3:30, HRH 
 wrote:  
 
  You asked for the directory structure and that's what I sent in my response 
to show the tree (without the contents). That doesn't imply those directories 
are empty. For instance, the "resources" sub-folder in the "src" contains 
"cappuccino.jpeg" and this file gets copied over during the project build to 
the "target->classes->org->openjfx->mavenfxmlwebview" folder where the 
"*.class" files reside for the FXML JavaFX project type. In Simple JavaFx 
project type, the"cappuccino.jpeg" file under the "src->main->resources" gets 
copied over to the "target->classes" instead of 
"target->classes->org->openjfx->mavenfxsliderbar" and that's the crux. This 
inconsistent behavior leads to a null pointer exception at the run time, 
because loading resources API is seeking to load the resource file from the 
current directory where .class files reside.
Reproducing this problem is a cinch. One needs to create two very simple 
projects. One project should be of type FXML JavaFX application and the other 
of type Simple JavaFX application. The application should try to do a simple 
loading of an icon file from the src-main-resources folder to the main window.

Thanks.

On Friday, October 2, 2020, 12:18:53 AM GMT+3:30, Ernie Rael 
 wrote:  
 
 In an earlier msg you said
> FXML ... creates "Other Sources/src/main/resources/${project.package}" 
> tree structure

But that is not what you are showing, you show nothing under resources.

Seems Gj is correct. I'm sure you can find somewhere to help with you're 
maven problem.

-ernie

On 10/1/2020 12:40 PM, HRH wrote:
> The directory structure for the FXML JavaFX project:
> |->src
> |        |->main
> |    | |->java
> |    |    |  |->org
> |    |    |   |->openjfx
> |    |    |  
> |->mavenfxmlwebview
> |    | |->resources
> |    |->test
> target
>  |->classes
> |->org
> |->openjfx
> |->mavenfxmlwebview
>
> The directory structure for the Simple JavaFX project:
> |->src
> |        |->main
> |    | |->java
> |    |    |  |->org
> |    |    |   |->openjfx
> |    |    |  
> |->mavenfxsliderbar
> |    | |->resources
> |    |->test
> target
>  |->classes
> |->org
> |->openjfx
> |->mavenfxsliderbar
>
> Hope the bars are still lining up properly after I submit this email.
>
> Thanks
>
>
>
>
> On Thursday, October 1, 2020, 10:45:19 PM GMT+3:30, Ernie Rael 
>  wrote:
>
>
> @HRH,
>
> Could you provide the directory structure under src/main/resources for
> both the working project and the failing project.
>
> -ernie
>
> On 10/1/2020 11:17 AM, HRH wrote:
> > No, the folder contains an image file (.jpeg)
> >
> > On Tuesday, September 29, 2020, 9:21:41 PM GMT+3:30, Geertjan Wielenga
> > mailto:geert...@apache.org>> wrote:
> >
> >
> > Because the folder is empty?
> >
> > Gj
> >
> > On Tue, 29 Sep 2020 at 19:45, HRH  > wrote:
> >
> >
> >
> >
> >    Well, I looked into the IDE generated POMs for both project types
> >    assiduously and there are no major 

Re: Resource sub-folder for Maven based JavaFX

2020-10-12 Thread Geertjan Wielenga
And the reason is that those two templates are simply the Gluon Maven
archetypes over which NetBeans has no control and the archetype in question
does not have that resources folder because, in contrast to the other
archetype, it has no resources and empty folders are not created by Maven
atchetypes.

Gj

On Mon, 12 Oct 2020 at 10:32, HRH  wrote:

> I stumbled on the solution for this conundrum rather fortuitously. It
> turns out that one cannot just drop any resource file into the
> “src->main->resources” folder and hope for maven to copy them to the target
> directory structure where the .class files reside (i.e.
> “target->classes->org.me.foo”). As I stated previously on this thread,
> maven will copy those resource files to the “target->classes”. However, if
> one creates a directory structure corresponding to the module package name
> under the “src->main->resources” (i.e. src->main->resources->org.me.foo)
> and place the resource files in this directory then they will get copies to
> the “target->classes.org.me.foo”.
>
> This is why the “FXML JavaFX Maven…” project type finds its resources
> (i.e. fxml, gifs, xml file, etc.) at runtime and the “Simple JavaFx Maven…”
> project type can’t alas ends up with NullPointerException, unless the user
> manually creates the folder structure under the src->main->resources (i.e.
> src->main-resources-org.me.foo).
>
> In summary, the inconsistency stems from the fact that the IDE creates a
> proper directory structure for resources under the “FXML JavaFX Maven…”
> projects but it doesn’t do so for the “Simple JavaFx Maven…” projects. A
> bug (I leave it to the judicious mind)?
>
> On Friday, October 2, 2020, 7:11:55 AM GMT+3:30, HRH
>  wrote:
>
>
> You asked for the directory structure and that's what I sent in my
> response to show the tree (without the contents). That doesn't imply those
> directories are empty. For instance, the "resources" sub-folder in the
> "src" contains "cappuccino.jpeg" and this file gets copied over during
> the project build to the "target->classes->org->openjfx->mavenfxmlwebview"
> folder where the "*.class" files reside for the FXML JavaFX project type.
> In Simple JavaFx project type, the"cappuccino.jpeg" file under the
> "src->main->resources" gets copied over to the "target->classes" instead of
> "target->classes->org->openjfx->mavenfxsliderbar" and that's the crux. This
> inconsistent behavior leads to a null pointer exception at the run time,
> because loading resources API is seeking to load the resource file from the
> current directory where .class files reside.
>
> Reproducing this problem is a cinch. One needs to create two very simple
> projects. One project should be of type FXML JavaFX application and the
> other of type Simple JavaFX application. The application should try to do a
> simple loading of an icon file from the src-main-resources folder to the
> main window.
>
> Thanks.
>
> On Friday, October 2, 2020, 12:18:53 AM GMT+3:30, Ernie Rael <
> err...@raelity.com> wrote:
>
>
> In an earlier msg you said
> > FXML ... creates "Other Sources/src/main/resources/${project.package}"
> > tree structure
>
> But that is not what you are showing, you show nothing under resources.
>
> Seems Gj is correct. I'm sure you can find somewhere to help with you're
> maven problem.
>
> -ernie
>
> On 10/1/2020 12:40 PM, HRH wrote:
> > The directory structure for the FXML JavaFX project:
> > |->src
> > ||->main
> > || |->java
> > |||  |->org
> > |||   |->openjfx
> > |||
> > |->mavenfxmlwebview
> > || |->resources
> > ||->test
> > target
> >  |->classes
> > |->org
> > |->openjfx
> > |->mavenfxmlwebview
> >
> > The directory structure for the Simple JavaFX project:
> > |->src
> > ||->main
> > || |->java
> > |||  |->org
> > |||   |->openjfx
> > |||
> > |->mavenfxsliderbar
> > || |->resources
> > ||->test
> > target
> >  |->classes
> > |->org
> > |->openjfx
> > |->mavenfxsliderbar
> >
> > Hope the bars are still lining up properly after I submit this email.
> >
> > Thanks
> >
> >
> >
> >
> > On Thursday, October 1, 2020, 10:45:19 PM GMT+3:30, Ernie Rael
> >  wrote:
> >
> >
> > @HRH,
> >
> > Could you provide the directory structure under src/main/resources for
> > both the working project and the failing project.
> >
> > -ernie
> >
> > On 10/1/2020 11:17 AM, HRH wrote:
> > > No, the folder contains an image file (.jpeg)
> > >
> > > On Tuesday, September 29, 2020, 9:21:41 PM GMT+3:30, Geertjan Wielenga
> > > mailto:geert...@apache.org>> wrote:
> > >
> > >
> > > Because the folder is empty?
> > >
> > > Gj
> > >
> > > On Tue, 29 Sep 2020 at 19:45, HRH  > > wrote:
> > >
> > >
> > >
> > >
> > >Well, I looked into the IDE generated POMs for both project types
> > >   

Re: Resource sub-folder for Maven based JavaFX

2020-10-12 Thread HRH
 
I stumbled on the solution for this conundrum rather fortuitously.It turns out 
that one cannot just drop any resource file into the 
“src->main->resources”folder and hope for maven to copy them to the target 
directory structure wherethe .class files reside (i.e. 
“target->classes->org.me.foo”). As I statedpreviously on this thread, maven 
will copy those resource files to the “target->classes”.However, if one creates 
a directory structure corresponding to the modulepackage name under the 
“src->main->resources” (i.e.src->main->resources->org.me.foo) and place the 
resource files in thisdirectory then they will get copies to the 
“target->classes.org.me.foo”.

This is why the “FXML JavaFX Maven…” project type finds itsresources (i.e. 
fxml, gifs, xml file, etc.) at runtime and the “Simple JavaFxMaven…” project 
type can’t alas ends up with NullPointerException, unless the usermanually 
creates the folder structure under the src->main->resources(i.e. 
src->main-resources-org.me.foo).

In summary, the inconsistency stems from the fact that the IDEcreates a proper 
directory structure for resources under the “FXML JavaFX Maven…”projects but it 
doesn’t do so for the “Simple JavaFx Maven…” projects. A bug (Ileave it to the 
judicious mind)?

On Friday, October 2, 2020, 7:11:55 AM GMT+3:30, HRH 
 wrote:  
 
  You asked for the directory structure and that's what I sent in my response 
to show the tree (without the contents). That doesn't imply those directories 
are empty. For instance, the "resources" sub-folder in the "src" contains 
"cappuccino.jpeg" and this file gets copied over during the project build to 
the "target->classes->org->openjfx->mavenfxmlwebview" folder where the 
"*.class" files reside for the FXML JavaFX project type. In Simple JavaFx 
project type, the"cappuccino.jpeg" file under the "src->main->resources" gets 
copied over to the "target->classes" instead of 
"target->classes->org->openjfx->mavenfxsliderbar" and that's the crux. This 
inconsistent behavior leads to a null pointer exception at the run time, 
because loading resources API is seeking to load the resource file from the 
current directory where .class files reside.
Reproducing this problem is a cinch. One needs to create two very simple 
projects. One project should be of type FXML JavaFX application and the other 
of type Simple JavaFX application. The application should try to do a simple 
loading of an icon file from the src-main-resources folder to the main window.

Thanks.

On Friday, October 2, 2020, 12:18:53 AM GMT+3:30, Ernie Rael 
 wrote:  
 
 In an earlier msg you said
> FXML ... creates "Other Sources/src/main/resources/${project.package}" 
> tree structure

But that is not what you are showing, you show nothing under resources.

Seems Gj is correct. I'm sure you can find somewhere to help with you're 
maven problem.

-ernie

On 10/1/2020 12:40 PM, HRH wrote:
> The directory structure for the FXML JavaFX project:
> |->src
> |        |->main
> |    | |->java
> |    |    |  |->org
> |    |    |   |->openjfx
> |    |    |  
> |->mavenfxmlwebview
> |    | |->resources
> |    |->test
> target
>  |->classes
> |->org
> |->openjfx
> |->mavenfxmlwebview
>
> The directory structure for the Simple JavaFX project:
> |->src
> |        |->main
> |    | |->java
> |    |    |  |->org
> |    |    |   |->openjfx
> |    |    |  
> |->mavenfxsliderbar
> |    | |->resources
> |    |->test
> target
>  |->classes
> |->org
> |->openjfx
> |->mavenfxsliderbar
>
> Hope the bars are still lining up properly after I submit this email.
>
> Thanks
>
>
>
>
> On Thursday, October 1, 2020, 10:45:19 PM GMT+3:30, Ernie Rael 
>  wrote:
>
>
> @HRH,
>
> Could you provide the directory structure under src/main/resources for
> both the working project and the failing project.
>
> -ernie
>
> On 10/1/2020 11:17 AM, HRH wrote:
> > No, the folder contains an image file (.jpeg)
> >
> > On Tuesday, September 29, 2020, 9:21:41 PM GMT+3:30, Geertjan Wielenga
> > mailto:geert...@apache.org>> wrote:
> >
> >
> > Because the folder is empty?
> >
> > Gj
> >
> > On Tue, 29 Sep 2020 at 19:45, HRH  > wrote:
> >
> >
> >
> >
> >    Well, I looked into the IDE generated POMs for both project types
> >    assiduously and there are no major differences, that would lead
> >    one to believe Maven is the culprit here. In summary, during the
> >    project build, the resource sub-folder (within the Maven compliant
> >    folder structure) is copied from the "src" sub-tree to the
> >    "target" sub-tree, by the IDE for the "FXML JavaFX Maven
> >    Archetype" projects but this step is completely elided for the
> >    "Simple JavaFX Maven Archetype) projects.
> >
> >    Thanks
> >
> >
> >
> >
> >
> >
> >
> >
> >
> 

GraphQl, React Support

2020-10-12 Thread Brain Rebooting
Hi all,

I want to know about, does current netbeans 12.1 version a good fit for
front end react development with proper react,  graphql, redux support?

Also will it somehow support mongodb editing inside netbeabs?

Samiul alom sium
Bangladesh