[jira] [Comment Edited] (NETBEANS-4595) exec-maven-plugin Java version different from maven-compiler-plugin Java version in NetBeans project

2021-12-30 Thread Thomas Schapitz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4595?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17467130#comment-17467130
 ] 

Thomas Schapitz edited comment on NETBEANS-4595 at 12/31/21, 7:33 AM:
--

Contrary to wide spread perception, JAVA_HOME isn't always the way to indicate 
the preferred JDK, it is usually only interpreted in shell scripts wrapping 
tool invocations or server start scripts.

Many other cases rely on the OS's *path,* not even looking at the JAVA_HOME. 
Many iX-Systems use additional indirection by placing links to the preferred 
JVM into /bin and/or /usr/bin.

If you want to tie your exec plugins invocation to the very same java version 
that you used to start maven, the simplest way would be to look at using 
something like ${env.JAVA_HOME} to refer to the environment, that is active 
during your maven execution.

CAVEAT: Note, that the environment variables actually present depend on the 
wrapper script used (look into ${M2_HOME}/bin which might vary between Maven 
Versions and the OS used. You may also influence this by posting a mavenrc file 
into your home directory.

 

Note, that the folks responsible for Maven *intentionally* decoupled the exec 
plugin from Java, as it is intended to execute anything, not just java - there 
are even situations, where a JVM different from the one used to execute 
Netbeans, Maven, Compilation, or Testexecution might be required to execute 
some other arcane java tool.

 

This means, that Netbeans has no business fixing that. You should fix that in 
your pom.xml, toolchain, mavenrc, or environment.

I would suggest to close this as 'Not A Bug'.


was (Author: taps):
Contrary to wide spread perception, JAVA_HOME isn't always the way to indicate 
the preferred JDK, it is usually only interpreted in shell scripts wrapping 
tool invocations or server start scripts.

Many other cases rely on the OS's *path,* not even looking at the JAVA_HOME. 
Many iX-Systems use additional indirection by placing links to the preferred 
JVM into /bin and/or /usr/bin.

If you want to tie your exec plugins invocation to the very same java version 
that you used to start maven, the simplest way would be to look at using 
something like ${env.JAVA_HOME} to refer to the environment, that is active 
during your maven execution.

CAVEAT: Note, that the environment variables actually present depend on the 
wrapper script used (look into ${M2_HOME}/bin which might vary between Maven 
Versions and the OS used. You may also influence this by posting a mavenrc file 
into your home directory.

 

Note, that the folks responsible for Maven *intentionally* decoupled the exec 
plugin from Java, as it is intended to execute anything, not just java - there 
are even situations, where a JVM different from the one used to execute 
Netbeans, Maven, Compilation, or Testexecution might be required to execute 
some other arcane java tool.

 

This means, that Netbeans has no business fixing that. You should fix that in 
your pom.xml, toolchain, mavenrc, or environment.

> exec-maven-plugin Java version different from maven-compiler-plugin Java 
> version in NetBeans project
> 
>
> Key: NETBEANS-4595
> URL: https://issues.apache.org/jira/browse/NETBEANS-4595
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 12.0, 12.4
> Environment: Windows 7, Ubuntu 20.04
>Reporter: Bernard
>Priority: Critical
> Attachments: testcase.zip
>
>
> I start up the NetBeans IDE 12.0 with a system environment JAVA_HOME (1.8) 
> lower than what the IDE uses (14).
> In the project properties, I have set the Build|Compile|Java Platform to JDK 
> 14 (Default) as expected.
> The IDE output window of Maven execution seems to show that the project is 
> run with JAVA_HOME for JDK 14, running project files this way.
> But the exec-maven-plugin fails with java.lang.UnsupportedClassVersionError: 
> com/mycompany/Start has been compiled by a more recent version of the Java 
> Runtime (class file version 55.0), this version of the Java Runtime only 
> recognizes class file versions up to 52.0
> This seems to indicate that the the exec-maven plugin runs under 1.8 in the 
> IDE, ignoring the IDE's own override setting of JAVA_HOME of 14. It appears 
> to use the JDK as set in JAVA_HOME, because if I set JAVA_HOME to 14.0 before 
> IDE startup then it works.
> I am looking for the correct way, the right places, to set the JDK for any 
> project specifically, regardless of the JAVA_HOME setting that is active when 
> the IDE starts.
> My case can be reproduced by running the IDE 12.0 with JDK 14.0 installed, 
> but with JAVA_HOME set to 1.8. before IDE startup. I use the Maven project 
> 

[jira] [Commented] (NETBEANS-4595) exec-maven-plugin Java version different from maven-compiler-plugin Java version in NetBeans project

2021-12-30 Thread Thomas Schapitz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4595?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17467130#comment-17467130
 ] 

Thomas Schapitz commented on NETBEANS-4595:
---

Contrary to wide spread perception, JAVA_HOME isn't always the way to indicate 
the preferred JDK, it is usually only interpreted in shell scripts wrapping 
tool invocations or server start scripts.

Many other cases rely on the OS's *path,* not even looking at the JAVA_HOME. 
Many iX-Systems use additional indirection by placing links to the preferred 
JVM into /bin and/or /usr/bin.

If you want to tie your exec plugins invocation to the very same java version 
that you used to start maven, the simplest way would be to look at using 
something like ${env.JAVA_HOME} to refer to the environment, that is active 
during your maven execution.

CAVEAT: Note, that the environment variables actually present depend on the 
wrapper script used (look into ${M2_HOME}/bin which might vary between Maven 
Versions and the OS used. You may also influence this by posting a mavenrc file 
into your home directory.

 

Note, that the folks responsible for Maven *intentionally* decoupled the exec 
plugin from Java, as it is intended to execute anything, not just java - there 
are even situations, where a JVM different from the one used to execute 
Netbeans, Maven, Compilation, or Testexecution might be required to execute 
some other arcane java tool.

 

This means, that Netbeans has no business fixing that. You should fix that in 
your pom.xml, toolchain, mavenrc, or environment.

> exec-maven-plugin Java version different from maven-compiler-plugin Java 
> version in NetBeans project
> 
>
> Key: NETBEANS-4595
> URL: https://issues.apache.org/jira/browse/NETBEANS-4595
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 12.0, 12.4
> Environment: Windows 7, Ubuntu 20.04
>Reporter: Bernard
>Priority: Critical
> Attachments: testcase.zip
>
>
> I start up the NetBeans IDE 12.0 with a system environment JAVA_HOME (1.8) 
> lower than what the IDE uses (14).
> In the project properties, I have set the Build|Compile|Java Platform to JDK 
> 14 (Default) as expected.
> The IDE output window of Maven execution seems to show that the project is 
> run with JAVA_HOME for JDK 14, running project files this way.
> But the exec-maven-plugin fails with java.lang.UnsupportedClassVersionError: 
> com/mycompany/Start has been compiled by a more recent version of the Java 
> Runtime (class file version 55.0), this version of the Java Runtime only 
> recognizes class file versions up to 52.0
> This seems to indicate that the the exec-maven plugin runs under 1.8 in the 
> IDE, ignoring the IDE's own override setting of JAVA_HOME of 14. It appears 
> to use the JDK as set in JAVA_HOME, because if I set JAVA_HOME to 14.0 before 
> IDE startup then it works.
> I am looking for the correct way, the right places, to set the JDK for any 
> project specifically, regardless of the JAVA_HOME setting that is active when 
> the IDE starts.
> My case can be reproduced by running the IDE 12.0 with JDK 14.0 installed, 
> but with JAVA_HOME set to 1.8. before IDE startup. I use the Maven project 
> generated from the command at https://wicket.apache.org/start/quickstart.html 
> - all set to defaults. The file to run is Start.java.
> This is important to me because I must open many different projects with 
> different JDKs so it is not practical to re-start the IDE with different 
> JAVA_HOME settings each time. As it is, it appears that my setting is poorly 
> defined - I must be missing something.
> I know that there are potentially other solutions in maven like the 
> Toolchains plugin. However, with all of that, I would lose IDE support which 
> is letting the project properties dialog drive the JDK in use for everything. 
> Plus I can already see that the IDE aims to do the right thing by overriding 
> JAVA_HOME - for some reason this does not seem to be working and I think that 
> this might be the bug.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-6342) Increasing IDE font

2021-12-30 Thread Thomas Schapitz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17467076#comment-17467076
 ] 

