[netbeans] branch master updated: [NETBEANS-3961] Save project location for reuse for native maven projects.

2020-03-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 6594b1f  [NETBEANS-3961] Save project location for reuse for native 
maven projects.
 new 47500cb  Merge pull request #2002 from 
errael/SaveDefaultProjectLocationByMaven
6594b1f is described below

commit 6594b1f0630b60d25f123314bfdb86b9044654bb
Author: Ernie Rael 
AuthorDate: Wed Mar 4 00:41:43 2020 +

[NETBEANS-3961] Save project location for reuse for native maven projects.
---
 .../maven/newproject/idenative/IDENativeMavenWizardIterator.java | 5 +
 1 file changed, 5 insertions(+)

diff --git 
a/java/maven/src/org/netbeans/modules/maven/newproject/idenative/IDENativeMavenWizardIterator.java
 
b/java/maven/src/org/netbeans/modules/maven/newproject/idenative/IDENativeMavenWizardIterator.java
index 5b475e9..515bfbc 100644
--- 
a/java/maven/src/org/netbeans/modules/maven/newproject/idenative/IDENativeMavenWizardIterator.java
+++ 
b/java/maven/src/org/netbeans/modules/maven/newproject/idenative/IDENativeMavenWizardIterator.java
@@ -39,6 +39,7 @@ import static 
org.netbeans.modules.maven.newproject.idenative.Bundle.LBL_CreateP
 import static 
org.netbeans.modules.maven.newproject.idenative.Bundle.NameFormat;
 
 import org.netbeans.spi.project.ui.support.CommonProjectActions;
+import org.netbeans.spi.project.ui.support.ProjectChooser;
 import org.netbeans.validation.api.ui.ValidationGroup;
 import org.openide.WizardDescriptor;
 import org.openide.filesystems.FileObject;
@@ -82,6 +83,10 @@ public abstract class IDENativeMavenWizardIterator 
implements WizardDescriptor.I
 String[] splitlog = StringUtils.split(log, ":");
 ArchetypeWizardUtils.logUsage(splitlog[0], splitlog[1], 
splitlog[2]);
 File projFile = FileUtil.normalizeFile((File) 
wiz.getProperty(CommonProjectActions.PROJECT_PARENT_FOLDER)); // NOI18N
+final File parent = projFile.getParentFile();
+if (parent != null && parent.exists()) {
+ProjectChooser.setProjectsFolder(parent);
+}
 CreateProjectBuilder builder = createBuilder(projFile, vi, handle);
 builder.create();
 handle.progress(Bundle.PRG_FINISH());


-
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



[netbeans] branch master updated: [NETBEANS-2446] Use *parent* of saved projectFolder as projectLocation

2020-03-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 7172e2b  [NETBEANS-2446] Use *parent* of saved projectFolder as 
projectLocation
 new e803be8  Merge pull request #1980 from errael/WrongProjectParentFolder
7172e2b is described below

commit 7172e2b73cdb5bee33a1da0b6d714bc9c104e3d8
Author: Ernie Rael 
AuthorDate: Mon Feb 24 06:31:17 2020 +

[NETBEANS-2446] Use *parent* of saved projectFolder as projectLocation
---
 .../modules/maven/newproject/BasicPanelVisual.java| 19 ---
 1 file changed, 12 insertions(+), 7 deletions(-)

diff --git 
a/java/maven/src/org/netbeans/modules/maven/newproject/BasicPanelVisual.java 
b/java/maven/src/org/netbeans/modules/maven/newproject/BasicPanelVisual.java
index 16cfec2..01c02fb 100644
--- a/java/maven/src/org/netbeans/modules/maven/newproject/BasicPanelVisual.java
+++ b/java/maven/src/org/netbeans/modules/maven/newproject/BasicPanelVisual.java
@@ -509,13 +509,14 @@ public class BasicPanelVisual extends JPanel implements 
DocumentListener, Window
 }
 String name = projectNameTextField.getText().trim();
 String folder = createdFolderTextField.getText().trim();
-final File parentFolder = new File(folder);
+final File projectFolder = new File(folder);
 
