(netbeans-website) branch asf-site updated: Update .htaccess

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo 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 97b34cb93 Update .htaccess
97b34cb93 is described below

commit 97b34cb93f1b1897137bb0fe181c0ad68e279d0d
Author: Eric Barboni 
AuthorDate: Thu Feb 22 18:24:58 2024 +0100

Update .htaccess
---
 .htaccess | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.htaccess b/.htaccess
index 285f80d8c..12a8f3f1b 100644
--- a/.htaccess
+++ b/.htaccess
@@ -112,7 +112,7 @@ RewriteRule ^favicon-32x32\.png$  
https://netbeans.apache.org/_/images/fav/favic
 ErrorDocument 404 /front/main/404.html
 
 #allow youtube video 
-Header add Content-Security-Policy "frame-src youtube.com www.youtube.com;"
+Header add Content-Security-Policy "frame-src youtube.com 
https://www.youtube.com;;
 
 # Enable rewrite engine to redirect 404 pages to old netbeans.org 
(137.254.56.26)
 # RewriteEngine On


-
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: Update .htaccess

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo 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 49c49912e Update .htaccess
49c49912e is described below

commit 49c49912eebdc4106f8846a016716add7b48770d
Author: Eric Barboni 
AuthorDate: Thu Feb 22 18:22:38 2024 +0100

Update .htaccess
---
 .htaccess | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.htaccess b/.htaccess
index 349aa44bb..285f80d8c 100644
--- a/.htaccess
+++ b/.htaccess
@@ -112,7 +112,7 @@ RewriteRule ^favicon-32x32\.png$  
https://netbeans.apache.org/_/images/fav/favic
 ErrorDocument 404 /front/main/404.html
 
 #allow youtube video 
-Header add Content-Security-Policy frame-src https://www.youtube.com
+Header add Content-Security-Policy "frame-src youtube.com www.youtube.com;"
 
 # Enable rewrite engine to redirect 404 pages to old netbeans.org 
(137.254.56.26)
 # RewriteEngine On


-
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: hotfix csp tests

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo 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 540dee685 hotfix csp tests
540dee685 is described below

commit 540dee685745447442e48c758fab6f2180176da9
Author: Eric Barboni 
AuthorDate: Thu Feb 22 18:16:14 2024 +0100

hotfix csp tests
---
 .htaccess | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.htaccess b/.htaccess
index dd917bd46..349aa44bb 100644
--- a/.htaccess
+++ b/.htaccess
@@ -111,6 +111,9 @@ RewriteRule ^favicon-32x32\.png$  
https://netbeans.apache.org/_/images/fav/favic
 # A simple error page to antora folder
 ErrorDocument 404 /front/main/404.html
 
+#allow youtube video 
+Header add Content-Security-Policy frame-src https://www.youtube.com
+
 # Enable rewrite engine to redirect 404 pages to old netbeans.org 
(137.254.56.26)
 # RewriteEngine On
 # If the requested stuff is not a file ...


-
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-antora-ui) branch main updated: image url recalculate

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git


The following commit(s) were added to refs/heads/main by this push:
 new b1bfa28  image url recalculate
b1bfa28 is described below

commit b1bfa28e3083d3930df6fcfc56536b969c6f2ef8
Author: Eric Barboni 
AuthorDate: Thu Feb 22 16:59:26 2024 +0100

image url recalculate
---
 src/helpers/pages-blog.js | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/helpers/pages-blog.js b/src/helpers/pages-blog.js
index 6527c90..15ce800 100644
--- a/src/helpers/pages-blog.js
+++ b/src/helpers/pages-blog.js
@@ -47,6 +47,9 @@ function blogcontent (s) {
   const startpoint = Math.min( startofparagraph>-1 ? startofparagraph : 
Infinity, startofpreamble >-1 ? startofpreamble: Infinity)
   const endpoint = Math.min( endofsection>-1 ? endofsection : Infinity, 
endofarticle >-1 ? endofarticle: Infinity)
   const split = s.substring( startpoint, endpoint)
-  return split
+  // hack for image
+  const imagerewrite = split.replaceAll('"../../../_images','"../_images')
+  //
+  return imagerewrite
 }
 


-
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-mavenutils-nbm-maven-plugin) 01/01: Merge pull request #150 from ebarboni/bulkreformat

2024-02-22 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-nbm-maven-plugin.git

commit d1828c87cbee61b1befb600b71ff3633f0e48a24
Merge: 9e8c959 7899bf2
Author: Eric Barboni 
AuthorDate: Thu Feb 22 16:57:03 2024 +0100