Thomas Schapitz edited comment on NETBEANS-6342 at 12/31/21, 6:04 AM:
--

This is already possible using the command line switch

--fontsize 

 

where  is a number indicating the size in points. Actual appearance might 
depend on your screen resolution though.

Most OSses allow to add it into the desktop link. You may also include it into 
a start script

 

And as https://issues.apache.org/jira/browse/NETBEANS-6143 hints. it could also 
be added to $[netbeans_home}/etc/netbeans.conf


was (Author: taps):
This is already possible using the command line switch

--fontsize 

 

where  is a number indicating the size in points. Actual appearance might 
depend on your screen resolution though.

Most OSses allow to add it into the desktop link. You may also include it into 
a start script

> Increasing IDE font
> ---
>
> Key: NETBEANS-6342
> URL: https://issues.apache.org/jira/browse/NETBEANS-6342
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: ABELARDO LEÓN GONZÁLEZ
>Priority: Minor
>
> i WOULD LIKE TO INCREASE THE SIZE OF THE FONT USED BY THE IDE, FOLDER NAMES, 
> FILE NAMES AND SO ON WITH CTRL+WHEEL OF THE MOUSE
>  



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-6152) Use 'verify' instead of 'install' as default Build's Maven goal

2021-12-30 Thread Thomas Schapitz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6152?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17467106#comment-17467106
 ] 

Thomas Schapitz commented on NETBEANS-6152:
---

You may configure this on a per project basis, using right click on the project 
-> Properties -> Actions.

Or you may use Tools -> Options -> Tab Java -> Tab Maven -> "Edit Global Custom 
Goal Definitions" (at least until 12.4, for 12.5 + 12.6  this is broken)

> Use 'verify' instead of 'install' as default Build's Maven goal
> ---
>
> Key: NETBEANS-6152
> URL: https://issues.apache.org/jira/browse/NETBEANS-6152
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Maven
>Affects Versions: 12.4
>Reporter: Bruno Borges
>Priority: Major
>
> When user clicks on "Build Project" or "Clean and Build Project", the current 
> goals triggered are 'install' and 'clean install'.
> By automatically installing every Maven-based project to the local 
> repository, NetBeans will constantly increase disk usage by throwing Maven 
> artifacts into the local repository without necessarily being the intent of 
> the developer.
> Instead, NetBeans should default to 'verify' and 'clean verify' as the 
> default Maven goals for these project actions.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-6163) Maven does not set generated source roots correctly

2021-12-30 Thread Thomas Schapitz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6163?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17467104#comment-17467104
 ] 

Thomas Schapitz commented on NETBEANS-6163:
---

This is rather a problem of certain improper coded plugins, then one of maven 
or netbeans.

By convention, a single plugin execution should place the package root of 
genereated source just one level below of 
target/generated-sources/, where 
this usually indicates the plugins name, e. g. 'jaxb'. The plugin will put this 
directory also into the source path, and netbeans will pick it up from there 
too.  In some cases though, noncompliant plugins allow to configure the output 
path. In others, usage of the build-helper-plugin is necessary.

 

In any case, netbeans shouldn't try to second guess the maven project 
configuration, but rather tap into the maven model intercepting the source 
roots during a 'priming build'.

> Maven does not set generated source roots correctly
> ---
>
> Key: NETBEANS-6163
> URL: https://issues.apache.org/jira/browse/NETBEANS-6163
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Martin Entlicher
>Assignee: Martin Entlicher
>Priority: Major
>  Labels: pull-request-available
> Fix For: Next
>
>  Time Spent: 2h 10m
>  Remaining Estimate: 0h
>
> Clone and build [https://github.com/dsyer/native-image-debug]
> Open the project in NetBeans and see that under {{Generated Sources}} there 
> are packages like: {{src.main.java.org.springframework.aot}}, etc.
> The initial {{src/main/java}} should not be included in the source root.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-6181) How to install QT in apache netbeans 12.5 in CentOS 6.8

2021-12-30 Thread Thomas Schapitz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17467100#comment-17467100
 ] 

Thomas Schapitz commented on NETBEANS-6181:
---

You need to install the required plugins using the old netbeans 8.2 plugin 
portal:

In Tools -> Plugins, go to Tab Settings, and make sure, the 'Netbeans 8.2 
plugin portal is enabled there.

Then move over to 'Available Plugins', update the list by clicking "Check for 
Newest", select and install C/C++.

 