-d.putProperty(CommonProjectActions.PROJECT_PARENT_FOLDER, 
parentFolder);
+// PROJECT_PARENT_FOLDER confusing, better name is PROJECT_BASE_FOLDER
+d.putProperty(CommonProjectActions.PROJECT_PARENT_FOLDER, 
projectFolder);
 if (d instanceof TemplateWizard) {
 ((TemplateWizard) d).setTargetFolderLazy(() -> {
-parentFolder.mkdirs();
-return 
DataFolder.findFolder(FileUtil.toFileObject(parentFolder));
+projectFolder.mkdirs();
+return 
DataFolder.findFolder(FileUtil.toFileObject(projectFolder));
 });
 }
 d.putProperty("name", name); //NOI18N
@@ -561,10 +562,14 @@ public class BasicPanelVisual extends JPanel implements 
DocumentListener, Window
 handle = null;
 }
 }
-File projectLocation = (File) 
settings.getProperty(CommonProjectActions.PROJECT_PARENT_FOLDER); //NOI18N
-if (projectLocation == null || projectLocation.getParentFile() == null 
|| !projectLocation.getParentFile().isDirectory()) {
+// PROJECT_PARENT_FOLDER confusing, better name is PROJECT_BASE_FOLDER
+File projectFolder = (File) 
settings.getProperty(CommonProjectActions.PROJECT_PARENT_FOLDER); //NOI18N
+File projectLocation;
+if (projectFolder == null || projectFolder.getParentFile() == null || 
!projectFolder.getParentFile().isDirectory()) {
 projectLocation = ProjectChooser.getProjectsFolder();
-} 
+} else {
+projectLocation = projectFolder.getParentFile();
+}
 
this.projectLocationTextField.setText(projectLocation.getAbsolutePath());
 
 String projectName = (String) settings.getProperty("name"); //NOI18N


-
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-2634) Unicode-range unexpected token PLUS found

2020-03-12 Thread Jira


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

Matthias Bläsing resolved NETBEANS-2634.

Fix Version/s: 12.0
   Resolution: Fixed

Fix was merged to master.

> Unicode-range unexpected token PLUS found
> -
>
> Key: NETBEANS-2634
> URL: https://issues.apache.org/jira/browse/NETBEANS-2634
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 11.0
>Reporter: Joshua Bakker
>Assignee: Matthias Bläsing
>Priority: Major
>  Labels: css, easy
> Fix For: 12.0
>
> Attachments: bug_netbeans_css.png
>
>
> I hope this issue is correctly created. So, I'm using Apache NetBeans 11.0 
> for my webdevelopment. When I see red lines, I want to go ahead and fix the 
> code. However, in one .css file I see red lines even under correct code.
> For example, I have this CSS:
> {code:java}
> @font-face {
> font-family: 'Open Sans';
> font-style: normal;
> font-weight: 300;
> src: local('Open Sans Light'), local('OpenSans-Light'), 
> url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8OX-hpOqc.woff2)
>  format('woff2');
> font-display: swap;
> unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, 
> U+FE2E-FE2F;
> }
> {code}
> According to W3C CSS validator, the unicode-range line is correct. However, 
> NetBeans puts a red line underneath it with the error (example of the error 
> of the red line underneath the first +: "unexpected token PLUS found")
> As far as I know, this could be maybe because of NetBeans using a too low CSS 
> version but I'm not 100% sure. See the attachment for a better view of what I 
> mean.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-445) Many missing values for code completion of the CSS display property

2020-03-12 Thread Jira


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

Matthias Bläsing resolved NETBEANS-445.
---
Fix Version/s: 12.0
   Resolution: Fixed

Fix was merged to master.