Merge pull request #150 from ebarboni/bulkreformat

reformat of src and test using Apache NetBeans default

 .git-blame-ignore-revs |3 +
 .../netbeans/nbm/utils/AbstractNetbeansMojo.java   |  111 +-
 .../apache/netbeans/nbm/utils/ExamineManifest.java |  409 +++
 .../netbeans/nbm/utils/ExamineManifestTest.java|   82 +-
 .../org/apache/netbeans/nbm/AbstractNbmMojo.java   |  399 +++---
 .../org/apache/netbeans/nbm/AdaptNbVersion.java|   82 +-
 .../java/org/apache/netbeans/nbm/BrandingMojo.java |  180 ++-
 .../apache/netbeans/nbm/BuildInstallersMojo.java   |  393 +++---
 .../java/org/apache/netbeans/nbm/BuildMacMojo.java |  251 ++--
 .../netbeans/nbm/CollectLibrariesNodeVisitor.java  |   89 +-
 .../nbm/CollectModuleLibrariesNodeVisitor.java |  120 +-
 .../apache/netbeans/nbm/CreateClusterAppMojo.java  | 1287 
 .../org/apache/netbeans/nbm/CreateClusterMojo.java |  172 ++-
 .../org/apache/netbeans/nbm/CreateNbmMojo.java |  340 +++---
 .../netbeans/nbm/CreateNetBeansFileStructure.java  |  581 -
 .../apache/netbeans/nbm/CreateStandaloneMojo.java  |   60 +-
 .../apache/netbeans/nbm/CreateUpdateSiteMojo.java  |  311 ++---
 .../apache/netbeans/nbm/CreateWebstartAppMojo.java |  563 -
 .../netbeans/nbm/NetBeansManifestUpdateMojo.java   |  824 ++---
 .../org/apache/netbeans/nbm/RunNetBeansMojo.java   |  224 ++--
 .../apache/netbeans/nbm/RunPlatformAppMojo.java|  145 +--
 .../apache/netbeans/nbm/AbstractNbmMojoTest.java   |  247 ++--
 .../org/apache/netbeans/nbm/BrandingMojoTest.java  |   40 +-
 .../netbeans/nbm/CreateClusterAppMojoTest.java |  116 +-
 .../nbm/CreateNetBeansFileStructureTest.java   |   20 +-
 .../nbm/NetBeansManifestUpdateMojoTest.java|   89 +-
 pom.xml|2 +-
 27 files changed, 3033 insertions(+), 4107 deletions(-)


-
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-mavenutils-nbm-maven-plugin) branch master updated (9e8c959 -> d1828c8)

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


from 9e8c959  Merge pull request #146 from 
apache/dependabot/maven/master/org.codehaus.modello-modello-maven-plugin-2.3.0
 add 364b543  formating code with Apache NetBeans default
 add 7899bf2  blame ignore reformating
 new d1828c8  Merge pull request #150 from ebarboni/bulkreformat

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.


Summary of changes:
 .git-blame-ignore-revs |3 +
 .../netbeans/nbm/utils/AbstractNetbeansMojo.java   |  111 +-
 .../apache/netbeans/nbm/utils/ExamineManifest.java |  409 +++
 .../netbeans/nbm/utils/ExamineManifestTest.java|   82 +-
 .../org/apache/netbeans/nbm/AbstractNbmMojo.java   |  399 +++---
 .../org/apache/netbeans/nbm/AdaptNbVersion.java|   82 +-
 .../java/org/apache/netbeans/nbm/BrandingMojo.java |  180 ++-
 .../apache/netbeans/nbm/BuildInstallersMojo.java   |  393 +++---
 .../java/org/apache/netbeans/nbm/BuildMacMojo.java |  251 ++--
 .../netbeans/nbm/CollectLibrariesNodeVisitor.java  |   89 +-
 .../nbm/CollectModuleLibrariesNodeVisitor.java |  120 +-
 .../apache/netbeans/nbm/CreateClusterAppMojo.java  | 1287 
 .../org/apache/netbeans/nbm/CreateClusterMojo.java |  172 ++-
 .../org/apache/netbeans/nbm/CreateNbmMojo.java |  340 +++---
 .../netbeans/nbm/CreateNetBeansFileStructure.java  |  581 -
 .../apache/netbeans/nbm/CreateStandaloneMojo.java  |   60 +-
 .../apache/netbeans/nbm/CreateUpdateSiteMojo.java  |  311 ++---
 .../apache/netbeans/nbm/CreateWebstartAppMojo.java |  563 -
 .../netbeans/nbm/NetBeansManifestUpdateMojo.java   |  824 ++---
 .../org/apache/netbeans/nbm/RunNetBeansMojo.java   |  224 ++--
 .../apache/netbeans/nbm/RunPlatformAppMojo.java|  145 +--
 .../apache/netbeans/nbm/AbstractNbmMojoTest.java   |  247 ++--
 .../org/apache/netbeans/nbm/BrandingMojoTest.java  |   40 +-
 .../netbeans/nbm/CreateClusterAppMojoTest.java |  116 +-
 .../nbm/CreateNetBeansFileStructureTest.java   |   20 +-
 .../nbm/NetBeansManifestUpdateMojoTest.java|   89 +-
 pom.xml|2 +-
 27 files changed, 3033 insertions(+), 4107 deletions(-)