> How to install QT in apache netbeans 12.5 in CentOS 6.8
> ---
>
> Key: NETBEANS-6181
> URL: https://issues.apache.org/jira/browse/NETBEANS-6181
> Project: NetBeans
>  Issue Type: New Feature
>Reporter: getche
>Priority: Major
> Attachments: ntbn12.5.PNG, ntbn8.2.PNG
>
>
> I was using netbeans 8.2 for programming in C++ using QT 4 .Netbeans 8.2 has 
> build in support of C++ and QT 4 .I run QT 4 in netbeans using by setting 
> this path of *qmake* file that is located in this directory 
> {*}/usr/lib64/qt4/bin/qmake{*}.That is shown is this images(ntbn8.2)
>  
> Now i have shifted to latest netbeans version that is 12.5 .After 
> installation of netbeans-12.5 on CentOS 6.8 i didnot found *C++ support* and 
> *QT support* in it .
> Just like in this images(ntbn12.5)



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-6181) How to install QT in apache netbeans 12.5 in CentOS 6.8

2021-12-30 Thread Thomas Schapitz (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Schapitz resolved NETBEANS-6181.
---
Resolution: Not A Problem

> How to install QT in apache netbeans 12.5 in CentOS 6.8
> ---
>
> Key: NETBEANS-6181
> URL: https://issues.apache.org/jira/browse/NETBEANS-6181
> Project: NetBeans
>  Issue Type: New Feature
>Reporter: getche
>Priority: Major
> Attachments: ntbn12.5.PNG, ntbn8.2.PNG
>
>
> I was using netbeans 8.2 for programming in C++ using QT 4 .Netbeans 8.2 has 
> build in support of C++ and QT 4 .I run QT 4 in netbeans using by setting 
> this path of *qmake* file that is located in this directory 
> {*}/usr/lib64/qt4/bin/qmake{*}.That is shown is this images(ntbn8.2)
>  
> Now i have shifted to latest netbeans version that is 12.5 .After 
> installation of netbeans-12.5 on CentOS 6.8 i didnot found *C++ support* and 
> *QT support* in it .
> Just like in this images(ntbn12.5)



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Closed] (NETBEANS-6332) Open-Ended Questions Quizzes and Types