> Many missing values for code completion of the CSS display property
> ---
>
> Key: NETBEANS-445
> URL: https://issues.apache.org/jira/browse/NETBEANS-445
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 8.2, 9.0, 11.2
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-205-on-20180202)
> Java: 1.8.0_162; Java HotSpot(TM) 64-Bit Server VM 25.162-b12
> Runtime: Java(TM) SE Runtime Environment 1.8.0_162-b12
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
> User directory: C:\Users\johndoe\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\johndoe\AppData\Local\NetBeans\Cache\dev
>Reporter: Rick Hegarty
>Assignee: Matthias Bläsing
>Priority: Major
>  Labels: autocompletion, css, css3, pull-request-available
> Fix For: 12.0
>
> Attachments: nb445-display-flow-list-item.png, nbDisplayValues.png
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Code completion offers many options for the value of the CSS *display* 
> property when editing a CSS file (see the attached screen shot), but there 
> are still many possible values that  are not supplied.
> Based on the information provided in "CSS Display Module Level 3" 
> ([https://www.w3.org/TR/css-display-3]) the following options should be added 
> to code completion for the *display* property in NetBeans:
> *flow*
>  *flow-root*
>  *flex*
>  *grid*
>  *subgrid*
>  *ruby-base-container*
>  *ruby-text-container*
>  *contents*
>  *inline-flex*
>  *inline-grid*
> **+Updated on 6/27/18:+
> [1] The problem with autocomplete for CSS is not confined to missing values 
> for the *display* property. For example, no _grid-..._ properties (e.g. 
> *grid-column-start*) are suggested, nor is *row-gap*. The list of valid CSS 
> properties and values used by autocomplete needs to be updated.
> [2] If a CSS property is not suggested during auto-completion then its valid 
> use in CSS code will be incorrectly reported as an error (e.g. _"Unknown 
> property grid-column-gap"_).
> [3] A serious side effect of the previous issue is that genuine errors in CSS 
> code may be much harder to identify because they are mixed in with bogus 
> errors.
> Since this issue is more extensive and serious than the initial report above 
> I have raised the priority to _Major_, and also updated the affected versions 
> to include 8.2.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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



[netbeans] branch master updated (5594d85 -> 3e92db7)

2020-03-12 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


from 5594d85  Merge pull request #2005 from junichi11/netbeans-3968
 new b277e2c  [NETBEANS-445] Update CSS display property to CSS display 
module level 3
 new c19a134  [NETBEANS-2634] Support unicode-range property in parser and 
urange in lexer
 new 3d57563  Fix multiplicity parsing and handling of optional 
multiplicity in ALL group
 new cd61bab  [NETBEANS-445] Unittests to verify code completion for 
display property
 new 3e92db7  Merge pull request #2006 from matthiasblaesing/netbeans-445

The 3735 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../main/properties/basic_box_model.properties |   19 +-
 .../editor/module/main/properties/fonts.properties |3 +
 .../data/testfiles/completion/display/display.css  |   94 +
 .../display/display.css.testDisplay.completion |   35 +
 .../display.css.testDisplayBlock.completion|   11 +
 .../display.css.testDisplayBlockFlow.completion|5 +
 ...display.css.testDisplayBlockFlowRoot.completion |5 +
 .../display/display.css.testDisplayFlow.completion |8 +
 .../display.css.testDisplayFlowListItem.completion |7 +
 ...display.css.testDisplayFlowRootBlock.completion |5 +
 .../display.css.testDisplayInline.completion   |   11 +
 .../display.css.testDisplayInlineFlow.completion   |5 +
 ...isplay.css.testDisplayInlineFlowRoot.completion |5 +
 .../display.css.testDisplayListItem.completion |9 +
 ...display.css.testDisplayListItemBlock.completion |6 +
 .../display.css.testDisplayListItemFlow.completion |7 +
 ...play.css.testDisplayListItemFlowRoot.completion |7 +
 ...isplay.css.testDisplayListItemInline.completion |6 +
 ...display.css.testDisplayListItemRunIn.completion |6 +
 .../display.css.testDisplayRunIn.completion|   11 +
 ...display.css.testDisplayRunInFlowRoot.completion |5 +
 .../modules/css/editor/csl/CssCompletionTest.java  |   74 +-
 .../module/main/BasicBoxModelModuleTest.java   |2 +-
 .../module/main/properties/PropertiesATest.java|   18 +
 .../src/org/netbeans/modules/css/lib/Css3.g|5 +
 .../org/netbeans/modules/css/lib/Css3Lexer.java| 7838 +
 .../org/netbeans/modules/css/lib/Css3Parser.java   | 9231 ++--
 .../netbeans/modules/css/lib/api/CssTokenId.java   |2 +
 .../css/lib/api/properties/GrammarResolver.java|8 +-
 .../css/lib/api/properties/TokenAcceptor.java  |   25 +-
 .../modules/css/lib/properties/GrammarParser.java  |   25 +-
 ide/css.lib/test/unit/data/testfiles/urange.css|3 +
 .../test/unit/data/testfiles/urange.css.tokens.txt |   20 +
 .../lib/api/properties/GrammarResolverTest.java|6 +
 .../modules/css/lib/nblexer/NbCss3LexerTest.java   |6 +-
 .../css/lib/properties/GrammarParserTest.java  |   38 +-
 36 files changed, 9150 insertions(+), 8421 deletions(-)
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplay.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayBlock.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayBlockFlow.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayBlockFlowRoot.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayFlow.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayFlowListItem.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayFlowRootBlock.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayInline.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayInlineFlow.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayInlineFlowRoot.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayListItem.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayListItemBlock.completion
 create mode 100644 
ide/css.editor/test/unit/data/testfiles/completion/display/display.css.testDisplayListItemFlow.completion
 create mode 100644 
ide/css.edi

[jira] [Comment Edited] (NETBEANS-3704) Wikipage implied in apidoc

2020-03-12 Thread Antonio Vieiro (Jira)


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

Antonio Vieiro edited comment on NETBEANS-3704 at 3/12/20, 6:18 PM:


[http://wiki.netbeans.org/FitnessViaTimersCounters] is empty

 

It's "Counter", not "Counters"...


was (Author: vieiro):
[http://wiki.netbeans.org/FitnessViaTimersCounters] is empty

> Wikipage implied in apidoc
> --
>
> Key: NETBEANS-3704
> URL: https://issues.apache.org/jira/browse/NETBEANS-3704
> Project: NetBeans
>  Issue Type: Task
>  Components: website
>Reporter: Eric Barboni
>Assignee: Antonio Vieiro
>Priority: Major
>
> Hi, this is a list of wikipage the apidoc need. We should have them on the 
> netbeans.apache.org. 
> http://wiki.netbeans.org/API_Design
> http://wiki.netbeans.org/API_Design#Separate_API_for_clients_from_support_API
> http://wiki.netbeans.org/API_Design#The_Importance_of_Being_Use_Case_Oriented
> http://wiki.netbeans.org/API_Design#What_is_an_API.3F
> http://wiki.netbeans.org/APIDevelopment
> http://wiki.netbeans.org/API_Stability
> http://wiki.netbeans.org/API_Stability#deprecated
> http://wiki.netbeans.org/API_Stability#Deprecated
> http://wiki.netbeans.org/API_Stability#devel
> http://wiki.netbeans.org/API_Stability#Devel
> http://wiki.netbeans.org/API_Stability#friend
> http://wiki.netbeans.org/API_Stability#Friend
> http://wiki.netbeans.org/API_Stability#official
> http://wiki.netbeans.org/API_Stability#Official
> http://wiki.netbeans.org/API_Stability#private
> http://wiki.netbeans.org/API_Stability#Private
> http://wiki.netbeans.org/API_Stability#stable
> http://wiki.netbeans.org/API_Stability#Stable
> http://wiki.netbeans.org/API_Stability#Standard
> http://wiki.netbeans.org/API_Stability#third
> http://wiki.netbeans.org/API_Stability#Third_Party
> http://wiki.netbeans.org/Authenticator
> http://wiki.netbeans.org/BackwardCompatibilityPatches
> http://wiki.netbeans.org/BugtrackingAPISPIUseCases
> http://wiki.netbeans.org/BugtrackingCookbook
> http://wiki.netbeans.org/BuildSystemHowTo
> http://wiki.netbeans.org/DevFaqActionContextSensitive
> http://wiki.netbeans.org/DevFaqAddGlobalContext
> http://wiki.netbeans.org/DevFaqNetBeansFullHack
> http://wiki.netbeans.org/FitnessViaPostMortem
> http://wiki.netbeans.org/HtmlUIForTemplates
> http://wiki.netbeans.org/Java_DevelopersGuide
> http://wiki.netbeans.org/ParsingAPI
> http://wiki.netbeans.org/RunConfigurations49636
> http://wiki.netbeans.org/TaskDashboardDesignSpec
> http://wiki.netbeans.org/TaskManagementUseCases
> http://wiki.netbeans.org/VersioningPolicy#Compatible_change_on_the_trunk
> http://wiki.netbeans.org/wiki/view/FitnessViaTimersCounters
> http://wiki.netbeans.org/wiki/view/FolderOrdering103187
> http://wiki.netbeans.org/wiki/view/JavaHT_Modification
> http://wiki.netbeans.org/wiki/view/SignatureTest



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-3704) Wikipage implied in apidoc

2020-03-12 Thread Antonio Vieiro (Jira)


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

Antonio Vieiro commented on NETBEANS-3704:
--

[http://wiki.netbeans.org/FitnessViaTimersCounters] is empty

> Wikipage implied in apidoc
> --
>
> Key: NETBEANS-3704
> URL: https://issues.apache.org/jira/browse/NETBEANS-3704
> Project: NetBeans
>  Issue Type: Task
>  Components: website
>Reporter: Eric Barboni
>Assignee: Antonio Vieiro
>Priority: Major
>
> Hi, this is a list of wikipage the apidoc need. We should have them on the 
> netbeans.apache.org. 
> http://wiki.netbeans.org/API_Design
> http://wiki.netbeans.org/API_Design#Separate_API_for_clients_from_support_API
> http://wiki.netbeans.org/API_Design#The_Importance_of_Being_Use_Case_Oriented
> http://wiki.netbeans.org/API_Design#What_is_an_API.3F
> http://wiki.netbeans.org/APIDevelopment
> http://wiki.netbeans.org/API_Stability
> http://wiki.netbeans.org/API_Stability#deprecated
> http://wiki.netbeans.org/API_Stability#Deprecated
> http://wiki.netbeans.org/API_Stability#devel
> http://wiki.netbeans.org/API_Stability#Devel
> http://wiki.netbeans.org/API_Stability#friend
> http://wiki.netbeans.org/API_Stability#Friend
> http://wiki.netbeans.org/API_Stability#official
> http://wiki.netbeans.org/API_Stability#Official
> http://wiki.netbeans.org/API_Stability#private
> http://wiki.netbeans.org/API_Stability#Private
> http://wiki.netbeans.org/API_Stability#stable
> http://wiki.netbeans.org/API_Stability#Stable
> http://wiki.netbeans.org/API_Stability#Standard
> http://wiki.netbeans.org/API_Stability#third
> http://wiki.netbeans.org/API_Stability#Third_Party
> http://wiki.netbeans.org/Authenticator
> http://wiki.netbeans.org/BackwardCompatibilityPatches
> http://wiki.netbeans.org/BugtrackingAPISPIUseCases
> http://wiki.netbeans.org/BugtrackingCookbook
> http://wiki.netbeans.org/BuildSystemHowTo
> http://wiki.netbeans.org/DevFaqActionContextSensitive
> http://wiki.netbeans.org/DevFaqAddGlobalContext
> http://wiki.netbeans.org/DevFaqNetBeansFullHack
> http://wiki.netbeans.org/FitnessViaPostMortem
> http://wiki.netbeans.org/HtmlUIForTemplates
> http://wiki.netbeans.org/Java_DevelopersGuide
> http://wiki.netbeans.org/ParsingAPI
> http://wiki.netbeans.org/RunConfigurations49636
> http://wiki.netbeans.org/TaskDashboardDesignSpec
> http://wiki.netbeans.org/TaskManagementUseCases
> http://wiki.netbeans.org/VersioningPolicy#Compatible_change_on_the_trunk
> http://wiki.netbeans.org/wiki/view/FitnessViaTimersCounters
> http://wiki.netbeans.org/wiki/view/FolderOrdering103187
> http://wiki.netbeans.org/wiki/view/JavaHT_Modification
> http://wiki.netbeans.org/wiki/view/SignatureTest



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4006) Exception at startup

2020-03-12 Thread Henk van den Toorn (Jira)


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

Henk van den Toorn closed NETBEANS-4006.

Resolution: Invalid

Sorry, I made an improved report in #4007.

> Exception at startup
> 
>
> Key: NETBEANS-4006
> URL: https://issues.apache.org/jira/browse/NETBEANS-4006
> Project: NetBeans
>  Issue Type: Bug
> Environment: Windows 10, OpenJDK 11.0.6+10 (AdoptOpenJDK)
>Reporter: Henk van den Toorn
>Priority: Major
>
> Netbeans 11.3 gives unexpected errors in the notifications window.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4007) Exception at startup

2020-03-12 Thread Henk van den Toorn (Jira)
Henk van den Toorn created NETBEANS-4007:


 Summary: Exception at startup
 Key: NETBEANS-4007
 URL: https://issues.apache.org/jira/browse/NETBEANS-4007
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.3
 Environment: Windows 10 64 bit. AdoptOpenJDK 11.0.6.10-hotspot
Reporter: Henk van den Toorn
 Attachments: IDE log, UI log

At startup the IDE gives a null pointer exception. I have included the IDE log 
and the UI log files.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4006) Exception at startup

2020-03-12 Thread Henk van den Toorn (Jira)
Henk van den Toorn created NETBEANS-4006:


 Summary: Exception at startup
 Key: NETBEANS-4006
 URL: https://issues.apache.org/jira/browse/NETBEANS-4006
 Project: NetBeans
  Issue Type: Bug
 Environment: Windows 10, OpenJDK 11.0.6+10 (AdoptOpenJDK)
Reporter: Henk van den Toorn


Netbeans 11.3 gives unexpected errors in the notifications window.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4005) UI shows files in git repo as modified when they are not

2020-03-12 Thread Peter Hull (Jira)


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

Peter Hull commented on NETBEANS-4005:
--

As mentioned in the linked discussion on the eclipse forums, the problem was 
first noted because of poor performance (jgit had to do a lot more work 
scanning file contents, instead of comparing metadata). This _might _explain 
ebresie's comment in 
https://github.com/apache/netbeans/pull/1528#issuecomment-586616065 (I haven't 
checked this)