-
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-antora) branch main updated: local playbook indexify too

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 76c4431  local playbook indexify too
76c4431 is described below

commit 76c4431767239b2ad7fd04f6ae32c42a13bba163
Author: Eric Barboni 
AuthorDate: Thu Feb 22 16:55:12 2024 +0100

local playbook indexify too
---
 antora-local-playbook.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/antora-local-playbook.yml b/antora-local-playbook.yml
index 16b2658..68a27fc 100644
--- a/antora-local-playbook.yml
+++ b/antora-local-playbook.yml
@@ -2,6 +2,8 @@ site:
   title: Apache Netbeans Website
   start_page: front::index.adoc
   url: https://netbeans.apache.org
+urls:
+  html_extension_style: indexify
 ## rss generator
 antora:
   extensions:


-
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-antora-ui) branch main updated (f310ad2 -> 6c3cc8f)

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git


from f310ad2  img cleanup
 add cc1eb3f  feedfix
 new 6c3cc8f  Merge pull request #16 from ebarboni/blogspagefilter

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.


Summary of changes:
 .gitignore|  1 +
 src/helpers/iftaginpage.js|  2 ++
 src/helpers/nicedate.js   |  4 +++-
 src/helpers/pages-blog.js | 36 +++-
 src/helpers/pages-with-tag.js |  2 ++
 src/layouts/blogindex.hbs |  4 ++--
 6 files changed, 45 insertions(+), 4 deletions(-)


-
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-antora-ui) 01/01: Merge pull request #16 from ebarboni/blogspagefilter

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git

commit 6c3cc8fd0a6f4bacfdd695d909145f1a4cf19e57
Merge: f310ad2 cc1eb3f
Author: Eric Barboni 
AuthorDate: Thu Feb 22 16:23:15 2024 +0100

Merge pull request #16 from ebarboni/blogspagefilter

adhoc filtering for our feed

 .gitignore|  1 +
 src/helpers/iftaginpage.js|  2 ++
 src/helpers/nicedate.js   |  4 +++-
 src/helpers/pages-blog.js | 36 +++-
 src/helpers/pages-with-tag.js |  2 ++
 src/layouts/blogindex.hbs |  4 ++--
 6 files changed, 45 insertions(+), 4 deletions(-)


-
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 (5c511aa07b -> 0300e20e43)

2024-02-22 Thread mbalin
This is an automated email from the ASF dual-hosted git repository.

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


from 5c511aa07b Merge pull request #7094 from 
junichi11/regenerate-php-sigfiles-1.7
 add 768fa00183 README and CHANGELOG update
 new 0300e20e43 Merge pull request #7089 from MartinBalin/master

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.


Summary of changes:
 java/java.lsp.server/vscode/CHANGELOG.md | 5 +
 java/java.lsp.server/vscode/README.md| 8 +---
 2 files changed, 10 insertions(+), 3 deletions(-)


-
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) 01/01: Merge pull request #7089 from MartinBalin/master

2024-02-22 Thread mbalin
This is an automated email from the ASF dual-hosted git repository.

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

commit 0300e20e4338c7875b992e2c50e59a69717b2e70
Merge: 5c511aa07b 768fa00183
Author: Martin BalĂ­n 
AuthorDate: Thu Feb 22 15:11:55 2024 +0100

Merge pull request #7089 from MartinBalin/master

README and CHANGELOG update

 java/java.lsp.server/vscode/CHANGELOG.md | 5 +
 java/java.lsp.server/vscode/README.md| 8 +---
 2 files changed, 10 insertions(+), 3 deletions(-)


-
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-antora) branch main updated: Update rssfeed.js

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new eda2460  Update rssfeed.js
eda2460 is described below

commit eda24607a9b78964de4d5757b1c700e6c2f1d589
Author: Eric Barboni 
AuthorDate: Thu Feb 22 14:46:20 2024 +0100