2021-12-30 Thread Thomas Schapitz (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6332?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Schapitz closed NETBEANS-6332.
-
Resolution: Won't Fix

Spam

> Open-Ended Questions Quizzes and Types
> --
>
> Key: NETBEANS-6332
> URL: https://issues.apache.org/jira/browse/NETBEANS-6332
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Jeniferpeter
>Priority: Major
>
> Open-completed requesting require a positive, essential reaction. These sales 
> are as a rule strong when you really need understudies to think about their 
> own assessments, thoughts, and feelings. Now and again, the fitting reaction 
> might even be appeared unmistakably equivalent to information certainly known 
> to the expert [zodiac compatibility 
> quiz|https://www.quizoracle.com/zodiac-sign-compatibility/].
>  
>  
>  
> Made by craftsmanship, one-page or multi-page evaluation is the technique for 
> overseeing while simultaneously proposing an open-completed ice breaker since 
> you really need understudies to focus in on their encounters and not the 
> visuals.
>  
>  
> Close Ended Questions
>  
> On an extremely fundamental level, these sales generally require short, 
> routinely, single word answers. These could participate regardless are not 
> bound to 'genuine or fake's or 'yes or no' questions.
>  
>  
> Coming up next are a few game plans that depict the utilization of closed 
> completed sales including 'certifiable or fake's solicitations.
>  
>  
> Fit Tac-Toe with Questions
>  
>  
> Award understudies to react to questions as they play this esteemed game. 
> Each cell of the Tic-Tac-Toe grid presents a 'liberal or fake's solicitation. 
> Understudies can overwhelm the match by looking out for three sales in 
> development precisely.
>  
> Fit Tac-Toe with Questions
>  
>  
> Genuine or False Maze
>  
> Set a reenacted maze puzzle in which understudies proceed by seeing veritable 
> or phony sort questions precisely. Each right response does without the 
> cutoff focuses to the correct way at any rate some prohibited response 
> requires the understudy to take a substitute way.
>  
>  
> Huge or False Maze
>  
>  
> Pre-Class Trivia
> A brilliant help to offer shut completed ice breakers and urge understudies 
> to think. Understudies similarly find to see the arrangement later a short 
> time span range.
>  
>  
> Pre-Class Trivia
>  
>  
> Putting together/Classification Quizzes
>  
> Putting together speculations that understudies should gather things into 
> bunches subject to a regular brand name like their turn of events, shape, 
> covering, brand, or as per an affirmed perspective anything that causes them 
> to consent to a specific kind.
>  
>  
> Coming up next are a few courses of action that show putting together and 
> portrayal.
>  
> Portrayal
>  
> The commendable straightening out arrangement that licenses understudies to 
> move things in different game-plans.
>  
> Gathering
>  
>  
> Gathering Exercise With Timed Options:
> An instinctive sales test that licenses understudies to drag various things 
> that appear on the screen to their different classes in a set time.
>  
>  
> Portrayal Exercise with Timed Options
>  
>  
> Drag Drop Sort
> Accumulate a cooperate with and obviously invigorating straightening out test 
> using the worked on plan.
>  
> Drag Drop Sort
>  
>  
> Sequencing Quizzes
>  
> Sequencing rehearses need understudies to see the right mentioning of a 
> correspondence, a development, or an ever-evolving [temperament 
> quiz|https://www.quizoracle.com/temperament-quiz/].
>  
>  
> Coming up next are some test puts together that show sequencing works out.
>  
>  
> Zeroing in on Activity With Slotted Tray
>  
> This association licenses you to plan zeroing in on or sequencing rehearses 
> especially. Understudies are given from the beginning a circumstance and some 
> time later a fast outline of things to be made constantly.
>  
>  
> Zeroing in on Activity with Slotted Tray
>  
>  
> Development Strategy
>  
> Accumulate an extraordinary sequencing test that watches out for what to be 
> sequenced as multi-concealed pieces. Understudies get 10 undertakings to 
> place the spots on the board in a right approach.
>  
>  
> Development Strategy
>  
>  
> Sentence Sequencing Exercise
>  
> This planned exertion helps you with extra uplifting understudies' sentence 
> improvement restricts what's more works with audit of fundamental definitions 
> and portrayals.
>  
>  
> Sentence Sequencing Exercise
>  
>  
> Naming Or Identification Quizzes
>  
> Naming tests surmise that understudies should stamp or see the right reaction 
> with the help of unequivocal signs. Text-based venturing rehearses all things 
> considered help understudies with evaluating express terms or answers in any 
> case 

[jira] [Closed] (NETBEANS-6333) 8 Types Of Interactive Quiz Formats To Use In Your eLearning Courses

2021-12-30 Thread Thomas Schapitz (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6333?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Schapitz closed NETBEANS-6333.
-
Resolution: Won't Fix

Spam

> 8 Types Of Interactive Quiz Formats To Use In Your eLearning Courses


> --
>
> Key: NETBEANS-6333
> URL: https://issues.apache.org/jira/browse/NETBEANS-6333
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Jeniferpeter
>Priority: Major
>
>  
> Summation: Course creators and Instructional Designers are often depended 
> with building tests for their [call of duty quiz questions and 
> answers|https://www.quizoracle.com/wpquize/the-ultimate-call-of-duty-quiz/] 
> courses. This article examines 8 clever affiliations and ready to-use designs 
> that could be used to create online tests.
>  
>  
>  
> Natural Quiz Formats You Should Use In Your eLearning Courses
>  
>  
>  
> Making stunning internet based tests isn't really tangled. It basically joins 
> drafting the right demands and answers, presenting them at the right point, 
> and presenting them in an appropriate and insightful association. Here is a 
> confined guide[1] to help you with the essential two. What's more I will 
> expand inclining in the direction of the third part – cunning test designs, 
> in this article. We will talk about 8 sorts of instinctive test designs that 
> you can use in your eLearning courses. I will moreover circle in designs for 
> every plan, from a motivation structure contraption – Raptivity, for better 
> course of action.
>  
>  
> Ordinary Learning Design: Using An Interactive Learning Software To Increase 
> Engagement In eLearning Courses
>  
>  
> Observe the fundamental bits of nature and how they can be connected with 
> your eLearning modules rapidly using a cleverness getting the hang of 
> programming!
>  
>  
> GET THE EBOOK
>  
>  
> Could we start.
> Diverse Choice Questions
>  
>  
> Probably the most thoroughly seen sort of test questions, different choice 
> questions, or MCQs as they are unavoidably known, are among the best 
> techniques for testing understudies. They present grouped possible response 
> decisions for one sales, one of which is right and the others are basically 
> 'distractors'.
>  
>  
> Here are some one of a kind choice test designs that you could use in your 
> typical eLearning courses.
>  
>  
> Turn The Wheel
>  
> A splendid shrewd game-plan to present a pool of various choice demands on a 
> level of focuses/subjects. Right when the customer turns the wheel, it 
> unusually picks and throws each question thus, from the point on which the 
> wheel's needle [zodiac sign compatibility 
> quiz|https://www.quizoracle.com/zodiac-sign-compatibility/].
>  
>  
> Turn the Wheel
>  
> Million-Dollar Quiz
>  
> Change standard specific choice requesting to a staggering million-dollar 
> game test and light up your course using this arrangement. Understudies get 
> to test their understanding in a charming way as they climb levels.
>  
> Million-Dollar Quiz
>  
>  
> One-Page Assessment
>  
> The commendable unique choice solicitation design when you would prefer not 
> to get all luxurious.
>  
> One-Page Assessment
>  
>  
> Match-The-Pair
>  
> A match-the-pair test joins two reaching outlines of words, pictures, or 
> articulations. Everything in the fundamental blueprint will join with 
> (something like one) things in the second.
>  
>  
> Coming up next are some ready to-use, match-the-pair test puts together that 
> you could use in your courses.
>  
>  
> Like Pair With Fixed Attempts
>  
> Encourage contemplations and related nuances using this direct yet strong 
> pair-matching turn of events. Understudies get a ton of tries to match each 
> pair.
>  
> Like Pair with Fixed Attempts
>  
>  
> Match The Pairs
>  
> An irrefutable match-the-pair joint exertion design that really sees 
> understudies' understanding of express contemplations, subjects, definitions, 
> or language.
>  
>  
> Match The Pairs
>  
> One-Page Assessment
>  
> The praiseworthy correspondence relationship to set a hard and fast 
> evaluation using a game-plan of requesting types including match-the-pair 
> [clash royale test|https://www.quizoracle.com/clash-royale-quiz/].
>  
>  
> One-Page Assessment
>  
> Fill-In-The-Blanks
>  
> Deal with free demands require an understudy to complete a sentence with the 
> missing word(s). Ideally, these should be no sign questions to test the data 
> on your understudies totally, yet they could harden pieces of information 
> also enduring the goal is basically to permit them to concentrate on thoughts 
> casually.
>  
>  
> Coming up next are a couple of designs depicting the utilization of deal with 
> free demands.
>  
> One-Page Assessment
>  
> This praiseworthy design shows the 

[jira] [Closed] (NETBEANS-6334) 10 support for why you ought to use tests with teens

2021-12-30 Thread Thomas Schapitz (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Schapitz closed NETBEANS-6334.
-
Resolution: Invalid

SPAM

> 10 support for why you ought to use tests with teens
> 
>
> Key: NETBEANS-6334
> URL: https://issues.apache.org/jira/browse/NETBEANS-6334
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Jeniferpeter
>Priority: Major
>
>  
> Why may it be fitting for you to use tests with youngsters? For sure, when 
> colossal measures of us were young, we regarded the tests in our cherished 
> little by little magazines. For example, those that would kid up whether you 
> were a 'generally A's/B's/Cs' sort. Now we can test to our spirits' substance 
> on the web – there is constantly one we haven't attempted the [arsenal 
> quiz|https://www.quizoracle.com/arsenal/]
>  
>  
>  
> Surely, even as adults we love a test. It looks like a slice back 
> confidential to handle while we grab some tea at break time – what total am I 
> like this? What total do I have any contribution in that? What will my score 
> be?
>  
>  
> At any rate, how is it that we could apply this enjoyment to tests with 
> youngsters in the study lobby? What makes a test a fair homeroom mechanical 
> gathering? Coming up next are 10 reasons that might cause you to contemplate 
> including tests in your review entrance:
>  
> Tests are securing
>  
>  
> Clear as that – they are satisfying. We as a rule understand that expecting 
> learning is fun, we learn better.
>  
>  
> For teachers, a test can be a couple of sneak peaks of unwinding from our 
> colossal length of checking. Notwithstanding, expecting we like it, is there 
> any genuine help for why the adolescents we wouldn't show correspondingly 
> welcome a dash of relaxing fun while working?
>  
>  
> Tests raise sureness
>  
>  
> Particularly alloted, custom tests can keep up with confirmation and 
> sureness. Right when understudies can challenge themselves yet can succeed, 
> their sureness can make.
>  
>  
> A particular test kills the strain that a 'test' can carry and associates 
> with children to submit bungles unassumingly. Whether or not used in 
> gatherings or matches, the shot at a funquiz can in like manner help those 
> children more unsure to submit messes up, especially expecting the test 
> grants them to endeavor again.
>  
>  
> Tests for young people can help organizing and see progress
>  
>  
> Whether or not the test is a pre-theme evaluation or at a midpoint, it can 
> really help you see what understudies totally know or have learned.
>  
>  
> In like way, a test will enlighten your after stages as for expecting a 
> solitary clarification. In all honesty, tests are furthermore a striking 
> framework for supporting learning for understudies generally through a unit 
> of work.
>  
>  
> Tests can stay aware of individualized learning
>  
>  
> Tests are extremely easy to disengage, while interfacing all children to 
> partake in an equivalent endeavor.
>  
>  
> For example, you can apply identical arrangement to the a test and learning 
> materials, but with different requesting. This is a clear kind of partition.
>  
>  
> It can nearly help you with giving the best level of challenge and pinpoint 
> how to assist each understudy with showing up at their most imperative [the 
> walking dead quiz|https://www.quizoracle.com/walking-dead-quiz/].
>  
>  
> Tests are outstanding for plenaries
>  
>  
> A test or audit toward the satisfaction of a depiction is a sensible 
> technique for getting a fast arrangement of who needs help and where you 
> could challenge understudies further.
>  
>  
> Having a standard approach of meta-savvy and evaluative sales online that 
> understudies can get to through an iPad or PC in any model makes this time 
> capable totally anticipating the teacher too.
>  
>  
> Furthermore, young people will begin considering their evolving unreservedly.
>  
> Tests are astounding for end of subject appraisals
>  
>  
> A test close to the satisfaction of a depiction or a unit of work is a 
> communicating with procedure for seeing how much understudies have learned. 
> It can likewise enlighten any further follow up required.
>  
>  
> This without the fundamental for the strain that a more standard test can 
> bring various children!
>  
>  
> Tests are valuable for change
>  
>  
> Pre-test tests can help understudies with redesiging without recollecting 
> that they are doing it.
>  
>  
> Furthermore a test is a fair way for an understudy to see and anticipate 
> hazard for data openings. It's in like manner an endless methodology for 
> helping them with finishing the openings to help their affirmation concerning 
> formal testing for [the fast and the furious 
> 

[jira] [Commented] (NETBEANS-6345) Project platform libraries missing from project compiler classpath

2021-12-30 Thread Thomas Schapitz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17467082#comment-17467082
 ] 

Thomas Schapitz commented on NETBEANS-6345:
---

What Build Tool are you using? If it is maven, you might want to take a look at:

Tools -> Options -> Tab Java -> Tab Maven -> Category: Execution -> Default JDK

> Project platform libraries missing from project compiler classpath
> --
>
> Key: NETBEANS-6345
> URL: https://issues.apache.org/jira/browse/NETBEANS-6345
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 12.6
>Reporter: Arnaud Kleinveld
>Priority: Minor
>
> Configuration of Fedora 34 with java 11 and 1.8 from repo and used 
> alternatives set to java 11 as the default. When Netbeans is launched on 
> selected version and project platform is specified to be 1.8, the project 
> libraries node expands with JDK 1.8 and inline compiler is using this 
> correctly, however when the project is built 1.8 specific libraries seem to 
> be missing from classpath, e.g. javax.activation.DataSource.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-6342) Increasing IDE font

2021-12-30 Thread Thomas Schapitz (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6342?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17467076#comment-17467076
 ] 

Thomas Schapitz commented on NETBEANS-6342:
---

This is already possible using the command line switch

--fontsize 

 

where  is a number indicating the size in points. Actual appearance might 
depend on your screen resolution though.

Most OSses allow to add it into the desktop link. You may also include it into 
a start script

> Increasing IDE font
> ---
>
> Key: NETBEANS-6342
> URL: https://issues.apache.org/jira/browse/NETBEANS-6342
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: ABELARDO LEÓN GONZÁLEZ
>Priority: Minor
>
> i WOULD LIKE TO INCREASE THE SIZE OF THE FONT USED BY THE IDE, FOLDER NAMES, 
> FILE NAMES AND SO ON WITH CTRL+WHEEL OF THE MOUSE
>  



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-6346) Toggle Comment in .less file

2021-12-30 Thread Dave D (Jira)
Dave D created NETBEANS-6346:


 Summary: Toggle Comment in .less file
 Key: NETBEANS-6346
 URL: https://issues.apache.org/jira/browse/NETBEANS-6346
 Project: NetBeans
  Issue Type: Bug
  Components: ide - Code
Affects Versions: 12.5
 Environment: *Product Version:* Apache NetBeans IDE 12.5

*Java:* 16; Java HotSpot(TM) 64-Bit Server VM 16+36-2231

*Runtime:* Java(TM) SE Runtime Environment 16+36-2231

*System:* Mac OS X version 10.16 running on x86_64; UTF-8; en_US (nb)
Reporter: Dave D


I have Cmd+/ set up to toggle comments. It works fine everywhere except in 
.less files.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-5786) IDE reporting incorrect system version

2021-12-30 Thread Dave D (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dave D resolved NETBEANS-5786.
--
Resolution: Resolved

This has apparently been fixed in some recent NB version. No longer happening 
here in NB 12.5

> IDE reporting incorrect system version
> --
>
> Key: NETBEANS-5786
> URL: https://issues.apache.org/jira/browse/NETBEANS-5786
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 12.4
> Environment: *Product Version:* Apache NetBeans IDE 12.4
> *Java:* 16; Java HotSpot(TM) 64-Bit Server VM 16+36-2231
> *Runtime:* Java(TM) SE Runtime Environment 16+36-2231
> *System:* Mac OS X version 11.4 running on x86_64; UTF-8; en_US (nb)
>Reporter: Dave D
>Priority: Minor
>
> About NetBeans displays incorrect system version.  I am running Mac OS 11.4 
> and NetBeans displays Mac OS 10.16.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5702) N12.3 is kills Wildfly-22 when trying to debug javaEE project

2021-12-30 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5702?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17466936#comment-17466936
 ] 

Geertjan Wielenga commented on NETBEANS-5702:
-

Can you reproduce with 12.6?

> N12.3 is kills Wildfly-22 when trying to debug javaEE project
> -
>
> Key: NETBEANS-5702
> URL: https://issues.apache.org/jira/browse/NETBEANS-5702
> Project: NetBeans
>  Issue Type: Bug
>  Components: serverplugins - WildFly
>Affects Versions: 12.3
> Environment: *Product Version:* Apache NetBeans IDE 12.3
> *Java:* 15.0.2; OpenJDK 64-Bit Server VM 15.0.2+7
> *Runtime:* OpenJDK Runtime Environment 15.0.2+7
> *System:* Mac OS X version 11.2.3 running on x86_64; UTF-8; en_US (nb)
> *User directory:* /Users//Library/Application Support/NetBeans/12.3
> *Cache directory:* /Users//Library/Caches/NetBeans/12.3
>  
>Reporter: Paul
>Priority: Blocker
>  Labels: debug, plug-in, wildfly
>
> replicate by:
>  * create new EAR project w/ Maven
>  * add generic WS resource 
>  * add generic SLSB
>  * clean/build
>  * right-click in projects window, select Debug or Run
> Nb12.3 starts the server, deploys the EAR, then starts the server again 
> (seems unable to detect the server is already running).
> The second start attempt fails (port in use), and wildfly is killed.
> The loss of productivity is drastic



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-6223) Will not run after installation

2021-12-30 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6223?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17466935#comment-17466935
 ] 

Geertjan Wielenga commented on NETBEANS-6223:
-

Can you reproduce with 12.6?

> Will not run after installation
> ---
>
> Key: NETBEANS-6223
> URL: https://issues.apache.org/jira/browse/NETBEANS-6223
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Model
>Affects Versions: 12.5
> Environment: OS Name:                   Microsoft Windows 10 Home
> OS Version:                10.0.19043 N/A Build 19043
> OS Manufacturer:           Microsoft Corporation
> OS Configuration:          Standalone Workstation
> OS Build Type:             Multiprocessor Free
> System Manufacturer:       HP
> System Model:              HP 250 G5 Notebook PC
> System Type:               x64-based PC
> Processor(s):              1 Processor(s) Installed.
>                            [01]: Intel64 Family 6 Model 78 Stepping 3 
> GenuineIntel ~2000 Mhz
> BIOS Version:              Insyde F.50, 11/20/2020
> Total Physical Memory:     8,083 MB
> Available Physical Memory: 2,120 MB
> Virtual Memory: Max Size:  10,291 MB
> Virtual Memory: Available: 1,734 MB
> Virtual Memory: In Use:    8,557 MB
> Hotfix(s):                 5 Hotfix(s) Installed.
>                            [01]: KB5006365
>                            [02]: KB5000736
>                            [03]: KB5007186
>                            [04]: KB5006753
>                            [05]: KB5001405
>  
> java -version
> java version "11.0.3" 2019-04-16 LTS
> Java(TM) SE Runtime Environment 18.9 (build 11.0.3+12-LTS)
> Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.3+12-LTS, mixed mode)
>Reporter: Dan Gormley
>Assignee: gretchenpecson
>Priority: Blocker
> Attachments: Screenshot from 2021-11-28 09-05-01.png
>
>
> After installing Netbeans 12.5, it opens without issue. Once you close the 
> application and try to reopen a warning is generated :
> {code:java}
> Warning - could not install some modules: The nb-javac Java editing support 
> library - The module named org.netbeans.modules.nbjavac.impl was needed and 
> not found. The nb-javac Java editing support library - The module named 
> org.netbeans.modules.nbjavac.api was needed and not found.{code}
>  
> Clicking on  [Disable Modules and Continue] does nothing but closes the 
> program and when you go to reopen Netbeans, you are presented with this 
> warning again. The program is unable to operate. 



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-6311) Estou com problema para abrir um projeto