> UI shows files in git repo as modified when they are not
> 
>
> Key: NETBEANS-4005
> URL: https://issues.apache.org/jira/browse/NETBEANS-4005
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.2, 11.3
>Reporter: Peter Hull
>Priority: Minor
> Attachments: Annotation 2020-03-12 092900.jpg
>
>
> The version control UI highlights files that are changed in the working 
> directory. Under certain circumstances, the 'git' provider highlights files 
> as changed when they are not. See the attached screen shot for an example. 
> The file Arch.xsl and two others are in blue, but NB's own diff view shows no 
> changes (0/0). This is confirmed by running git status/git diff from the 
> command line.
> This is a known problem associated with the version of jgit (5.5.0) bundled 
> with NetBeans, and which was fixed in 5.5.1. See discussion 
> [here|https://www.eclipse.org/forums/index.php/t/1100344/].
> The update to jgit was because of 
> https://issues.apache.org/jira/browse/NETBEANS-519 and implemented in 
> https://github.com/apache/netbeans/pull/1528 , November 2019.
> Suggested fix: update jgit to 5.5.1



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4005) UI shows files in git repo as modified when they are not

2020-03-12 Thread Peter Hull (Jira)


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

Peter Hull commented on NETBEANS-4005:
--

I believe this only affects NB running on Windows as I have not been able to 
reproduce on macOS.