Update rssfeed.js
---
 lib/rssfeed.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/rssfeed.js b/lib/rssfeed.js
index 0e07e6e..0b393ea 100644
--- a/lib/rssfeed.js
+++ b/lib/rssfeed.js
@@ -78,7 +78,7 @@ function sortByDate (a, b) {
 // reduce the page content to approx content, 
 function blogcontent (s) {
   // end of content
-  const endofsection  = s.indexOf('')
+  const endofsection  = s.indexOf("")
   const endofarticle = s.indexOf("")
   // possible starting point of article,
   const startofparagraph = s.indexOf('')


-
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-antora) branch main updated: reduce feed

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 6d99a27  reduce feed
6d99a27 is described below

commit 6d99a276a9484d9e2be8e4a098a76d360e53c222
Author: Eric Barboni 
AuthorDate: Thu Feb 22 14:43:16 2024 +0100

reduce feed
---
 lib/rssfeed.js | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lib/rssfeed.js b/lib/rssfeed.js
index 7691516..0e07e6e 100644
--- a/lib/rssfeed.js
+++ b/lib/rssfeed.js
@@ -78,13 +78,15 @@ function sortByDate (a, b) {
 // reduce the page content to approx content, 
 function blogcontent (s) {
   // end of content
-  const endof = s.indexOf("")
+  const endofsection  = s.indexOf('')
+  const endofarticle = s.indexOf("")
   // possible starting point of article,
   const startofparagraph = s.indexOf('')
   const startofpreamble = s.indexOf('')
   // take min if defined
   const startpoint = Math.min( startofparagraph>-1 ? startofparagraph : 
Infinity, startofpreamble >-1 ? startofpreamble: Infinity)
-  const split = s.substring( startpoint, endof)
+  const endpoint = Math.min( endofsection>-1 ? endofsection : Infinity, 
endofarticle >-1 ? endofarticle: Infinity)
+  const split = s.substring( startpoint, endpoint)
   return split
 }
 // remove some breaking char for xml 


-
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-antora) branch main updated: make content for atom feed more compliant

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 12fd1be  make content for atom feed more compliant
12fd1be is described below

commit 12fd1be2bc51e4622124f3f21933989aed87562e
Author: Eric Barboni 
AuthorDate: Thu Feb 22 13:59:07 2024 +0100

make content for atom feed more compliant
---
 lib/rssfeed.js | 15 +++
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/lib/rssfeed.js b/lib/rssfeed.js
index 4893bf4..7691516 100644
--- a/lib/rssfeed.js
+++ b/lib/rssfeed.js
@@ -49,7 +49,9 @@ module.exports.register = function ( { config }) {
   feed += '\n'
   feed += '\n' + rssDate(p.attributes.revdate) + 
''
   feed += '\n' + rssDate(p.attributes.revdate) + ''
-  feed += '\n' + 
escape(blogcontent(p.contents.toString())) + ''
+  feed += '\n'
+  feed += '\n'+ escape(blogcontent(p.contents.toString()))
+  feed += '\n'
   feed += '\n  '
 })
 feed += '\n'
@@ -75,9 +77,14 @@ function sortByDate (a, b) {
 }
 // reduce the page content to approx content, 
 function blogcontent (s) {
-  const endof = s.indexOf("")
-  const startof = s.indexOf('')
-  const split = s.substring(startof, endof)
+  // end of content
+  const endof = s.indexOf("")
+  // possible starting point of article,
+  const startofparagraph = s.indexOf('')
+  const startofpreamble = s.indexOf('')
+  // take min if defined
+  const startpoint = Math.min( startofparagraph>-1 ? startofparagraph : 
Infinity, startofpreamble >-1 ? startofpreamble: Infinity)
+  const split = s.substring( startpoint, endof)
   return split
 }
 // remove some breaking char for xml 


-
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-antora) branch main updated: strict mode + more compliance

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 26fbd46  strict mode + more compliance
26fbd46 is described below

commit 26fbd46dbda3deb86bebb19f337218479ffc4f44
Author: Eric Barboni 
AuthorDate: Thu Feb 22 11:44:14 2024 +0100

strict mode + more compliance
---
 lib/rssfeed.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/rssfeed.js b/lib/rssfeed.js
index 4836187..4893bf4 100644
--- a/lib/rssfeed.js
+++ b/lib/rssfeed.js
@@ -17,6 +17,7 @@
  * under the License.
  */
 