2021-12-30 Thread Geertjan Wielenga (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6311?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Geertjan Wielenga updated NETBEANS-6311:

Priority: Minor  (was: Blocker)

> Estou com problema para abrir um projeto
> 
>
> Key: NETBEANS-6311
> URL: https://issues.apache.org/jira/browse/NETBEANS-6311
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.5
>Reporter: David Duvoizem Motta
>Assignee: David Duvoizem Motta
>Priority: Minor
> Attachments: image-2021-12-17-16-29-07-318.png
>
>
> Sempre que eu tento abris um arquivo da o seguinte erro 
> A java.lang.IllegalStateException exception has occurred.
> com os seguintes detalhes
> java.lang.IllegalStateException: Listener 9622062 is already attached to 
> J2SEProjectPlatform 105472092 for Project appmensagens.
>   at 
> org.netbeans.modules.javawebstart.JWSProjectOpenHook$PlatformListener.attach(JWSProjectOpenHook.java:184)
>   at 
> org.netbeans.modules.javawebstart.JWSProjectOpenHook.projectOpened(JWSProjectOpenHook.java:68)
>   at 
> org.netbeans.spi.project.ui.ProjectOpenedHook$1.projectOpened(ProjectOpenedHook.java:60)
>   at 
> org.netbeans.spi.project.ui.support.UILookupMergerSupport$OpenHookImpl.projectOpened(UILookupMergerSupport.java:223)
>   at 
> org.netbeans.spi.project.ui.ProjectOpenedHook$1.projectOpened(ProjectOpenedHook.java:60)
> [catch] at 
> org.netbeans.modules.project.ui.OpenProjectList.notifyOpened(OpenProjectList.java:1323)
>   at 
> org.netbeans.modules.project.ui.OpenProjectList.doOpenProject(OpenProjectList.java:1404)
>   at 
> org.netbeans.modules.project.ui.OpenProjectList.open(OpenProjectList.java:848)
>   at 
> org.netbeans.modules.project.ui.OpenProjectList$6.run(OpenProjectList.java:672)
>   at 
> org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>   at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>   at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> eu não sei o que está acontecendo já que antes não ocorria tal problema



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-6311) Estou com problema para abrir um projeto