> UI shows files in git repo as modified when they are not
> 
>
> Key: NETBEANS-4005
> URL: https://issues.apache.org/jira/browse/NETBEANS-4005
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.2, 11.3
>Reporter: Peter Hull
>Priority: Minor
> Attachments: Annotation 2020-03-12 092900.jpg
>
>
> The version control UI highlights files that are changed in the working 
> directory. Under certain circumstances, the 'git' provider highlights files 
> as changed when they are not. See the attached screen shot for an example. 
> The file Arch.xsl and two others are in blue, but NB's own diff view shows no 
> changes (0/0). This is confirmed by running git status/git diff from the 
> command line.
> This is a known problem associated with the version of jgit (5.5.0) bundled 
> with NetBeans, and which was fixed in 5.5.1. See discussion 
> [here|https://www.eclipse.org/forums/index.php/t/1100344/].
> The update to jgit was because of 
> https://issues.apache.org/jira/browse/NETBEANS-519 and implemented in 
> https://github.com/apache/netbeans/pull/1528 , November 2019.
> Suggested fix: update jgit to 5.5.1



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4005) UI shows files in git repo as modified when they are not

2020-03-12 Thread Peter Hull (Jira)


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

Peter Hull updated NETBEANS-4005:
-
Affects Version/s: 11.3