+'use strict'
 
 module.exports.register = function ( { config }) {
   this.on('beforePublish', ({ siteCatalog, contentCatalog, playbook}) => {
@@ -38,7 +39,7 @@ module.exports.register = function ( { config }) {
 feed += '\n  Quickly and easily develop web, mobile 
and desktop applications with Java, JavaScript, HTML5, PHP, C/C++ and more. 
'
 feed += '\n  https://netbeans.apache.org/favicon-32x32.png'
 feed += '\n  https://netbeans.apache.org/blogs/atom'
-feed += '\n  https://netbeans.apache.org/blogs/atom; />'
+feed += '\n  https://netbeans.apache.org/front/main/blogs/atom; />'
 feed += '\n  https://netbeans.apache.org/blogs/atom; />'
 blogpages.forEach((p) => {
   feed += '\n  '
@@ -51,7 +52,7 @@ module.exports.register = function ( { config }) {
   feed += '\n' + 
escape(blogcontent(p.contents.toString())) + ''
   feed += '\n  '
 })
-feed += '\n  '
+feed += '\n'
 // transfer to file in folder hierarchy
 const contents = Buffer.from(feed)
 siteCatalog.addFile({ contents, out: { path: 'front/main/blogs/atom' } })


-
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-antora-ui) branch main updated: img cleanup

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git


The following commit(s) were added to refs/heads/main by this push:
 new f310ad2  img cleanup
f310ad2 is described below

commit f310ad241a558c7d056f4b1f8fc61a15badc36cf
Author: Eric Barboni 
AuthorDate: Thu Feb 22 10:45:59 2024 +0100

img cleanup
---
 src/layouts/page_front.hbs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/layouts/page_front.hbs b/src/layouts/page_front.hbs
index 1edaa87..55b020a 100644
--- a/src/layouts/page_front.hbs
+++ b/src/layouts/page_front.hbs
@@ -31,7 +31,7 @@
 {{>news}}
 
   
-
+
 
 
 Apache NetBeans


-
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-antora-ui) branch main updated: remove ending img

2024-02-22 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/netbeans-antora-ui.git


The following commit(s) were added to refs/heads/main by this push:
 new 1db5fbe  remove ending img
1db5fbe is described below

commit 1db5fbeecfb02406385f4f1aa576e7b74e700473
Author: Eric Barboni 
AuthorDate: Thu Feb 22 10:44:59 2024 +0100

remove ending img
---
 src/partials/menu.hbs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/partials/menu.hbs b/src/partials/menu.hbs
index 8d5ae57..bf5c2e5 100644
--- a/src/partials/menu.hbs
+++ b/src/partials/menu.hbs
@@ -25,7 +25,7 @@
 
 
 
- Apache NetBeans
+ Apache NetBeans
 
 
 


-
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) 01/01: Merge pull request #7094 from junichi11/regenerate-php-sigfiles-1.7

2024-02-22 Thread junichi11
This is an automated email from the ASF dual-hosted git repository.

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

commit 5c511aa07bb498cf8c00d2080e0ae64864523410
Merge: b5ce4412c5 1a48239042
Author: Junichi Yamamoto 
AuthorDate: Thu Feb 22 18:16:56 2024 +0900

Merge pull request #7094 from junichi11/regenerate-php-sigfiles-1.7

Regenerate PHP signature files

 php/php.project/external/binaries-list  | 2 +-
 .../{phpsigfiles-1.6-license.txt => phpsigfiles-1.7-license.txt}| 2 +-
 .../external/{phpsigfiles-1.6-notice.txt => phpsigfiles-1.7-notice.txt} | 2 +-
 php/php.project/nbproject/project.properties| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)


-
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 (b5ce4412c5 -> 5c511aa07b)

2024-02-22 Thread junichi11
This is an automated email from the ASF dual-hosted git repository.

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


from b5ce4412c5 Merge pull request #7032 from pepness/glassfish-7.0.12
 add 1a48239042 Regenerate PHP signature files
 new 5c511aa07b Merge pull request #7094 from 
junichi11/regenerate-php-sigfiles-1.7

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.


Summary of changes:
 php/php.project/external/binaries-list  | 2 +-
 .../{phpsigfiles-1.6-license.txt => phpsigfiles-1.7-license.txt}| 2 +-
 .../external/{phpsigfiles-1.6-notice.txt => phpsigfiles-1.7-notice.txt} | 2 +-
 php/php.project/nbproject/project.properties| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
 rename php/php.project/external/{phpsigfiles-1.6-license.txt => 
phpsigfiles-1.7-license.txt} (99%)
 rename php/php.project/external/{phpsigfiles-1.6-notice.txt => 
phpsigfiles-1.7-notice.txt} (88%)


-
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