2021-12-30 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6311?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17466934#comment-17466934
 ] 

Geertjan Wielenga commented on NETBEANS-6311:
-

English, please.

> Estou com problema para abrir um projeto
> 
>
> Key: NETBEANS-6311
> URL: https://issues.apache.org/jira/browse/NETBEANS-6311
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.5
>Reporter: David Duvoizem Motta
>Assignee: David Duvoizem Motta
>Priority: Blocker
> Attachments: image-2021-12-17-16-29-07-318.png
>
>
> Sempre que eu tento abris um arquivo da o seguinte erro 
> A java.lang.IllegalStateException exception has occurred.
> com os seguintes detalhes
> java.lang.IllegalStateException: Listener 9622062 is already attached to 
> J2SEProjectPlatform 105472092 for Project appmensagens.
>   at 
> org.netbeans.modules.javawebstart.JWSProjectOpenHook$PlatformListener.attach(JWSProjectOpenHook.java:184)
>   at 
> org.netbeans.modules.javawebstart.JWSProjectOpenHook.projectOpened(JWSProjectOpenHook.java:68)
>   at 
> org.netbeans.spi.project.ui.ProjectOpenedHook$1.projectOpened(ProjectOpenedHook.java:60)
>   at 
> org.netbeans.spi.project.ui.support.UILookupMergerSupport$OpenHookImpl.projectOpened(UILookupMergerSupport.java:223)
>   at 
> org.netbeans.spi.project.ui.ProjectOpenedHook$1.projectOpened(ProjectOpenedHook.java:60)
> [catch] at 
> org.netbeans.modules.project.ui.OpenProjectList.notifyOpened(OpenProjectList.java:1323)
>   at 
> org.netbeans.modules.project.ui.OpenProjectList.doOpenProject(OpenProjectList.java:1404)
>   at 
> org.netbeans.modules.project.ui.OpenProjectList.open(OpenProjectList.java:848)
>   at 
> org.netbeans.modules.project.ui.OpenProjectList$6.run(OpenProjectList.java:672)
>   at 
> org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>   at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>   at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> eu não sei o que está acontecendo já que antes não ocorria tal problema



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-6281) Hitting the enter key at the end of a line of code jumps the cursor to the start of the next line, and the code is not formatted for alignment or indentation.

