[netbeans-jenkins-lib] branch master updated: try new parameter

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

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new 7e4d1f7  try new parameter
 new d389b69  Merge pull request #11 from ebarboni/useexternal
7e4d1f7 is described below

commit 7e4d1f7f65006f082bbe27a5a3e88ff9eb3d837c
Author: Eric Barboni 
AuthorDate: Sat Mar 7 23:50:28 2020 +0100

try new parameter
---
 vars/asfMainNetBeansBuild.groovy | 21 +
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index 6588675..ae81f80 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -133,17 +133,21 @@ def call(Map params = [:]) {
 if (env.BRANCH_NAME=="master") {
 // on master we build apidoc + populating 
snapshot repository
 // should be on line for each otherwise 
cluster are wrong
+sh "ant download-all-extbins"
 sh "ant build-nbms"
 sh "ant build-source-zips"
 sh "ant build-javadoc 
-Djavadoc.web.zip=${env.WORKSPACE}/WEBZIP.zip"
-sh "rm -rf ${env.WORKSPACE}/repoindex/"
+//sh "rm -rf ${env.WORKSPACE}/repoindex/"
 sh "rm -rf ${env.WORKSPACE}/.repository"
 def localRepo = "${env.WORKSPACE}/.repository"
+def netbeansbase = "nbbuild"
 
withMaven(maven:tooling.myMaven,jdk:tooling.jdktool,publisherStrategy: 
'EXPLICIT',mavenLocalRepo: localRepo)
 {
-//sh "mvn 
org.apache.maven.plugins:maven-dependency-plugin:3.1.1:get 
-Dartifact=org.apache.netbeans.utilities:nb-repository-plugin:1.5-SNAPSHOT 
-DremoteRepositories=apache.snapshots.httpshttps://repository.apache.org/snapshots;
-sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5:download 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-DrepositoryUrl=https://repo.maven.apache.org/maven2;
-sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5:populate 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-DnetbeansNbmDirectory=${env.WORKSPACE}/nbbuild/nbms 
-DnetbeansInstallDirectory=${env.WORKSPACE}/nbbuild/netbeans 
-DnetbeansSourcesDirectory=${env.WORKSPACE}/nbbuild/build/source-zips 
-DnetbeansJavadocDirectory=${env.WORKSPACE}/nbbuild/build/javadoc 
-DparentGAV=org.apache.netbeans:netbeans-parent:2 
-DforcedVersion=${mavenVersion} -Ds [...]
+sh "mvn 
org.apache.maven.plugins:maven-dependency-plugin:3.1.1:get 
-Dartifact=org.apache.netbeans.utilities:nb-repository-plugin:1.6-SNAPSHOT 
-DremoteRepositories=apache.snapshots.httpshttps://repository.apache.org/snapshots;
+def commonparam = 
"-Dexternallist=${netbeansbase}/build/external.info"
+
+//sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.5:download 
-DnexusIndexDirectory=${env.WORKSPACE}/repoindex 
-DrepositoryUrl=https://repo.maven.apache.org/maven2;
+sh "mvn 
org.apache.netbeans.utilities:nb-repository-plugin:1.6-SNAPSHOT:populate 
${commonparam} -DnetbeansNbmDirectory=${netbeansbase}/nbms 
-DnetbeansInstallDirectory=${netbeansbase}/netbeans 
-DnetbeansSourcesDirectory=${netbeansbase}/build/source-zips 
-DnetbeansJavadocDirectory=${netbeansbase}/build/javadoc 
-DparentGAV=org.apache.netbeans:netbeans-parent:2 
-DforcedVersion=${mavenVersion} -DskipInstall=true 
-DdeployId=apache.snapshots.https -DdeployUrl [...]
 }
 archiveArtifacts 'WEBZIP.zip'
 } else if (month !='Invalid') {
@@ -271,13 +275,14 @@ def doParallelClusters(cconfigs) {
 
 def localRepo = ".repository"
 def netbeansbase = 
"build-${clustername}-temp/nbbuild"
+sh "ant -f build-${clustername}-temp/build.xml 
download-all-extbins"
 
 
withMaven(maven:tooling.myMaven,jdk:tooling.jdktool,publisherStrategy: 
'EXPLICIT',mavenLocalRepo: localRepo,options:[artifactsPublisher(disabled: 
true)])
 {
-//sh "mvn 
org.apache.maven.plugins:maven-dependency-plugin:3.1.1:get 

[netbeans-mavenutils-nb-repository-plugin] branch master updated: Remove DownloadMojo, use a file for the index (#2)

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

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new aa229c4  Remove DownloadMojo, use a file for the index (#2)
aa229c4 is described below

commit aa229c4d4f4250ff1846882ec33ffd154d47b924
Author: Eric Barboni 
AuthorDate: Sat Mar 7 23:27:59 2020 +0100

Remove DownloadMojo, use a file for the index (#2)
---
 README.md  |   2 +-
 pom.xml|  38 +
 .../netbeans/nbm/repository/DownloadIndexMojo.java | 175 -
 .../nbm/repository/PopulateRepositoryMojo.java | 116 --
 4 files changed, 39 insertions(+), 292 deletions(-)

diff --git a/README.md b/README.md
index 8ecbdf2..994b838 100755
--- a/README.md
+++ b/README.md
@@ -33,5 +33,5 @@
 
 ### Reporting Bugs
 
-Bugs should be reported to 
https://issues.apache.org/jira/projects/NETBEANS/issues/ using the component 
**mavenutilities**
+Bugs should be reported to 
https://issues.apache.org/jira/projects/NETBEANSINFRA/issues/ using the 
component **MU - Apache NetBeans repository plugin**
 
diff --git a/pom.xml b/pom.xml
index 4013262..56d1dcb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,7 +38,7 @@ under the License.
 https://bits.netbeans.org/mavenutilities/nb-repository-plugin
 
 jira
-https://issues.apache.org/jira/browse/NETBEANS
+https://issues.apache.org/jira/browse/NETBEANSINFRA
 
 
 3.1.1
@@ -55,7 +55,7 @@ under the License.
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git
 
https://github.com/apache/netbeans-mavenutils-nb-repository-plugin
   HEAD
-  
+
 
 
 
@@ -104,7 +104,7 @@ under the License.
 
 
 org.codehaus.mojo.signature
-java17
+java18
 1.0
 
 
@@ -138,7 +138,8 @@ under the License.
 
 
-true
+
+12336704
 

 
@@ -206,7 +207,7 @@ under the License.
 org.apache.maven.plugins
 maven-pmd-plugin

-1.6
+1.8
 
 
 
@@ -314,11 +315,6 @@ under the License.
 
 
 org.apache.maven
-maven-artifact
-${maven.version}
-
-
-org.apache.maven
 maven-plugin-api
 ${maven.version}
 
@@ -339,11 +335,6 @@ under the License.
 test
 
 
-org.apache.lucene
-lucene-core
-5.5.5
-
-
 org.apache.maven
 maven-model
 ${maven.version}
@@ -373,27 +364,10 @@ under the License.
 jar
 
 
-org.apache.maven.indexer
-indexer-core
-6.0.0
-
-
-org.apache.maven.wagon
-wagon-http
-${wagon.version}
-jar
-
-
 ${project.groupId}
 nb-shared
 1.3
 
-
-org.apache.maven.wagon
-wagon-provider-api
-${wagon.version}
-compile
-
 
 
 1.6
diff --git 
a/src/main/java/org/apache/netbeans/nbm/repository/DownloadIndexMojo.java 
b/src/main/java/org/apache/netbeans/nbm/repository/DownloadIndexMojo.java
deleted file mode 100644
index e2c9eff..000
--- a/src/main/java/org/apache/netbeans/nbm/repository/DownloadIndexMojo.java
+++ /dev/null
@@ -1,175 +0,0 @@
-package org.apache.netbeans.nbm.repository;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.io.File;
-import java.net.URI;
-import 

[netbeans] 01/01: NETBEANS-3254 Remove allowAmbigousCommand follow up

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

skygo pushed a commit to branch NETBEANS-3254-2
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit ea2232f4d240f4e7f965098c80f9836ef5a87343
Author: Eric Barboni 
AuthorDate: Sat Mar 7 21:51:55 2020 +0100

NETBEANS-3254 Remove allowAmbigousCommand follow up

We make maven works without allowAmbigousCommand  for 11.3. But we did 
remove command for safety. Now we have time to test
---
 nb/ide.launcher/netbeans.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nb/ide.launcher/netbeans.conf b/nb/ide.launcher/netbeans.conf
index c883ee0..f0e17c6 100644
--- a/nb/ide.launcher/netbeans.conf
+++ b/nb/ide.launcher/netbeans.conf
@@ -62,7 +62,7 @@ 
netbeans_default_cachedir="${DEFAULT_CACHEDIR_ROOT}/@@metabuild.RawVersion@@"
 # default command line arguments.
 # (see: https://issues.apache.org/jira/browse/NETBEANS-1344)
 #
-netbeans_default_options="-J-XX:+UseStringDeduplication 
-J-Djdk.lang.Process.allowAmbiguousCommands=true -J-Xss2m @@metabuild.logcli@@ 
-J-Djdk.gtk.version=2.2 -J-Dapple.laf.useScreenMenuBar=true 
-J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true 
-J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true 
-J-Dplugin.manager.check.updates=false 
-J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes 
-J--add-opens=java.base/java.net=ALL-UNNAMED -J--add-opens=java.base [...]
+netbeans_default_options="-J-XX:+UseStringDeduplication -J-Xss2m 
@@metabuild.logcli@@ -J-Djdk.gtk.version=2.2 
-J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true 
-J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true 
-J-Dsun.zip.disableMemoryMapping=true -J-Dplugin.manager.check.updates=false 
-J-Dnetbeans.extbrowser.manual_chrome_plugin_install=yes 
-J--add-opens=java.base/java.net=ALL-UNNAMED 
-J--add-opens=java.base/java.lang.ref=ALL-UNNAMED -J--add-opens=java.bas [...]
 
 # Default location of JDK:
 # (set by installer or commented out if launcher should decide)


-
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 NETBEANS-3254-2 created (now ea2232f)

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

skygo pushed a change to branch NETBEANS-3254-2
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


  at ea2232f  NETBEANS-3254 Remove allowAmbigousCommand follow up

This branch includes the following new commits:

 new ea2232f  NETBEANS-3254 Remove allowAmbigousCommand follow up

The 1 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.



-
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-245) Profiler fails to launch when using Maven 3.5.x

2020-03-07 Thread Eric Barboni (Jira)


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

Eric Barboni resolved NETBEANS-245.
---
Resolution: Fixed

works for 3.6.3 on Apache NetBeans 11.3

> Profiler fails to launch when using Maven 3.5.x
> ---
>
> Key: NETBEANS-245
> URL: https://issues.apache.org/jira/browse/NETBEANS-245
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Maven
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-159-on-20180102)
> Updates: Updates available
> Java: 9.0.1; Java HotSpot(TM) 64-Bit Server VM 9.0.1+11
> Runtime: Java(TM) SE Runtime Environment 9.0.1+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
> User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
>Reporter: Gili
>Priority: Major
> Fix For: 11.3
>
>
> This issue was originally reported as 
> https://netbeans.org/bugzilla/show_bug.cgi?id=271059
> Essentially the Java profiler works fine for Maven projects if you use Maven 
> 3.3.9 but fails as soon as you use version 3.5.0 and up. This is because 
> mvn.cmd was substantially modified in that version.
> Running under Maven 3.5.2 I get the following error:
> {code}
> *** Profiler message (Tue Jan 02 23:15:41 EST 2018): Starting target 
> application...
> C:\Program Files\Java\jdk-9.0.1\bin\java.exe -agentpath:C:/Program 
> Files/netbeans-159/profiler/lib/deployed/jdk16/windows-amd64/profilerinterface.dll
>  -Xbootclasspath/a:C:\Program 
> Files\netbeans-159\profiler\lib\jfluid-server.jar;C:\Program 
> Files\netbeans-159\profiler\lib\jfluid-server-15.jar 
> org.netbeans.lib.profiler.server.ProfilerServer C:/Program 
> Files/netbeans-159/profiler/lib/deployed/jdk16/windows-amd64 5141 10 
> Profiler+Calibration+Run
> cd C:\Users\Gili\Documents\pyramid\server; "JAVA_HOME=C:\\Program 
> Files\\Java\\jdk1.8.0_141" "M2_HOME=C:\\Program Files\\apache-maven-3.5.2" 
> cmd /c "\"\"C:\\Program Files\\apache-maven-3.5.2\\bin\\mvn.cmd\" 
> -Dexec.args=\"-agentpath:\\\"C:/Program 
> Files/netbeans-159/profiler/lib/deployed/jdk16/windows-amd64/profilerinterface.dll\\\"=\\\"C:\\Program
>  Files\\netbeans-159\\profiler\\lib\\\",5140,10 
> -XX:+HeapDumpOnOutOfMemoryError 
> -XX:HeapDumpPath=C:\\Users\\Gili\\AppData\\Local\\NetBeans\\Cache\\dev\\mavencachedirs\\354137174\\org-netbeans-modules-profiler
>   -ea -classpath %classpath com.holdmyspot.pyramid.server.Main\" 
> -Dexec.executable=\"C:\\Program Files\\Java\\jdk1.8.0_141\\bin\\java.exe\" 
> -Dexec.workingdir=C:\\Users\\Gili\\Documents\\Pyramid\\server\\target 
> -Dmaven.ext.class.path=\"C:\\Program 
> Files\\netbeans-159\\java\\maven-nblib\\netbeans-eventspy.jar\" 
> -Dfile.encoding=UTF-8 process-classes 
> org.codehaus.mojo:exec-maven-plugin:1.5.0:exec\""
> The syntax of the command is incorrect.
> {code}



--
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-245) Profiler fails to launch when using Maven 3.5.x

2020-03-07 Thread Eric Barboni (Jira)


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

Eric Barboni updated NETBEANS-245:
--
Fix Version/s: 11.3

> Profiler fails to launch when using Maven 3.5.x
> ---
>
> Key: NETBEANS-245
> URL: https://issues.apache.org/jira/browse/NETBEANS-245
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Maven
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-159-on-20180102)
> Updates: Updates available
> Java: 9.0.1; Java HotSpot(TM) 64-Bit Server VM 9.0.1+11
> Runtime: Java(TM) SE Runtime Environment 9.0.1+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
> User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
>Reporter: Gili
>Priority: Major
> Fix For: 11.3
>
>
> This issue was originally reported as 
> https://netbeans.org/bugzilla/show_bug.cgi?id=271059
> Essentially the Java profiler works fine for Maven projects if you use Maven 
> 3.3.9 but fails as soon as you use version 3.5.0 and up. This is because 
> mvn.cmd was substantially modified in that version.
> Running under Maven 3.5.2 I get the following error:
> {code}
> *** Profiler message (Tue Jan 02 23:15:41 EST 2018): Starting target 
> application...
> C:\Program Files\Java\jdk-9.0.1\bin\java.exe -agentpath:C:/Program 
> Files/netbeans-159/profiler/lib/deployed/jdk16/windows-amd64/profilerinterface.dll
>  -Xbootclasspath/a:C:\Program 
> Files\netbeans-159\profiler\lib\jfluid-server.jar;C:\Program 
> Files\netbeans-159\profiler\lib\jfluid-server-15.jar 
> org.netbeans.lib.profiler.server.ProfilerServer C:/Program 
> Files/netbeans-159/profiler/lib/deployed/jdk16/windows-amd64 5141 10 
> Profiler+Calibration+Run
> cd C:\Users\Gili\Documents\pyramid\server; "JAVA_HOME=C:\\Program 
> Files\\Java\\jdk1.8.0_141" "M2_HOME=C:\\Program Files\\apache-maven-3.5.2" 
> cmd /c "\"\"C:\\Program Files\\apache-maven-3.5.2\\bin\\mvn.cmd\" 
> -Dexec.args=\"-agentpath:\\\"C:/Program 
> Files/netbeans-159/profiler/lib/deployed/jdk16/windows-amd64/profilerinterface.dll\\\"=\\\"C:\\Program
>  Files\\netbeans-159\\profiler\\lib\\\",5140,10 
> -XX:+HeapDumpOnOutOfMemoryError 
> -XX:HeapDumpPath=C:\\Users\\Gili\\AppData\\Local\\NetBeans\\Cache\\dev\\mavencachedirs\\354137174\\org-netbeans-modules-profiler
>   -ea -classpath %classpath com.holdmyspot.pyramid.server.Main\" 
> -Dexec.executable=\"C:\\Program Files\\Java\\jdk1.8.0_141\\bin\\java.exe\" 
> -Dexec.workingdir=C:\\Users\\Gili\\Documents\\Pyramid\\server\\target 
> -Dmaven.ext.class.path=\"C:\\Program 
> Files\\netbeans-159\\java\\maven-nblib\\netbeans-eventspy.jar\" 
> -Dfile.encoding=UTF-8 process-classes 
> org.codehaus.mojo:exec-maven-plugin:1.5.0:exec\""
> The syntax of the command is incorrect.
> {code}



--
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-3975) Add "After Use Trait" setting so using traits will have a new line below it

2020-03-07 Thread Imb (Jira)
Imb created NETBEANS-3975:
-

 Summary: Add "After Use Trait" setting so using traits will have a 
new line below it
 Key: NETBEANS-3975
 URL: https://issues.apache.org/jira/browse/NETBEANS-3975
 Project: NetBeans
  Issue Type: Improvement
  Components: php - Formatting  Indentation
Affects Versions: 11.3
Reporter: Imb
 Attachments: traits.JPG

In Tools > Options > Formatting > Language: PHP > Category: Blank Lines.

There is a "Before Use Trait" option but there is no "After Use Trait" option.

We need an "After Use Trait" option because currently, using Traits ends up 
with no blank line below and it doesn't look nice.

Example:

!traits.JPG!

As you can see there is no blank line under Traits.



--
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-website] branch master updated: css button: add radius and shadow (#455)

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

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


The following commit(s) were added to refs/heads/master by this push:
 new df86182  css button: add radius and shadow (#455)
df86182 is described below

commit df86182e4e061a8c0e00ebf7d470b6732a636e16
Author: Bagus Erlang P 
AuthorDate: Sun Mar 8 01:42:07 2020 +0800

css button: add radius and shadow (#455)
---
 netbeans.apache.org/src/content/scss/base/_settings.scss | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/netbeans.apache.org/src/content/scss/base/_settings.scss 
b/netbeans.apache.org/src/content/scss/base/_settings.scss
index 01fa130..541471f 100644
--- a/netbeans.apache.org/src/content/scss/base/_settings.scss
+++ b/netbeans.apache.org/src/content/scss/base/_settings.scss
@@ -306,6 +306,8 @@ $button-opacity-disabled: 0.25;
 $button-background-hover-lightness: -20%;
 $button-hollow-hover-lightness: -50%;
 $button-transition: background-color 0.25s ease-out, color 0.25s ease-out;
+$button-border-radius: 4px;
+$button-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
 
 // 12. Button Group
 // 


-
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-website] branch master updated: Generate sitemap from template (#456)

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 8c509d3  Generate sitemap from template (#456)
8c509d3 is described below

commit 8c509d3578587a59f9c4536946f85903c178045f
Author: hectorespert 
AuthorDate: Sat Mar 7 18:37:49 2020 +0100

Generate sitemap from template (#456)
---
 netbeans.apache.org/globals.yml|  4 +++-
 .../src/content/templates/sitemap.gsp  | 28 ++
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/netbeans.apache.org/globals.yml b/netbeans.apache.org/globals.yml
index 5b68802..cd91dc0 100644
--- a/netbeans.apache.org/globals.yml
+++ b/netbeans.apache.org/globals.yml
@@ -20,7 +20,7 @@ site:
 
 render:
 tags: false
-sitemap: false
+sitemap: true
 index: false
 archive: false
 feed: false
@@ -42,6 +42,8 @@ template:
 extension: .asciidoc
 raw:
 file: raw.gsp
+sitemap:
+file: sitemap.gsp
 
 asciidoctor:
 attributes:
diff --git a/netbeans.apache.org/src/content/templates/sitemap.gsp 
b/netbeans.apache.org/src/content/templates/sitemap.gsp
new file mode 100644
index 000..0fc23c9
--- /dev/null
+++ b/netbeans.apache.org/src/content/templates/sitemap.gsp
@@ -0,0 +1,28 @@
+<%/*
+
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+*/%>
+http://www.sitemaps.org/schemas/sitemap/0.9;>
+<%published_content.each {content -> %>
+
+${config.site_host}/${content.uri}
+${content.date.format("-MM-dd")}
+
+<%}%>
+


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

2020-03-07 Thread Jira


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

Matthias Bläsing commented on NETBEANS-445:
---

Yes they should and yes somewhere something is broken. I'm looking into it.

> 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
> Attachments: nb445-display-flow-list-item.png, nbDisplayValues.png
>
>  Time Spent: 10m
>  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



[jira] [Commented] (NETBEANS-445) Many missing values for code completion of the CSS display property

2020-03-07 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-445:
---

 = ? && [ flow | flow-root ]? && list-item

Does this mean that the following cases are also allowed?
{code:css}
display: block flow list-item;
display: flow list-item;
display: list-item flow;
{code}
 

 

> 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
> Attachments: nb445-display-flow-list-item.png, nbDisplayValues.png
>
>  Time Spent: 10m
>  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



[jira] [Commented] (NETBEANS-445) Many missing values for code completion of the CSS display property

2020-03-07 Thread Jira


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

Matthias Bläsing commented on NETBEANS-445:
---

Could you elaborate at bit more?

> 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
> Attachments: nb445-display-flow-list-item.png, nbDisplayValues.png
>
>  Time Spent: 10m
>  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: [NETBEANSINFRA-6] get latest archetype from maven repo (#1999)

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

skygo 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 501ddbe  [NETBEANSINFRA-6] get latest archetype from maven repo (#1999)
501ddbe is described below

commit 501ddbe80da33b06f21a2ff8eb63a73df5d20fec
Author: oyarzun 
AuthorDate: Sat Mar 7 08:14:18 2020 -0500

[NETBEANSINFRA-6] get latest archetype from maven repo (#1999)

* [NETBEANS-3332] Get the latest nbm-archetype and 
netbeans-platform-app-archetype versions from the maven repository.
---
 .../maven/apisupport/NbmWizardIterator.java| 23 +++---
 1 file changed, 20 insertions(+), 3 deletions(-)

diff --git 
a/apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/NbmWizardIterator.java
 
b/apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/NbmWizardIterator.java
index 65a15f7..12bd22f 100644
--- 
a/apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/NbmWizardIterator.java
+++ 
b/apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/NbmWizardIterator.java
@@ -51,6 +51,8 @@ import org.openide.util.NbBundle.Messages;
 import static org.netbeans.modules.maven.apisupport.Bundle.*;
 import static 
org.netbeans.modules.maven.apisupport.MavenNbModuleImpl.APACHE_SNAPSHOT_REPO_ID;
 import org.netbeans.modules.maven.embedder.EmbedderFactory;
+import org.netbeans.modules.maven.indexer.api.NBVersionInfo;
+import org.netbeans.modules.maven.indexer.api.RepositoryQueries;
 import org.netbeans.spi.project.ui.support.CommonProjectActions;
 
 public class NbmWizardIterator implements 
WizardDescriptor.BackgroundInstantiatingIterator {
@@ -113,7 +115,21 @@ public class NbmWizardIterator implements 
WizardDescriptor.BackgroundInstantiati
 LBL_CreateProjectStepNbm()
 };
 }
-
+
+private static void getLatestArchetypeVersion(Archetype archetype) {
+RepositoryQueries.Result versionsResult = 
RepositoryQueries.getVersionsResult(archetype.getGroupId(), 
archetype.getArtifactId(), null);
+
+if (versionsResult.isPartial()) {
+versionsResult.waitForSkipped();
+}
+
+// Versions are sorted in descending order
+List results = versionsResult.getResults();
+if (!results.isEmpty()) {
+archetype.setVersion(results.get(0).getVersion());
+}
+}
+
 @Override
 public Set instantiate() throws IOException {
 ProjectInfo vi = new ProjectInfo((String) wiz.getProperty("groupId"), 
(String) wiz.getProperty("artifactId"), (String) wiz.getProperty("version"), 
(String) wiz.getProperty("package")); //NOI18N
@@ -127,10 +143,11 @@ public class NbmWizardIterator implements 
WizardDescriptor.BackgroundInstantiati
 Map additional = 
Collections.singletonMap("netbeansVersion", version); // NOI18N
 
 if (archetype == NB_MODULE_ARCH) {
+getLatestArchetypeVersion(NB_MODULE_ARCH);
 NBMNativeMWI.instantiate(vi, projFile, version, 
Boolean.TRUE.equals(wiz.getProperty(OSGIDEPENDENCIES)), null);
-
+
 } else {
-
+getLatestArchetypeVersion(NB_APP_ARCH);
 ArchetypeWizards.createFromArchetype(projFile, vi, archetype, 
additional, true);
 List> opers = new 
ArrayList>();
 if (Boolean.TRUE.equals(wiz.getProperty(OSGIDEPENDENCIES))) {


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

2020-03-07 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-445:
---

 
{code:java}
display: list-item flow;
{code}
Is this correct? If so, `flow` and `flow-root` are missing (list-item [caret] 
[Ctrl]+[Space]).
{code:java}
   display: flow list-item; // another case  
{code}
  !nb445-display-flow-list-item.png!

 

> 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
> Attachments: nb445-display-flow-list-item.png, nbDisplayValues.png
>
>  Time Spent: 10m
>  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



[jira] [Updated] (NETBEANS-445) Many missing values for code completion of the CSS display property

2020-03-07 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto updated NETBEANS-445:
--
Attachment: nb445-display-flow-list-item.png

> 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
> Attachments: nb445-display-flow-list-item.png, nbDisplayValues.png
>
>  Time Spent: 10m
>  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: Get a file of all libraries during download (#2001)

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

skygo 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 276dbba  Get a file of all libraries during download (#2001)
276dbba is described below

commit 276dbba00288a05a005c0fae84f5eeecf94f8884
Author: Eric Barboni 
AuthorDate: Sat Mar 7 13:57:16 2020 +0100

Get a file of all libraries during download (#2001)

* Get a file of all libraries during download use UTF-8
---
 .../netbeans/nbbuild/extlibs/DownloadBinaries.java   | 20 
 nbbuild/build.xml|  3 ++-
 2 files changed, 22 insertions(+), 1 deletion(-)

diff --git a/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java 
b/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java
index 33a57b4..7fae888 100644
--- a/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java
+++ b/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java
@@ -33,6 +33,8 @@ import java.math.BigInteger;
 import java.net.HttpURLConnection;
 import java.net.URL;
 import java.net.URLConnection;
+import java.nio.file.Files;
+import java.nio.file.StandardOpenOption;
 import java.security.MessageDigest;
 import java.security.NoSuchAlgorithmException;
 import java.util.ArrayList;
@@ -93,6 +95,12 @@ public class DownloadBinaries extends Task {
 this.repos = repos;
 }
 
+private File report = null;
+
+public void setReportToFile(File file) {
+this.report = file;
+}
+
 private final List manifests = new ArrayList<>();
 /**
  * Add one or more manifests of files to download.
@@ -133,6 +141,14 @@ public class DownloadBinaries extends Task {
 @Override
 public void execute() throws BuildException {
 boolean success = true;
+if (report != null) {
+try {
+Files.deleteIfExists(report.toPath());
+Files.createFile(report.toPath());
+} catch (IOException x) {
+throw new BuildException("Cannot create report file at : " + 
report + x, getLocation());
+}
+}
 for (FileSet fs : manifests) {
 DirectoryScanner scanner = fs.getDirectoryScanner(getProject());
 File basedir = scanner.getBasedir();
@@ -161,6 +177,10 @@ public class DownloadBinaries extends Task {
 } else {
 success &= fillInFile(hashAndFile[0], 
hashAndFile[1], manifest, () -> legacyDownload(hashAndFile[0] + "-" + 
hashAndFile[1]));
 }
+if (report != null) {
+Files.write(report.toPath(), (hashAndFile[0] + 
";" + hashAndFile[1] + ";" + include + 
"\n").getBytes("UTF-8"),StandardOpenOption.APPEND);
+}
+
 }
 }
 } catch (IOException x) {
diff --git a/nbbuild/build.xml b/nbbuild/build.xml
index ce6804f..99f95da 100644
--- a/nbbuild/build.xml
+++ b/nbbuild/build.xml
@@ -197,7 +197,8 @@ metabuild.hash=${metabuild.hash}
   
   
 Downloading external binaries (*/external/ directories)...
-
+
+
 
 
 


-
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-website] branch asf-site updated: Automated site publishing by Jenkins build 1243

2020-03-07 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 4d22e60  Automated site publishing by Jenkins build 1243
4d22e60 is described below

commit 4d22e6073bc4b6d8182ce0779b596d3c9bf98798
Author: jenkins 
AuthorDate: Sat Mar 7 12:42:47 2020 +

Automated site publishing by Jenkins build 1243
---
 content/kb/docs/cnd/toolchain.html |   2 +-
 content/kb/docs/cnd/toolchain_ja.html  |   2 +-
 content/kb/docs/cnd/toolchain_pt_BR.html   |   2 +-
 content/kb/docs/cnd/toolchain_ru.html  |   2 +-
 content/kb/docs/cnd/toolchain_zh_CN.html   |   2 +-
 content/kb/docs/ide/java-db_ja.html|   2 +-
 content/kb/docs/ide/java-db_pt_BR.html |   2 +-
 content/kb/docs/ide/java-db_ru.html|   2 +-
 content/kb/docs/ide/java-db_zh_CN.html |   2 +-
 content/kb/docs/java/code-inspect-screencast.html  |   2 +-
 .../kb/docs/java/code-inspect-screencast_ja.html   |   2 +-
 .../docs/java/code-inspect-screencast_pt_BR.html   |   2 +-
 .../kb/docs/java/code-inspect-screencast_ru.html   |   2 +-
 .../docs/java/code-inspect-screencast_zh_CN.html   |   2 +-
 content/kb/docs/java/code-inspect.html |   2 +-
 content/kb/docs/java/code-inspect_ja.html  |   4 +-
 content/kb/docs/java/code-inspect_pt_BR.html   |   4 +-
 content/kb/docs/java/code-inspect_ru.html  |   4 +-
 content/kb/docs/java/code-inspect_zh_CN.html   |   4 +-
 .../kb/docs/java/editor-inspect-transform_ja.html  |   2 +-
 .../docs/java/editor-inspect-transform_pt_BR.html  |   2 +-
 .../kb/docs/java/editor-inspect-transform_ru.html  |   2 +-
 .../docs/java/editor-inspect-transform_zh_CN.html  |   2 +-
 content/kb/docs/platform.html  | 114 ++---
 content/kb/docs/platform_ca.html   |  60 +--
 content/kb/docs/platform_ja.html   | 114 ++---
 content/kb/docs/platform_pt_BR.html| 114 ++---
 content/kb/docs/platform_ru.html   | 114 ++---
 content/kb/docs/platform_zh_CN.html| 114 ++---
 content/wiki/DefFaqMapApisToTasks.asciidoc |   2 +-
 ...ionAddProjectCustomizerToMultipleTypes.asciidoc |   2 +-
 content/wiki/DevFaqApisBasics.asciidoc |   2 +-
 content/wiki/DevFaqChangeNodeAppearance.asciidoc   |   2 +-
 content/wiki/DevFaqDataObject.asciidoc |   4 +-
 content/wiki/DevFaqExtendOptionsWindow.asciidoc|   2 +-
 content/wiki/DevFaqLookup.asciidoc |   2 +-
 content/wiki/DevFaqPossibleToExtend.asciidoc   |   2 +-
 content/wiki/Java_DevelopersGuide.asciidoc |   6 +-
 content/wiki/TranslateNetbeansModule.asciidoc  |   2 +-
 39 files changed, 355 insertions(+), 355 deletions(-)

diff --git a/content/kb/docs/cnd/toolchain.html 
b/content/kb/docs/cnd/toolchain.html
index 48c96c3..166fd82 100644
--- a/content/kb/docs/cnd/toolchain.html
+++ b/content/kb/docs/cnd/toolchain.html
@@ -328,7 +328,7 @@ OracleSolarisStudio.xml
 This section shows how to create a tool collection that is based on the GNU 
tool collection with some changes to compiler flags for debugging. The example 
shows steps for creating a new NetBeans module that contains a new tool 
collection to enable you to share the tool collection or use it in other 
instances of the IDE.
 
 
-For general information about creating NetBeans modules, see http://platform.netbeans.org/tutorials/nbm-google.html;>NetBeans Plugin 
Quick Start.
+For general information about creating NetBeans modules, see https://netbeans.apache.org/tutorials/nbm-google.html;>NetBeans Plugin 
Quick Start.
 
 
 To create a custom tool collection:
diff --git a/content/kb/docs/cnd/toolchain_ja.html 
b/content/kb/docs/cnd/toolchain_ja.html
index af1e188..c821b13 100644
--- a/content/kb/docs/cnd/toolchain_ja.html
+++ b/content/kb/docs/cnd/toolchain_ja.html
@@ -328,7 +328,7 @@ OracleSolarisStudio.xml
 
この項では、デバッグ用にコンパイラ・フラグを一部変更した、GNUツール・コレクションに基づくツール・コレクションを作成する方法について説明します。この例では、新規ツール・コレクションが含まれる新規NetBeansモジュールを作成するための手順が示されます。これによってツール・コレクションを共有、またはIDEの別のインスタンスで使用することが可能になります。
 
 
-NetBeansモジュール作成の概要については、http://platform.netbeans.org/tutorials/nbm-google.html;>NetBeansプラグインのクイック・スタートを参照してください。
+NetBeansモジュール作成の概要については、https://netbeans.apache.org/tutorials/nbm-google.html;>NetBeansプラグインのクイック・スタートを参照してください。
 
 
 カスタム・ツール・コレクションを作成するには:
diff --git a/content/kb/docs/cnd/toolchain_pt_BR.html 
b/content/kb/docs/cnd/toolchain_pt_BR.html
index 9668dac..2e1da2c 100644
--- a/content/kb/docs/cnd/toolchain_pt_BR.html
+++ b/content/kb/docs/cnd/toolchain_pt_BR.html
@@ -328,7 +328,7 @@ OracleSolarisStudio.xml
 Esta seção mostra como criar uma coleção de ferramentas que é 

[netbeans-website] branch master updated: Updating platform.netbeans.org links

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

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


The following commit(s) were added to refs/heads/master by this push:
 new c725840  Updating platform.netbeans.org links
c725840 is described below

commit c725840b4724cdbb9802bb183388708bd83ff9b5
Author: Antonio Vieiro 
AuthorDate: Sat Mar 7 13:37:19 2020 +0100

Updating platform.netbeans.org links

Removing links to platform.netbeans.org/tutorials and updating them to 
netbeans.apache.org/tutorials.
---
 .../src/content/kb/docs/cnd/toolchain.asciidoc |   2 +-
 .../src/content/kb/docs/cnd/toolchain_ja.asciidoc  |   2 +-
 .../content/kb/docs/cnd/toolchain_pt_BR.asciidoc   |   2 +-
 .../src/content/kb/docs/cnd/toolchain_ru.asciidoc  |   2 +-
 .../content/kb/docs/cnd/toolchain_zh_CN.asciidoc   |   2 +-
 .../src/content/kb/docs/ide/java-db_ja.asciidoc|   2 +-
 .../src/content/kb/docs/ide/java-db_pt_BR.asciidoc |   2 +-
 .../src/content/kb/docs/ide/java-db_ru.asciidoc|   2 +-
 .../src/content/kb/docs/ide/java-db_zh_CN.asciidoc |   2 +-
 .../kb/docs/java/code-inspect-screencast.asciidoc  |   2 +-
 .../docs/java/code-inspect-screencast_ja.asciidoc  |   2 +-
 .../java/code-inspect-screencast_pt_BR.asciidoc|   2 +-
 .../docs/java/code-inspect-screencast_ru.asciidoc  |   2 +-
 .../java/code-inspect-screencast_zh_CN.asciidoc|   2 +-
 .../src/content/kb/docs/java/code-inspect.asciidoc |   2 +-
 .../content/kb/docs/java/code-inspect_ja.asciidoc  |   4 +-
 .../kb/docs/java/code-inspect_pt_BR.asciidoc   |   4 +-
 .../content/kb/docs/java/code-inspect_ru.asciidoc  |   4 +-
 .../kb/docs/java/code-inspect_zh_CN.asciidoc   |   4 +-
 .../docs/java/editor-inspect-transform_ja.asciidoc |   2 +-
 .../java/editor-inspect-transform_pt_BR.asciidoc   |   2 +-
 .../docs/java/editor-inspect-transform_ru.asciidoc |   2 +-
 .../java/editor-inspect-transform_zh_CN.asciidoc   |   2 +-
 .../src/content/kb/docs/platform.asciidoc  | 114 ++---
 .../src/content/kb/docs/platform_ca.asciidoc   |  60 +--
 .../src/content/kb/docs/platform_ja.asciidoc   | 114 ++---
 .../src/content/kb/docs/platform_pt_BR.asciidoc| 114 ++---
 .../src/content/kb/docs/platform_ru.asciidoc   | 114 ++---
 .../src/content/kb/docs/platform_zh_CN.asciidoc| 114 ++---
 .../src/content/wiki/DefFaqMapApisToTasks.asciidoc |   2 +-
 ...ionAddProjectCustomizerToMultipleTypes.asciidoc |   2 +-
 .../src/content/wiki/DevFaqApisBasics.asciidoc |   2 +-
 .../wiki/DevFaqChangeNodeAppearance.asciidoc   |   2 +-
 .../src/content/wiki/DevFaqDataObject.asciidoc |   4 +-
 .../wiki/DevFaqExtendOptionsWindow.asciidoc|   2 +-
 .../src/content/wiki/DevFaqLookup.asciidoc |   2 +-
 .../content/wiki/DevFaqPossibleToExtend.asciidoc   |   2 +-
 .../src/content/wiki/Java_DevelopersGuide.asciidoc |   6 +-
 .../content/wiki/TranslateNetbeansModule.asciidoc  |   2 +-
 39 files changed, 355 insertions(+), 355 deletions(-)

diff --git a/netbeans.apache.org/src/content/kb/docs/cnd/toolchain.asciidoc 
b/netbeans.apache.org/src/content/kb/docs/cnd/toolchain.asciidoc
index 606bcf3..56a7381 100644
--- a/netbeans.apache.org/src/content/kb/docs/cnd/toolchain.asciidoc
+++ b/netbeans.apache.org/src/content/kb/docs/cnd/toolchain.asciidoc
@@ -158,7 +158,7 @@ The descriptors in this directory take precedence over the 
official versions in
 
 This section shows how to create a tool collection that is based on the GNU 
tool collection with some changes to compiler flags for debugging. The example 
shows steps for creating a new NetBeans module that contains a new tool 
collection to enable you to share the tool collection or use it in other 
instances of the IDE.
 
-For general information about creating NetBeans modules, see 
link:http://platform.netbeans.org/tutorials/nbm-google.html[+NetBeans Plugin 
Quick Start+].
+For general information about creating NetBeans modules, see 
link:https://netbeans.apache.org/tutorials/nbm-google.html[+NetBeans Plugin 
Quick Start+].
 
 
 *To create a custom tool collection:*
diff --git a/netbeans.apache.org/src/content/kb/docs/cnd/toolchain_ja.asciidoc 
b/netbeans.apache.org/src/content/kb/docs/cnd/toolchain_ja.asciidoc
index 0ebda01..6d2efcd 100644
--- a/netbeans.apache.org/src/content/kb/docs/cnd/toolchain_ja.asciidoc
+++ b/netbeans.apache.org/src/content/kb/docs/cnd/toolchain_ja.asciidoc
@@ -158,7 +158,7 @@ OracleSolarisStudio.xml
 
 
この項では、デバッグ用にコンパイラ・フラグを一部変更した、GNUツール・コレクションに基づくツール・コレクションを作成する方法について説明します。この例では、新規ツール・コレクションが含まれる新規NetBeansモジュールを作成するための手順が示されます。これによってツール・コレクションを共有、またはIDEの別のインスタンスで使用することが可能になります。
 
-NetBeansモジュール作成の概要については、link:http://platform.netbeans.org/tutorials/nbm-google.html[+NetBeansプラグインのクイック・スタート+]を参照してください。

[jira] [Assigned] (NETBEANS-2634) Unicode-range unexpected token PLUS found

2020-03-07 Thread Jira


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

Matthias Bläsing reassigned NETBEANS-2634:
--

Assignee: Matthias Bläsing

> 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
> 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