> UI shows files in git repo as modified when they are not
> 
>
> Key: NETBEANS-4005
> URL: https://issues.apache.org/jira/browse/NETBEANS-4005
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.2, 11.3
>Reporter: Peter Hull
>Priority: Minor
> Attachments: Annotation 2020-03-12 092900.jpg
>
>
> The version control UI highlights files that are changed in the working 
> directory. Under certain circumstances, the 'git' provider highlights files 
> as changed when they are not. See the attached screen shot for an example. 
> The file Arch.xsl and two others are in blue, but NB's own diff view shows no 
> changes (0/0). This is confirmed by running git status/git diff from the 
> command line.
> This is a known problem associated with the version of jgit (5.5.0) bundled 
> with NetBeans, and which was fixed in 5.5.1. See discussion 
> [here|https://www.eclipse.org/forums/index.php/t/1100344/].
> The update to jgit was because of 
> https://issues.apache.org/jira/browse/NETBEANS-519 and implemented in 
> https://github.com/apache/netbeans/pull/1528 , November 2019.
> Suggested fix: update jgit to 5.5.1



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4005) UI shows files in git repo as modified when they are not

2020-03-12 Thread Peter Hull (Jira)
Peter Hull created NETBEANS-4005:


 Summary: UI shows files in git repo as modified when they are not
 Key: NETBEANS-4005
 URL: https://issues.apache.org/jira/browse/NETBEANS-4005
 Project: NetBeans
  Issue Type: Bug
  Components: versioncontrol - Git