2021-12-30 Thread Geertjan Wielenga (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6281?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Geertjan Wielenga updated NETBEANS-6281:

Component/s: java - Editor
 (was: cnd - Editor)

> Hitting the enter key at the end of a line of code jumps the cursor to the 
> start of the next line, and the code is not formatted for alignment or 
> indentation.
> --
>
> Key: NETBEANS-6281
> URL: https://issues.apache.org/jira/browse/NETBEANS-6281
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 12.6
>Reporter: luke
>Priority: Blocker
> Fix For: 12.6
>
> Attachments: 12.5.gif, 12.6-1.gif
>
>
> As shown in the attached gif:
> !12.5.gif!
> !12.6-1.gif!



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-6316) The "Preview Design" funtion of the GUI Builder does not work.

2021-12-30 Thread Geertjan Wielenga (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6316?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Geertjan Wielenga updated NETBEANS-6316:

Priority: Minor  (was: Critical)

> The "Preview Design" funtion of the GUI Builder does not work.
> --
>
> Key: NETBEANS-6316
> URL: https://issues.apache.org/jira/browse/NETBEANS-6316
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 12.6
>Reporter: zsyixy
>Priority: Minor
>
> The "Preview Design" funtion of the GUI Builder does't work while choosing 
> "Windows" or "Windows classic" look and feel, on the Windows10 platform.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-6316) The "Preview Design" funtion of the GUI Builder does not work.

2021-12-30 Thread Geertjan Wielenga (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6316?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Geertjan Wielenga updated NETBEANS-6316:

Component/s: java - Editor
 (was: cnd - Editor)

> The "Preview Design" funtion of the GUI Builder does not work.
> --
>
> Key: NETBEANS-6316
> URL: https://issues.apache.org/jira/browse/NETBEANS-6316
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
>Affects Versions: 12.6
>Reporter: zsyixy
>Priority: Critical
>
> The "Preview Design" funtion of the GUI Builder does't work while choosing 
> "Windows" or "Windows classic" look and feel, on the Windows10 platform.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5099) PhaseListener - RuntimeException

2021-12-30 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17466933#comment-17466933
 ] 

Geertjan Wielenga commented on NETBEANS-5099:
-

Can you try to reproduce with 12.6?

> PhaseListener - RuntimeException
> 
>
> Key: NETBEANS-5099
> URL: https://issues.apache.org/jira/browse/NETBEANS-5099
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Classpath, java - Compiler, javaee - JSF
>Affects Versions: 12.0, 12.2, 12.3
> Environment: Netbeans 12.3, Glassfish 4 and Glassfish 5, Project: 
> jdk1.8.0_65, Netbeans: jdk-15.0.1
>Reporter: S. M.
>Priority: Blocker
>
> Reopened because: It worked with new NB 12.3 for a week or so - now the 
> Exception popped up again and is lasting now. There where no changes made 
> from my side. 
> By the way: NETBEANS-5098 popped up at the same time.
> The exactly same code works fine when it is compiled and deployed outside 
> Netbeans or with an older Netbeans version. So I feel it is a Netbeans Issue. 
> The project has to be re-compiled in the old IDE before it works in it ... 
> Here comes the error description for reproducing:
> Make an new WebApplication with Glassfish 4.1.2 or 5.0.1. and add JavaServer 
> Faces Framework.
> Add the following faces-config.xml:
> {code}
> 
>xmlns="http://java.sun.com/xml/ns/javaee;
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
>  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
> [http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd];>
> 
> test.SessionTimeoutPhaseListener
> 
>  
> {code}
> Add the following class:
> {code}
> package test;
> import javax.faces.event.PhaseEvent;
>  import javax.faces.event.PhaseId;
>  import javax.faces.event.PhaseListener;
> public class SessionTimeoutPhaseListener implements PhaseListener {
> @Override
>  public void beforePhase(PhaseEvent event) {
>  }
> @Override
>  public void afterPhase(PhaseEvent event) {
>  }
> public void handleSessionTimeout(PhaseEvent event) {
>  }
> @Override
>  public PhaseId getPhaseId()
> { return PhaseId.RESTORE_VIEW; }
> }
> {code}
> At deployment (within NB) on Glassfish 4 or 5 the following Exeption occurs.
> {code}
> Info: Initializing Mojarra 2.2.14 ( 20161114-2152 unable to get svn info) for 
> context '/WebApplication1'
>  Severe: Critical error during deployment: 
>  com.sun.faces.config.ConfigurationException: 
>  Source Document: jndi:/server/WebApplication1/WEB-INF/faces-config.xml
>  Cause: Unable to create a new instance of 
> 'test.SessionTimeoutPhaseListener': java.lang.RuntimeException: 
>  at 
> com.sun.faces.config.processor.AbstractConfigProcessor.createInstance(AbstractConfigProcessor.java:378)
>  at 
> com.sun.faces.config.processor.LifecycleConfigProcessor.addPhaseListeners(LifecycleConfigProcessor.java:154)
>  at 
> com.sun.faces.config.processor.LifecycleConfigProcessor.process(LifecycleConfigProcessor.java:132)
>  at 
> com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:152)
>  at 
> com.sun.faces.config.processor.FactoryConfigProcessor.process(FactoryConfigProcessor.java:239)
>  at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:439)
>  at 
> com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:227)
>  at 
> org.apache.catalina.core.StandardContext.contextListenerStart(StandardContext.java:5394)
>  at com.sun.enterprise.web.WebModule.contextListenerStart(WebModule.java:743)
>  at org.apache.catalina.core.StandardContext.start(StandardContext.java:5963)
>  at com.sun.enterprise.web.WebModule.start(WebModule.java:691)
>  at 
> org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:1041)
>  at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:1024)
>  at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:747)
>  at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:2286)
>  at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1932)
>  at com.sun.enterprise.web.WebApplication.start(WebApplication.java:139)
>  at org.glassfish.internal.data.EngineRef.start(EngineRef.java:122)
>  at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:291)
>  at 
> org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:352)
>  at 
> com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:500)
>  at 
> com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:219)
>  at 
> org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:491)
>  at 
> com.sun.enterprise.v3.admin.CommandRunnerImpl$2$1.run(CommandRunnerImpl.java:539)
>  at 
> com.sun.enterprise.v3.admin.CommandRunnerImpl$2$1.run(CommandRunnerImpl.java:535)
>  at 