Affects Versions: 11.2
Reporter: Peter Hull
 Attachments: Annotation 2020-03-12 092900.jpg

The version control UI highlights files that are changed in the working 
directory. Under certain circumstances, the 'git' provider highlights files as 
changed when they are not. See the attached screen shot for an example. The 
file Arch.xsl and two others are in blue, but NB's own diff view shows no 
changes (0/0). This is confirmed by running git status/git diff from the 
command line.

This is a known problem associated with the version of jgit (5.5.0) bundled 
with NetBeans, and which was fixed in 5.5.1. See discussion 
[here|https://www.eclipse.org/forums/index.php/t/1100344/].

The update to jgit was because of 
https://issues.apache.org/jira/browse/NETBEANS-519 and implemented in 
https://github.com/apache/netbeans/pull/1528 , November 2019.

Suggested fix: update jgit to 5.5.1




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4004) FlatLAF Dark sometimes draw white rectangles around buttons

2020-03-12 Thread Jira


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

Stefan Höltker commented on NETBEANS-4004:
--

Updated to 13.0.2; OpenJDK 64-Bit Server VM 13.0.2+8; AdoptOpenJDK but still 
white rectangles

> FlatLAF Dark sometimes draw white rectangles around buttons
> ---
>
> Key: NETBEANS-4004
> URL: https://issues.apache.org/jira/browse/NETBEANS-4004
> Project: NetBeans
>  Issue Type: Bug
>  Components: FlatLaf
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3
> Java: 12.0.1; OpenJDK 64-Bit Server VM 12.0.1+12
> Runtime: OpenJDK Runtime Environment 12.0.1+12
> System: Windows 10 version 10.0 running on amd64; UTF8; de_DE (nb)
>Reporter: Stefan Höltker
>Priority: Minor
> Attachments: ide.log, image-2020-03-12-09-52-19-727.png
>
>
> See image & maybe ide.log
> !image-2020-03-12-09-52-19-727.png!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4004) FlatLAF Dark sometimes draw white rectangles around buttons

2020-03-12 Thread Jira


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

Stefan Höltker updated NETBEANS-4004:
-
Description: 
See image & maybe ide.log

!image-2020-03-12-09-52-19-727.png!

> FlatLAF Dark sometimes draw white rectangles around buttons
> ---
>
> Key: NETBEANS-4004
> URL: https://issues.apache.org/jira/browse/NETBEANS-4004
> Project: NetBeans
>  Issue Type: Bug
>  Components: FlatLaf
>Affects Versions: 11.3
> Environment: Product Version: Apache NetBeans IDE 11.3
> Java: 12.0.1; OpenJDK 64-Bit Server VM 12.0.1+12
> Runtime: OpenJDK Runtime Environment 12.0.1+12
> System: Windows 10 version 10.0 running on amd64; UTF8; de_DE (nb)
>Reporter: Stefan Höltker
>Priority: Minor
> Attachments: ide.log, image-2020-03-12-09-52-19-727.png
>
>
> See image & maybe ide.log
> !image-2020-03-12-09-52-19-727.png!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-4004) FlatLAF Dark sometimes draw white rectangles around buttons

2020-03-12 Thread Jira
Stefan Höltker created NETBEANS-4004:


 Summary: FlatLAF Dark sometimes draw white rectangles around 
buttons
 Key: NETBEANS-4004
 URL: https://issues.apache.org/jira/browse/NETBEANS-4004
 Project: NetBeans
  Issue Type: Bug
  Components: FlatLaf
Affects Versions: 11.3
 Environment: Product Version: Apache NetBeans IDE 11.3
Java: 12.0.1; OpenJDK 64-Bit Server VM 12.0.1+12
Runtime: OpenJDK Runtime Environment 12.0.1+12
System: Windows 10 version 10.0 running on amd64; UTF8; de_DE (nb)
Reporter: Stefan Höltker
 Attachments: ide.log, image-2020-03-12-09-52-19-727.png





--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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