[jira] [Created] (NETBEANS-6345) Project platform libraries missing from project compiler classpath

2021-12-30 Thread Arnaud Kleinveld (Jira)
Arnaud Kleinveld created NETBEANS-6345:
--

 Summary: Project platform libraries missing from project compiler 
classpath
 Key: NETBEANS-6345
 URL: https://issues.apache.org/jira/browse/NETBEANS-6345
 Project: NetBeans
  Issue Type: Bug
  Components: java - Compiler
Affects Versions: 12.6
Reporter: Arnaud Kleinveld


Configuration of Fedora 34 with java 11 and 1.8 from repo and used alternatives 
set to java 11 as the default. When Netbeans is launched on selected version 
and project platform is specified to be 1.8, the project libraries node expands 
with JDK 1.8 and inline compiler is using this correctly, however when the 
project is built 1.8 specific libraries seem to be missing from classpath, e.g. 
javax.activation.DataSource.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-30 Thread Marcin Jamszolik (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-765?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17466902#comment-17466902
 ] 

Marcin Jamszolik commented on NETBEANS-765:
---

As [~ebakke] suggested.
The first thing you want to do is to switch your theme in 
Options->Appearance->Look and Feel to FlatLaf Dark.
Restart and see if you are satisfied with the result.

PS: Even though it might be an optional thing at this point, I tend to still 
get the patched JDK Runtime from JetBrains to deal with any issues with 
Fonts/Rendering at [https://github.com/JetBrains/JetBrainsRuntime/wiki]
and point netbeans to it in the `etc/netbeans.conf` folder 
`netbeans_jdkhome="/home/mjamsz/Apps/jbrsdk_11`

Should be all set at that point with 4k HiDPI

It sounds like in near future FlatLaf will be default, that's great to hear! 



Thank you [~DevCharly] for bringing us FlatLaf to the Netbeans Community!!!

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png, Screenshot from 2021-12-27 
> 14-14-18.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-30 Thread Eirik Bakke (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-765?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17466751#comment-17466751
 ] 

Eirik Bakke edited comment on NETBEANS-765 at 12/30/21, 8:59 AM:
-

[~khoek] You can enable 2x HiDPI scaling by setting the environment variable 
GDK_SCALE=2 and using FlatLAF as the Look & Feel.

Can you see if this solves the problem?

(There is also a Pull Request for making NetBeans set GDK_SCALE automatically 
in the future; see https://github.com/apache/netbeans/pull/3113 . Future 
NetBeans versions will also have FlatLAF as the default LAF, as it works well 
with HiDPI scaling enabled.)


was (Author: ebakke):
[~khoek] You can enable 2x HiDPI scaling by setting the environment variable 
GDK_SCALE=2 and using FlatLAF as the Look & Feel.

Can you see if this solves the problem?

(There is also a Pull Request for making NetBeans set GDK_SCALE automatically 
in the future; see https://github.com/apache/netbeans/pull/3113 )

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png, Screenshot from 2021-12-27 
> 14-14-18.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-30 Thread Eirik Bakke (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-765?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17466751#comment-17466751
 ] 

Eirik Bakke commented on NETBEANS-765:
--

[~khoek] You can enable 2x HiDPI scaling by setting the environment variable 
GDK_SCALE=2 and using FlatLAF as the Look & Feel.

Can you see if this solves the problem?

(There is also a Pull Request for making NetBeans do this automatically in the 
future; see https://github.com/apache/netbeans/pull/3113 )

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png, Screenshot from 2021-12-27 
> 14-14-18.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-30 Thread Eirik Bakke (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-765?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17466751#comment-17466751
 ] 

Eirik Bakke edited comment on NETBEANS-765 at 12/30/21, 8:58 AM:
-

[~khoek] You can enable 2x HiDPI scaling by setting the environment variable 
GDK_SCALE=2 and using FlatLAF as the Look & Feel.

Can you see if this solves the problem?

(There is also a Pull Request for making NetBeans set GDK_SCALE automatically 
in the future; see https://github.com/apache/netbeans/pull/3113 )


was (Author: ebakke):
[~khoek] You can enable 2x HiDPI scaling by setting the environment variable 
GDK_SCALE=2 and using FlatLAF as the Look & Feel.

Can you see if this solves the problem?

(There is also a Pull Request for making NetBeans do this automatically in the 
future; see https://github.com/apache/netbeans/pull/3113 )

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png, Screenshot from 2021-12-27 
> 14-14-18.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists